evo360-types 1.3.184 → 1.3.188
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/apps/evo-crm/lead/zod-schemas.d.ts +12 -12
- package/dist/apps/evo-finops/zod-schemas.d.ts +8653 -0
- package/dist/apps/evo-finops/zod-schemas.js +492 -0
- package/dist/apps/evo-finops/zod-schemas.ts +535 -0
- package/dist/apps/evo-med/insurance/zod-schemas.d.ts +12 -12
- package/dist/apps/evo-med/people/zod-schemas.d.ts +32 -32
- package/dist/apps/shared/zod-schemas.d.ts +4 -4
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/index.ts +2 -0
- package/dist/types/evo-finops/common/taker.d.ts +46 -0
- package/dist/types/evo-finops/common/taker.js +2 -0
- package/dist/types/evo-finops/common/taker.ts +60 -0
- package/dist/types/evo-finops/common.d.ts +16 -0
- package/dist/types/evo-finops/common.js +2 -0
- package/dist/types/evo-finops/common.ts +19 -0
- package/dist/types/evo-finops/dic/issuer-tax-profile.d.ts +74 -0
- package/dist/types/evo-finops/dic/issuer-tax-profile.js +18 -0
- package/dist/types/evo-finops/dic/issuer-tax-profile.ts +105 -0
- package/dist/types/evo-finops/fb_collections.d.ts +8 -0
- package/dist/types/evo-finops/fb_collections.js +13 -0
- package/dist/types/evo-finops/fb_collections.ts +12 -0
- package/dist/types/evo-finops/index.d.ts +8 -0
- package/dist/types/evo-finops/index.js +25 -0
- package/dist/types/evo-finops/index.ts +10 -0
- package/dist/types/evo-finops/invoices/index.d.ts +127 -0
- package/dist/types/evo-finops/invoices/index.js +38 -0
- package/dist/types/evo-finops/invoices/index.ts +187 -0
- package/dist/types/evo-finops/providers/asaas/asaas_provider.d.ts +76 -0
- package/dist/types/evo-finops/providers/asaas/asaas_provider.js +14 -0
- package/dist/types/evo-finops/providers/asaas/asaas_provider.ts +121 -0
- package/dist/types/evo-finops/providers/index.d.ts +44 -0
- package/dist/types/evo-finops/providers/index.js +29 -0
- package/dist/types/evo-finops/providers/index.ts +55 -0
- package/dist/types/evo-finops/providers/provider_fiscal_types.d.ts +105 -0
- package/dist/types/evo-finops/providers/provider_fiscal_types.js +2 -0
- package/dist/types/evo-finops/providers/provider_fiscal_types.ts +154 -0
- package/package.json +1 -1
|
@@ -105,22 +105,22 @@ export declare const zLeadSchema: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
105
105
|
name: string;
|
|
106
106
|
kind: string;
|
|
107
107
|
country: string;
|
|
108
|
+
city: string;
|
|
109
|
+
state: string;
|
|
108
110
|
line1: string;
|
|
109
111
|
line2: string;
|
|
110
112
|
neighborhood: string;
|
|
111
|
-
city: string;
|
|
112
|
-
state: string;
|
|
113
113
|
zip: string;
|
|
114
114
|
geo?: any;
|
|
115
115
|
}, {
|
|
116
116
|
name?: string | undefined;
|
|
117
117
|
kind?: string | undefined;
|
|
118
118
|
country?: string | undefined;
|
|
119
|
+
city?: string | undefined;
|
|
120
|
+
state?: string | undefined;
|
|
119
121
|
line1?: string | undefined;
|
|
120
122
|
line2?: string | undefined;
|
|
121
123
|
neighborhood?: string | undefined;
|
|
122
|
-
city?: string | undefined;
|
|
123
|
-
state?: string | undefined;
|
|
124
124
|
zip?: string | undefined;
|
|
125
125
|
geo?: any;
|
|
126
126
|
}>>>;
|
|
@@ -229,22 +229,22 @@ export declare const zLeadSchema: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
229
229
|
name: string;
|
|
230
230
|
kind: string;
|
|
231
231
|
country: string;
|
|
232
|
+
city: string;
|
|
233
|
+
state: string;
|
|
232
234
|
line1: string;
|
|
233
235
|
line2: string;
|
|
234
236
|
neighborhood: string;
|
|
235
|
-
city: string;
|
|
236
|
-
state: string;
|
|
237
237
|
zip: string;
|
|
238
238
|
geo?: any;
|
|
239
239
|
}, {
|
|
240
240
|
name?: string | undefined;
|
|
241
241
|
kind?: string | undefined;
|
|
242
242
|
country?: string | undefined;
|
|
243
|
+
city?: string | undefined;
|
|
244
|
+
state?: string | undefined;
|
|
243
245
|
line1?: string | undefined;
|
|
244
246
|
line2?: string | undefined;
|
|
245
247
|
neighborhood?: string | undefined;
|
|
246
|
-
city?: string | undefined;
|
|
247
|
-
state?: string | undefined;
|
|
248
248
|
zip?: string | undefined;
|
|
249
249
|
geo?: any;
|
|
250
250
|
}>>>;
|
|
@@ -353,22 +353,22 @@ export declare const zLeadSchema: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
353
353
|
name: string;
|
|
354
354
|
kind: string;
|
|
355
355
|
country: string;
|
|
356
|
+
city: string;
|
|
357
|
+
state: string;
|
|
356
358
|
line1: string;
|
|
357
359
|
line2: string;
|
|
358
360
|
neighborhood: string;
|
|
359
|
-
city: string;
|
|
360
|
-
state: string;
|
|
361
361
|
zip: string;
|
|
362
362
|
geo?: any;
|
|
363
363
|
}, {
|
|
364
364
|
name?: string | undefined;
|
|
365
365
|
kind?: string | undefined;
|
|
366
366
|
country?: string | undefined;
|
|
367
|
+
city?: string | undefined;
|
|
368
|
+
state?: string | undefined;
|
|
367
369
|
line1?: string | undefined;
|
|
368
370
|
line2?: string | undefined;
|
|
369
371
|
neighborhood?: string | undefined;
|
|
370
|
-
city?: string | undefined;
|
|
371
|
-
state?: string | undefined;
|
|
372
372
|
zip?: string | undefined;
|
|
373
373
|
geo?: any;
|
|
374
374
|
}>>>;
|