@reservamos/browser-analytics 0.3.1-alpha.2 → 0.3.1-alpha.3

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": "@reservamos/browser-analytics",
3
- "version": "0.3.1-alpha.2",
3
+ "version": "0.3.1-alpha.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/reservamos/reservamos-browser-analytics.git"
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
- import { intField, stringField } from '@/util/primitiveFields';
2
+ import { stringField } from '@/util/primitiveFields';
3
3
 
4
4
  const passengerSchema = z
5
5
  .object({
6
6
  'Passenger Name': stringField('Passenger Name'),
7
7
  'Passenger Document Type': stringField('Document Type'),
8
- 'Passenger Document Id': intField('Document ID'),
8
+ 'Passenger Document Id': stringField('Document ID'),
9
9
  })
10
10
  .strict();
11
11