@budibase/types 3.13.26 → 3.13.28

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/dist/sdk/db.d.ts CHANGED
@@ -107,7 +107,7 @@ export interface Database {
107
107
  bulkRemove(documents: Document[], opts?: {
108
108
  silenceErrors?: boolean;
109
109
  }): Promise<void>;
110
- put<T extends AnyDocument>(document: T, opts?: DatabasePutOpts & {
110
+ put<T extends AnyDocument>(document: T, opts: DatabasePutOpts & {
111
111
  returnDoc: true;
112
112
  }): Promise<Nano.DocumentInsertResponse & {
113
113
  doc: T;
@@ -18,7 +18,8 @@ export declare enum Feature {
18
18
  VIEW_READONLY_COLUMNS = "viewReadonlyColumns",
19
19
  BUDIBASE_AI = "budibaseAI",
20
20
  AI_CUSTOM_CONFIGS = "aiCustomConfigs",
21
- PWA = "pwa"
21
+ PWA = "pwa",
22
+ RECAPTCHA = "recaptcha"
22
23
  }
23
24
  export type PlanFeatures = {
24
25
  [key in PlanType]: Feature[] | undefined;
@@ -15,4 +15,5 @@ export interface BudibaseAppProps {
15
15
  nonce?: string;
16
16
  headAppScripts?: string;
17
17
  bodyAppScripts?: string;
18
+ recaptchaKey?: string;
18
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/types",
3
- "version": "3.13.26",
3
+ "version": "3.13.28",
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": "9a55f2f9e6b196e6779a01425bb17a00b3643431"
30
+ "gitHead": "de8a462d540b26a2040f4c8059d0a2395234c628"
31
31
  }