Add warnings to values used in Fabric

This commit is contained in:
Laurent Nguyen 2025-04-10 15:26:51 +02:00
parent 495daaf00b
commit 184c8dbca1

View File

@ -1,16 +1,17 @@
// Data Explorer specific actions. No need to keep this in sync with the one in Portal. // Data Explorer specific actions. No need to keep this in sync with the one in Portal.
// Some of the enums names are used in Fabric. Please do not rename them.
export enum Action { export enum Action {
CollapseTreeNode, CollapseTreeNode,
CreateCollection, CreateCollection, // Used in Fabric. Please do not rename.
CreateDocument, CreateDocument, // Used in Fabric. Please do not rename.
CreateStoredProcedure, CreateStoredProcedure,
CreateTrigger, CreateTrigger,
CreateUDF, CreateUDF,
DeleteCollection, DeleteCollection, // Used in Fabric. Please do not rename.
DeleteDatabase, DeleteDatabase,
DeleteDocument, DeleteDocument,
ExpandTreeNode, ExpandTreeNode,
ExecuteQuery, ExecuteQuery, // Used in Fabric. Please do not rename.
HasFeature, HasFeature,
GetVNETServices, GetVNETServices,
InitializeAccountLocationFromResourceGroup, InitializeAccountLocationFromResourceGroup,
@ -142,7 +143,7 @@ export enum Action {
ReadPersistedTabState, ReadPersistedTabState,
SavePersistedTabState, SavePersistedTabState,
DeletePersistedTabState, DeletePersistedTabState,
UploadDocuments, UploadDocuments, // Used in Fabric. Please do not rename.
} }
export const ActionModifiers = { export const ActionModifiers = {