@abella-bilhalba-engenharia/api-client 0.0.23 → 0.0.24

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/dist/index.cjs CHANGED
@@ -139,15 +139,15 @@ var adminContract = {
139
139
  authorization: authorizationHeader
140
140
  }),
141
141
  body: import_zod3.default.object({
142
- name: import_zod3.default.string(),
143
- email: import_zod3.default.email(),
144
- password: import_zod3.default.string().min(8).max(128)
142
+ name: import_zod3.default.string()
143
+ // email: z.email(),
144
+ // password: z.string().min(8).max(128),
145
145
  }),
146
146
  responses: {
147
147
  201: import_zod3.default.object({
148
148
  data: import_zod3.default.object({
149
149
  name: import_zod3.default.string(),
150
- email: import_zod3.default.email(),
150
+ // email: z.email(),
151
151
  id: import_zod3.default.uuidv4()
152
152
  })
153
153
  })
package/dist/index.d.cts CHANGED
@@ -120,8 +120,6 @@ declare const adminContract: {
120
120
  method: "POST";
121
121
  body: z__default.ZodObject<{
122
122
  name: z__default.ZodString;
123
- email: z__default.ZodEmail;
124
- password: z__default.ZodString;
125
123
  }, z__default.core.$strip>;
126
124
  headers: z__default.ZodObject<{
127
125
  authorization: z__default.ZodString;
@@ -131,7 +129,6 @@ declare const adminContract: {
131
129
  201: z__default.ZodObject<{
132
130
  data: z__default.ZodObject<{
133
131
  name: z__default.ZodString;
134
- email: z__default.ZodEmail;
135
132
  id: z__default.ZodUUID;
136
133
  }, z__default.core.$strip>;
137
134
  }, z__default.core.$strip>;
@@ -238,8 +235,6 @@ declare const contract: {
238
235
  method: "POST";
239
236
  body: z.ZodObject<{
240
237
  name: z.ZodString;
241
- email: z.ZodEmail;
242
- password: z.ZodString;
243
238
  }, zod_v4_core.$strip>;
244
239
  headers: z.ZodObject<{
245
240
  authorization: z.ZodString;
@@ -275,7 +270,6 @@ declare const contract: {
275
270
  201: z.ZodObject<{
276
271
  data: z.ZodObject<{
277
272
  name: z.ZodString;
278
- email: z.ZodEmail;
279
273
  id: z.ZodUUID;
280
274
  }, zod_v4_core.$strip>;
281
275
  }, zod_v4_core.$strip>;
package/dist/index.d.ts CHANGED
@@ -120,8 +120,6 @@ declare const adminContract: {
120
120
  method: "POST";
121
121
  body: z__default.ZodObject<{
122
122
  name: z__default.ZodString;
123
- email: z__default.ZodEmail;
124
- password: z__default.ZodString;
125
123
  }, z__default.core.$strip>;
126
124
  headers: z__default.ZodObject<{
127
125
  authorization: z__default.ZodString;
@@ -131,7 +129,6 @@ declare const adminContract: {
131
129
  201: z__default.ZodObject<{
132
130
  data: z__default.ZodObject<{
133
131
  name: z__default.ZodString;
134
- email: z__default.ZodEmail;
135
132
  id: z__default.ZodUUID;
136
133
  }, z__default.core.$strip>;
137
134
  }, z__default.core.$strip>;
@@ -238,8 +235,6 @@ declare const contract: {
238
235
  method: "POST";
239
236
  body: z.ZodObject<{
240
237
  name: z.ZodString;
241
- email: z.ZodEmail;
242
- password: z.ZodString;
243
238
  }, zod_v4_core.$strip>;
244
239
  headers: z.ZodObject<{
245
240
  authorization: z.ZodString;
@@ -275,7 +270,6 @@ declare const contract: {
275
270
  201: z.ZodObject<{
276
271
  data: z.ZodObject<{
277
272
  name: z.ZodString;
278
- email: z.ZodEmail;
279
273
  id: z.ZodUUID;
280
274
  }, zod_v4_core.$strip>;
281
275
  }, zod_v4_core.$strip>;
package/dist/index.js CHANGED
@@ -98,15 +98,15 @@ var adminContract = {
98
98
  authorization: authorizationHeader
99
99
  }),
100
100
  body: z3.object({
101
- name: z3.string(),
102
- email: z3.email(),
103
- password: z3.string().min(8).max(128)
101
+ name: z3.string()
102
+ // email: z.email(),
103
+ // password: z.string().min(8).max(128),
104
104
  }),
105
105
  responses: {
106
106
  201: z3.object({
107
107
  data: z3.object({
108
108
  name: z3.string(),
109
- email: z3.email(),
109
+ // email: z.email(),
110
110
  id: z3.uuidv4()
111
111
  })
112
112
  })
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@abella-bilhalba-engenharia/api-client",
3
3
  "description": "Type-safe Client for Abella Bilhalba Engenharia API.",
4
4
  "author": "TheDevick",
5
- "version": "0.0.23",
5
+ "version": "0.0.24",
6
6
  "license": "MIT",
7
7
  "type": "module",
8
8
  "types": "./dist/index.d.ts",