@trackunit/react-date-and-time-hooks 0.0.56 → 0.0.58
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
|
@@ -79,6 +79,10 @@ export type Scalars = {
|
|
|
79
79
|
input: number[] | number[][];
|
|
80
80
|
output: number[] | number[][];
|
|
81
81
|
};
|
|
82
|
+
Integer: {
|
|
83
|
+
input: any;
|
|
84
|
+
output: any;
|
|
85
|
+
};
|
|
82
86
|
/** Raw JSON object structure, not serialized to string */
|
|
83
87
|
JSON: {
|
|
84
88
|
input: any;
|
|
@@ -89,6 +93,11 @@ export type Scalars = {
|
|
|
89
93
|
input: any;
|
|
90
94
|
output: any;
|
|
91
95
|
};
|
|
96
|
+
/** LocalDate scalar */
|
|
97
|
+
LocalDate: {
|
|
98
|
+
input: any;
|
|
99
|
+
output: any;
|
|
100
|
+
};
|
|
92
101
|
/** Javascript `Long`. Type represents a 64 bit integer. */
|
|
93
102
|
Long: {
|
|
94
103
|
input: any;
|
|
@@ -114,6 +123,11 @@ export type Scalars = {
|
|
|
114
123
|
input: string;
|
|
115
124
|
output: string;
|
|
116
125
|
};
|
|
126
|
+
/** YearMonth scalar */
|
|
127
|
+
YearMonth: {
|
|
128
|
+
input: any;
|
|
129
|
+
output: any;
|
|
130
|
+
};
|
|
117
131
|
};
|
|
118
132
|
export type GetAssetTimezoneQueryVariables = Exact<{
|
|
119
133
|
assetId: Scalars["ID"]["input"];
|