Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

att-string-transcoder

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

att-string-transcoder - npm Package Compare versions

Comparing version 1.0.0-rc.1 to 1.0.0-rc.2

39

build/index.d.ts

@@ -0,6 +1,31 @@

/**
* COMPONENTS
*/
import * as components from './components/transcoders';
export declare type BasicDecay = components.BasicDecay.Component;
export declare type DurabilityModule = components.DurabilityModule.Component;
export declare type HeatSourceBase = components.HeatSourceBase.Component;
export declare type LiquidContainer = components.LiquidContainer.Component;
export declare type NetworkRigidbody = components.NetworkRigidbody.Component;
export declare type PhysicalMaterialPart = components.PhysicalMaterialPart.Component;
export declare type Pickup = components.Pickup.Component;
export declare type PickupDock = components.PickupDock.Component;
export declare type PopulationSpawnArea = components.PopulationSpawnArea.Component;
export declare type SpawnArea = components.SpawnArea.Component;
export declare type StatManager = components.StatManager.Component;
export declare type WoodcutTree = components.WoodcutTree.Component;
/**
* EMBEDDED ENTITIES
*/
export * from './embeddedEntities';
/**
* OBJECT SHAPES
*/
export type { DecodedString } from './decodeString';
export type { Prefab } from './decoders';
export type { Prefab, PrefabObject, Components, EmbeddedEntities, KnownEmbeddedEntity, UnknownEmbeddedEntity, ChildPrefab } from './decoders';
export type { Component, KnownComponent, UnknownComponent } from './components';
/**
* HASHES
*/
export { ComponentHash } from './ComponentHash';
export { createString } from './createString';
export { decodeString } from './decodeString';
export { EmbeddedEntityHash } from './EmbeddedEntityHash';

@@ -13,3 +38,11 @@ export { PhysicalMaterialPartHash } from './PhysicalMaterialPartHash';

export { SpeciesHash } from './SpeciesHash';
/**
* UTILITIES
*/
export * from './utils';
/**
* ATT STRING TRANSCODER
*/
export { createString } from './createString';
export { decodeString } from './decodeString';
//# sourceMappingURL=index.d.ts.map

23

build/index.js

@@ -13,9 +13,12 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.SpeciesHash = exports.PresetHash = exports.PrefabHash = exports.PrefabEmbeddedEntityHash = exports.PopulationDefinitionHash = exports.PhysicalMaterialPartHash = exports.EmbeddedEntityHash = exports.decodeString = exports.createString = exports.ComponentHash = void 0;
exports.decodeString = exports.createString = exports.SpeciesHash = exports.PresetHash = exports.PrefabHash = exports.PrefabEmbeddedEntityHash = exports.PopulationDefinitionHash = exports.PhysicalMaterialPartHash = exports.EmbeddedEntityHash = exports.ComponentHash = void 0;
/**
* EMBEDDED ENTITIES
*/
__exportStar(require("./embeddedEntities"), exports);
/**
* HASHES
*/
var ComponentHash_1 = require("./ComponentHash");
Object.defineProperty(exports, "ComponentHash", { enumerable: true, get: function () { return ComponentHash_1.ComponentHash; } });
var createString_1 = require("./createString");
Object.defineProperty(exports, "createString", { enumerable: true, get: function () { return createString_1.createString; } });
var decodeString_1 = require("./decodeString");
Object.defineProperty(exports, "decodeString", { enumerable: true, get: function () { return decodeString_1.decodeString; } });
var EmbeddedEntityHash_1 = require("./EmbeddedEntityHash");

@@ -35,3 +38,13 @@ Object.defineProperty(exports, "EmbeddedEntityHash", { enumerable: true, get: function () { return EmbeddedEntityHash_1.EmbeddedEntityHash; } });

Object.defineProperty(exports, "SpeciesHash", { enumerable: true, get: function () { return SpeciesHash_1.SpeciesHash; } });
/**
* UTILITIES
*/
__exportStar(require("./utils"), exports);
/**
* ATT STRING TRANSCODER
*/
var createString_1 = require("./createString");
Object.defineProperty(exports, "createString", { enumerable: true, get: function () { return createString_1.createString; } });
var decodeString_1 = require("./decodeString");
Object.defineProperty(exports, "decodeString", { enumerable: true, get: function () { return decodeString_1.decodeString; } });
//# sourceMappingURL=index.js.map
{
"name": "att-string-transcoder",
"version": "1.0.0-rc.1",
"version": "1.0.0-rc.2",
"description": "",
"main": "build/index.js",
"scripts": {
"postinstall": "npm run build",
"prepare": "npm run build",
"prebuild": "rimraf build/",

@@ -9,0 +9,0 @@ "build": "tsc",

@@ -0,7 +1,42 @@

/**
* COMPONENTS
*/
import * as components from './components/transcoders';
export type BasicDecay = components.BasicDecay.Component;
export type DurabilityModule = components.DurabilityModule.Component;
export type HeatSourceBase = components.HeatSourceBase.Component;
export type LiquidContainer = components.LiquidContainer.Component;
export type NetworkRigidbody = components.NetworkRigidbody.Component;
export type PhysicalMaterialPart = components.PhysicalMaterialPart.Component;
export type Pickup = components.Pickup.Component;
export type PickupDock = components.PickupDock.Component;
export type PopulationSpawnArea = components.PopulationSpawnArea.Component;
export type SpawnArea = components.SpawnArea.Component;
export type StatManager = components.StatManager.Component;
export type WoodcutTree = components.WoodcutTree.Component;
/**
* EMBEDDED ENTITIES
*/
export * from './embeddedEntities';
/**
* OBJECT SHAPES
*/
export type { DecodedString } from './decodeString';
export type { Prefab } from './decoders';
export type {
Prefab,
PrefabObject,
Components,
EmbeddedEntities,
KnownEmbeddedEntity,
UnknownEmbeddedEntity,
ChildPrefab
} from './decoders';
export type { Component, KnownComponent, UnknownComponent } from './components';
/**
* HASHES
*/
export { ComponentHash } from './ComponentHash';
export { createString } from './createString';
export { decodeString } from './decodeString';
export { EmbeddedEntityHash } from './EmbeddedEntityHash';

@@ -14,2 +49,12 @@ export { PhysicalMaterialPartHash } from './PhysicalMaterialPartHash';

export { SpeciesHash } from './SpeciesHash';
/**
* UTILITIES
*/
export * from './utils';
/**
* ATT STRING TRANSCODER
*/
export { createString } from './createString';
export { decodeString } from './decodeString';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc