@plurid/plurid-data 0.0.0-16 → 0.0.0-17

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.
@@ -191,13 +191,25 @@ export interface PluridPubSubSubscribeMessageSpaceScaleWith {
191
191
  topic: typeof PLURID_PUBSUB_TOPIC.SPACE_SCALE_WITH;
192
192
  callback: PluridPubSubCallback<PluridPubSubDataValueNumber>;
193
193
  }
194
+ export interface SpaceTransform {
195
+ rotationX: number;
196
+ rotationY: number;
197
+ translationX: number;
198
+ translationY: number;
199
+ translationZ: number;
200
+ scale: number;
201
+ }
202
+ export interface PluridPubSubMessageSpaceTransformData {
203
+ value: SpaceTransform;
204
+ internal?: boolean;
205
+ }
194
206
  export interface PluridPubSubPublishMessageSpaceTransform {
195
207
  topic: typeof PLURID_PUBSUB_TOPIC.SPACE_TRANSFORM;
196
- data?: any;
208
+ data?: PluridPubSubMessageSpaceTransformData;
197
209
  }
198
210
  export interface PluridPubSubSubscribeMessageSpaceTransform {
199
211
  topic: typeof PLURID_PUBSUB_TOPIC.SPACE_TRANSFORM;
200
- callback: PluridPubSubCallback<any>;
212
+ callback: PluridPubSubCallback<PluridPubSubMessageSpaceTransformData>;
201
213
  }
202
214
  export interface PluridPubSubMessageViewAddPlaneData {
203
215
  plane: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plurid/plurid-data",
3
- "version": "0.0.0-16",
3
+ "version": "0.0.0-17",
4
4
  "description": "Plurid Constants, Interfaces, Enumerations",
5
5
  "keywords": [
6
6
  "plurid",
@@ -48,17 +48,17 @@
48
48
  },
49
49
  "devDependencies": {
50
50
  "@plurid/plurid-themes": "0.0.0-2",
51
- "@types/node": "^18.7.4",
52
- "@typescript-eslint/eslint-plugin": "^5.33.0",
53
- "@typescript-eslint/parser": "^5.33.0",
51
+ "@types/node": "^18.7.13",
52
+ "@typescript-eslint/eslint-plugin": "^5.35.1",
53
+ "@typescript-eslint/parser": "^5.35.1",
54
54
  "@zerollup/ts-transform-paths": "^1.7.18",
55
55
  "eslint": "^8.22.0",
56
- "rollup": "^2.78.0",
56
+ "rollup": "^2.78.1",
57
57
  "rollup-plugin-terser": "^7.0.2",
58
- "rollup-plugin-typescript2": "^0.32.1",
58
+ "rollup-plugin-typescript2": "^0.33.0",
59
59
  "ts-node": "^10.9.1",
60
60
  "ttypescript": "^1.5.13",
61
- "typescript": "^4.7.4",
61
+ "typescript": "^4.8.2",
62
62
  "typescript-transform-paths": "^3.3.1"
63
63
  }
64
64
  }