@redonvn/redai-backend-api-sdk 0.1.21 → 0.1.22
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.
|
@@ -535,6 +535,7 @@ export interface CreateViewColumnDto {
|
|
|
535
535
|
show?: boolean;
|
|
536
536
|
order?: number | null;
|
|
537
537
|
width?: string | null;
|
|
538
|
+
align?: GridColumnAlign | null;
|
|
538
539
|
groupBy?: boolean;
|
|
539
540
|
groupByOrder?: number | null;
|
|
540
541
|
groupBySort?: string | null;
|
|
@@ -933,6 +934,11 @@ export interface GetUserUiPreferencesResponseDto {
|
|
|
933
934
|
raw: UserUiPreferencesRawDto;
|
|
934
935
|
resolved: UserUiPreferencesResolvedDto;
|
|
935
936
|
}
|
|
937
|
+
export declare enum GridColumnAlign {
|
|
938
|
+
LEFT = "left",
|
|
939
|
+
CENTER = "center",
|
|
940
|
+
RIGHT = "right"
|
|
941
|
+
}
|
|
936
942
|
export declare enum GridRowHeight {
|
|
937
943
|
SHORT = "short",
|
|
938
944
|
MEDIUM = "medium",
|
|
@@ -1681,6 +1687,7 @@ export interface ViewColumnResponseDto {
|
|
|
1681
1687
|
show: boolean | null;
|
|
1682
1688
|
order: number | null;
|
|
1683
1689
|
width: string | null;
|
|
1690
|
+
align: GridColumnAlign | null;
|
|
1684
1691
|
groupBy: boolean | null;
|
|
1685
1692
|
groupByOrder: number | null;
|
|
1686
1693
|
groupBySort: string | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WorkspaceMemberRole = exports.WorkspaceJoinRequestStatus = exports.WorkspaceInviteStatus = exports.WorkspaceInviteLinkStatus = exports.ViewType = exports.ViewSortDirection = exports.ViewLockType = exports.StorageMode = exports.SourceType = exports.RowColoringMode = exports.RollupFunction = exports.RelationType = exports.ReferentialAction = exports.ModelType = exports.MembershipScope = exports.MapProviderType = exports.JobStatus = exports.ImportMode = exports.ImportFileFormat = exports.HookVersion = exports.HookType = exports.HookOperation = exports.HookLogStatus = exports.HookEnvironment = exports.GridRowHeight = exports.FilterLogicalOp = exports.FilterComparisonSubOp = exports.FilterComparisonOp = exports.FieldType = exports.ExternalDataType = exports.ExportFormatEnum = exports.BaseStatus = exports.AppEvents = void 0;
|
|
3
|
+
exports.WorkspaceMemberRole = exports.WorkspaceJoinRequestStatus = exports.WorkspaceInviteStatus = exports.WorkspaceInviteLinkStatus = exports.ViewType = exports.ViewSortDirection = exports.ViewLockType = exports.StorageMode = exports.SourceType = exports.RowColoringMode = exports.RollupFunction = exports.RelationType = exports.ReferentialAction = exports.ModelType = exports.MembershipScope = exports.MapProviderType = exports.JobStatus = exports.ImportMode = exports.ImportFileFormat = exports.HookVersion = exports.HookType = exports.HookOperation = exports.HookLogStatus = exports.HookEnvironment = exports.GridRowHeight = exports.GridColumnAlign = exports.FilterLogicalOp = exports.FilterComparisonSubOp = exports.FilterComparisonOp = exports.FieldType = exports.ExternalDataType = exports.ExportFormatEnum = exports.BaseStatus = exports.AppEvents = void 0;
|
|
4
4
|
var AppEvents;
|
|
5
5
|
(function (AppEvents) {
|
|
6
6
|
AppEvents["PROJECT_CREATE"] = "base.create";
|
|
@@ -321,6 +321,12 @@ var FilterLogicalOp;
|
|
|
321
321
|
FilterLogicalOp["OR"] = "or";
|
|
322
322
|
FilterLogicalOp["NOT"] = "not";
|
|
323
323
|
})(FilterLogicalOp || (exports.FilterLogicalOp = FilterLogicalOp = {}));
|
|
324
|
+
var GridColumnAlign;
|
|
325
|
+
(function (GridColumnAlign) {
|
|
326
|
+
GridColumnAlign["LEFT"] = "left";
|
|
327
|
+
GridColumnAlign["CENTER"] = "center";
|
|
328
|
+
GridColumnAlign["RIGHT"] = "right";
|
|
329
|
+
})(GridColumnAlign || (exports.GridColumnAlign = GridColumnAlign = {}));
|
|
324
330
|
var GridRowHeight;
|
|
325
331
|
(function (GridRowHeight) {
|
|
326
332
|
GridRowHeight["SHORT"] = "short";
|