@metad/contracts 3.6.1 → 3.6.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.
Files changed (286) hide show
  1. package/index.cjs.d.ts +1 -0
  2. package/index.cjs.js +4233 -5
  3. package/index.esm.d.ts +1 -0
  4. package/index.esm.js +4129 -0
  5. package/package.json +9 -2
  6. package/src/agent/{ai-model.ts → ai-model.d.ts} +2 -2
  7. package/src/agent/graph.d.ts +148 -0
  8. package/src/agent/index.d.ts +5 -0
  9. package/src/agent/token.d.ts +21 -0
  10. package/src/agent/utils.d.ts +19 -0
  11. package/src/agent/variables.d.ts +14 -0
  12. package/src/ai/ai-model.model.d.ts +198 -0
  13. package/src/ai/ai-provider.model.d.ts +43 -0
  14. package/src/ai/ai.model.d.ts +82 -0
  15. package/src/ai/chat-message-feedback.model.d.ts +24 -0
  16. package/src/ai/chat-message.model.d.ts +222 -0
  17. package/src/ai/chat.model.d.ts +189 -0
  18. package/src/ai/copilot-checkpoint.model.d.ts +23 -0
  19. package/src/ai/copilot-example.model.d.ts +19 -0
  20. package/src/ai/copilot-model.model.d.ts +26 -0
  21. package/src/ai/copilot-organization.model.d.ts +17 -0
  22. package/src/ai/copilot-provider.model.d.ts +31 -0
  23. package/src/ai/copilot-role.model.d.ts +43 -0
  24. package/src/ai/copilot-store.model.d.ts +29 -0
  25. package/src/ai/copilot-user.model.d.ts +20 -0
  26. package/src/ai/copilot.model.d.ts +36 -0
  27. package/src/ai/{environment.model.ts → environment.model.d.ts} +10 -12
  28. package/src/ai/feature.model.d.ts +6 -0
  29. package/src/ai/index.d.ts +39 -0
  30. package/src/ai/knowledge-doc-chunk.model.d.ts +60 -0
  31. package/src/ai/knowledge-doc-page.model.d.ts +15 -0
  32. package/src/ai/knowledge-doc.model.d.ts +192 -0
  33. package/src/ai/knowledge-pipeline.d.ts +107 -0
  34. package/src/ai/knowledge-retrieval-log.model.d.ts +10 -0
  35. package/src/ai/knowledgebase-task.model.d.ts +39 -0
  36. package/src/ai/knowledgebase.model.d.ts +162 -0
  37. package/src/ai/rag-web.d.ts +26 -0
  38. package/src/ai/rag.d.ts +24 -0
  39. package/src/ai/role-permissions.d.ts +13 -0
  40. package/src/ai/types.d.ts +39 -0
  41. package/src/ai/xpert-agent-execution.model.d.ts +96 -0
  42. package/src/ai/xpert-agent.model.d.ts +192 -0
  43. package/src/ai/xpert-project.model.d.ts +86 -0
  44. package/src/ai/xpert-task.model.d.ts +26 -0
  45. package/src/ai/xpert-template.model.d.ts +47 -0
  46. package/src/ai/xpert-tool-mcp.model.d.ts +67 -0
  47. package/src/ai/xpert-tool.model.d.ts +147 -0
  48. package/src/ai/xpert-toolset.model.d.ts +200 -0
  49. package/src/ai/xpert-workflow-task.prompt.d.ts +2 -0
  50. package/src/ai/xpert-workflow.model.d.ts +366 -0
  51. package/src/ai/xpert-workspace.model.d.ts +32 -0
  52. package/src/ai/xpert.model.d.ts +529 -0
  53. package/src/ai/xpert.utils.d.ts +80 -0
  54. package/src/analytics/ai.d.ts +73 -0
  55. package/src/analytics/approval-policy.model.d.ts +30 -0
  56. package/src/analytics/business-area-user.model.d.ts +35 -0
  57. package/src/analytics/business-area.d.ts +17 -0
  58. package/src/analytics/certification.model.d.ts +11 -0
  59. package/src/analytics/chatbi-conversation.model.d.ts +15 -0
  60. package/src/analytics/chatbi-model.model.d.ts +18 -0
  61. package/src/analytics/collection.model.d.ts +6 -0
  62. package/src/analytics/comment.model.d.ts +10 -0
  63. package/src/analytics/data-source-type.d.ts +16 -0
  64. package/src/analytics/data-source.d.ts +62 -0
  65. package/src/analytics/favorite.d.ts +14 -0
  66. package/src/analytics/features.d.ts +19 -0
  67. package/src/analytics/feed-model.d.ts +13 -0
  68. package/src/analytics/gateway.d.ts +27 -0
  69. package/src/analytics/index.d.ts +38 -0
  70. package/src/analytics/indicator-app.d.ts +44 -0
  71. package/src/analytics/{indicator-market.ts → indicator-market.d.ts} +2 -6
  72. package/src/analytics/indicator.d.ts +106 -0
  73. package/src/analytics/model-query-log.model.d.ts +41 -0
  74. package/src/analytics/model-query.d.ts +21 -0
  75. package/src/analytics/{notification-destination.ts → notification-destination.d.ts} +5 -9
  76. package/src/analytics/{permission-approval-user.model.ts → permission-approval-user.model.d.ts} +8 -10
  77. package/src/analytics/permission-approval.model.d.ts +47 -0
  78. package/src/analytics/project.model.d.ts +50 -0
  79. package/src/analytics/role-permissions.d.ts +25 -0
  80. package/src/analytics/schema.d.ts +262 -0
  81. package/src/analytics/screenshot.model.d.ts +25 -0
  82. package/src/analytics/semantic-model-entity.d.ts +37 -0
  83. package/src/analytics/semantic-model-member.d.ts +24 -0
  84. package/src/analytics/semantic-model.d.ts +175 -0
  85. package/src/analytics/{story-point.ts → story-point.d.ts} +6 -11
  86. package/src/analytics/story-template.model.d.ts +28 -0
  87. package/src/analytics/story-widget.d.ts +12 -0
  88. package/src/analytics/story.d.ts +93 -0
  89. package/src/analytics/subscription.d.ts +38 -0
  90. package/src/analytics/visit.model.d.ts +34 -0
  91. package/src/analytics/webSocket.d.ts +48 -0
  92. package/src/api-key.model.d.ts +10 -0
  93. package/src/base-entity.model.d.ts +27 -0
  94. package/src/contact.model.d.ts +41 -0
  95. package/src/core.model.d.ts +97 -0
  96. package/src/{country.model.ts → country.model.d.ts} +2 -3
  97. package/src/currency.model.d.ts +579 -0
  98. package/src/{custom-smtp.model.ts → custom-smtp.model.d.ts} +17 -21
  99. package/src/date-picker.model.d.ts +5 -0
  100. package/src/email-template.model.d.ts +39 -0
  101. package/src/email.model.d.ts +36 -0
  102. package/src/employee.model.d.ts +128 -0
  103. package/src/entity-with-members.model.d.ts +13 -0
  104. package/src/feature.model.d.ts +93 -0
  105. package/src/file-provider.d.ts +33 -0
  106. package/src/help-center-article.model.d.ts +0 -0
  107. package/src/help-center.model.d.ts +0 -0
  108. package/src/http-status.enum.d.ts +57 -0
  109. package/src/import-export.model.d.ts +36 -0
  110. package/src/index.d.ts +48 -0
  111. package/src/integration/dify.d.ts +0 -0
  112. package/src/integration/dingtalk.d.ts +2 -0
  113. package/src/integration/fastgpt.d.ts +0 -0
  114. package/src/integration/firecrawl.d.ts +2 -0
  115. package/src/integration/github.d.ts +69 -0
  116. package/src/integration/index.d.ts +4 -0
  117. package/src/integration/lark.d.ts +11 -0
  118. package/src/integration/wecom.d.ts +2 -0
  119. package/src/integration.model.d.ts +90 -0
  120. package/src/invite.model.d.ts +123 -0
  121. package/src/language.model.d.ts +19 -0
  122. package/src/organization-contact.model.d.ts +73 -0
  123. package/src/{organization-department.model.ts → organization-department.model.d.ts} +10 -16
  124. package/src/organization-language.model.d.ts +18 -0
  125. package/src/organization-projects.model.d.ts +80 -0
  126. package/src/organization-team-employee-model.d.ts +12 -0
  127. package/src/organization-team-model.d.ts +19 -0
  128. package/src/organization.model.d.ts +239 -0
  129. package/src/{password-reset.model.ts → password-reset.model.d.ts} +10 -14
  130. package/src/{plain-object.model.ts → plain-object.model.d.ts} +1 -1
  131. package/src/plugin.d.ts +13 -0
  132. package/src/role-permission.model.d.ts +61 -0
  133. package/src/role.model.d.ts +26 -0
  134. package/src/schedule.d.ts +27 -0
  135. package/src/secret-token.model.d.ts +11 -0
  136. package/src/seed.model.d.ts +37 -0
  137. package/src/storage-file.model.d.ts +40 -0
  138. package/src/tag-entity.model.d.ts +20 -0
  139. package/src/tenant.model.d.ts +40 -0
  140. package/src/tools/index.d.ts +1 -0
  141. package/src/tools/sandbox.d.ts +5 -0
  142. package/src/translation.model.d.ts +26 -0
  143. package/src/types.d.ts +241 -0
  144. package/src/user-organization.model.d.ts +24 -0
  145. package/src/user.model.d.ts +131 -0
  146. package/src/visibility.model.d.ts +6 -0
  147. package/.babelrc +0 -5
  148. package/.eslintrc.json +0 -18
  149. package/babel.config.json +0 -1
  150. package/jest.config.ts +0 -16
  151. package/project.json +0 -53
  152. package/src/agent/graph.ts +0 -272
  153. package/src/agent/index.ts +0 -5
  154. package/src/agent/token.ts +0 -23
  155. package/src/agent/utils.spec.ts +0 -283
  156. package/src/agent/utils.ts +0 -122
  157. package/src/agent/variables.ts +0 -21
  158. package/src/ai/ai-model.model.ts +0 -228
  159. package/src/ai/ai-provider.model.ts +0 -53
  160. package/src/ai/ai.model.ts +0 -87
  161. package/src/ai/chat-message-feedback.model.ts +0 -31
  162. package/src/ai/chat-message.model.ts +0 -277
  163. package/src/ai/chat.model.ts +0 -207
  164. package/src/ai/copilot-checkpoint.model.ts +0 -25
  165. package/src/ai/copilot-example.model.ts +0 -23
  166. package/src/ai/copilot-model.model.ts +0 -31
  167. package/src/ai/copilot-organization.model.ts +0 -21
  168. package/src/ai/copilot-provider.model.ts +0 -46
  169. package/src/ai/copilot-role.model.ts +0 -48
  170. package/src/ai/copilot-store.model.ts +0 -34
  171. package/src/ai/copilot-user.model.ts +0 -24
  172. package/src/ai/copilot.model.ts +0 -47
  173. package/src/ai/feature.model.ts +0 -6
  174. package/src/ai/index.ts +0 -39
  175. package/src/ai/knowledge-doc-chunk.model.ts +0 -120
  176. package/src/ai/knowledge-doc-chunk.spec.ts +0 -47
  177. package/src/ai/knowledge-doc-page.model.ts +0 -20
  178. package/src/ai/knowledge-doc.model.ts +0 -252
  179. package/src/ai/knowledge-pipeline.ts +0 -138
  180. package/src/ai/knowledge-retrieval-log.model.ts +0 -19
  181. package/src/ai/knowledgebase-task.model.ts +0 -46
  182. package/src/ai/knowledgebase.model.ts +0 -190
  183. package/src/ai/rag-web.ts +0 -54
  184. package/src/ai/rag.ts +0 -24
  185. package/src/ai/role-permissions.ts +0 -13
  186. package/src/ai/types.ts +0 -83
  187. package/src/ai/xpert-agent-execution.model.ts +0 -115
  188. package/src/ai/xpert-agent.model.ts +0 -258
  189. package/src/ai/xpert-project.model.ts +0 -103
  190. package/src/ai/xpert-task.model.ts +0 -32
  191. package/src/ai/xpert-template.model.ts +0 -53
  192. package/src/ai/xpert-tool-mcp.model.ts +0 -72
  193. package/src/ai/xpert-tool.model.ts +0 -211
  194. package/src/ai/xpert-toolset.model.ts +0 -220
  195. package/src/ai/xpert-workflow-task.prompt.ts +0 -71
  196. package/src/ai/xpert-workflow.model.ts +0 -449
  197. package/src/ai/xpert-workspace.model.ts +0 -42
  198. package/src/ai/xpert.model.ts +0 -613
  199. package/src/ai/xpert.utils.ts +0 -214
  200. package/src/analytics/ai.ts +0 -79
  201. package/src/analytics/approval-policy.model.ts +0 -40
  202. package/src/analytics/business-area-user.model.ts +0 -43
  203. package/src/analytics/business-area.ts +0 -20
  204. package/src/analytics/certification.model.ts +0 -12
  205. package/src/analytics/chatbi-conversation.model.ts +0 -16
  206. package/src/analytics/chatbi-model.model.ts +0 -22
  207. package/src/analytics/collection.model.ts +0 -8
  208. package/src/analytics/comment.model.ts +0 -14
  209. package/src/analytics/data-source-type.ts +0 -19
  210. package/src/analytics/data-source.ts +0 -72
  211. package/src/analytics/favorite.ts +0 -18
  212. package/src/analytics/features.ts +0 -19
  213. package/src/analytics/feed-model.ts +0 -15
  214. package/src/analytics/gateway.ts +0 -30
  215. package/src/analytics/index.ts +0 -39
  216. package/src/analytics/indicator-app.ts +0 -49
  217. package/src/analytics/indicator.ts +0 -127
  218. package/src/analytics/model-query-log.model.ts +0 -45
  219. package/src/analytics/model-query.ts +0 -22
  220. package/src/analytics/permission-approval.model.ts +0 -58
  221. package/src/analytics/project.model.ts +0 -56
  222. package/src/analytics/role-permissions.ts +0 -36
  223. package/src/analytics/schema.ts +0 -300
  224. package/src/analytics/screenshot.model.ts +0 -28
  225. package/src/analytics/semantic-model-entity.ts +0 -49
  226. package/src/analytics/semantic-model-member.ts +0 -45
  227. package/src/analytics/semantic-model.ts +0 -227
  228. package/src/analytics/story-template.model.ts +0 -34
  229. package/src/analytics/story-widget.ts +0 -15
  230. package/src/analytics/story.ts +0 -109
  231. package/src/analytics/subscription.ts +0 -43
  232. package/src/analytics/visit.model.ts +0 -39
  233. package/src/analytics/webSocket.ts +0 -53
  234. package/src/api-key.model.ts +0 -11
  235. package/src/base-entity.model.ts +0 -34
  236. package/src/contact.model.ts +0 -45
  237. package/src/core.model.ts +0 -103
  238. package/src/currency.model.ts +0 -582
  239. package/src/date-picker.model.ts +0 -5
  240. package/src/email-template.model.ts +0 -50
  241. package/src/email.model.ts +0 -46
  242. package/src/employee.model.ts +0 -199
  243. package/src/entity-with-members.model.ts +0 -16
  244. package/src/feature.model.ts +0 -108
  245. package/src/file-provider.ts +0 -37
  246. package/src/help-center-article.model.ts +0 -35
  247. package/src/help-center.model.ts +0 -33
  248. package/src/http-status.enum.ts +0 -58
  249. package/src/import-export.model.ts +0 -42
  250. package/src/index.ts +0 -60
  251. package/src/integration/dify.ts +0 -31
  252. package/src/integration/dingtalk.ts +0 -16
  253. package/src/integration/fastgpt.ts +0 -32
  254. package/src/integration/firecrawl.ts +0 -46
  255. package/src/integration/github.ts +0 -149
  256. package/src/integration/index.ts +0 -15
  257. package/src/integration/lark.ts +0 -79
  258. package/src/integration/wecom.ts +0 -16
  259. package/src/integration.model.ts +0 -119
  260. package/src/invite.model.ts +0 -144
  261. package/src/language.model.ts +0 -22
  262. package/src/organization-contact.model.ts +0 -84
  263. package/src/organization-language.model.ts +0 -24
  264. package/src/organization-projects.model.ts +0 -99
  265. package/src/organization-team-employee-model.ts +0 -14
  266. package/src/organization-team-model.ts +0 -25
  267. package/src/organization.model.ts +0 -266
  268. package/src/plugin.ts +0 -15
  269. package/src/role-permission.model.ts +0 -123
  270. package/src/role.model.ts +0 -31
  271. package/src/schedule.ts +0 -71
  272. package/src/secret-token.model.ts +0 -15
  273. package/src/seed.model.ts +0 -50
  274. package/src/storage-file.model.ts +0 -46
  275. package/src/tag-entity.model.ts +0 -23
  276. package/src/tenant.model.ts +0 -52
  277. package/src/tools/index.ts +0 -1
  278. package/src/tools/sandbox.ts +0 -5
  279. package/src/translation.model.ts +0 -37
  280. package/src/types.ts +0 -277
  281. package/src/user-organization.model.ts +0 -31
  282. package/src/user.model.ts +0 -151
  283. package/src/visibility.model.ts +0 -6
  284. package/tsconfig.json +0 -22
  285. package/tsconfig.lib.json +0 -10
  286. package/tsconfig.spec.json +0 -9
