@syrtis-ai/syrtis-javascript-client 0.0.39 → 0.0.42
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/README.md +1 -1
- package/dist/Common/SyrtisClient.d.ts +1 -0
- package/dist/Common/SyrtisClient.d.ts.map +1 -0
- package/dist/Common/SyrtisClient.js +8 -12
- package/dist/Common/SyrtisClient.js.map +1 -0
- package/dist/Entity/Scenario.d.ts +1 -0
- package/dist/Entity/Scenario.d.ts.map +1 -0
- package/dist/Entity/Scenario.js +4 -8
- package/dist/Entity/Scenario.js.map +1 -0
- package/dist/Entity/Session.d.ts +1 -0
- package/dist/Entity/Session.d.ts.map +1 -0
- package/dist/Entity/Session.js +4 -8
- package/dist/Entity/Session.js.map +1 -0
- package/dist/Entity/User.d.ts +1 -0
- package/dist/Entity/User.d.ts.map +1 -0
- package/dist/Entity/User.js +4 -8
- package/dist/Entity/User.js.map +1 -0
- package/dist/Repository/ScenarioRepository.d.ts +2 -1
- package/dist/Repository/ScenarioRepository.d.ts.map +1 -0
- package/dist/Repository/ScenarioRepository.js +5 -10
- package/dist/Repository/ScenarioRepository.js.map +1 -0
- package/dist/Repository/SessionRepository.d.ts +2 -1
- package/dist/Repository/SessionRepository.d.ts.map +1 -0
- package/dist/Repository/SessionRepository.js +5 -10
- package/dist/Repository/SessionRepository.js.map +1 -0
- package/dist/Repository/UserRepository.d.ts +2 -1
- package/dist/Repository/UserRepository.d.ts.map +1 -0
- package/dist/Repository/UserRepository.js +5 -10
- package/dist/Repository/UserRepository.js.map +1 -0
- package/dist/Vue/Mixin/EntityManipulator/ScenarioEntityManipulatorVueMixin.d.ts +2 -1
- package/dist/Vue/Mixin/EntityManipulator/ScenarioEntityManipulatorVueMixin.d.ts.map +1 -0
- package/dist/Vue/Mixin/EntityManipulator/ScenarioEntityManipulatorVueMixin.js +4 -8
- package/dist/Vue/Mixin/EntityManipulator/ScenarioEntityManipulatorVueMixin.js.map +1 -0
- package/dist/Vue/Mixin/EntityManipulator/SessionEntityManipulatorVueMixin.d.ts +2 -1
- package/dist/Vue/Mixin/EntityManipulator/SessionEntityManipulatorVueMixin.d.ts.map +1 -0
- package/dist/Vue/Mixin/EntityManipulator/SessionEntityManipulatorVueMixin.js +4 -8
- package/dist/Vue/Mixin/EntityManipulator/SessionEntityManipulatorVueMixin.js.map +1 -0
- package/dist/Vue/Mixin/EntityManipulator/UserEntityManipulatorVueMixin.d.ts +2 -1
- package/dist/Vue/Mixin/EntityManipulator/UserEntityManipulatorVueMixin.d.ts.map +1 -0
- package/dist/Vue/Mixin/EntityManipulator/UserEntityManipulatorVueMixin.js +4 -8
- package/dist/Vue/Mixin/EntityManipulator/UserEntityManipulatorVueMixin.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -6
- package/dist/index.js.map +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SyrtisClient.d.ts","sourceRoot":"","sources":["../../src/Common/SyrtisClient.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,yBAAyB,MAAM,mDAAmD,CAAC;AAC1F,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAKhF,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,yBAAyB;IACjE,MAAM,CAAC,QAAQ,CAAC,gBAAgB,gCAAgC;gBAEpD,OAAO,GAAE,gBAAqB;IAO1C,SAAS,CAAC,oBAAoB,IAAI,eAAe,EAAE;CAGpD"}
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
const AbstractApiEntitiesClient_1 = __importDefault(require("@wexample/js-api/Common/AbstractApiEntitiesClient"));
|
|
7
|
-
const ScenarioRepository_1 = __importDefault(require("../Repository/ScenarioRepository"));
|
|
8
|
-
const SessionRepository_1 = __importDefault(require("../Repository/SessionRepository"));
|
|
9
|
-
const UserRepository_1 = __importDefault(require("../Repository/UserRepository"));
|
|
10
|
-
class SyrtisClient extends AbstractApiEntitiesClient_1.default {
|
|
1
|
+
import AbstractApiEntitiesClient from '@wexample/js-api/Common/AbstractApiEntitiesClient';
|
|
2
|
+
import ScenarioRepository from '../Repository/ScenarioRepository.js';
|
|
3
|
+
import SessionRepository from '../Repository/SessionRepository.js';
|
|
4
|
+
import UserRepository from '../Repository/UserRepository.js';
|
|
5
|
+
class SyrtisClient extends AbstractApiEntitiesClient {
|
|
11
6
|
constructor(options = {}) {
|
|
12
7
|
super({
|
|
13
8
|
...options,
|
|
@@ -15,8 +10,9 @@ class SyrtisClient extends AbstractApiEntitiesClient_1.default {
|
|
|
15
10
|
});
|
|
16
11
|
}
|
|
17
12
|
getRepositoryClasses() {
|
|
18
|
-
return [
|
|
13
|
+
return [ScenarioRepository, SessionRepository, UserRepository];
|
|
19
14
|
}
|
|
20
15
|
}
|
|
21
16
|
SyrtisClient.DEFAULT_BASE_URL = 'https://api.syrtis.ai/api/';
|
|
22
|
-
|
|
17
|
+
export default SyrtisClient;
|
|
18
|
+
//# sourceMappingURL=SyrtisClient.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SyrtisClient.js","sourceRoot":"","sources":["../../src/Common/SyrtisClient.ts"],"names":[],"mappings":"AACA,OAAO,yBAAyB,MAAM,mDAAmD,CAAC;AAE1F,OAAO,kBAAkB,MAAM,qCAAqC,CAAC;AACrE,OAAO,iBAAiB,MAAM,oCAAoC,CAAC;AACnE,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAE7D,MAAqB,YAAa,SAAQ,yBAAyB;IAGjE,YAAY,UAA4B,EAAE;QACxC,KAAK,CAAC;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,OAAO,CAAC,OAAO,IAAI,YAAY,CAAC,gBAAgB;SAC1D,CAAC,CAAC;IACL,CAAC;IAES,oBAAoB;QAC5B,OAAO,CAAC,kBAAkB,EAAE,iBAAiB,EAAE,cAAc,CAAC,CAAC;IACjE,CAAC;;AAXe,6BAAgB,GAAG,4BAA4B,CAAC;eAD7C,YAAY"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Scenario.d.ts","sourceRoot":"","sources":["../../src/Entity/Scenario.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,EAAE,EAAE,KAAK,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAElG,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,iBAAiB;IACrD,MAAM,CAAC,QAAQ,CAAC,UAAU,cAAc;IAExC,KAAK,CAAC,EAAE,MAAM,CAAC;gBAEH,IAAI,GAAE,aAAkB;CAIrC"}
|
package/dist/Entity/Scenario.js
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const AbstractApiEntity_1 = __importDefault(require("@wexample/js-api/Common/AbstractApiEntity"));
|
|
7
|
-
class Scenario extends AbstractApiEntity_1.default {
|
|
1
|
+
import AbstractApiEntity from '@wexample/js-api/Common/AbstractApiEntity';
|
|
2
|
+
class Scenario extends AbstractApiEntity {
|
|
8
3
|
constructor(data = {}) {
|
|
9
4
|
super(data);
|
|
10
5
|
this.title = data['title'];
|
|
11
6
|
}
|
|
12
7
|
}
|
|
13
8
|
Scenario.entityName = 'scenario';
|
|
14
|
-
|
|
9
|
+
export default Scenario;
|
|
10
|
+
//# sourceMappingURL=Scenario.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Scenario.js","sourceRoot":"","sources":["../../src/Entity/Scenario.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAyC,MAAM,2CAA2C,CAAC;AAElG,MAAqB,QAAS,SAAQ,iBAAiB;IAKrD,YAAY,OAAsB,EAAE;QAClC,KAAK,CAAC,IAAI,CAAC,CAAC;QACZ,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAuB,CAAC;IACnD,CAAC;;AAPe,mBAAU,GAAG,UAAU,CAAC;eADrB,QAAQ"}
|
package/dist/Entity/Session.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Session.d.ts","sourceRoot":"","sources":["../../src/Entity/Session.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,EAAE,EAAE,KAAK,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAElG,MAAM,CAAC,OAAO,OAAO,OAAQ,SAAQ,iBAAiB;IACpD,MAAM,CAAC,QAAQ,CAAC,UAAU,aAAa;IAEvC,KAAK,CAAC,EAAE,MAAM,CAAC;gBAEH,IAAI,GAAE,aAAkB;CAIrC"}
|
package/dist/Entity/Session.js
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const AbstractApiEntity_1 = __importDefault(require("@wexample/js-api/Common/AbstractApiEntity"));
|
|
7
|
-
class Session extends AbstractApiEntity_1.default {
|
|
1
|
+
import AbstractApiEntity from '@wexample/js-api/Common/AbstractApiEntity';
|
|
2
|
+
class Session extends AbstractApiEntity {
|
|
8
3
|
constructor(data = {}) {
|
|
9
4
|
super(data);
|
|
10
5
|
this.title = data['title'];
|
|
11
6
|
}
|
|
12
7
|
}
|
|
13
8
|
Session.entityName = 'session';
|
|
14
|
-
|
|
9
|
+
export default Session;
|
|
10
|
+
//# sourceMappingURL=Session.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Session.js","sourceRoot":"","sources":["../../src/Entity/Session.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAyC,MAAM,2CAA2C,CAAC;AAElG,MAAqB,OAAQ,SAAQ,iBAAiB;IAKpD,YAAY,OAAsB,EAAE;QAClC,KAAK,CAAC,IAAI,CAAC,CAAC;QACZ,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAuB,CAAC;IACnD,CAAC;;AAPe,kBAAU,GAAG,SAAS,CAAC;eADpB,OAAO"}
|
package/dist/Entity/User.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"User.d.ts","sourceRoot":"","sources":["../../src/Entity/User.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,EAAE,EAAE,KAAK,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAElG,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,iBAAiB;IACjD,MAAM,CAAC,QAAQ,CAAC,UAAU,UAAU;IAEpC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC1B,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;gBAEN,IAAI,GAAE,aAAkB;IAUpC,OAAO,CAAC,SAAS;CAQlB"}
|
package/dist/Entity/User.js
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const AbstractApiEntity_1 = __importDefault(require("@wexample/js-api/Common/AbstractApiEntity"));
|
|
7
|
-
class User extends AbstractApiEntity_1.default {
|
|
1
|
+
import AbstractApiEntity from '@wexample/js-api/Common/AbstractApiEntity';
|
|
2
|
+
class User extends AbstractApiEntity {
|
|
8
3
|
constructor(data = {}) {
|
|
9
4
|
super(data);
|
|
10
5
|
this.username = data['username'];
|
|
@@ -23,4 +18,5 @@ class User extends AbstractApiEntity_1.default {
|
|
|
23
18
|
}
|
|
24
19
|
}
|
|
25
20
|
User.entityName = 'user';
|
|
26
|
-
|
|
21
|
+
export default User;
|
|
22
|
+
//# sourceMappingURL=User.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"User.js","sourceRoot":"","sources":["../../src/Entity/User.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAyC,MAAM,2CAA2C,CAAC;AAElG,MAAqB,IAAK,SAAQ,iBAAiB;IAUjD,YAAY,OAAsB,EAAE;QAClC,KAAK,CAAC,IAAI,CAAC,CAAC;QACZ,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAuB,CAAC;QACvD,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC;QACxD,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;QAC7D,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAuB,CAAC;QACjD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,YAAY,CAAuB,CAAC;QAC1D,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAuB,CAAC;IAC1D,CAAC;IAEO,SAAS,CAAC,KAAc;QAC9B,IAAI,CAAC,KAAK,EAAE,CAAC;YACX,OAAO,IAAI,CAAC;QACd,CAAC;QAED,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;QACrC,OAAO,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC;IACpD,CAAC;;AA1Be,eAAU,GAAG,MAAM,CAAC;eADjB,IAAI"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import AbstractApiRepository from '@wexample/js-api/Common/AbstractApiRepository';
|
|
2
|
-
import Scenario from '../Entity/Scenario';
|
|
2
|
+
import Scenario from '../Entity/Scenario.js';
|
|
3
3
|
export default class ScenarioRepository extends AbstractApiRepository<Scenario> {
|
|
4
4
|
static getEntityType(): typeof Scenario;
|
|
5
5
|
}
|
|
6
|
+
//# sourceMappingURL=ScenarioRepository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScenarioRepository.d.ts","sourceRoot":"","sources":["../../src/Repository/ScenarioRepository.ts"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,MAAM,+CAA+C,CAAC;AAClF,OAAO,QAAQ,MAAM,uBAAuB,CAAC;AAE7C,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,qBAAqB,CAAC,QAAQ,CAAC;IAC7E,MAAM,CAAC,aAAa;CAGrB"}
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const AbstractApiRepository_1 = __importDefault(require("@wexample/js-api/Common/AbstractApiRepository"));
|
|
7
|
-
const Scenario_1 = __importDefault(require("../Entity/Scenario"));
|
|
8
|
-
class ScenarioRepository extends AbstractApiRepository_1.default {
|
|
1
|
+
import AbstractApiRepository from '@wexample/js-api/Common/AbstractApiRepository';
|
|
2
|
+
import Scenario from '../Entity/Scenario.js';
|
|
3
|
+
export default class ScenarioRepository extends AbstractApiRepository {
|
|
9
4
|
static getEntityType() {
|
|
10
|
-
return
|
|
5
|
+
return Scenario;
|
|
11
6
|
}
|
|
12
7
|
}
|
|
13
|
-
|
|
8
|
+
//# sourceMappingURL=ScenarioRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScenarioRepository.js","sourceRoot":"","sources":["../../src/Repository/ScenarioRepository.ts"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,MAAM,+CAA+C,CAAC;AAClF,OAAO,QAAQ,MAAM,uBAAuB,CAAC;AAE7C,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,qBAA+B;IAC7E,MAAM,CAAC,aAAa;QAClB,OAAO,QAAQ,CAAC;IAClB,CAAC;CACF"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import AbstractApiRepository from '@wexample/js-api/Common/AbstractApiRepository';
|
|
2
|
-
import Session from '../Entity/Session';
|
|
2
|
+
import Session from '../Entity/Session.js';
|
|
3
3
|
export default class SessionRepository extends AbstractApiRepository<Session> {
|
|
4
4
|
static getEntityType(): typeof Session;
|
|
5
5
|
}
|
|
6
|
+
//# sourceMappingURL=SessionRepository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SessionRepository.d.ts","sourceRoot":"","sources":["../../src/Repository/SessionRepository.ts"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,MAAM,+CAA+C,CAAC;AAClF,OAAO,OAAO,MAAM,sBAAsB,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,qBAAqB,CAAC,OAAO,CAAC;IAC3E,MAAM,CAAC,aAAa;CAGrB"}
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const AbstractApiRepository_1 = __importDefault(require("@wexample/js-api/Common/AbstractApiRepository"));
|
|
7
|
-
const Session_1 = __importDefault(require("../Entity/Session"));
|
|
8
|
-
class SessionRepository extends AbstractApiRepository_1.default {
|
|
1
|
+
import AbstractApiRepository from '@wexample/js-api/Common/AbstractApiRepository';
|
|
2
|
+
import Session from '../Entity/Session.js';
|
|
3
|
+
export default class SessionRepository extends AbstractApiRepository {
|
|
9
4
|
static getEntityType() {
|
|
10
|
-
return
|
|
5
|
+
return Session;
|
|
11
6
|
}
|
|
12
7
|
}
|
|
13
|
-
|
|
8
|
+
//# sourceMappingURL=SessionRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SessionRepository.js","sourceRoot":"","sources":["../../src/Repository/SessionRepository.ts"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,MAAM,+CAA+C,CAAC;AAClF,OAAO,OAAO,MAAM,sBAAsB,CAAC;AAE3C,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,qBAA8B;IAC3E,MAAM,CAAC,aAAa;QAClB,OAAO,OAAO,CAAC;IACjB,CAAC;CACF"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import AbstractApiRepository from '@wexample/js-api/Common/AbstractApiRepository';
|
|
2
|
-
import User from '../Entity/User';
|
|
2
|
+
import User from '../Entity/User.js';
|
|
3
3
|
export default class UserRepository extends AbstractApiRepository<User> {
|
|
4
4
|
static getEntityType(): typeof User;
|
|
5
5
|
}
|
|
6
|
+
//# sourceMappingURL=UserRepository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UserRepository.d.ts","sourceRoot":"","sources":["../../src/Repository/UserRepository.ts"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,MAAM,+CAA+C,CAAC;AAClF,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAErC,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,qBAAqB,CAAC,IAAI,CAAC;IACrE,MAAM,CAAC,aAAa;CAGrB"}
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const AbstractApiRepository_1 = __importDefault(require("@wexample/js-api/Common/AbstractApiRepository"));
|
|
7
|
-
const User_1 = __importDefault(require("../Entity/User"));
|
|
8
|
-
class UserRepository extends AbstractApiRepository_1.default {
|
|
1
|
+
import AbstractApiRepository from '@wexample/js-api/Common/AbstractApiRepository';
|
|
2
|
+
import User from '../Entity/User.js';
|
|
3
|
+
export default class UserRepository extends AbstractApiRepository {
|
|
9
4
|
static getEntityType() {
|
|
10
|
-
return
|
|
5
|
+
return User;
|
|
11
6
|
}
|
|
12
7
|
}
|
|
13
|
-
|
|
8
|
+
//# sourceMappingURL=UserRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UserRepository.js","sourceRoot":"","sources":["../../src/Repository/UserRepository.ts"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,MAAM,+CAA+C,CAAC;AAClF,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAErC,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,qBAA2B;IACrE,MAAM,CAAC,aAAa;QAClB,OAAO,IAAI,CAAC;IACd,CAAC;CACF"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import Scenario from '../../../Entity/Scenario';
|
|
1
|
+
import Scenario from '../../../Entity/Scenario.js';
|
|
2
2
|
declare const _default: {
|
|
3
3
|
methods: {
|
|
4
4
|
getEntityClass(): typeof Scenario;
|
|
5
5
|
};
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
|
+
//# sourceMappingURL=ScenarioEntityManipulatorVueMixin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScenarioEntityManipulatorVueMixin.d.ts","sourceRoot":"","sources":["../../../../src/Vue/Mixin/EntityManipulator/ScenarioEntityManipulatorVueMixin.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,6BAA6B,CAAC;;;;;;AAEnD,wBAME"}
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const Scenario_1 = __importDefault(require("../../../Entity/Scenario"));
|
|
7
|
-
exports.default = {
|
|
1
|
+
import Scenario from '../../../Entity/Scenario.js';
|
|
2
|
+
export default {
|
|
8
3
|
methods: {
|
|
9
4
|
getEntityClass() {
|
|
10
|
-
return
|
|
5
|
+
return Scenario;
|
|
11
6
|
},
|
|
12
7
|
},
|
|
13
8
|
};
|
|
9
|
+
//# sourceMappingURL=ScenarioEntityManipulatorVueMixin.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScenarioEntityManipulatorVueMixin.js","sourceRoot":"","sources":["../../../../src/Vue/Mixin/EntityManipulator/ScenarioEntityManipulatorVueMixin.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,6BAA6B,CAAC;AAEnD,eAAe;IACb,OAAO,EAAE;QACP,cAAc;YACZ,OAAO,QAAQ,CAAC;QAClB,CAAC;KACF;CACF,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import Session from '../../../Entity/Session';
|
|
1
|
+
import Session from '../../../Entity/Session.js';
|
|
2
2
|
declare const _default: {
|
|
3
3
|
methods: {
|
|
4
4
|
getEntityClass(): typeof Session;
|
|
5
5
|
};
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
|
+
//# sourceMappingURL=SessionEntityManipulatorVueMixin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SessionEntityManipulatorVueMixin.d.ts","sourceRoot":"","sources":["../../../../src/Vue/Mixin/EntityManipulator/SessionEntityManipulatorVueMixin.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,4BAA4B,CAAC;;;;;;AAEjD,wBAME"}
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const Session_1 = __importDefault(require("../../../Entity/Session"));
|
|
7
|
-
exports.default = {
|
|
1
|
+
import Session from '../../../Entity/Session.js';
|
|
2
|
+
export default {
|
|
8
3
|
methods: {
|
|
9
4
|
getEntityClass() {
|
|
10
|
-
return
|
|
5
|
+
return Session;
|
|
11
6
|
},
|
|
12
7
|
},
|
|
13
8
|
};
|
|
9
|
+
//# sourceMappingURL=SessionEntityManipulatorVueMixin.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SessionEntityManipulatorVueMixin.js","sourceRoot":"","sources":["../../../../src/Vue/Mixin/EntityManipulator/SessionEntityManipulatorVueMixin.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,4BAA4B,CAAC;AAEjD,eAAe;IACb,OAAO,EAAE;QACP,cAAc;YACZ,OAAO,OAAO,CAAC;QACjB,CAAC;KACF;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UserEntityManipulatorVueMixin.d.ts","sourceRoot":"","sources":["../../../../src/Vue/Mixin/EntityManipulator/UserEntityManipulatorVueMixin.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,yBAAyB,CAAC;;;;;;AAE3C,wBAME"}
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const User_1 = __importDefault(require("../../../Entity/User"));
|
|
7
|
-
exports.default = {
|
|
1
|
+
import User from '../../../Entity/User.js';
|
|
2
|
+
export default {
|
|
8
3
|
methods: {
|
|
9
4
|
getEntityClass() {
|
|
10
|
-
return
|
|
5
|
+
return User;
|
|
11
6
|
},
|
|
12
7
|
},
|
|
13
8
|
};
|
|
9
|
+
//# sourceMappingURL=UserEntityManipulatorVueMixin.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UserEntityManipulatorVueMixin.js","sourceRoot":"","sources":["../../../../src/Vue/Mixin/EntityManipulator/UserEntityManipulatorVueMixin.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,yBAAyB,CAAC;AAE3C,eAAe;IACb,OAAO,EAAE;QACP,cAAc;YACZ,OAAO,IAAI,CAAC;QACd,CAAC;KACF;CACF,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,qBAAa,YAAY;IACvB,OAAO,CAAC,OAAO,CAAS;gBAEZ,OAAO,EAAE,MAAM;IAI3B;;OAEG;IACH,UAAU,IAAI,MAAM;CAGrB;AAED,eAAe,YAAY,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/**
|
|
3
2
|
* Syrtis Client
|
|
4
3
|
* Main entry point for the Syrtis JavaScript/TypeScript client
|
|
5
4
|
*/
|
|
6
|
-
|
|
7
|
-
exports.SyrtisClient = void 0;
|
|
8
|
-
class SyrtisClient {
|
|
5
|
+
export class SyrtisClient {
|
|
9
6
|
constructor(baseUrl) {
|
|
10
7
|
this.baseUrl = baseUrl;
|
|
11
8
|
}
|
|
@@ -16,5 +13,5 @@ class SyrtisClient {
|
|
|
16
13
|
return this.baseUrl;
|
|
17
14
|
}
|
|
18
15
|
}
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
export default SyrtisClient;
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,OAAO,YAAY;IAGvB,YAAY,OAAe;QACzB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAED;;OAEG;IACH,UAAU;QACR,OAAO,IAAI,CAAC,OAAO,CAAC;IACtB,CAAC;CACF;AAED,eAAe,YAAY,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syrtis-ai/syrtis-javascript-client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.42",
|
|
4
4
|
"description": "Syrtis JavaScript/TypeScript client",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@wexample/js-api": "0.0.
|
|
35
|
+
"@wexample/js-api": "0.0.14"
|
|
36
36
|
},
|
|
37
37
|
"repository": "https://github.com/Syrtis-AI/syrtis-javascript-client"
|
|
38
38
|
}
|