react-bricks 4.0.0-beta.1 → 4.0.0-beta.2
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/frontend/package.json +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/react-bricks.d.ts +4 -0
- package/react-bricks.esm.js +1 -1
package/package.json
CHANGED
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;
|
|
@@ -1249,6 +1251,8 @@ declare const useAuth: () => {
|
|
|
1249
1251
|
isAdmin: boolean;
|
|
1250
1252
|
token: string;
|
|
1251
1253
|
appName: string;
|
|
1254
|
+
appId: string;
|
|
1255
|
+
appEnv: string;
|
|
1252
1256
|
deployHookUrl?: string | undefined;
|
|
1253
1257
|
deployHookMethod?: string | undefined;
|
|
1254
1258
|
deployHookTriggerOnScheduledPublishing: boolean;
|