@openscreen/internal-sdk 1.8.2 → 1.8.4

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.2",
3
+ "version": "1.8.4",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -738,6 +738,7 @@ export interface App {
738
738
  appPrice: number;
739
739
  appStoreThumbnail?: string | null;
740
740
  appWebhook?: string | null;
741
+ bannerImage?: string | null;
741
742
  cardImage?: string | null;
742
743
  categories?: Array<any> | null;
743
744
  created?: string | Date | number | null;
@@ -2184,6 +2185,7 @@ export interface PatchApp {
2184
2185
  appPrice?: number | null;
2185
2186
  appStoreThumbnail?: string | null;
2186
2187
  appWebhook?: string | null;
2188
+ bannerImage?: string | null;
2187
2189
  cardImage?: string | null;
2188
2190
  categories?: Array<any> | null;
2189
2191
  created?: string | Date | number | null;
@@ -2684,6 +2686,7 @@ export interface RequestApp {
2684
2686
  appPrice: number;
2685
2687
  appStoreThumbnail?: string | null;
2686
2688
  appWebhook?: string | null;
2689
+ bannerImage?: string | null;
2687
2690
  cardImage?: string | null;
2688
2691
  categories?: Array<any> | null;
2689
2692
  created?: string | Date | number | null;
@@ -3772,6 +3775,7 @@ export interface GetPluginsByAccountIdPathParameters {
3772
3775
  }
3773
3776
  export interface GetPluginsByAccountIdResponseBody {
3774
3777
  accountId: string;
3778
+ lastKey?: string | null;
3775
3779
  numberOfPlugins: number;
3776
3780
  plugins: ResponseAccountPlugin[];
3777
3781
  }
@@ -4661,6 +4665,7 @@ export interface UpdateAssetRequestBody {
4661
4665
  name?: string | null;
4662
4666
  parentAssetId?: string | null;
4663
4667
  state?: string | null;
4668
+ willCreateSession?: boolean | null;
4664
4669
  }
4665
4670
  export interface UpdateAssetResponseBody {
4666
4671
  asset: Asset;
@@ -5757,6 +5762,7 @@ export interface SendSmsByScanIdRequestBody {
5757
5762
  cellPhone?: string | null;
5758
5763
  contactId?: string | null;
5759
5764
  customVariables?: NestedKeyValueObject | null;
5765
+ sessionId?: string | null;
5760
5766
  smsTemplateName?: string | null;
5761
5767
  }
5762
5768
  export interface SendSmsByScanIdResponseBody {