@authenty/authapi-types 1.0.4 → 1.0.5

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/general.d.ts CHANGED
@@ -185,6 +185,7 @@ export type LocalUser = {
185
185
  end_street?: string;
186
186
  end_zip?: string;
187
187
  email_verif: boolean;
188
+ fiscal_verif: boolean;
188
189
  terms: boolean;
189
190
  cpf?: string;
190
191
  newslatter?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authenty/authapi-types",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Shared types for Authenty API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/general.ts CHANGED
@@ -197,6 +197,7 @@ export type LocalUser = {
197
197
  end_zip?: string,
198
198
 
199
199
  email_verif: boolean,
200
+ fiscal_verif: boolean,
200
201
  terms: boolean,
201
202
 
202
203
  cpf?: string,