@dcl/playground-assets 7.11.2 → 7.11.3-18914373164.commit-b0f3e4d

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.
@@ -1284,6 +1284,11 @@ declare module "~system/RestrictedActions" {
1284
1284
  export interface MovePlayerToResponse {
1285
1285
  }
1286
1286
  export interface TeleportToResponse {
1287
+ }
1288
+ export interface CopyToClipboardRequest {
1289
+ text: string;
1290
+ }
1291
+ export interface EmptyResponse {
1287
1292
  }
1288
1293
 
1289
1294
  // Function declaration section
@@ -1306,6 +1311,8 @@ declare module "~system/RestrictedActions" {
1306
1311
  export function setCommunicationsAdapter(body: CommsAdapterRequest): Promise<SuccessResponse>;
1307
1312
  /** TriggerSceneEmote will trigger an scene emote file in this current user */
1308
1313
  export function triggerSceneEmote(body: TriggerSceneEmoteRequest): Promise<SuccessResponse>;
1314
+ /** CopyToClipboard copies the provided text into the clipboard */
1315
+ export function copyToClipboard(body: CopyToClipboardRequest): Promise<EmptyResponse>;
1309
1316
 
1310
1317
  }
1311
1318
  /**
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.11.2",
4
+ "version": "7.11.3-18914373164.commit-b0f3e4d",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "types": "./index.d.ts",
37
37
  "typings": "./index.d.ts",
38
- "commit": "2058b29251fbcbcff957ba9a308b40f7e2e1281b"
38
+ "commit": "b0f3e4d261c3cbd6f3fbb816d840cd6f026d0707"
39
39
  }
@@ -6014,6 +6014,7 @@ export declare namespace PBVideoPlayer {
6014
6014
  * an 'instant' transition (like using speed/time = 0)
6015
6015
  * * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
6016
6016
  * the holding entity transform).
6017
+ * * The fov defines the Field of View of the virtual camera
6017
6018
  */
6018
6019
  /**
6019
6020
  * @public
@@ -6021,6 +6022,8 @@ export declare namespace PBVideoPlayer {
6021
6022
  export declare interface PBVirtualCamera {
6022
6023
  defaultTransition?: CameraTransition | undefined;
6023
6024
  lookAtEntity?: number | undefined;
6025
+ /** default: 60 */
6026
+ fov?: number | undefined;
6024
6027
  }
6025
6028
 
6026
6029
  /**
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.53.1"
8
+ "packageVersion": "7.53.3"
9
9
  }
10
10
  ]
11
11
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "metadata": {
3
3
  "toolPackage": "@microsoft/api-extractor",
4
- "toolVersion": "7.53.1",
4
+ "toolVersion": "7.53.3",
5
5
  "schemaVersion": 1011,
6
6
  "oldestForwardsCompatibleVersion": 1001,
7
7
  "tsdocConfig": {
@@ -59215,6 +59215,33 @@
59215
59215
  "endIndex": 3
59216
59216
  }
59217
59217
  },
59218
+ {
59219
+ "kind": "PropertySignature",
59220
+ "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#fov:member",
59221
+ "docComment": "/**\n * default: 60\n */\n",
59222
+ "excerptTokens": [
59223
+ {
59224
+ "kind": "Content",
59225
+ "text": "fov?: "
59226
+ },
59227
+ {
59228
+ "kind": "Content",
59229
+ "text": "number | undefined"
59230
+ },
59231
+ {
59232
+ "kind": "Content",
59233
+ "text": ";"
59234
+ }
59235
+ ],
59236
+ "isReadonly": false,
59237
+ "isOptional": true,
59238
+ "releaseTag": "Public",
59239
+ "name": "fov",
59240
+ "propertyTypeTokenRange": {
59241
+ "startIndex": 1,
59242
+ "endIndex": 2
59243
+ }
59244
+ },
59218
59245
  {
59219
59246
  "kind": "PropertySignature",
59220
59247
  "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#lookAtEntity:member",
@@ -3500,6 +3500,7 @@ export namespace PBVideoPlayer {
3500
3500
  export interface PBVirtualCamera {
3501
3501
  // (undocumented)
3502
3502
  defaultTransition?: CameraTransition | undefined;
3503
+ fov?: number | undefined;
3503
3504
  // (undocumented)
3504
3505
  lookAtEntity?: number | undefined;
3505
3506
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.11.2",
4
+ "version": "7.11.3-18914373164.commit-b0f3e4d",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.11.2",
8
- "@dcl/sdk": "7.11.2"
7
+ "@dcl/js-runtime": "7.11.3-18914373164.commit-b0f3e4d",
8
+ "@dcl/sdk": "7.11.3-18914373164.commit-b0f3e4d"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@microsoft/api-extractor": "^7.33.8"
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "types": "./dist/index.d.ts",
34
34
  "typings": "./dist/index.d.ts",
35
- "commit": "2058b29251fbcbcff957ba9a308b40f7e2e1281b"
35
+ "commit": "b0f3e4d261c3cbd6f3fbb816d840cd6f026d0707"
36
36
  }