@budibase/types 3.13.12 → 3.13.13
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.
|
@@ -31,3 +31,4 @@ export type RequiredKeys<T> = {
|
|
|
31
31
|
};
|
|
32
32
|
export type WithRequired<T, K extends keyof T> = T & Required<Pick<T, K>>;
|
|
33
33
|
export type WithoutDocMetadata<T extends Document> = Omit<T, "_id" | "_rev" | "createdAt" | "updatedAt">;
|
|
34
|
+
export type Primitive = string | number | boolean | object;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/types",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.13",
|
|
4
4
|
"description": "Budibase types",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"scim-patch": "^0.8.1"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "12d0bfb1846c841fb2043159bfadc99b4424ae09"
|
|
31
31
|
}
|