@openscreen/internal-sdk 1.8.2 → 1.8.3

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.3",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -3772,6 +3772,7 @@ export interface GetPluginsByAccountIdPathParameters {
3772
3772
  }
3773
3773
  export interface GetPluginsByAccountIdResponseBody {
3774
3774
  accountId: string;
3775
+ lastKey?: string | null;
3775
3776
  numberOfPlugins: number;
3776
3777
  plugins: ResponseAccountPlugin[];
3777
3778
  }
@@ -4661,6 +4662,7 @@ export interface UpdateAssetRequestBody {
4661
4662
  name?: string | null;
4662
4663
  parentAssetId?: string | null;
4663
4664
  state?: string | null;
4665
+ willCreateSession?: boolean | null;
4664
4666
  }
4665
4667
  export interface UpdateAssetResponseBody {
4666
4668
  asset: Asset;