@gwigz/slua-types 0.3.0 → 1.0.0

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.
Files changed (2) hide show
  1. package/index.d.ts +18 -18
  2. package/package.json +4 -1
package/index.d.ts CHANGED
@@ -4314,7 +4314,7 @@ declare const COMBAT_CHANNEL: number
4314
4314
  * Messages from the region to the COMBAT_CHANNEL will all be from this ID.
4315
4315
  * Scripts may filter llListen calls on this ID to receive only system generated combat log messages.
4316
4316
  */
4317
- declare const COMBAT_LOG_ID: string
4317
+ declare const COMBAT_LOG_ID: uuid
4318
4318
  /** "application/atom+xml" */
4319
4319
  declare const CONTENT_TYPE_ATOM: number
4320
4320
  /** "application/x-www-form-urlencoded" */
@@ -4513,17 +4513,17 @@ declare const HTTP_PRAGMA_NO_CACHE: number
4513
4513
  declare const HTTP_USER_AGENT: number
4514
4514
  declare const HTTP_VERBOSE_THROTTLE: number
4515
4515
  declare const HTTP_VERIFY_CERT: number
4516
- declare const IMG_USE_BAKED_AUX1: string
4517
- declare const IMG_USE_BAKED_AUX2: string
4518
- declare const IMG_USE_BAKED_AUX3: string
4519
- declare const IMG_USE_BAKED_EYES: string
4520
- declare const IMG_USE_BAKED_HAIR: string
4521
- declare const IMG_USE_BAKED_HEAD: string
4522
- declare const IMG_USE_BAKED_LEFTARM: string
4523
- declare const IMG_USE_BAKED_LEFTLEG: string
4524
- declare const IMG_USE_BAKED_LOWER: string
4525
- declare const IMG_USE_BAKED_SKIRT: string
4526
- declare const IMG_USE_BAKED_UPPER: string
4516
+ declare const IMG_USE_BAKED_AUX1: uuid
4517
+ declare const IMG_USE_BAKED_AUX2: uuid
4518
+ declare const IMG_USE_BAKED_AUX3: uuid
4519
+ declare const IMG_USE_BAKED_EYES: uuid
4520
+ declare const IMG_USE_BAKED_HAIR: uuid
4521
+ declare const IMG_USE_BAKED_HEAD: uuid
4522
+ declare const IMG_USE_BAKED_LEFTARM: uuid
4523
+ declare const IMG_USE_BAKED_LEFTLEG: uuid
4524
+ declare const IMG_USE_BAKED_LOWER: uuid
4525
+ declare const IMG_USE_BAKED_SKIRT: uuid
4526
+ declare const IMG_USE_BAKED_UPPER: uuid
4527
4527
  declare const INVENTORY_ALL: number
4528
4528
  declare const INVENTORY_ANIMATION: number
4529
4529
  declare const INVENTORY_BODYPART: number
@@ -4656,7 +4656,7 @@ declare const MASK_OWNER: number
4656
4656
  /** Indicates a notecard read was attempted and the notecard was not yet cached on the server. */
4657
4657
  declare const NAK: string
4658
4658
  declare const NAVIGATE_TO_GOAL_REACHED_DIST: number
4659
- declare const NULL_KEY: string
4659
+ declare const NULL_KEY: uuid
4660
4660
  /**
4661
4661
  * Retrieves the account level of an avatar.
4662
4662
  * Returns 0 when the avatar has a basic account,
@@ -5623,11 +5623,11 @@ declare const TERRAIN_PBR_SCALE_1: number
5623
5623
  declare const TERRAIN_PBR_SCALE_2: number
5624
5624
  declare const TERRAIN_PBR_SCALE_3: number
5625
5625
  declare const TERRAIN_PBR_SCALE_4: number
5626
- declare const TEXTURE_BLANK: string
5627
- declare const TEXTURE_DEFAULT: string
5628
- declare const TEXTURE_MEDIA: string
5629
- declare const TEXTURE_PLYWOOD: string
5630
- declare const TEXTURE_TRANSPARENT: string
5626
+ declare const TEXTURE_BLANK: uuid
5627
+ declare const TEXTURE_DEFAULT: uuid
5628
+ declare const TEXTURE_MEDIA: uuid
5629
+ declare const TEXTURE_PLYWOOD: uuid
5630
+ declare const TEXTURE_TRANSPARENT: uuid
5631
5631
  declare const TOUCH_INVALID_FACE: number
5632
5632
  declare const TOUCH_INVALID_TEXCOORD: vector
5633
5633
  declare const TOUCH_INVALID_VECTOR: vector
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gwigz/slua-types",
3
- "version": "0.3.0",
3
+ "version": "1.0.0",
4
4
  "description": "TypeScript type definitions for Second Life's SLua runtime",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -13,6 +13,9 @@
13
13
  "modules"
14
14
  ],
15
15
  "types": "index.d.ts",
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
16
19
  "peerDependencies": {
17
20
  "@typescript-to-lua/language-extensions": "^1.0.0"
18
21
  }