@servicetitan/standalone-root 1.5.0 → 1.6.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v1.6.0 (Thu Aug 07 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - [standalone-root]: change symbol name [#77](https://github.com/servicetitan/standalone-fe/pull/77) ([@dkhachatryan-st](https://github.com/dkhachatryan-st))
6
+
7
+ #### Authors: 1
8
+
9
+ - David Khachatryan ([@dkhachatryan-st](https://github.com/dkhachatryan-st))
10
+
11
+ ---
12
+
1
13
  # v1.5.0 (Thu Aug 07 2025)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -1 +1 @@
1
- {"version":3,"file":"symbols.d.ts","sourceRoot":"","sources":["../../src/utils/symbols.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,mBAAmB,eAA4B,CAAC;AAC7D,eAAO,MAAM,kBAAkB,eAAoC,CAAC;AACpE,eAAO,MAAM,iBAAiB,eAAyC,CAAC"}
1
+ {"version":3,"file":"symbols.d.ts","sourceRoot":"","sources":["../../src/utils/symbols.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,mBAAmB,eAA4B,CAAC;AAC7D,eAAO,MAAM,kBAAkB,eAAoC,CAAC;AACpE,eAAO,MAAM,iBAAiB,eAAmC,CAAC"}
@@ -1,7 +1,7 @@
1
1
  const rootSymbolKey = 'standalone-root-symbol-key';
2
2
  const eventEmitterSymbolKey = 'standalone-root-event-emitter-symbol-key';
3
- const registeredChangesSymbolKey = 'standalone-root-modifiable-changes-symbol-key';
3
+ const sideEffectsSymbolKey = 'standalone-root-side-effects-symbol-key';
4
4
  export const isInitializedSymbol = Symbol.for(rootSymbolKey);
5
5
  export const eventEmitterSymbol = Symbol.for(eventEmitterSymbolKey);
6
- export const sideEffectsSymbol = Symbol.for(registeredChangesSymbolKey);
6
+ export const sideEffectsSymbol = Symbol.for(sideEffectsSymbolKey);
7
7
  //# sourceMappingURL=symbols.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"symbols.js","sourceRoot":"","sources":["../../src/utils/symbols.ts"],"names":[],"mappings":"AAAA,MAAM,aAAa,GAAG,4BAA4B,CAAC;AACnD,MAAM,qBAAqB,GAAG,0CAA0C,CAAC;AACzE,MAAM,0BAA0B,GAAG,+CAA+C,CAAC;AAEnF,MAAM,CAAC,MAAM,mBAAmB,GAAG,MAAM,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;AAC7D,MAAM,CAAC,MAAM,kBAAkB,GAAG,MAAM,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;AACpE,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC"}
1
+ {"version":3,"file":"symbols.js","sourceRoot":"","sources":["../../src/utils/symbols.ts"],"names":[],"mappings":"AAAA,MAAM,aAAa,GAAG,4BAA4B,CAAC;AACnD,MAAM,qBAAqB,GAAG,0CAA0C,CAAC;AACzE,MAAM,oBAAoB,GAAG,yCAAyC,CAAC;AAEvE,MAAM,CAAC,MAAM,mBAAmB,GAAG,MAAM,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;AAC7D,MAAM,CAAC,MAAM,kBAAkB,GAAG,MAAM,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;AACpE,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servicetitan/standalone-root",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Root data providers for Standalone MFEs and Hosts",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
@@ -33,5 +33,5 @@
33
33
  "cli": {
34
34
  "webpack": false
35
35
  },
36
- "gitHead": "53f5d3c84cb46082a71257b267072489ffefe63b"
36
+ "gitHead": "f1ca6ac37d8ef960077201e96fe764ef984e1328"
37
37
  }
@@ -1,7 +1,7 @@
1
1
  const rootSymbolKey = 'standalone-root-symbol-key';
2
2
  const eventEmitterSymbolKey = 'standalone-root-event-emitter-symbol-key';
3
- const registeredChangesSymbolKey = 'standalone-root-modifiable-changes-symbol-key';
3
+ const sideEffectsSymbolKey = 'standalone-root-side-effects-symbol-key';
4
4
 
5
5
  export const isInitializedSymbol = Symbol.for(rootSymbolKey);
6
6
  export const eventEmitterSymbol = Symbol.for(eventEmitterSymbolKey);
7
- export const sideEffectsSymbol = Symbol.for(registeredChangesSymbolKey);
7
+ export const sideEffectsSymbol = Symbol.for(sideEffectsSymbolKey);