react-bricks 4.0.0-beta.1 → 4.0.0-beta.3

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": "react-bricks",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.0.0-beta.3",
4
4
  "description": "React Bricks is a CMS with visual editing based on React components for Next.js, Gatsby and Remix.",
5
5
  "keywords": [
6
6
  "react bricks",
package/react-bricks.d.ts CHANGED
@@ -205,6 +205,8 @@ declare namespace types {
205
205
  isAdmin: boolean;
206
206
  token: string;
207
207
  appName: string;
208
+ appId: string;
209
+ appEnv: string;
208
210
  deployHookUrl?: string;
209
211
  deployHookMethod?: string;
210
212
  deployHookTriggerOnScheduledPublishing: boolean;
@@ -237,6 +239,7 @@ declare namespace types {
237
239
  embedPages: boolean;
238
240
  lockBlocks: boolean;
239
241
  flexibleRoles: boolean;
242
+ advancedSeo: boolean;
240
243
  eventsLog: boolean;
241
244
  maxFileSize: number;
242
245
  maxImageSize: number;
@@ -1249,6 +1252,8 @@ declare const useAuth: () => {
1249
1252
  isAdmin: boolean;
1250
1253
  token: string;
1251
1254
  appName: string;
1255
+ appId: string;
1256
+ appEnv: string;
1252
1257
  deployHookUrl?: string | undefined;
1253
1258
  deployHookMethod?: string | undefined;
1254
1259
  deployHookTriggerOnScheduledPublishing: boolean;
@@ -1281,6 +1286,7 @@ declare const useAuth: () => {
1281
1286
  embedPages: boolean;
1282
1287
  lockBlocks: boolean;
1283
1288
  flexibleRoles: boolean;
1289
+ advancedSeo: boolean;
1284
1290
  eventsLog: boolean;
1285
1291
  maxFileSize: number;
1286
1292
  maxImageSize: number;