Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@casual-simulation/aux-vm-client
Advanced tools
A set of utilities required to securely run an AUX as a client.
A set of utilities required to run an AUX as a client.
npm install @casual-simulation/aux-vm-client
import { RemoteAuxChannel } from '@casual-simulation/aux-vm-client';
import { AuxUser, AuxConfig } from '@casual-simulation/aux-vm';
export class MyCustomChannel extends RemoteAuxChannel {
constructor(defaultHost: string, user: AuxUser, config: AuxConfig) {
super(defaultHost, user, config, {});
}
// Override the _handleServerEvents function
// to handle events sent from a remote device.
protected async _handleServerEvents(events: DeviceAction[]) {
await super._handleServerEvents(events);
let filtered = events.filter(
e => e.device.roles.indexOf(SERVER_ROLE) >= 0
);
let mapped = <BotAction[]>filtered.map(e => e.event);
if (filtered.length > 0) {
await this.sendEvents(mapped);
}
}
}
V3.3.7
SERVER_CONFIG
environment variable in the telemetry
key.SERVER_CONFIG
schema in ServerBuilder.ts for more information.ai.sloyd.generateModel(request)
.
ai.sloyd
feature.request
is should be an object with the following properties:
prompt
- The prompt to use for generating the model.recordName
- The name of the record that the model should be generated in. If omitted, then the user's record will be used by default.outputMimeType
- The MIME Type of the model that should be output. Currently, only model/gltf+json
and model/gltf-binary
are supported. If omitted, then model/gltf+json
will be used.levelOfDetail
- A number between 0.01
and 1
that indicates the level of detail that should be generated for the model. Higher values will generate more detailed models. If omitted, then 0.5
will be used.baseModelId
- The ID of the model that should be edited.thumbnail
- An object that specifies how the thumbnail for the model should be generated. If omitted, then no thumbnail will be created. The object should have the following properties:
type
- Should always be "image/png"
width
- The desired width of the thumbnail in pixels.height
- The desired height of the thumbnail in pixels.ai.sloyd
resource kind and create
action for the specified record.systemPortal
will now be added to the "tags" section instead of the "pinned tags" section.portalZoomableMax
and portalZoomableMin
to be supported for perspective
portal camera types.enter join code
local
studio
free
sign in
sign up
sign out
ai.hume
features now determine whether a Studio can configure their own Hume apiKey
and secretKey
.ai.hume.getAccessToken(recordName)
now accepts a record name.
apiKey
and secretKey
.ai.hume
resource kind and create
action for the specified record.floatingBillboard
option for labelPosition
.
floating
, but the label background won't have an arrow and the label will always face the camera.labelFloatingBackgroundColor
tag to control the color of the background for floating labels.
white
.@onClick
, @onAnyBotClicked
, @onGridClick
, @onPointerEnter
, @onPointerExit
, @onPointerDown
, @onPointerUp
, @onAnyBotPointerEnter
, @onAnyBotPointerExit
, @onAnyBotPointerDown
, and @onAnyBotPointerUp
to include the ID of the button that was pressed.
that.buttonId
will be either "left"
, "right"
, "middle"
, or null
.@onSpaceMaxSizeReached
would not be called when an inst ran out of space.cameraPositionOffset
is changed.@onInstJoined
.FAQs
A set of utilities required to securely run an AUX as a client.
The npm package @casual-simulation/aux-vm-client receives a total of 79 weekly downloads. As such, @casual-simulation/aux-vm-client popularity was classified as not popular.
We found that @casual-simulation/aux-vm-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.