@budibase/types 3.16.1 → 3.17.0
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/api/web/app/deployment.d.ts +0 -1
- package/dist/api/web/app/index.d.ts +1 -0
- package/dist/api/web/app/screen.d.ts +1 -0
- package/dist/api/web/app/static.d.ts +1 -1
- package/dist/api/web/app/workspaceApp.d.ts +2 -0
- package/dist/api/web/app/workspaceFavourites.d.ts +25 -0
- package/dist/documents/app/automation/schema.d.ts +1 -1
- package/dist/documents/app/index.d.ts +1 -0
- package/dist/documents/app/workspaceFavourite.d.ts +7 -0
- package/dist/documents/document.d.ts +2 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +4 -4
- package/dist/sdk/events/event.d.ts +8 -1
- package/dist/sdk/events/identification.d.ts +2 -0
- package/dist/sdk/events/index.d.ts +1 -0
- package/dist/sdk/events/view.d.ts +2 -1
- package/dist/sdk/events/workspaceApp.d.ts +7 -0
- package/dist/sdk/featureFlag.d.ts +1 -1
- package/dist/ui/stores/automations.d.ts +5 -1
- package/dist/ui/workspaceApps.d.ts +2 -0
- package/package.json +2 -2
|
@@ -132,9 +132,16 @@ export declare enum Event {
|
|
|
132
132
|
ROW_ACTION_CREATED = "row_action:created",
|
|
133
133
|
ACTION_AUTOMATION_STEP_EXECUTED = "action:automation_step:executed",
|
|
134
134
|
ACTION_CRUD_EXECUTED = "action:crud:executed",
|
|
135
|
-
ACTION_AI_AGENT_EXECUTED = "action:ai_agent:executed"
|
|
135
|
+
ACTION_AI_AGENT_EXECUTED = "action:ai_agent:executed",
|
|
136
|
+
WORKSPACE_CREATED = "workspace:created",
|
|
137
|
+
WORKSPACE_UPDATED = "workspace:updated",
|
|
138
|
+
WORKSPACE_DELETED = "workspace:deleted",
|
|
139
|
+
WORKSPACE_APP_CREATED = "workspace_app:created",
|
|
140
|
+
WORKSPACE_APP_UPDATED = "workspace_app:updated",
|
|
141
|
+
WORKSPACE_APP_DELETED = "workspace_app:deleted"
|
|
136
142
|
}
|
|
137
143
|
export declare const UserGroupSyncEvents: Event[];
|
|
144
|
+
export declare const WorkspaceResourceEvents: Event[];
|
|
138
145
|
export declare const AsyncEvents: Event[];
|
|
139
146
|
export declare const AuditedEventFriendlyName: Record<Event, string | undefined>;
|
|
140
147
|
export interface BaseEvent {
|
|
@@ -12,6 +12,8 @@ export interface Group {
|
|
|
12
12
|
export interface TenantGroup extends Group {
|
|
13
13
|
profession?: string;
|
|
14
14
|
companySize?: string;
|
|
15
|
+
createdAt?: string | number;
|
|
16
|
+
createdVersion: string;
|
|
15
17
|
installationId: string;
|
|
16
18
|
}
|
|
17
19
|
export interface InstallationGroup extends Group {
|
|
@@ -9,7 +9,8 @@ export interface ViewUpdatedEvent extends BaseEvent {
|
|
|
9
9
|
tableId: string;
|
|
10
10
|
}
|
|
11
11
|
export interface ViewDeletedEvent extends BaseEvent {
|
|
12
|
-
tableId
|
|
12
|
+
tableId?: string;
|
|
13
|
+
id?: string;
|
|
13
14
|
}
|
|
14
15
|
export interface ViewExportedEvent extends BaseEvent {
|
|
15
16
|
tableId: string;
|
|
@@ -4,7 +4,7 @@ export declare enum FeatureFlag {
|
|
|
4
4
|
AI_JS_GENERATION = "AI_JS_GENERATION",
|
|
5
5
|
AI_TABLE_GENERATION = "AI_TABLE_GENERATION",
|
|
6
6
|
AI_AGENTS = "AI_AGENTS",
|
|
7
|
-
|
|
7
|
+
WORKSPACES = "WORKSPACES",
|
|
8
8
|
DIRECT_LOGIN_TO_ACCOUNT_PORTAL = "DIRECT_LOGIN_TO_ACCOUNT_PORTAL"
|
|
9
9
|
}
|
|
10
10
|
export declare const FeatureFlagDefaults: Record<FeatureFlag, boolean>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { GetAutomationActionDefinitionsResponse, GetAutomationTriggerDefinitionsResponse } from "../../api";
|
|
1
|
+
import { GetAutomationActionDefinitionsResponse, GetAutomationTriggerDefinitionsResponse, PublishStatusResource } from "../../api";
|
|
2
|
+
import { Automation } from "../../documents";
|
|
2
3
|
export interface BlockPath {
|
|
3
4
|
stepIdx: number;
|
|
4
5
|
branchIdx: number;
|
|
@@ -21,3 +22,6 @@ export interface BlockDefinitions {
|
|
|
21
22
|
[BlockDefinitionTypes.CREATABLE_TRIGGER]: Partial<GetAutomationTriggerDefinitionsResponse>;
|
|
22
23
|
[BlockDefinitionTypes.ACTION]: Partial<GetAutomationActionDefinitionsResponse>;
|
|
23
24
|
}
|
|
25
|
+
export interface UIAutomation extends Automation {
|
|
26
|
+
publishStatus: PublishStatusResource;
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/types",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0",
|
|
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": "1724cc3c4736c2c48e98aa490b47b2b6c28c05aa"
|
|
31
31
|
}
|