@redonvn/redai-backend-api-sdk 0.5.99 → 0.5.102

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.
Files changed (25) hide show
  1. package/dist/cjs/generated/dynamic-table/index.js +1 -2
  2. package/dist/cjs/generated/dynamic-table/index.js.map +1 -1
  3. package/dist/cjs/generated/dynamic-table/services/base-members.service.js +1 -1
  4. package/dist/cjs/generated/dynamic-table/services/base-members.service.js.map +1 -1
  5. package/dist/cjs/generated/dynamic-table/services/workspace-members.service.js +1 -1
  6. package/dist/cjs/generated/dynamic-table/services/workspace-members.service.js.map +1 -1
  7. package/dist/cjs/generated/dynamic-table/types.js +2 -3
  8. package/dist/cjs/generated/dynamic-table/types.js.map +1 -1
  9. package/dist/cjs/generated/shared-types.js +55 -16
  10. package/dist/cjs/generated/shared-types.js.map +1 -1
  11. package/dist/esm/generated/dynamic-table/index.js +1 -1
  12. package/dist/esm/generated/dynamic-table/index.js.map +1 -1
  13. package/dist/esm/generated/dynamic-table/services/base-members.service.js +1 -1
  14. package/dist/esm/generated/dynamic-table/services/base-members.service.js.map +1 -1
  15. package/dist/esm/generated/dynamic-table/services/workspace-members.service.js +1 -1
  16. package/dist/esm/generated/dynamic-table/services/workspace-members.service.js.map +1 -1
  17. package/dist/esm/generated/dynamic-table/types.js +1 -1
  18. package/dist/esm/generated/dynamic-table/types.js.map +1 -1
  19. package/dist/esm/generated/shared-types.d.ts +77 -23
  20. package/dist/esm/generated/shared-types.d.ts.map +1 -1
  21. package/dist/esm/generated/shared-types.js +54 -15
  22. package/dist/esm/generated/shared-types.js.map +1 -1
  23. package/dist/esm/generated/workspace/types.d.ts +8 -1
  24. package/dist/esm/generated/workspace/types.d.ts.map +1 -1
  25. package/package.json +1 -1
