@merkaly/api 0.1.10-7 → 0.1.10-8

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": "@merkaly/api",
3
- "version": "0.1.10-7",
3
+ "version": "0.1.10-8",
4
4
  "description": "NestJS Backend ApiRest Service",
5
5
  "author": "Randy Tellez Galan <kronhyx@gmail.com>",
6
6
  "license": "UNLICENSED",
@@ -0,0 +1,9 @@
1
+ import { AddOrganizationEnabledConnection, UpdateOrganizationEnabledConnection } from 'auth0';
2
+ export declare class CreateConnectionValidator implements AddOrganizationEnabledConnection {
3
+ connection_id: string;
4
+ assign_membership_on_login: boolean;
5
+ }
6
+ export declare class UpdateConnectionValidator implements UpdateOrganizationEnabledConnection {
7
+ assign_membership_on_login: boolean;
8
+ }
9
+ //# sourceMappingURL=connection.validator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"connection.validator.d.ts","sourceRoot":"","sources":["connection.validator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gCAAgC,EAAE,mCAAmC,EAAE,MAAM,OAAO,CAAA;AAG7F,qBAAa,yBAA0B,YAAW,gCAAgC;IAEhF,aAAa,EAAE,MAAM,CAAA;IAGrB,0BAA0B,EAAE,OAAO,CAAA;CACpC;AAED,qBAAa,yBAA0B,YAAW,mCAAmC;IAEnF,0BAA0B,EAAE,OAAO,CAAA;CACpC"}
@@ -0,0 +1,15 @@
1
+ import { AddOrganizationEnabledConnection, UpdateOrganizationEnabledConnection } from 'auth0'
2
+ import { IsBoolean, IsString } from 'class-validator'
3
+
4
+ export class CreateConnectionValidator implements AddOrganizationEnabledConnection {
5
+ @IsString()
6
+ connection_id: string
7
+
8
+ @IsBoolean()
9
+ assign_membership_on_login: boolean
10
+ }
11
+
12
+ export class UpdateConnectionValidator implements UpdateOrganizationEnabledConnection {
13
+ @IsBoolean()
14
+ assign_membership_on_login: boolean
15
+ }
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=extra.validator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extra.validator.d.ts","sourceRoot":"","sources":["extra.validator.ts"],"names":[],"mappings":""}
File without changes