Forked from hermes-frontend, stripped openclaw/bun specifics: - Auth tokens: openclaw_session -> nyx_session - Vite proxy: localhost:3003 -> localhost:8000 (assay) - Prod WS: wss://assay.loop42.de/ws - Workspace paths: removed openclaw-specific paths - Added missing deps: @heroicons/vue, overlayscrollbars-vue - Branding: title -> nyx Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
42 lines
912 B
JavaScript
42 lines
912 B
JavaScript
'use strict';
|
|
|
|
var map = require('../common/map.js');
|
|
var _null = require('../common/null.js');
|
|
var seq = require('../common/seq.js');
|
|
var string = require('../common/string.js');
|
|
var binary = require('./binary.js');
|
|
var bool = require('./bool.js');
|
|
var float = require('./float.js');
|
|
var int = require('./int.js');
|
|
var merge = require('./merge.js');
|
|
var omap = require('./omap.js');
|
|
var pairs = require('./pairs.js');
|
|
var set = require('./set.js');
|
|
var timestamp = require('./timestamp.js');
|
|
|
|
const schema = [
|
|
map.map,
|
|
seq.seq,
|
|
string.string,
|
|
_null.nullTag,
|
|
bool.trueTag,
|
|
bool.falseTag,
|
|
int.intBin,
|
|
int.intOct,
|
|
int.int,
|
|
int.intHex,
|
|
float.floatNaN,
|
|
float.floatExp,
|
|
float.float,
|
|
binary.binary,
|
|
merge.merge,
|
|
omap.omap,
|
|
pairs.pairs,
|
|
set.set,
|
|
timestamp.intTime,
|
|
timestamp.floatTime,
|
|
timestamp.timestamp
|
|
];
|
|
|
|
exports.schema = schema;
|