@travetto/auth-model 5.0.14 → 5.0.16

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 ArcSine Technologies
3
+ Copyright (c) 2020 ArcSine Technologies
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/auth-model",
3
- "version": "5.0.14",
3
+ "version": "5.0.16",
4
4
  "description": "Authentication model support for the Travetto framework",
5
5
  "keywords": [
6
6
  "authentication",
@@ -25,11 +25,11 @@
25
25
  "directory": "module/auth-model"
26
26
  },
27
27
  "dependencies": {
28
- "@travetto/auth": "^5.0.13",
29
- "@travetto/model": "^5.0.14"
28
+ "@travetto/auth": "^5.0.15",
29
+ "@travetto/model": "^5.0.16"
30
30
  },
31
31
  "peerDependencies": {
32
- "@travetto/test": "^5.0.15"
32
+ "@travetto/test": "^5.0.17"
33
33
  },
34
34
  "peerDependenciesMeta": {
35
35
  "@travetto/test": {
@@ -9,7 +9,7 @@ import { ModelSuite } from '@travetto/model/support/test/suite';
9
9
 
10
10
  import { ModelAuthService, RegisteredPrincipal } from '../../src/model';
11
11
 
12
- export const TestModelSvcⲐ = Symbol.for('@travetto/auth:test-model-svc');
12
+ export const TestModelSvcSymbol = Symbol.for('@travetto/auth:test-model-svc');
13
13
 
14
14
  @Model({ autoCreate: false })
15
15
  class User implements RegisteredPrincipal {
@@ -25,7 +25,7 @@ class User implements RegisteredPrincipal {
25
25
 
26
26
  class TestConfig {
27
27
  @InjectableFactory()
28
- static getAuthService(@Inject(TestModelSvcⲐ) svc: ModelCrudSupport): ModelAuthService<User> {
28
+ static getAuthService(@Inject(TestModelSvcSymbol) svc: ModelCrudSupport): ModelAuthService<User> {
29
29
  const src = new ModelAuthService<User>(
30
30
  svc,
31
31
  User,
@@ -47,7 +47,7 @@ export abstract class AuthModelServiceSuite {
47
47
  @Inject()
48
48
  authService: ModelAuthService<User>;
49
49
 
50
- @Inject(TestModelSvcⲐ)
50
+ @Inject(TestModelSvcSymbol)
51
51
  svc: ModelCrudSupport;
52
52
 
53
53
  @Test()