@@ -3010,13 +3010,15 @@ export interface IStateVariable {
3010
3010
  export type JSON = unknown;
3011
3011
  export type JSON_PARSE = unknown;
3012
3012
  export type JSON_STRINGIFY = unknown;
3013
- export type JsonArray = JsonValue[];
3013
+ export interface JsonArray extends Array<JsonValue> {
3014
+ __jsonArrayBrand?: 'JsonArray';
3015
+ }
3014
3016
  export type JSONB = unknown;
3015
- export type JsonObject = {
3017
+ export interface JsonObject {
3016
3018
  [key: string]: JsonValue;
3017
- };
3019
+ }
3018
3020
  export type JsonPrimitive = string | number | boolean | null;
3019
- export type JsonValue = JsonPrimitive | JsonArray | JsonObject;
3021
+ export type JsonValue = JsonPrimitive | JsonObject | JsonArray;
3020
3022
  export interface JWTInput {
3021
3023
  type?: string;
3022
3024
  client_email?: string;
@@ -4344,17 +4346,20 @@ export type RecordChange = {
4344
4346
  };
4345
4347
  export type RecordData = Record<string, RecordValue>;
4346
4348
  export type RecordHistoryChanges = Record<string, RecordChange>;
4347
- export type RecordListQueryDto = LimitOffsetQueryDto & {
4348
- viewId?: unknown;
4349
+ export interface RecordListQueryDto {
4350
+ viewId?: string;
4349
4351
  fields?: string;
4350
4352
  filters?: string;
4351
4353
  sorts?: string;
4352
4354
  groupFields?: string;
4355
+ aggregations?: string;
4356
+ limit?: number;
4357
+ offset?: number;
4358
+ cursor?: string;
4353
4359
  includeSortFilterFields?: string;
4354
4360
  applyViewFilters?: string;
4355
4361
  includeTotal?: string;
4356
- cursor?: string;
4357
- };
4362
+ }
4358
4363
  export type RecordValue = JsonValue | Date;
4359
4364
  export type REDAI = unknown;
4360
4365
  export type REDAI_CLI = unknown;
@@ -4878,6 +4883,15 @@ export interface Skill {
4878
4883
  skillWorkflows: SkillWorkflow[];
4879
4884
  agentSkills: AgentSkill[];
4880
4885
  }
4886
+ export type SKILL = unknown;
4887
+ export type SKILL_CREATE = unknown;
4888
+ export type SKILL_DELETE = unknown;
4889
+ export type SKILL_EXECUTE = unknown;
4890
+ export type SKILL_IMPORT = unknown;
4891
+ export type SKILL_MANAGE = unknown;
4892
+ export type SKILL_READ = unknown;
4893
+ export type SKILL_SYNC = unknown;
4894
+ export type SKILL_UPDATE = unknown;
4881
4895
  export interface SkillDoc {
4882
4896
  id: string;
4883
4897
  path: string;
@@ -4949,10 +4963,8 @@ export interface Snapshot {
4949
4963
  metadata?: google.pubsub.v1.ISnapshot;
4950
4964
  }
4951
4965
  export declare enum SortDirection {
4952
- ASC = "asc",
4953
- DESC = "desc",
4954
- COUNT_ASC = "count-asc",
4955
- COUNT_DESC = "count-desc"
4966
+ ASC = "ASC",
4967
+ DESC = "DESC"
4956
4968
  }
4957
4969
  export type SOURCE = unknown;
4958
4970
  export type SOURCE_CREATE = unknown;
@@ -6798,16 +6810,49 @@ export interface WidgetSortSpecDto {
6798
6810
  direction: 'asc' | 'desc';
6799
6811
  }
6800
6812
  export declare enum WidgetType {
6801
- CHART = "chart",
6802
- IFRAME = "iframe",
6803
- METRIC = "metric",
6804
- REDAI_VIEW = "redai_view",
6805
- TEXT = "text",
6806
- TABLE = "table",
6807
- LIST = "list",
6808
- CALENDAR = "calendar",
6809
- KANBAN = "kanban",
6810
- MAP = "map"
6813
+ TABLE = "TABLE",
6814
+ CHART = "CHART",
6815
+ CARD = "CARD",
6816
+ METRIC = "METRIC",
6817
+ GAUGE = "GAUGE",
6818
+ PROGRESS = "PROGRESS",
6819
+ HEATMAP = "HEATMAP",
6820
+ FUNNEL = "FUNNEL",
6821
+ PIE_CHART = "PIE_CHART",
6822
+ FORM = "FORM",
6823
+ INPUT = "INPUT",
6824
+ SELECT = "SELECT",
6825
+ CHECKBOX_GROUP = "CHECKBOX_GROUP",
6826
+ RADIO_GROUP = "RADIO_GROUP",
6827
+ DATE_PICKER = "DATE_PICKER",
6828
+ SLIDER = "SLIDER",
6829
+ TEXT = "TEXT",
6830
+ IMAGE = "IMAGE",
6831
+ VIDEO = "VIDEO",
6832
+ IFRAME = "IFRAME",
6833
+ LIST = "LIST",
6834
+ TIMELINE = "TIMELINE",
6835
+ NOTIFICATION = "NOTIFICATION",
6836
+ CONTAINER = "CONTAINER",
6837
+ GRID = "GRID",
6838
+ TABS = "TABS",
6839
+ ACCORDION = "ACCORDION",
6840
+ DIVIDER = "DIVIDER",
6841
+ SPACER = "SPACER",
6842
+ BUTTON = "BUTTON",
6843
+ BUTTON_GROUP = "BUTTON_GROUP",
6844
+ FILTER = "FILTER",
6845
+ SEARCH = "SEARCH",
6846
+ PAGINATION = "PAGINATION",
6847
+ BREADCRUMB = "BREADCRUMB",
6848
+ MENU = "MENU",
6849
+ MODAL = "MODAL",
6850
+ KPI_GRID = "KPI_GRID",
6851
+ COMPARISON = "COMPARISON",
6852
+ MAP = "MAP",
6853
+ CALENDAR = "CALENDAR",
6854
+ TREE = "TREE",
6855
+ KANBAN = "KANBAN"
6811
6856
  }
6812
6857
  export interface Workflow {
6813
6858
  id: string;
@@ -6836,7 +6881,7 @@ export type WORKFLOW_MANAGE = unknown;
6836
6881
  export type WORKFLOW_READ = unknown;
6837
6882
  export type WORKFLOW_TRIGGER = unknown;
6838
6883
  export type WORKFLOW_UPDATE = unknown;
6839
- export declare const WORKSPACE: readonly unknown[];
6884
+ export type WORKSPACE = unknown;
6840
6885
  export type WORKSPACE_CREATE = unknown;
6841
6886
  export type WORKSPACE_MANAGE = unknown;
6842
6887
  export type WORKSPACE_MEMBER = unknown;
@@ -6901,6 +6946,7 @@ export declare enum WorkspaceCapabilityDomain {
6901
6946
  CALENDAR = "calendar",
6902
6947
  TOOLS = "tools",
6903
6948
  FAQ = "faq",
6949
+ SKILL = "skill",
6904
6950
  MARKETPLACE = "marketplace",
6905
6951
  BUSINESS = "business",
6906
6952
  MCP_DYNAMIC = "mcp_dynamic",
@@ -7076,6 +7122,14 @@ export declare enum WorkspaceScopeCapability {
7076
7122
  TOOLS_EXECUTE = "tools.execute",
7077
7123
  TOOLS_IMPORT = "tools.import",
7078
7124
  TOOLS_SYNC = "tools.sync",
7125
+ SKILL_READ = "skill.read",
7126
+ SKILL_CREATE = "skill.create",
7127
+ SKILL_UPDATE = "skill.update",
7128
+ SKILL_DELETE = "skill.delete",
7129
+ SKILL_MANAGE = "skill.manage",
7130
+ SKILL_EXECUTE = "skill.execute",
7131
+ SKILL_IMPORT = "skill.import",
7132
+ SKILL_SYNC = "skill.sync",
7079
7133
  FAQ_READ = "faq.read",
7080
7134
  FAQ_CREATE = "faq.create",
7081
7135
  FAQ_UPDATE = "faq.update",