adamo-types 1.0.21 → 1.0.25

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.
@@ -0,0 +1 @@
1
+ export * from './request/admin.user.request'
@@ -1,4 +1,9 @@
1
- interface Users {
1
+ export interface UserCreationDTO {
2
+ ticket: string
3
+ users: User[]
4
+ }
5
+
6
+ export interface User {
2
7
  name: string
3
8
  email: string
4
9
  language: string
@@ -10,5 +15,3 @@ interface Users {
10
15
  channel: string[]
11
16
  salesman: boolean
12
17
  }
13
-
14
- export type UserCreationDTO = Users[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adamo-types",
3
- "version": "1.0.21",
3
+ "version": "1.0.25",
4
4
  "description": "A types library for api communication agreement",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {