@trackunit/custom-field-api 0.1.88 → 0.1.90

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": "@trackunit/custom-field-api",
3
- "version": "0.1.88",
3
+ "version": "0.1.90",
4
4
  "engines": {
5
5
  "node": ">=18.x"
6
6
  },
@@ -44,6 +44,11 @@ export type Scalars = {
44
44
  input: number;
45
45
  output: number;
46
46
  };
47
+ /** The ISO 4217 currency code of the monetary field definition. */
48
+ Currency: {
49
+ input: string;
50
+ output: string;
51
+ };
47
52
  /** Cursor scalar. */
48
53
  Cursor: {
49
54
  input: string;
@@ -64,6 +69,11 @@ export type Scalars = {
64
69
  input: any;
65
70
  output: any;
66
71
  };
72
+ /** Valid email address according to https://owasp.org/www-community/OWASP_Validation_Regex_Repository */
73
+ EmailAddress: {
74
+ input: string;
75
+ output: string;
76
+ };
67
77
  /** A (possiblely multidimensional) set of coordinates following x, y, z order. */
68
78
  GeoJSONCoordinates: {
69
79
  input: number[] | number[][];
@@ -79,6 +89,11 @@ export type Scalars = {
79
89
  input: any;
80
90
  output: any;
81
91
  };
92
+ /** Phone number in E.164 format */
93
+ PhoneNumber: {
94
+ input: string;
95
+ output: string;
96
+ };
82
97
  /** The `PublicIrisAppManifest` scalar type represents an Iris App Manifest as JSON */
83
98
  PublicIrisAppManifest: {
84
99
  input: PublicIrisAppManifest;
@@ -89,6 +104,11 @@ export type Scalars = {
89
104
  input: any;
90
105
  output: any;
91
106
  };
107
+ /** Uniform resource locator */
108
+ Url: {
109
+ input: string;
110
+ output: string;
111
+ };
92
112
  };
93
113
  export declare const customFieldEntityType: {
94
114
  readonly ACCOUNT: "ACCOUNT";