fable 3.0.104 → 3.0.105

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fable",
3
- "version": "3.0.104",
3
+ "version": "3.0.105",
4
4
  "description": "An entity behavior management and API bundling library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
package/source/Fable.js CHANGED
@@ -101,6 +101,11 @@ class Fable extends libFableServiceBase.CoreServiceProviderBase
101
101
  return this.UUID.getUUID();
102
102
  }
103
103
 
104
+ newAnticipate()
105
+ {
106
+ return this.instantiateServiceProviderWithoutRegistration('Anticipate');
107
+ }
108
+
104
109
  /* Service Manager Methods */
105
110
  addServiceType(pServiceType, pServiceClass)
106
111
  {
@@ -58,7 +58,7 @@ suite
58
58
  function (fTestComplete)
59
59
  {
60
60
  let testFable = new libFable();
61
- let tmpAnticipate = testFable.instantiateServiceProvider('Anticipate');
61
+ let tmpAnticipate = testFable.newAnticipate();
62
62
  tmpAnticipate.maxOperations = 2;
63
63
  tmpAnticipate.anticipate(function (fCallback)
64
64
  {