@@ -1,49 +0,0 @@
1
- import { IBasePerTenantAndOrganizationEntityModel } from '../base-entity.model'
2
-
3
- /**
4
- * Store user states for the indicator app
5
- */
6
- export interface IIndicatorApp extends IBasePerTenantAndOrganizationEntityModel {
7
- options?: {
8
- /**
9
- * The indicators user favorited
10
- */
11
- favorites?: string[];
12
- /**
13
- * The order of the indicators user sorted
14
- */
15
- order?: string[];
16
- /**
17
- * Time granularity
18
- */
19
- timeGranularity?: TimeGranularity;
20
- /**
21
- * Limit the lookback period in trend analysis for every time granularity
22
- */
23
- lookback?: Record<TimeGranularity, number>;
24
- /**
25
- * Tag type show in indicator list
26
- */
27
- tagType?: IndicatorTagEnum;
28
-
29
- /**
30
- * Periods for detail view
31
- */
32
- detailPeriods?: string
33
- }
34
- }
35
-
36
- export enum TimeGranularity {
37
- Year = 'Year',
38
- Quarter = 'Quarter',
39
- Month = 'Month',
40
- Week = 'Week',
41
- Day = 'Day'
42
- // @todo more
43
- }
44
-
45
- export enum IndicatorTagEnum {
46
- UNIT,
47
- MOM,
48
- YOY
49
- }
@@ -1,127 +0,0 @@
1
- import { EmbeddingStatusEnum } from '../ai'
2
- import { ITag } from '../tag-entity.model'
3
- import { ChecklistItem } from '../types'
4
- import { Visibility } from '../visibility.model'
5
- import { IBusinessArea } from './business-area'
6
- import { ICertification } from './certification.model'
7
- import { IComment } from './comment.model'
8
- import { IPermissionApproval } from './permission-approval.model'
9
- import { IBasePerProjectEntityModel } from './project.model'
10
- import { ISemanticModel } from './semantic-model'
11
-
12
- /**
13
- * Common fields of Indicator (draft and entity)
14
- */
15
- export type TIndicator = {
16
- // Indicator business code
17
- code?: string
18
- // Name of the indicator
19
- name?: string
20
- /**
21
- * Indicator Type
22
- */
23
- type?: IndicatorType
24
- /**
25
- * Visible in model
26
- */
27
- visible?: boolean
28
-
29
- /**
30
- * Available in indicator market app
31
- */
32
- isApplication?: boolean
33
-
34
- modelId?: string
35
-
36
- entity?: string
37
- unit?: string
38
- principal?: string
39
- /**
40
- * @deprecated use certificationId
41
- */
42
- authentication?: string
43
-
44
- certificationId?: string
45
-
46
- validity?: string
47
- business?: string
48
-
49
- options?: {
50
- dimensions?: Array<string>
51
- filters?: Array<any>
52
- formula?: string
53
- measure?: string
54
- aggregator?: string
55
- calendar?: string
56
- }
57
-
58
- businessAreaId?: string
59
- }
60
-
61
- export type TIndicatorDraft = TIndicator & {
62
- checklist?: ChecklistItem[]
63
- version?: number
64
- savedAt?: Date
65
- }
66
-
67
- export interface IIndicator extends IBasePerProjectEntityModel, TIndicator {
68
- draft?: TIndicatorDraft
69
- /**
70
- * Is active: Activate / Deactivate
71
- *
72
- * @deprecated use status instead
73
- */
74
- isActive?: boolean
75
-
76
- /**
77
- * Visibilty in public or secret or private
78
- */
79
- visibility?: Visibility
80
-
81
- model?: ISemanticModel
82
- /**
83
- * Quality Certification
84
- */
85
- certification?: ICertification
86
-
87
- status?: IndicatorStatusEnum
88
- embeddingStatus?: EmbeddingStatusEnum
89
- error?: string
90
-
91
- businessArea?: IBusinessArea
92
-
93
- permissionApprovals?: IPermissionApproval[]
94
- tags?: ITag[]
95
- comments?: IComment[]
96
- }
97
-
98
- export const IndicatorOptionFields = ['dimensions', 'filters', 'formula', 'measure', 'aggregator', 'calendar']
99
-
100
- /**
101
- * Indicator Type:
102
- * * Basic indicators
103
- * * Derivative Indicators
104
- */
105
- export enum IndicatorType {
106
- BASIC = 'BASIC',
107
- DERIVE = 'DERIVE'
108
- }
109
-
110
- /**
111
- * Status of the indicator
112
- */
113
- export enum IndicatorStatusEnum {
114
- /**
115
- * draft
116
- */
117
- DRAFT = 'DRAFT',
118
-
119
- /**
120
- * Published
121
- */
122
- RELEASED = 'RELEASED',
123
- /**
124
- * Offline Archive
125
- */
126
- ARCHIVED = 'ARCHIVED'
127
- }
@@ -1,45 +0,0 @@
1
- import { IBasePerTenantAndOrganizationEntityModel } from '../base-entity.model'
2
- import { IIndicator } from './indicator'
3
- import { ISemanticModel } from './semantic-model'
4
-
5
- export type TQueryOptions = {
6
- rows?: any
7
- columns?: any
8
- cube?: string
9
- /**
10
- * Indicators modified by the client
11
- */
12
- indicators?: IIndicator[]
13
- calculatedMeasures?: any[] // CalculatedProperty[]
14
- } & Record<string, any>
15
-
16
- export enum QueryStatusEnum {
17
- PENDING = 'pending', // Query submitted, waiting for execution
18
- RUNNING = 'running', // Query is executing
19
- SUCCESS = 'success', // Query succeeded
20
- FAILED = 'failed', // Query failed
21
- }
22
-
23
-
24
- export interface ISemanticModelQueryLog extends IBasePerTenantAndOrganizationEntityModel {
25
- /**
26
- * Unique ID of the client query
27
- */
28
- key?: string
29
- modelId: string
30
- model?: ISemanticModel
31
- cube?: string
32
- status: QueryStatusEnum
33
- /**
34
- * Structural parameters for query
35
- */
36
- params: TQueryOptions
37
- /**
38
- * Statement of query
39
- */
40
- query?: string
41
- result: any
42
- executionTime: number; // Execution time (milliseconds)
43
- waitingTime: number; // Query waiting time (milliseconds)
44
- error?: string
45
- }
@@ -1,22 +0,0 @@
1
- import { IBasePerTenantAndOrganizationEntityModel } from '../base-entity.model'
2
- import { ISemanticModel } from './semantic-model'
3
-
4
- export interface IModelQuery extends IBasePerTenantAndOrganizationEntityModel {
5
- key: string
6
- modelId: string
7
- model?: ISemanticModel
8
- name: string
9
- /**
10
- * Index of the query in the list of queries in model
11
- */
12
- index?: number
13
- /**
14
- * The details
15
- */
16
- options?: {
17
- type?: 'sql' | 'mdx'
18
- entities?: string[]
19
- statement?: string
20
- conversations?: any[]
21
- }
22
- }
@@ -1,58 +0,0 @@
1
- import { IBasePerTenantAndOrganizationEntityModel } from '../base-entity.model'
2
- import { ITag } from '../tag-entity.model'
3
- import { IUser } from '../user.model'
4
- import { ApprovalPolicyTypesStringEnum, IApprovalPolicy } from './approval-policy.model'
5
- import { IIndicator } from './indicator'
6
- import { IPermissionApprovalUser } from './permission-approval-user.model'
7
-
8
- export interface IPermissionApproval extends IBasePerTenantAndOrganizationEntityModel {
9
- status: number
10
- // createdBy: string;
11
- createdByName: string
12
- min_count: number
13
- permissionId: string
14
- permissionType: ApprovalPolicyTypesStringEnum
15
- approvalPolicy: IApprovalPolicy
16
- approvalPolicyId: string
17
- indicator: IIndicator
18
- indicatorId: string
19
- userApprovals?: IPermissionApprovalUser[]
20
- // employeeApprovals?: IPermissionApprovalEmployee[];
21
- // teamApprovals?: IPermissionApprovalTeam[];
22
- tags?: ITag[]
23
- // employees?: IEmployee[];
24
- // teams?: IOrganizationTeam[];
25
- }
26
-
27
- export interface IPermissionApprovalCreateInput extends IBasePerTenantAndOrganizationEntityModel {
28
- id?: string
29
- userApprovals?: IPermissionApprovalUser[]
30
- users?: IUser[]
31
- permissionType?: ApprovalPolicyTypesStringEnum
32
- permissionId?: string
33
- indicatorId?: string
34
- status?: number
35
- approvalPolicyId?: string
36
- tags?: ITag[]
37
- }
38
-
39
- export enum PermissionApprovalStatusTypesEnum {
40
- REQUESTED = 1,
41
- APPROVED = 2,
42
- REFUSED = 3
43
- }
44
-
45
- export const PermissionApprovalStatus = {
46
- REQUESTED: 1,
47
- APPROVED: 2,
48
- REFUSED: 3
49
- }
50
-
51
- export interface IPermissionApprovalFindInput extends IBasePerTenantAndOrganizationEntityModel {
52
- id?: string
53
- }
54
-
55
- export interface IApprovalsData {
56
- icon: string
57
- title: string
58
- }
@@ -1,56 +0,0 @@
1
- import { IBasePerTenantAndOrganizationEntityModel } from '../base-entity.model'
2
- import { IStorageFile } from '../storage-file.model'
3
- import { IUser } from '../user.model'
4
- import { ICertification } from './certification.model'
5
- import { IIndicator } from './indicator'
6
- import { ISemanticModel } from './semantic-model'
7
- import { IStory } from './story'
8
-
9
- export interface IProject extends IBasePerTenantAndOrganizationEntityModel {
10
- name?: string
11
- description?: string
12
- options?: any
13
- /**
14
- * Project owner, can be transfered
15
- */
16
- owner?: IUser
17
- ownerId?: string
18
- status?: ProjectStatusEnum
19
-
20
- stories?: IStory[]
21
- indicators?: IIndicator[]
22
- /**
23
- * Project Members
24
- */
25
- members?: IUser[]
26
- /**
27
- * Semantic model bound in the project
28
- */
29
- models?: ISemanticModel[]
30
- /**
31
- * Certifications available in the project
32
- */
33
- certifications?: ICertification[]
34
-
35
- /**
36
- * Files in the project
37
- */
38
- files?: IStorageFile[]
39
- }
40
-
41
- export enum ProjectStatusEnum {
42
- /**
43
- * In use
44
- */
45
- Progressing = 'Progressing',
46
-
47
- /**
48
- * Archived
49
- */
50
- Archived = 'Archived'
51
- }
52
-
53
- export interface IBasePerProjectEntityModel extends IBasePerTenantAndOrganizationEntityModel {
54
- projectId?: string
55
- project?: IProject
56
- }
@@ -1,36 +0,0 @@
1
- export enum AnalyticsPermissionsEnum {
2
- /**
3
- * Edit Certification
4
- */
5
- CERTIFICATION_EDIT = 'CERTIFICATION_EDIT',
6
- // DataSource
7
- DATA_SOURCE_VIEW = 'DATA_SOURCE_VIEW',
8
- DATA_SOURCE_EDIT = 'DATA_SOURCE_EDIT',
9
- // Notification Destination
10
- NOTIFICATION_DESTINATION_VIEW = 'NOTIFICATION_DESTINATION_VIEW',
11
- NOTIFICATION_DESTINATION_EDIT = 'NOTIFICATION_DESTINATION_EDIT',
12
- // Subscription
13
- SUBSCRIPTION_VIEW = 'SUBSCRIPTION_VIEW',
14
- SUBSCRIPTION_EDIT = 'SUBSCRIPTION_EDIT',
15
- // Semantic Model
16
- MODELS_VIEW = 'MODELS_VIEW',
17
- MODELS_EDIT = 'MODELS_EDIT',
18
- // Story
19
- STORIES_VIEW = 'STORIES_VIEW',
20
- STORIES_EDIT = 'STORIES_EDIT',
21
- // BusinessGroup
22
- BUSINESS_AREA_VIEW = 'BUSINESS_AREA_VIEW',
23
- BUSINESS_AREA_EDIT = 'BUSINESS_AREA_EDIT',
24
- // Indicator
25
- INDICATOR_VIEW = 'INDICATOR_VIEW',
26
- INDICATOR_MARTKET_VIEW = 'INDICATOR_MARTKET_VIEW',
27
- INDICATOR_EDIT = 'INDICATOR_EDIT',
28
- // Data Factory
29
- DATA_FACTORY_VIEW = 'DATA_FACTORY_VIEW',
30
- DATA_FACTORY_EDIT = 'DATA_FACTORY_EDIT',
31
-
32
- // Permission application approval view, you can browse all permission applications
33
- PERMISSION_APPROVAL_VIEW = 'PERMISSION_APPROVAL_VIEW',
34
- // Permission application creation permission, cannot browse other applications
35
- PERMISSION_APPROVAL_EDIT = 'PERMISSION_APPROVAL_EDIT',
36
- }
@@ -1,300 +0,0 @@
1
- /**
2
- * Here is the intermediate type definition converted from the actual schema type to the xmla file format.
3
- * But the type definition here can also be referenced by the actual schema definition.
4
- */
5
-
6
- export interface Schema {
7
- name: string
8
- description?: string
9
- Cube: Cube[]
10
- VirtualCube?: VirtualCube[]
11
- Dimension?: Dimension[]
12
- Role?: Role[]
13
- }
14
-
15
- export interface Cube {
16
- __id__?: string
17
- name: string
18
- caption?: string
19
- Table: Table[] | Table
20
- View: View[] | View
21
- DimensionUsage?: DimensionUsage[]
22
- Dimension: Dimension[]
23
- Measure: Measure[]
24
- CalculatedMember?: CalculatedMember[]
25
- }
26
-
27
- export interface Table {
28
- name: string
29
- }
30
-
31
- export interface View extends SQLExpression {
32
- alias: string
33
- _?: string
34
- }
35
-
36
- /**
37
- * Mondrian 仅支持三种 Dimension 类型,
38
- * 更丰富的语义可以通过 Semantics 来定义
39
- */
40
- export enum DimensionType {
41
- StandardDimension = 'StandardDimension',
42
- TimeDimension = 'TimeDimension',
43
- MeasuresDimension = 'MeasuresDimension'
44
- }
45
-
46
- export interface Dimension {
47
- __id__?: string
48
- name: string
49
- label?: string
50
- foreignKey?: string
51
- type?: DimensionType
52
- caption?: string
53
- description?: string
54
- Hierarchy: Hierarchy[]
55
- }
56
-
57
- export interface DimensionUsage {
58
- __id__?: string
59
- name: string
60
- source: string
61
- foreignKey: string
62
- caption?: string
63
- description?: string
64
- }
65
-
66
- export interface Hierarchy {
67
- __id__?: string
68
- name?: string
69
- label?: string
70
- hasAll: boolean
71
- allMemberName?: string
72
- defaultMember?: string
73
- primaryKey: string
74
- primaryKeyTable?: string
75
- Table?: Table[] | Table
76
- Level?: Level[]
77
- Join?: Join
78
- }
79
-
80
- export interface Level {
81
- __id__?: string
82
- name: string
83
- label?: string
84
- column: string
85
- nameColumn?: string
86
- ordinalColumn?: string
87
- parentColumn?: string
88
- nullParentValue?: number
89
- uniqueMembers: boolean
90
- type?: string
91
- table?: string
92
- Closure?: Closure
93
- KeyExpression?: KeyExpression
94
- NameExpression?: NameExpression
95
- CaptionExpression?: CaptionExpression
96
- OrdinalExpression?: OrdinalExpression
97
- ParentExpression?: ParentExpression
98
- Property?: Property[]
99
- }
100
-
101
- export interface SQLExpression {
102
- SQL: SQL | SQL[]
103
- }
104
-
105
- export interface KeyExpression {
106
- SQL: SQL
107
- }
108
-
109
- export interface NameExpression {
110
- SQL: SQL
111
- }
112
-
113
- export interface CaptionExpression {
114
- SQL: SQL
115
- }
116
-
117
- export interface OrdinalExpression {
118
- SQL: SQL
119
- }
120
-
121
- export interface ParentExpression {
122
- SQL: SQL
123
- }
124
-
125
- export interface SQL {
126
- dialect: string
127
- _?: string
128
- }
129
-
130
- export interface Property {
131
- name: string
132
- column: string
133
- PropertyExpression?: SQLExpression
134
- }
135
-
136
- export interface Closure {
137
- parentColumn: string
138
- childColumn: string
139
- Table: Table
140
- }
141
-
142
- export interface Measure {
143
- __id__?: string
144
- name: string
145
- caption?: string
146
- label?: string
147
- column: string
148
- aggregator: string
149
- formatString?: string
150
- MeasureExpression?: MeasureExpression
151
- }
152
-
153
- export interface MeasureExpression {
154
- SQL: SQL
155
- }
156
-
157
- export interface CalculatedMember {
158
- __id__?: string
159
- name: string
160
- caption?: string
161
- description?: string
162
- dimension?: string
163
- hierarchy?: string
164
- // formula: string
165
- Formula?: string | string[]
166
- parent?: string
167
- visible?: boolean
168
- CalculatedMemberProperty?: CalculatedMemberProperty[]
169
- }
170
-
171
- export interface CalculatedMemberProperty {
172
- name: string
173
- caption?: string
174
- description?: string
175
- expression?: string
176
- value: string
177
- }
178
-
179
- export interface NamedSet {
180
- name: string
181
- caption?: string
182
- description?: string
183
- formula?: string
184
- Formula?: string[]
185
- }
186
-
187
- export interface Join {
188
- leftKey?: string
189
- rightAlias?: string
190
- rightKey?: string
191
- Table?: Table | Table[]
192
- Join?: Join
193
- }
194
-
195
- // VirtualCube
196
- export interface VirtualCube {
197
- name: string
198
- caption?: string
199
- description?: string
200
- CubeUsages: {
201
- CubeUsage: CubeUsage[] | CubeUsage
202
- }
203
- VirtualCubeDimension: VirtualCubeDimension[] | VirtualCubeDimension
204
- VirtualCubeMeasure: VirtualCubeMeasure[] | VirtualCubeMeasure
205
- CalculatedMember: CalculatedMember[] | CalculatedMember
206
- }
207
-
208
- export interface CubeUsage {
209
- cubeName: string
210
- ignoreUnrelatedDimensions?: boolean
211
- }
212
-
213
- export interface VirtualCubeDimension {
214
- cubeName: string
215
- cubeCaption?: string
216
- __shared__?: boolean
217
- name: string
218
- /**
219
- * @deprecated use caption
220
- */
221
- label?: string
222
- caption?: string
223
- }
224
-
225
- export interface VirtualCubeMeasure {
226
- cubeName: string
227
- cubeCaption?: string
228
- name: string
229
- /**
230
- * @deprecated use caption
231
- */
232
- label?: string
233
- caption?: string
234
- visible: boolean
235
- }
236
-
237
- export interface Role {
238
- name: string
239
- SchemaGrant?: SchemaGrant[]
240
- schemaGrant?: SchemaGrant
241
- // Union roles
242
- roleUsages?: string[]
243
- }
244
-
245
- /**
246
- * enumerates the allowable access rights.
247
- */
248
- export enum Access {
249
- /**
250
- * No access to an object and its children.
251
- */
252
- none = 'none',
253
- /**
254
- * A grant that covers none of the children unless explicitly granted.
255
- */
256
- custom = 'custom',
257
- /**
258
- * Access to all shared dimensions (applies to schema grant).
259
- */
260
- all_dimensions = 'all_dimensions',
261
- /**
262
- * All access to an object and its children.
263
- */
264
- all = 'all',
265
- }
266
-
267
- export enum RollupPolicy {
268
- full = 'full',
269
- partial = 'partial',
270
- hidden = 'hidden'
271
- }
272
-
273
- export interface SchemaGrant {
274
- access: Access
275
- cubeGrants: CubeGrant[]
276
- }
277
-
278
- export interface CubeGrant {
279
- cube: string
280
- access: Access
281
- hierarchyGrants: HierarchyGrant[]
282
- }
283
-
284
- export interface HierarchyGrant {
285
- hierarchy: string
286
- caption?: string
287
- access: Access
288
- rollupPolicy: RollupPolicy
289
- topLevel: string
290
- topLevelCaption?: string
291
- bottomLevel: string
292
- bottomLevelCaption?: string
293
- memberGrants: MemberGrant[]
294
- }
295
-
296
- export interface MemberGrant {
297
- member: string
298
- caption?: string
299
- access: Access
300
- }