@trackunit/custom-field-api 0.0.24 → 0.1.1
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
|
@@ -38,11 +38,16 @@ export type Scalars = {
|
|
|
38
38
|
input: string;
|
|
39
39
|
output: string;
|
|
40
40
|
};
|
|
41
|
-
/**
|
|
41
|
+
/** DateTime represents a “date-time” as specified in section 5.6 of RFC 3339 */
|
|
42
42
|
DateTime: {
|
|
43
43
|
input: DateTimeISOString;
|
|
44
44
|
output: DateTimeISOString;
|
|
45
45
|
};
|
|
46
|
+
/** Duration represents an ISO 8601 duration */
|
|
47
|
+
Duration: {
|
|
48
|
+
input: any;
|
|
49
|
+
output: any;
|
|
50
|
+
};
|
|
46
51
|
/** A (possiblely multidimensional) set of coordinates following x, y, z order. */
|
|
47
52
|
GeoJSONCoordinates: {
|
|
48
53
|
input: number[] | number[][];
|
|
@@ -53,6 +58,11 @@ export type Scalars = {
|
|
|
53
58
|
input: any;
|
|
54
59
|
output: any;
|
|
55
60
|
};
|
|
61
|
+
/** Javascript `Long`. Type represents a 64 bit integer. */
|
|
62
|
+
Long: {
|
|
63
|
+
input: any;
|
|
64
|
+
output: any;
|
|
65
|
+
};
|
|
56
66
|
/** The `PublicIrisAppManifest` scalar type represents an Iris App Manifest as JSON */
|
|
57
67
|
PublicIrisAppManifest: {
|
|
58
68
|
input: PublicIrisAppManifest;
|