@openscreen/internal-sdk 1.8.88 → 1.8.92

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.88",
3
+ "version": "1.8.92",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -466,6 +466,7 @@ export interface Account {
466
466
  created?: string | Date | number | null;
467
467
  customAttributeCount: number;
468
468
  defaultCustomDomain?: string | null;
469
+ defaultMicrositeCustomDomain?: string | null;
469
470
  dynamicQrCodeCount: number;
470
471
  emailCount: number;
471
472
  isLocked?: boolean | null;
@@ -485,6 +486,7 @@ export interface Account {
485
486
  type?: AccountType;
486
487
  userCount: number;
487
488
  visibleContacts?: number | null;
489
+ webSessionCount?: number | null;
488
490
  }
489
491
  export interface AccountAuth {
490
492
  accountId: string;
@@ -711,6 +713,7 @@ export interface AccountResponse extends Account {
711
713
  currentPeriod: PricePlanPeriod;
712
714
  customAttributeCount: number;
713
715
  defaultCustomDomain?: string | null;
716
+ defaultMicrositeCustomDomain?: string | null;
714
717
  dynamicQrCodeCount: number;
715
718
  emailCount: number;
716
719
  isLocked?: boolean | null;
@@ -731,6 +734,7 @@ export interface AccountResponse extends Account {
731
734
  type?: AccountType;
732
735
  userCount: number;
733
736
  visibleContacts?: number | null;
737
+ webSessionCount?: number | null;
734
738
  }
735
739
  export interface AccountScan {
736
740
  accountId: string;
@@ -829,6 +833,7 @@ export interface AppAccount {
829
833
  smsCount: number;
830
834
  staticQrCodeCount: number;
831
835
  userCount: number;
836
+ webSessionCount?: number | null;
832
837
  }
833
838
  export interface AppBasicDetails {
834
839
  appAccountId: string;
@@ -882,6 +887,7 @@ export interface Asset {
882
887
  staticQrCodeCount: number;
883
888
  thumbnails?: Array<any> | null;
884
889
  userMedias?: UserMedia[] | null;
890
+ webSessionCount?: number | null;
885
891
  willCreateSession?: boolean | null;
886
892
  }
887
893
  export interface AssetByAssetTypeNameAssetName {
@@ -1130,6 +1136,7 @@ export interface AssetHistory {
1130
1136
  staticQrCodeCount?: number | null;
1131
1137
  thumbnails?: Array<any> | null;
1132
1138
  userMedias?: UserMedia[] | null;
1139
+ webSessionCount?: number | null;
1133
1140
  willCreateSession?: boolean | null;
1134
1141
  }
1135
1142
  export interface AssetNeighbor {
@@ -1309,6 +1316,7 @@ export interface CareUIAccounByIdResponse extends Account {
1309
1316
  currentPeriod: PricePlanPeriod;
1310
1317
  customAttributeCount: number;
1311
1318
  defaultCustomDomain?: string | null;
1319
+ defaultMicrositeCustomDomain?: string | null;
1312
1320
  dynamicQrCodeCount: number;
1313
1321
  emailCount: number;
1314
1322
  isLocked?: boolean | null;
@@ -1334,6 +1342,7 @@ export interface CareUIAccounByIdResponse extends Account {
1334
1342
  type?: AccountType;
1335
1343
  userCount: number;
1336
1344
  visibleContacts?: number | null;
1345
+ webSessionCount?: number | null;
1337
1346
  }
1338
1347
  export interface CareUIAccountInGetUserResponse {
1339
1348
  accountId: string;
@@ -1364,6 +1373,7 @@ export interface CareUIPortalAccountResponse extends Account {
1364
1373
  currentPeriod: PricePlanPeriod;
1365
1374
  customAttributeCount: number;
1366
1375
  defaultCustomDomain?: string | null;
1376
+ defaultMicrositeCustomDomain?: string | null;
1367
1377
  dynamicQrCodeCount: number;
1368
1378
  emailCount: number;
1369
1379
  isLocked?: boolean | null;
@@ -1387,6 +1397,7 @@ export interface CareUIPortalAccountResponse extends Account {
1387
1397
  type?: AccountType;
1388
1398
  userCount: number;
1389
1399
  visibleContacts?: number | null;
1400
+ webSessionCount?: number | null;
1390
1401
  }
1391
1402
  export interface CareUIPortalUserResponse extends User {
1392
1403
  created?: string | Date | number | null;
@@ -2559,12 +2570,14 @@ export interface Project {
2559
2570
  dynamicQrCodeCount: number;
2560
2571
  lastScanId?: string | null;
2561
2572
  mediaCount?: number | null;
2573
+ micrositeCustomDomain?: string | null;
2562
2574
  modified?: string | Date | number | null;
2563
2575
  name: string;
2564
2576
  projectId: string;
2565
2577
  scanCount: number;
2566
2578
  staticQrCodeCount: number;
2567
2579
  status?: ProjectStatus;
2580
+ webSessionCount?: number | null;
2568
2581
  }
2569
2582
  export interface ProjectAccount {
2570
2583
  accountId: string;
@@ -3532,6 +3545,7 @@ export interface CreateProjectByAccountIdRequestBody {
3532
3545
  companyName?: string | null;
3533
3546
  customDomain?: string | null;
3534
3547
  description?: string | null;
3548
+ micrositeCustomDomain?: string | null;
3535
3549
  name: string;
3536
3550
  }
3537
3551
  export interface CreateProjectByAccountIdResponseBody {
@@ -3654,6 +3668,7 @@ export interface GetAccountResponseBody extends Account {
3654
3668
  currentPeriod: PricePlanPeriod;
3655
3669
  customAttributeCount: number;
3656
3670
  defaultCustomDomain?: string | null;
3671
+ defaultMicrositeCustomDomain?: string | null;
3657
3672
  dynamicQrCodeCount: number;
3658
3673
  emailCount: number;
3659
3674
  isLocked?: boolean | null;
@@ -3674,6 +3689,7 @@ export interface GetAccountResponseBody extends Account {
3674
3689
  type?: AccountType;
3675
3690
  userCount: number;
3676
3691
  visibleContacts?: number | null;
3692
+ webSessionCount?: number | null;
3677
3693
  }
3678
3694
  export interface GetCustomDomainPathParameters {
3679
3695
  accountId: string;
@@ -4263,6 +4279,7 @@ export interface UpdateAccountPathParameters {
4263
4279
  export interface UpdateAccountRequestBody {
4264
4280
  companyName?: string | null;
4265
4281
  defaultCustomDomain?: string | null;
4282
+ defaultMicrositeCustomDomain?: string | null;
4266
4283
  }
4267
4284
  export interface UpdateAccountResponseBody extends Account {
4268
4285
  accountId: string;
@@ -4275,6 +4292,7 @@ export interface UpdateAccountResponseBody extends Account {
4275
4292
  created?: string | Date | number | null;
4276
4293
  customAttributeCount: number;
4277
4294
  defaultCustomDomain?: string | null;
4295
+ defaultMicrositeCustomDomain?: string | null;
4278
4296
  dynamicQrCodeCount: number;
4279
4297
  emailCount: number;
4280
4298
  isLocked?: boolean | null;
@@ -4294,6 +4312,7 @@ export interface UpdateAccountResponseBody extends Account {
4294
4312
  type?: AccountType;
4295
4313
  userCount: number;
4296
4314
  visibleContacts?: number | null;
4315
+ webSessionCount?: number | null;
4297
4316
  }
4298
4317
  export interface UpdateEngagePricePlanPathParameters {
4299
4318
  accountId: string;
@@ -4319,6 +4338,7 @@ export interface UpdateRehrigAccountPluginPathParameters {
4319
4338
  pluginId: string;
4320
4339
  }
4321
4340
  export interface UpdateRehrigAccountPluginRequestBody {
4341
+ customFields?: NestedKeyValueObject | null;
4322
4342
  password?: string | null;
4323
4343
  username?: string | null;
4324
4344
  }
@@ -4448,6 +4468,7 @@ export interface GetAppAccountByAppAccountIdResponseBody extends AppAccount {
4448
4468
  smsCount: number;
4449
4469
  staticQrCodeCount: number;
4450
4470
  userCount: number;
4471
+ webSessionCount?: number | null;
4451
4472
  }
4452
4473
  export interface GetMainAccountByAppAccountIdPathParameters {
4453
4474
  appAccountId: string;
@@ -4463,6 +4484,7 @@ export interface GetMainAccountByAppAccountIdResponseBody extends Account {
4463
4484
  created?: string | Date | number | null;
4464
4485
  customAttributeCount: number;
4465
4486
  defaultCustomDomain?: string | null;
4487
+ defaultMicrositeCustomDomain?: string | null;
4466
4488
  dynamicQrCodeCount: number;
4467
4489
  emailCount: number;
4468
4490
  isLocked?: boolean | null;
@@ -4482,6 +4504,7 @@ export interface GetMainAccountByAppAccountIdResponseBody extends Account {
4482
4504
  type?: AccountType;
4483
4505
  userCount: number;
4484
4506
  visibleContacts?: number | null;
4507
+ webSessionCount?: number | null;
4485
4508
  }
4486
4509
  export interface DeleteAssetGraphPathParameters {
4487
4510
  assetGraphId: string;
@@ -6283,6 +6306,7 @@ export interface CreateAccountByUserIdResponseBody extends Account {
6283
6306
  created?: string | Date | number | null;
6284
6307
  customAttributeCount: number;
6285
6308
  defaultCustomDomain?: string | null;
6309
+ defaultMicrositeCustomDomain?: string | null;
6286
6310
  dynamicQrCodeCount: number;
6287
6311
  emailCount: number;
6288
6312
  isLocked?: boolean | null;
@@ -6302,6 +6326,7 @@ export interface CreateAccountByUserIdResponseBody extends Account {
6302
6326
  type?: AccountType;
6303
6327
  userCount: number;
6304
6328
  visibleContacts?: number | null;
6329
+ webSessionCount?: number | null;
6305
6330
  }
6306
6331
  export interface GetAccountsByUserIdPathParameters {
6307
6332
  userId: string;