@objectstack/spec 0.3.2 → 0.3.3

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 (396) hide show
  1. package/README.md +32 -10
  2. package/dist/ai/agent.zod.d.ts +12 -12
  3. package/dist/ai/conversation.zod.d.ts +65 -65
  4. package/dist/ai/cost.zod.d.ts +125 -125
  5. package/dist/ai/index.d.ts +1 -1
  6. package/dist/ai/index.d.ts.map +1 -1
  7. package/dist/ai/index.js +1 -1
  8. package/dist/ai/model-registry.zod.d.ts +94 -94
  9. package/dist/ai/nlq.zod.d.ts +70 -70
  10. package/dist/ai/{workflow-automation.zod.d.ts → orchestration.zod.d.ts} +50 -49
  11. package/dist/ai/orchestration.zod.d.ts.map +1 -0
  12. package/dist/ai/{workflow-automation.zod.js → orchestration.zod.js} +26 -25
  13. package/dist/ai/predictive.zod.d.ts +31 -31
  14. package/dist/ai/rag-pipeline.zod.d.ts +86 -86
  15. package/dist/api/contract.zod.d.ts +121 -105
  16. package/dist/api/contract.zod.d.ts.map +1 -1
  17. package/dist/{system → api}/discovery.zod.d.ts +26 -26
  18. package/dist/api/discovery.zod.d.ts.map +1 -0
  19. package/dist/{system → api}/discovery.zod.js +9 -9
  20. package/dist/{system/api.zod.d.ts → api/endpoint.zod.d.ts} +53 -57
  21. package/dist/api/endpoint.zod.d.ts.map +1 -0
  22. package/dist/{system/api.zod.js → api/endpoint.zod.js} +3 -6
  23. package/dist/api/index.d.ts +4 -0
  24. package/dist/api/index.d.ts.map +1 -1
  25. package/dist/api/index.js +4 -0
  26. package/dist/{system → api}/realtime.zod.d.ts +4 -4
  27. package/dist/api/realtime.zod.d.ts.map +1 -0
  28. package/dist/api/router.zod.d.ts +182 -0
  29. package/dist/api/router.zod.d.ts.map +1 -0
  30. package/dist/api/router.zod.js +103 -0
  31. package/dist/{system/auth.zod.d.ts → auth/config.zod.d.ts} +191 -191
  32. package/dist/auth/config.zod.d.ts.map +1 -0
  33. package/dist/{system → auth}/identity.zod.d.ts +8 -8
  34. package/dist/auth/identity.zod.d.ts.map +1 -0
  35. package/dist/auth/index.d.ts +7 -0
  36. package/dist/auth/index.d.ts.map +1 -0
  37. package/dist/auth/index.js +22 -0
  38. package/dist/{system → auth}/organization.zod.d.ts +5 -5
  39. package/dist/auth/organization.zod.d.ts.map +1 -0
  40. package/dist/{system → auth}/policy.zod.d.ts +3 -3
  41. package/dist/auth/policy.zod.d.ts.map +1 -0
  42. package/dist/{system/auth-protocol.d.ts → auth/protocol.d.ts} +1 -1
  43. package/dist/auth/protocol.d.ts.map +1 -0
  44. package/dist/auth/role.zod.d.ts.map +1 -0
  45. package/dist/{data → automation}/flow.zod.d.ts +34 -16
  46. package/dist/automation/flow.zod.d.ts.map +1 -0
  47. package/dist/{data → automation}/flow.zod.js +6 -1
  48. package/dist/automation/index.d.ts +4 -0
  49. package/dist/automation/index.d.ts.map +1 -0
  50. package/dist/automation/index.js +19 -0
  51. package/dist/{system → automation}/webhook.zod.d.ts +2 -2
  52. package/dist/automation/webhook.zod.d.ts.map +1 -0
  53. package/dist/automation/workflow.zod.d.ts +2045 -0
  54. package/dist/automation/workflow.zod.d.ts.map +1 -0
  55. package/dist/{data → automation}/workflow.zod.js +24 -1
  56. package/dist/data/dataset.zod.d.ts +2 -2
  57. package/dist/data/field.zod.d.ts +443 -213
  58. package/dist/data/field.zod.d.ts.map +1 -1
  59. package/dist/data/field.zod.js +29 -1
  60. package/dist/data/filter.zod.d.ts +167 -30
  61. package/dist/data/filter.zod.d.ts.map +1 -1
  62. package/dist/data/filter.zod.js +25 -13
  63. package/dist/data/hook.zod.d.ts +191 -0
  64. package/dist/data/hook.zod.d.ts.map +1 -0
  65. package/dist/data/hook.zod.js +144 -0
  66. package/dist/data/index.d.ts +4 -17
  67. package/dist/data/index.d.ts.map +1 -1
  68. package/dist/data/index.js +4 -17
  69. package/dist/data/mapping.zod.d.ts +103 -91
  70. package/dist/data/mapping.zod.d.ts.map +1 -1
  71. package/dist/data/object.zod.d.ts +387 -127
  72. package/dist/data/object.zod.d.ts.map +1 -1
  73. package/dist/data/object.zod.js +87 -42
  74. package/dist/data/query.zod.d.ts +98 -169
  75. package/dist/data/query.zod.d.ts.map +1 -1
  76. package/dist/data/query.zod.js +42 -130
  77. package/dist/data/validation.zod.d.ts +166 -26
  78. package/dist/data/validation.zod.d.ts.map +1 -1
  79. package/dist/data/validation.zod.js +38 -16
  80. package/dist/{system → driver}/datasource.zod.d.ts +42 -8
  81. package/dist/driver/datasource.zod.d.ts.map +1 -0
  82. package/dist/{system → driver}/datasource.zod.js +17 -13
  83. package/dist/driver/driver.zod.d.ts +3392 -0
  84. package/dist/driver/driver.zod.d.ts.map +1 -0
  85. package/dist/{system → driver}/driver.zod.js +99 -0
  86. package/dist/driver/index.d.ts +5 -0
  87. package/dist/driver/index.d.ts.map +1 -0
  88. package/dist/driver/index.js +20 -0
  89. package/dist/driver/mongo.zod.d.ts +107 -0
  90. package/dist/driver/mongo.zod.d.ts.map +1 -0
  91. package/dist/driver/mongo.zod.js +80 -0
  92. package/dist/driver/postgres.zod.d.ts +134 -0
  93. package/dist/driver/postgres.zod.d.ts.map +1 -0
  94. package/dist/driver/postgres.zod.js +88 -0
  95. package/dist/hub/composer.zod.d.ts +2768 -0
  96. package/dist/hub/composer.zod.d.ts.map +1 -0
  97. package/dist/hub/composer.zod.js +111 -0
  98. package/dist/hub/index.d.ts +6 -0
  99. package/dist/hub/index.d.ts.map +1 -0
  100. package/dist/hub/index.js +22 -0
  101. package/dist/{system → hub}/license.zod.d.ts +11 -7
  102. package/dist/hub/license.zod.d.ts.map +1 -0
  103. package/dist/{system → hub}/license.zod.js +5 -3
  104. package/dist/hub/marketplace.zod.d.ts +191 -0
  105. package/dist/hub/marketplace.zod.d.ts.map +1 -0
  106. package/dist/hub/marketplace.zod.js +85 -0
  107. package/dist/hub/space.zod.d.ts +383 -0
  108. package/dist/hub/space.zod.d.ts.map +1 -0
  109. package/dist/hub/space.zod.js +103 -0
  110. package/dist/{system → hub}/tenant.zod.d.ts +73 -47
  111. package/dist/hub/tenant.zod.d.ts.map +1 -0
  112. package/dist/{system → hub}/tenant.zod.js +36 -10
  113. package/dist/index.d.ts +11 -4
  114. package/dist/index.d.ts.map +1 -1
  115. package/dist/index.js +12 -5
  116. package/dist/kernel/context.zod.d.ts +56 -0
  117. package/dist/kernel/context.zod.d.ts.map +1 -0
  118. package/dist/kernel/context.zod.js +43 -0
  119. package/dist/kernel/index.d.ts +12 -0
  120. package/dist/kernel/index.d.ts.map +1 -0
  121. package/dist/kernel/index.js +27 -0
  122. package/dist/kernel/logger.zod.d.ts +111 -0
  123. package/dist/kernel/logger.zod.d.ts.map +1 -0
  124. package/dist/kernel/logger.zod.js +75 -0
  125. package/dist/kernel/manifest.zod.d.ts +2153 -0
  126. package/dist/kernel/manifest.zod.d.ts.map +1 -0
  127. package/dist/{system → kernel}/manifest.zod.js +40 -0
  128. package/dist/{system → kernel}/plugin.zod.d.ts +598 -318
  129. package/dist/kernel/plugin.zod.d.ts.map +1 -0
  130. package/dist/{system → kernel}/plugin.zod.js +13 -0
  131. package/dist/kernel/scoped-storage.zod.d.ts +81 -0
  132. package/dist/kernel/scoped-storage.zod.d.ts.map +1 -0
  133. package/dist/kernel/scoped-storage.zod.js +66 -0
  134. package/dist/permission/index.d.ts +12 -0
  135. package/dist/permission/index.d.ts.map +1 -0
  136. package/dist/permission/index.js +27 -0
  137. package/dist/{data → permission}/permission.zod.d.ts +34 -3
  138. package/dist/permission/permission.zod.d.ts.map +1 -0
  139. package/dist/{data → permission}/permission.zod.js +10 -1
  140. package/dist/permission/sharing.zod.d.ts +146 -0
  141. package/dist/permission/sharing.zod.d.ts.map +1 -0
  142. package/dist/permission/sharing.zod.js +88 -0
  143. package/dist/permission/territory.zod.d.ts.map +1 -0
  144. package/dist/system/audit.zod.d.ts +52 -52
  145. package/dist/system/events.zod.d.ts +17 -17
  146. package/dist/system/index.d.ts +1 -20
  147. package/dist/system/index.d.ts.map +1 -1
  148. package/dist/system/index.js +3 -20
  149. package/dist/system/job.zod.d.ts +13 -13
  150. package/dist/ui/action.zod.d.ts +13 -13
  151. package/dist/ui/app.zod.d.ts +11 -11
  152. package/dist/ui/dashboard.zod.d.ts +12 -12
  153. package/dist/ui/page.zod.d.ts +2 -2
  154. package/dist/ui/report.zod.d.ts +7 -7
  155. package/dist/ui/theme.zod.d.ts +42 -42
  156. package/dist/ui/view.zod.d.ts +55 -55
  157. package/dist/ui/widget.zod.d.ts +61 -28
  158. package/dist/ui/widget.zod.d.ts.map +1 -1
  159. package/json-schema/ai/{AIWorkflowAutomation.json → AIOrchestration.json} +5 -5
  160. package/json-schema/ai/{AIWorkflowExecutionResult.json → AIOrchestrationExecutionResult.json} +2 -2
  161. package/json-schema/ai/{AIWorkflowTrigger.json → AIOrchestrationTrigger.json} +2 -2
  162. package/json-schema/ai/{BatchAIWorkflowExecution.json → BatchAIOrchestrationExecution.json} +3 -3
  163. package/json-schema/{system → api}/ApiEndpoint.json +3 -1
  164. package/json-schema/{system → api}/ApiRoutes.json +7 -7
  165. package/json-schema/{system → api}/Discovery.json +7 -7
  166. package/json-schema/api/ExportRequest.json +402 -438
  167. package/json-schema/{system → api}/HttpMethod.json +3 -1
  168. package/json-schema/api/RouteCategory.json +17 -0
  169. package/json-schema/api/RouteDefinition.json +77 -0
  170. package/json-schema/api/RouterConfig.json +117 -0
  171. package/json-schema/{data → automation}/Flow.json +31 -1
  172. package/json-schema/{data → automation}/FlowEdge.json +9 -0
  173. package/json-schema/{data/WorkflowRule.json → automation/TimeTrigger.json} +35 -25
  174. package/json-schema/automation/WorkflowRule.json +1031 -0
  175. package/json-schema/data/AggregationNode.json +23 -0
  176. package/json-schema/data/AsyncValidation.json +49 -2
  177. package/json-schema/data/ComparisonOperator.json +52 -0
  178. package/json-schema/data/ConditionalValidation.json +693 -46
  179. package/json-schema/data/CrossFieldValidation.json +33 -2
  180. package/json-schema/data/CurrencyConfig.json +35 -0
  181. package/json-schema/data/CurrencyValue.json +26 -0
  182. package/json-schema/data/CustomValidator.json +37 -10
  183. package/json-schema/data/Field.json +30 -0
  184. package/json-schema/data/FieldOperators.json +78 -0
  185. package/json-schema/data/FieldReference.json +19 -0
  186. package/json-schema/data/FormatValidation.json +33 -2
  187. package/json-schema/data/Hook.json +95 -0
  188. package/json-schema/data/HookContext.json +88 -0
  189. package/json-schema/data/HookEvent.json +29 -0
  190. package/json-schema/data/Index.json +10 -0
  191. package/json-schema/data/JSONValidation.json +85 -0
  192. package/json-schema/data/JoinNode.json +197 -213
  193. package/json-schema/data/{TriggerAction.json → JoinStrategy.json} +6 -5
  194. package/json-schema/data/NormalizedFilter.json +234 -0
  195. package/json-schema/data/Object.json +1580 -28
  196. package/json-schema/data/ObjectCapabilities.json +30 -12
  197. package/json-schema/data/Query.json +246 -262
  198. package/json-schema/data/RangeOperator.json +26 -0
  199. package/json-schema/data/ScriptValidation.json +33 -2
  200. package/json-schema/data/SearchConfig.json +36 -0
  201. package/json-schema/data/StateMachineValidation.json +33 -2
  202. package/json-schema/data/UniquenessValidation.json +33 -2
  203. package/json-schema/data/ValidationRule.json +693 -46
  204. package/json-schema/{system → driver}/Datasource.json +35 -0
  205. package/json-schema/{system → driver}/DriverCapabilities.json +10 -0
  206. package/json-schema/{system → driver}/DriverInterface.json +10 -0
  207. package/json-schema/{system → driver}/DriverOptions.json +11 -0
  208. package/json-schema/driver/MongoConfig.json +82 -0
  209. package/json-schema/driver/PostgresConfig.json +98 -0
  210. package/json-schema/hub/BillOfMaterials.json +70 -0
  211. package/json-schema/hub/ComposerRequest.json +86 -0
  212. package/json-schema/hub/ComposerResponse.json +2645 -0
  213. package/json-schema/hub/ConflictReport.json +53 -0
  214. package/json-schema/hub/DependencyRequirement.json +36 -0
  215. package/json-schema/hub/DeploymentTarget.json +38 -0
  216. package/json-schema/hub/HubSpace.json +279 -0
  217. package/json-schema/{system → hub}/License.json +11 -3
  218. package/json-schema/hub/MarketplacePlugin.json +141 -0
  219. package/json-schema/hub/PluginAuthor.json +26 -0
  220. package/json-schema/hub/PluginPricing.json +43 -0
  221. package/json-schema/hub/SpaceSubscription.json +77 -0
  222. package/json-schema/hub/SubscriptionStatus.json +16 -0
  223. package/json-schema/{system → hub}/Tenant.json +3 -5
  224. package/json-schema/kernel/FileMetadata.json +43 -0
  225. package/json-schema/kernel/KernelContext.json +62 -0
  226. package/json-schema/kernel/LogEntry.json +63 -0
  227. package/json-schema/kernel/LogFormat.json +15 -0
  228. package/json-schema/kernel/LogLevel.json +17 -0
  229. package/json-schema/kernel/LoggerConfig.json +70 -0
  230. package/json-schema/kernel/Manifest.json +2557 -0
  231. package/json-schema/{system → kernel}/PluginContext.json +8 -1
  232. package/json-schema/kernel/RuntimeMode.json +16 -0
  233. package/json-schema/kernel/ScopedStorageConfig.json +54 -0
  234. package/json-schema/kernel/StorageAdapterType.json +17 -0
  235. package/json-schema/kernel/StorageScope.json +18 -0
  236. package/json-schema/permission/CriteriaSharingRule.json +82 -0
  237. package/json-schema/{data → permission}/OWDModel.json +2 -1
  238. package/json-schema/{data → permission}/ObjectPermission.json +15 -0
  239. package/json-schema/permission/OwnerSharingRule.json +102 -0
  240. package/json-schema/{data → permission}/PermissionSet.json +15 -0
  241. package/json-schema/permission/ShareRecipientType.json +16 -0
  242. package/json-schema/{data → permission}/SharingLevel.json +2 -1
  243. package/json-schema/permission/SharingRule.json +182 -0
  244. package/json-schema/{data → permission}/SharingRuleType.json +1 -3
  245. package/json-schema/ui/FieldWidgetProps.json +30 -0
  246. package/llms.txt +182 -0
  247. package/package.json +38 -16
  248. package/prompts/README.md +18 -0
  249. package/prompts/architecture.md +81 -0
  250. package/prompts/implement-objectai.md +39 -0
  251. package/prompts/implement-objectos.md +48 -0
  252. package/prompts/implement-objectql.md +39 -0
  253. package/prompts/implement-objectui.md +46 -0
  254. package/prompts/instructions.md +91 -0
  255. package/dist/ai/workflow-automation.zod.d.ts.map +0 -1
  256. package/dist/data/flow.zod.d.ts.map +0 -1
  257. package/dist/data/permission.zod.d.ts.map +0 -1
  258. package/dist/data/sharing.zod.d.ts +0 -63
  259. package/dist/data/sharing.zod.d.ts.map +0 -1
  260. package/dist/data/sharing.zod.js +0 -57
  261. package/dist/data/trigger.zod.d.ts +0 -354
  262. package/dist/data/trigger.zod.d.ts.map +0 -1
  263. package/dist/data/trigger.zod.js +0 -195
  264. package/dist/data/workflow.zod.d.ts +0 -986
  265. package/dist/data/workflow.zod.d.ts.map +0 -1
  266. package/dist/system/api.zod.d.ts.map +0 -1
  267. package/dist/system/auth-protocol.d.ts.map +0 -1
  268. package/dist/system/auth.zod.d.ts.map +0 -1
  269. package/dist/system/datasource.zod.d.ts.map +0 -1
  270. package/dist/system/discovery.zod.d.ts.map +0 -1
  271. package/dist/system/driver.zod.d.ts +0 -1631
  272. package/dist/system/driver.zod.d.ts.map +0 -1
  273. package/dist/system/identity.zod.d.ts.map +0 -1
  274. package/dist/system/license.zod.d.ts.map +0 -1
  275. package/dist/system/manifest.zod.d.ts +0 -397
  276. package/dist/system/manifest.zod.d.ts.map +0 -1
  277. package/dist/system/organization.zod.d.ts.map +0 -1
  278. package/dist/system/plugin.zod.d.ts.map +0 -1
  279. package/dist/system/policy.zod.d.ts.map +0 -1
  280. package/dist/system/realtime.zod.d.ts.map +0 -1
  281. package/dist/system/role.zod.d.ts.map +0 -1
  282. package/dist/system/tenant.zod.d.ts.map +0 -1
  283. package/dist/system/territory.zod.d.ts.map +0 -1
  284. package/dist/system/webhook.zod.d.ts.map +0 -1
  285. package/json-schema/README.md +0 -127
  286. package/json-schema/data/FieldMapping.json +0 -83
  287. package/json-schema/data/FilterNode.json +0 -52
  288. package/json-schema/data/FilterOperator.json +0 -26
  289. package/json-schema/data/LogicOperator.json +0 -14
  290. package/json-schema/data/Mapping.json +0 -598
  291. package/json-schema/data/SharingRule.json +0 -58
  292. package/json-schema/data/TransformType.json +0 -18
  293. package/json-schema/data/Trigger.json +0 -73
  294. package/json-schema/data/TriggerContext.json +0 -61
  295. package/json-schema/data/TriggerTiming.json +0 -13
  296. package/json-schema/system/Manifest.json +0 -315
  297. /package/dist/{system → api}/realtime.zod.js +0 -0
  298. /package/dist/{system/auth.zod.js → auth/config.zod.js} +0 -0
  299. /package/dist/{system → auth}/identity.zod.js +0 -0
  300. /package/dist/{system → auth}/organization.zod.js +0 -0
  301. /package/dist/{system → auth}/policy.zod.js +0 -0
  302. /package/dist/{system/auth-protocol.js → auth/protocol.js} +0 -0
  303. /package/dist/{system → auth}/role.zod.d.ts +0 -0
  304. /package/dist/{system → auth}/role.zod.js +0 -0
  305. /package/dist/{system → automation}/webhook.zod.js +0 -0
  306. /package/dist/{system → permission}/territory.zod.d.ts +0 -0
  307. /package/dist/{system → permission}/territory.zod.js +0 -0
  308. /package/json-schema/{system → api}/ApiCapabilities.json +0 -0
  309. /package/json-schema/{system → api}/ApiMapping.json +0 -0
  310. /package/json-schema/{system → api}/Presence.json +0 -0
  311. /package/json-schema/{system → api}/PresenceStatus.json +0 -0
  312. /package/json-schema/{system → api}/RateLimit.json +0 -0
  313. /package/json-schema/{system → api}/RealtimeAction.json +0 -0
  314. /package/json-schema/{system → api}/RealtimeEvent.json +0 -0
  315. /package/json-schema/{system → api}/RealtimeEventType.json +0 -0
  316. /package/json-schema/{system → api}/Subscription.json +0 -0
  317. /package/json-schema/{system → api}/SubscriptionEvent.json +0 -0
  318. /package/json-schema/{system → api}/TransportProtocol.json +0 -0
  319. /package/json-schema/{system → auth}/Account.json +0 -0
  320. /package/json-schema/{system → auth}/AccountLinkingConfig.json +0 -0
  321. /package/json-schema/{system → auth}/AuditPolicy.json +0 -0
  322. /package/json-schema/{system → auth}/AuthConfig.json +0 -0
  323. /package/json-schema/{system → auth}/AuthPluginConfig.json +0 -0
  324. /package/json-schema/{system → auth}/AuthStrategy.json +0 -0
  325. /package/json-schema/{system → auth}/CSRFConfig.json +0 -0
  326. /package/json-schema/{system → auth}/DatabaseAdapter.json +0 -0
  327. /package/json-schema/{system → auth}/DatabaseMapping.json +0 -0
  328. /package/json-schema/{system → auth}/EmailPasswordConfig.json +0 -0
  329. /package/json-schema/{system → auth}/EnterpriseAuthConfig.json +0 -0
  330. /package/json-schema/{system → auth}/Invitation.json +0 -0
  331. /package/json-schema/{system → auth}/InvitationStatus.json +0 -0
  332. /package/json-schema/{system → auth}/LDAPConfig.json +0 -0
  333. /package/json-schema/{system → auth}/MagicLinkConfig.json +0 -0
  334. /package/json-schema/{system → auth}/Member.json +0 -0
  335. /package/json-schema/{system → auth}/NetworkPolicy.json +0 -0
  336. /package/json-schema/{system → auth}/OAuthProvider.json +0 -0
  337. /package/json-schema/{system → auth}/OIDCConfig.json +0 -0
  338. /package/json-schema/{system → auth}/Organization.json +0 -0
  339. /package/json-schema/{system → auth}/PasskeyConfig.json +0 -0
  340. /package/json-schema/{system → auth}/PasswordPolicy.json +0 -0
  341. /package/json-schema/{system → auth}/Policy.json +0 -0
  342. /package/json-schema/{system → auth}/RateLimitConfig.json +0 -0
  343. /package/json-schema/{system → auth}/Role.json +0 -0
  344. /package/json-schema/{system → auth}/SAMLConfig.json +0 -0
  345. /package/json-schema/{system → auth}/Session.json +0 -0
  346. /package/json-schema/{system → auth}/SessionConfig.json +0 -0
  347. /package/json-schema/{system → auth}/SessionPolicy.json +0 -0
  348. /package/json-schema/{system → auth}/StandardAuthProvider.json +0 -0
  349. /package/json-schema/{system → auth}/TwoFactorConfig.json +0 -0
  350. /package/json-schema/{system → auth}/User.json +0 -0
  351. /package/json-schema/{system → auth}/UserFieldMapping.json +0 -0
  352. /package/json-schema/{system → auth}/VerificationToken.json +0 -0
  353. /package/json-schema/{data → automation}/CustomScriptAction.json +0 -0
  354. /package/json-schema/{data → automation}/EmailAlertAction.json +0 -0
  355. /package/json-schema/{data → automation}/FieldUpdateAction.json +0 -0
  356. /package/json-schema/{data → automation}/FlowNode.json +0 -0
  357. /package/json-schema/{data → automation}/FlowNodeAction.json +0 -0
  358. /package/json-schema/{data → automation}/FlowVariable.json +0 -0
  359. /package/json-schema/{data → automation}/HttpCallAction.json +0 -0
  360. /package/json-schema/{data → automation}/PushNotificationAction.json +0 -0
  361. /package/json-schema/{data → automation}/SlackMessageAction.json +0 -0
  362. /package/json-schema/{data → automation}/SmsNotificationAction.json +0 -0
  363. /package/json-schema/{data → automation}/TaskCreationAction.json +0 -0
  364. /package/json-schema/{data → automation}/TeamsMessageAction.json +0 -0
  365. /package/json-schema/{system → automation}/Webhook.json +0 -0
  366. /package/json-schema/{system → automation}/WebhookReceiver.json +0 -0
  367. /package/json-schema/{data → automation}/WebhookTriggerAction.json +0 -0
  368. /package/json-schema/{system → automation}/WebhookTriggerType.json +0 -0
  369. /package/json-schema/{data → automation}/WorkflowAction.json +0 -0
  370. /package/json-schema/{data → automation}/WorkflowTriggerType.json +0 -0
  371. /package/json-schema/{system → driver}/DatasourceCapabilities.json +0 -0
  372. /package/json-schema/{system → driver}/DriverDefinition.json +0 -0
  373. /package/json-schema/{system → driver}/DriverType.json +0 -0
  374. /package/json-schema/{system → hub}/DatabaseLevelIsolationStrategy.json +0 -0
  375. /package/json-schema/{system → hub}/Feature.json +0 -0
  376. /package/json-schema/{system → hub}/LevelIsolationStrategySchema.json +0 -0
  377. /package/json-schema/{system → hub}/MetricType.json +0 -0
  378. /package/json-schema/{system → hub}/Plan.json +0 -0
  379. /package/json-schema/{system → hub}/RowLevelIsolationStrategy.json +0 -0
  380. /package/json-schema/{system → hub}/TenantIsolationConfig.json +0 -0
  381. /package/json-schema/{system → hub}/TenantIsolationLevel.json +0 -0
  382. /package/json-schema/{system → hub}/TenantQuota.json +0 -0
  383. /package/json-schema/{system → hub}/TenantSecurityPolicy.json +0 -0
  384. /package/json-schema/{system → kernel}/I18nContext.json +0 -0
  385. /package/json-schema/{system → kernel}/Logger.json +0 -0
  386. /package/json-schema/{system → kernel}/ObjectQLClient.json +0 -0
  387. /package/json-schema/{system → kernel}/Plugin.json +0 -0
  388. /package/json-schema/{system → kernel}/PluginLifecycle.json +0 -0
  389. /package/json-schema/{system → kernel}/Router.json +0 -0
  390. /package/json-schema/{system → kernel}/Scheduler.json +0 -0
  391. /package/json-schema/{system → kernel}/ScopedStorage.json +0 -0
  392. /package/json-schema/{system → kernel}/SystemAPI.json +0 -0
  393. /package/json-schema/{data → permission}/FieldPermission.json +0 -0
  394. /package/json-schema/{system → permission}/Territory.json +0 -0
  395. /package/json-schema/{system → permission}/TerritoryModel.json +0 -0
  396. /package/json-schema/{system → permission}/TerritoryType.json +0 -0
@@ -43,6 +43,46 @@ export declare const LocationCoordinatesSchema: z.ZodObject<{
43
43
  altitude?: number | undefined;
44
44
  accuracy?: number | undefined;
45
45
  }>;
46
+ /**
47
+ * Currency Configuration Schema
48
+ * Configuration for currency field type supporting multi-currency
49
+ *
50
+ * Note: Currency codes are validated by length only (3 characters) to support:
51
+ * - Standard ISO 4217 codes (USD, EUR, CNY, etc.)
52
+ * - Cryptocurrency codes (BTC, ETH, etc.)
53
+ * - Custom business-specific codes
54
+ * Stricter validation can be implemented at the application layer based on business requirements.
55
+ */
56
+ export declare const CurrencyConfigSchema: z.ZodObject<{
57
+ precision: z.ZodDefault<z.ZodNumber>;
58
+ currencyMode: z.ZodDefault<z.ZodEnum<["dynamic", "fixed"]>>;
59
+ defaultCurrency: z.ZodDefault<z.ZodString>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ precision: number;
62
+ currencyMode: "dynamic" | "fixed";
63
+ defaultCurrency: string;
64
+ }, {
65
+ precision?: number | undefined;
66
+ currencyMode?: "dynamic" | "fixed" | undefined;
67
+ defaultCurrency?: string | undefined;
68
+ }>;
69
+ /**
70
+ * Currency Value Schema
71
+ * Runtime value structure for currency fields
72
+ *
73
+ * Note: Currency codes are validated by length only (3 characters) to support flexibility.
74
+ * See CurrencyConfigSchema for details on currency code validation strategy.
75
+ */
76
+ export declare const CurrencyValueSchema: z.ZodObject<{
77
+ value: z.ZodNumber;
78
+ currency: z.ZodString;
79
+ }, "strip", z.ZodTypeAny, {
80
+ value: number;
81
+ currency: string;
82
+ }, {
83
+ value: number;
84
+ currency: string;
85
+ }>;
46
86
  /**
47
87
  * Address Schema
48
88
  * Structured address for address field type
@@ -127,11 +167,11 @@ export declare const FieldSchema: z.ZodObject<{
127
167
  function: z.ZodEnum<["count", "sum", "min", "max", "avg"]>;
128
168
  }, "strip", z.ZodTypeAny, {
129
169
  object: string;
130
- function: "min" | "max" | "count" | "sum" | "avg";
170
+ function: "count" | "sum" | "avg" | "min" | "max";
131
171
  field: string;
132
172
  }, {
133
173
  object: string;
134
- function: "min" | "max" | "count" | "sum" | "avg";
174
+ function: "count" | "sum" | "avg" | "min" | "max";
135
175
  field: string;
136
176
  }>>;
137
177
  /** Enhanced Field Type Configurations */
@@ -153,6 +193,19 @@ export declare const FieldSchema: z.ZodObject<{
153
193
  qrErrorCorrection: z.ZodOptional<z.ZodEnum<["L", "M", "Q", "H"]>>;
154
194
  displayValue: z.ZodOptional<z.ZodBoolean>;
155
195
  allowScanning: z.ZodOptional<z.ZodBoolean>;
196
+ currencyConfig: z.ZodOptional<z.ZodObject<{
197
+ precision: z.ZodDefault<z.ZodNumber>;
198
+ currencyMode: z.ZodDefault<z.ZodEnum<["dynamic", "fixed"]>>;
199
+ defaultCurrency: z.ZodDefault<z.ZodString>;
200
+ }, "strip", z.ZodTypeAny, {
201
+ precision: number;
202
+ currencyMode: "dynamic" | "fixed";
203
+ defaultCurrency: string;
204
+ }, {
205
+ precision?: number | undefined;
206
+ currencyMode?: "dynamic" | "fixed" | undefined;
207
+ defaultCurrency?: string | undefined;
208
+ }>>;
156
209
  /** Security & Visibility */
157
210
  hidden: z.ZodDefault<z.ZodBoolean>;
158
211
  readonly: z.ZodDefault<z.ZodBoolean>;
@@ -161,7 +214,7 @@ export declare const FieldSchema: z.ZodObject<{
161
214
  index: z.ZodDefault<z.ZodBoolean>;
162
215
  externalId: z.ZodDefault<z.ZodBoolean>;
163
216
  }, "strip", z.ZodTypeAny, {
164
- type: "number" | "boolean" | "text" | "textarea" | "email" | "url" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "date" | "datetime" | "time" | "select" | "lookup" | "master_detail" | "image" | "file" | "avatar" | "formula" | "summary" | "autonumber" | "location" | "geolocation" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode";
217
+ type: "number" | "boolean" | "code" | "date" | "text" | "textarea" | "email" | "url" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "select" | "lookup" | "master_detail" | "image" | "file" | "avatar" | "formula" | "summary" | "autonumber" | "location" | "geolocation" | "address" | "color" | "rating" | "slider" | "signature" | "qrcode";
165
218
  required: boolean;
166
219
  searchable: boolean;
167
220
  multiple: boolean;
@@ -172,31 +225,31 @@ export declare const FieldSchema: z.ZodObject<{
172
225
  encryption: boolean;
173
226
  index: boolean;
174
227
  externalId: boolean;
175
- formula?: string | undefined;
176
228
  options?: {
177
229
  value: string;
178
230
  label: string;
179
231
  color?: string | undefined;
180
232
  default?: boolean | undefined;
181
233
  }[] | undefined;
234
+ min?: number | undefined;
235
+ max?: number | undefined;
236
+ formula?: string | undefined;
182
237
  label?: string | undefined;
238
+ precision?: number | undefined;
183
239
  name?: string | undefined;
184
240
  description?: string | undefined;
185
241
  format?: string | undefined;
186
242
  defaultValue?: any;
187
243
  maxLength?: number | undefined;
188
244
  minLength?: number | undefined;
189
- precision?: number | undefined;
190
245
  scale?: number | undefined;
191
- min?: number | undefined;
192
- max?: number | undefined;
193
246
  reference?: string | undefined;
194
247
  referenceFilters?: string[] | undefined;
195
248
  writeRequiresMasterRead?: boolean | undefined;
196
249
  expression?: string | undefined;
197
250
  summaryOperations?: {
198
251
  object: string;
199
- function: "min" | "max" | "count" | "sum" | "avg";
252
+ function: "count" | "sum" | "avg" | "min" | "max";
200
253
  field: string;
201
254
  } | undefined;
202
255
  language?: string | undefined;
@@ -217,30 +270,35 @@ export declare const FieldSchema: z.ZodObject<{
217
270
  qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
218
271
  displayValue?: boolean | undefined;
219
272
  allowScanning?: boolean | undefined;
273
+ currencyConfig?: {
274
+ precision: number;
275
+ currencyMode: "dynamic" | "fixed";
276
+ defaultCurrency: string;
277
+ } | undefined;
220
278
  }, {
221
- type: "number" | "boolean" | "text" | "textarea" | "email" | "url" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "date" | "datetime" | "time" | "select" | "lookup" | "master_detail" | "image" | "file" | "avatar" | "formula" | "summary" | "autonumber" | "location" | "geolocation" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode";
222
- formula?: string | undefined;
279
+ type: "number" | "boolean" | "code" | "date" | "text" | "textarea" | "email" | "url" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "select" | "lookup" | "master_detail" | "image" | "file" | "avatar" | "formula" | "summary" | "autonumber" | "location" | "geolocation" | "address" | "color" | "rating" | "slider" | "signature" | "qrcode";
223
280
  options?: {
224
281
  value: string;
225
282
  label: string;
226
283
  color?: string | undefined;
227
284
  default?: boolean | undefined;
228
285
  }[] | undefined;
286
+ required?: boolean | undefined;
287
+ min?: number | undefined;
288
+ max?: number | undefined;
289
+ formula?: string | undefined;
229
290
  label?: string | undefined;
291
+ precision?: number | undefined;
230
292
  name?: string | undefined;
231
293
  description?: string | undefined;
232
294
  format?: string | undefined;
233
- required?: boolean | undefined;
234
295
  searchable?: boolean | undefined;
235
296
  multiple?: boolean | undefined;
236
297
  unique?: boolean | undefined;
237
298
  defaultValue?: any;
238
299
  maxLength?: number | undefined;
239
300
  minLength?: number | undefined;
240
- precision?: number | undefined;
241
301
  scale?: number | undefined;
242
- min?: number | undefined;
243
- max?: number | undefined;
244
302
  reference?: string | undefined;
245
303
  referenceFilters?: string[] | undefined;
246
304
  writeRequiresMasterRead?: boolean | undefined;
@@ -248,7 +306,7 @@ export declare const FieldSchema: z.ZodObject<{
248
306
  expression?: string | undefined;
249
307
  summaryOperations?: {
250
308
  object: string;
251
- function: "min" | "max" | "count" | "sum" | "avg";
309
+ function: "count" | "sum" | "avg" | "min" | "max";
252
310
  field: string;
253
311
  } | undefined;
254
312
  language?: string | undefined;
@@ -269,6 +327,11 @@ export declare const FieldSchema: z.ZodObject<{
269
327
  qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
270
328
  displayValue?: boolean | undefined;
271
329
  allowScanning?: boolean | undefined;
330
+ currencyConfig?: {
331
+ precision?: number | undefined;
332
+ currencyMode?: "dynamic" | "fixed" | undefined;
333
+ defaultCurrency?: string | undefined;
334
+ } | undefined;
272
335
  hidden?: boolean | undefined;
273
336
  readonly?: boolean | undefined;
274
337
  encryption?: boolean | undefined;
@@ -279,34 +342,36 @@ export type Field = z.infer<typeof FieldSchema>;
279
342
  export type SelectOption = z.infer<typeof SelectOptionSchema>;
280
343
  export type LocationCoordinates = z.infer<typeof LocationCoordinatesSchema>;
281
344
  export type Address = z.infer<typeof AddressSchema>;
345
+ export type CurrencyConfig = z.infer<typeof CurrencyConfigSchema>;
346
+ export type CurrencyValue = z.infer<typeof CurrencyValueSchema>;
282
347
  /**
283
348
  * Field Factory Helper
284
349
  */
285
350
  export type FieldInput = Omit<Partial<Field>, 'type'>;
286
351
  export declare const Field: {
287
352
  text: (config?: FieldInput) => {
288
- readonly formula?: string | undefined;
289
353
  readonly options?: {
290
354
  value: string;
291
355
  label: string;
292
356
  color?: string | undefined;
293
357
  default?: boolean | undefined;
294
358
  }[] | undefined;
359
+ readonly required?: boolean | undefined;
360
+ readonly min?: number | undefined;
361
+ readonly max?: number | undefined;
362
+ readonly formula?: string | undefined;
295
363
  readonly label?: string | undefined;
364
+ readonly precision?: number | undefined;
296
365
  readonly name?: string | undefined;
297
366
  readonly description?: string | undefined;
298
367
  readonly format?: string | undefined;
299
- readonly required?: boolean | undefined;
300
368
  readonly searchable?: boolean | undefined;
301
369
  readonly multiple?: boolean | undefined;
302
370
  readonly unique?: boolean | undefined;
303
371
  readonly defaultValue?: any;
304
372
  readonly maxLength?: number | undefined;
305
373
  readonly minLength?: number | undefined;
306
- readonly precision?: number | undefined;
307
374
  readonly scale?: number | undefined;
308
- readonly min?: number | undefined;
309
- readonly max?: number | undefined;
310
375
  readonly reference?: string | undefined;
311
376
  readonly referenceFilters?: string[] | undefined;
312
377
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -314,7 +379,7 @@ export declare const Field: {
314
379
  readonly expression?: string | undefined;
315
380
  readonly summaryOperations?: {
316
381
  object: string;
317
- function: "min" | "max" | "count" | "sum" | "avg";
382
+ function: "count" | "sum" | "avg" | "min" | "max";
318
383
  field: string;
319
384
  } | undefined;
320
385
  readonly language?: string | undefined;
@@ -335,6 +400,11 @@ export declare const Field: {
335
400
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
336
401
  readonly displayValue?: boolean | undefined;
337
402
  readonly allowScanning?: boolean | undefined;
403
+ readonly currencyConfig?: {
404
+ precision: number;
405
+ currencyMode: "dynamic" | "fixed";
406
+ defaultCurrency: string;
407
+ } | undefined;
338
408
  readonly hidden?: boolean | undefined;
339
409
  readonly readonly?: boolean | undefined;
340
410
  readonly encryption?: boolean | undefined;
@@ -343,28 +413,28 @@ export declare const Field: {
343
413
  readonly type: "text";
344
414
  };
345
415
  textarea: (config?: FieldInput) => {
346
- readonly formula?: string | undefined;
347
416
  readonly options?: {
348
417
  value: string;
349
418
  label: string;
350
419
  color?: string | undefined;
351
420
  default?: boolean | undefined;
352
421
  }[] | undefined;
422
+ readonly required?: boolean | undefined;
423
+ readonly min?: number | undefined;
424
+ readonly max?: number | undefined;
425
+ readonly formula?: string | undefined;
353
426
  readonly label?: string | undefined;
427
+ readonly precision?: number | undefined;
354
428
  readonly name?: string | undefined;
355
429
  readonly description?: string | undefined;
356
430
  readonly format?: string | undefined;
357
- readonly required?: boolean | undefined;
358
431
  readonly searchable?: boolean | undefined;
359
432
  readonly multiple?: boolean | undefined;
360
433
  readonly unique?: boolean | undefined;
361
434
  readonly defaultValue?: any;
362
435
  readonly maxLength?: number | undefined;
363
436
  readonly minLength?: number | undefined;
364
- readonly precision?: number | undefined;
365
437
  readonly scale?: number | undefined;
366
- readonly min?: number | undefined;
367
- readonly max?: number | undefined;
368
438
  readonly reference?: string | undefined;
369
439
  readonly referenceFilters?: string[] | undefined;
370
440
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -372,7 +442,7 @@ export declare const Field: {
372
442
  readonly expression?: string | undefined;
373
443
  readonly summaryOperations?: {
374
444
  object: string;
375
- function: "min" | "max" | "count" | "sum" | "avg";
445
+ function: "count" | "sum" | "avg" | "min" | "max";
376
446
  field: string;
377
447
  } | undefined;
378
448
  readonly language?: string | undefined;
@@ -393,6 +463,11 @@ export declare const Field: {
393
463
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
394
464
  readonly displayValue?: boolean | undefined;
395
465
  readonly allowScanning?: boolean | undefined;
466
+ readonly currencyConfig?: {
467
+ precision: number;
468
+ currencyMode: "dynamic" | "fixed";
469
+ defaultCurrency: string;
470
+ } | undefined;
396
471
  readonly hidden?: boolean | undefined;
397
472
  readonly readonly?: boolean | undefined;
398
473
  readonly encryption?: boolean | undefined;
@@ -401,28 +476,28 @@ export declare const Field: {
401
476
  readonly type: "textarea";
402
477
  };
403
478
  number: (config?: FieldInput) => {
404
- readonly formula?: string | undefined;
405
479
  readonly options?: {
406
480
  value: string;
407
481
  label: string;
408
482
  color?: string | undefined;
409
483
  default?: boolean | undefined;
410
484
  }[] | undefined;
485
+ readonly required?: boolean | undefined;
486
+ readonly min?: number | undefined;
487
+ readonly max?: number | undefined;
488
+ readonly formula?: string | undefined;
411
489
  readonly label?: string | undefined;
490
+ readonly precision?: number | undefined;
412
491
  readonly name?: string | undefined;
413
492
  readonly description?: string | undefined;
414
493
  readonly format?: string | undefined;
415
- readonly required?: boolean | undefined;
416
494
  readonly searchable?: boolean | undefined;
417
495
  readonly multiple?: boolean | undefined;
418
496
  readonly unique?: boolean | undefined;
419
497
  readonly defaultValue?: any;
420
498
  readonly maxLength?: number | undefined;
421
499
  readonly minLength?: number | undefined;
422
- readonly precision?: number | undefined;
423
500
  readonly scale?: number | undefined;
424
- readonly min?: number | undefined;
425
- readonly max?: number | undefined;
426
501
  readonly reference?: string | undefined;
427
502
  readonly referenceFilters?: string[] | undefined;
428
503
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -430,7 +505,7 @@ export declare const Field: {
430
505
  readonly expression?: string | undefined;
431
506
  readonly summaryOperations?: {
432
507
  object: string;
433
- function: "min" | "max" | "count" | "sum" | "avg";
508
+ function: "count" | "sum" | "avg" | "min" | "max";
434
509
  field: string;
435
510
  } | undefined;
436
511
  readonly language?: string | undefined;
@@ -451,6 +526,11 @@ export declare const Field: {
451
526
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
452
527
  readonly displayValue?: boolean | undefined;
453
528
  readonly allowScanning?: boolean | undefined;
529
+ readonly currencyConfig?: {
530
+ precision: number;
531
+ currencyMode: "dynamic" | "fixed";
532
+ defaultCurrency: string;
533
+ } | undefined;
454
534
  readonly hidden?: boolean | undefined;
455
535
  readonly readonly?: boolean | undefined;
456
536
  readonly encryption?: boolean | undefined;
@@ -459,28 +539,28 @@ export declare const Field: {
459
539
  readonly type: "number";
460
540
  };
461
541
  boolean: (config?: FieldInput) => {
462
- readonly formula?: string | undefined;
463
542
  readonly options?: {
464
543
  value: string;
465
544
  label: string;
466
545
  color?: string | undefined;
467
546
  default?: boolean | undefined;
468
547
  }[] | undefined;
548
+ readonly required?: boolean | undefined;
549
+ readonly min?: number | undefined;
550
+ readonly max?: number | undefined;
551
+ readonly formula?: string | undefined;
469
552
  readonly label?: string | undefined;
553
+ readonly precision?: number | undefined;
470
554
  readonly name?: string | undefined;
471
555
  readonly description?: string | undefined;
472
556
  readonly format?: string | undefined;
473
- readonly required?: boolean | undefined;
474
557
  readonly searchable?: boolean | undefined;
475
558
  readonly multiple?: boolean | undefined;
476
559
  readonly unique?: boolean | undefined;
477
560
  readonly defaultValue?: any;
478
561
  readonly maxLength?: number | undefined;
479
562
  readonly minLength?: number | undefined;
480
- readonly precision?: number | undefined;
481
563
  readonly scale?: number | undefined;
482
- readonly min?: number | undefined;
483
- readonly max?: number | undefined;
484
564
  readonly reference?: string | undefined;
485
565
  readonly referenceFilters?: string[] | undefined;
486
566
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -488,7 +568,7 @@ export declare const Field: {
488
568
  readonly expression?: string | undefined;
489
569
  readonly summaryOperations?: {
490
570
  object: string;
491
- function: "min" | "max" | "count" | "sum" | "avg";
571
+ function: "count" | "sum" | "avg" | "min" | "max";
492
572
  field: string;
493
573
  } | undefined;
494
574
  readonly language?: string | undefined;
@@ -509,6 +589,11 @@ export declare const Field: {
509
589
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
510
590
  readonly displayValue?: boolean | undefined;
511
591
  readonly allowScanning?: boolean | undefined;
592
+ readonly currencyConfig?: {
593
+ precision: number;
594
+ currencyMode: "dynamic" | "fixed";
595
+ defaultCurrency: string;
596
+ } | undefined;
512
597
  readonly hidden?: boolean | undefined;
513
598
  readonly readonly?: boolean | undefined;
514
599
  readonly encryption?: boolean | undefined;
@@ -517,28 +602,28 @@ export declare const Field: {
517
602
  readonly type: "boolean";
518
603
  };
519
604
  date: (config?: FieldInput) => {
520
- readonly formula?: string | undefined;
521
605
  readonly options?: {
522
606
  value: string;
523
607
  label: string;
524
608
  color?: string | undefined;
525
609
  default?: boolean | undefined;
526
610
  }[] | undefined;
611
+ readonly required?: boolean | undefined;
612
+ readonly min?: number | undefined;
613
+ readonly max?: number | undefined;
614
+ readonly formula?: string | undefined;
527
615
  readonly label?: string | undefined;
616
+ readonly precision?: number | undefined;
528
617
  readonly name?: string | undefined;
529
618
  readonly description?: string | undefined;
530
619
  readonly format?: string | undefined;
531
- readonly required?: boolean | undefined;
532
620
  readonly searchable?: boolean | undefined;
533
621
  readonly multiple?: boolean | undefined;
534
622
  readonly unique?: boolean | undefined;
535
623
  readonly defaultValue?: any;
536
624
  readonly maxLength?: number | undefined;
537
625
  readonly minLength?: number | undefined;
538
- readonly precision?: number | undefined;
539
626
  readonly scale?: number | undefined;
540
- readonly min?: number | undefined;
541
- readonly max?: number | undefined;
542
627
  readonly reference?: string | undefined;
543
628
  readonly referenceFilters?: string[] | undefined;
544
629
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -546,7 +631,7 @@ export declare const Field: {
546
631
  readonly expression?: string | undefined;
547
632
  readonly summaryOperations?: {
548
633
  object: string;
549
- function: "min" | "max" | "count" | "sum" | "avg";
634
+ function: "count" | "sum" | "avg" | "min" | "max";
550
635
  field: string;
551
636
  } | undefined;
552
637
  readonly language?: string | undefined;
@@ -567,6 +652,11 @@ export declare const Field: {
567
652
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
568
653
  readonly displayValue?: boolean | undefined;
569
654
  readonly allowScanning?: boolean | undefined;
655
+ readonly currencyConfig?: {
656
+ precision: number;
657
+ currencyMode: "dynamic" | "fixed";
658
+ defaultCurrency: string;
659
+ } | undefined;
570
660
  readonly hidden?: boolean | undefined;
571
661
  readonly readonly?: boolean | undefined;
572
662
  readonly encryption?: boolean | undefined;
@@ -575,28 +665,28 @@ export declare const Field: {
575
665
  readonly type: "date";
576
666
  };
577
667
  datetime: (config?: FieldInput) => {
578
- readonly formula?: string | undefined;
579
668
  readonly options?: {
580
669
  value: string;
581
670
  label: string;
582
671
  color?: string | undefined;
583
672
  default?: boolean | undefined;
584
673
  }[] | undefined;
674
+ readonly required?: boolean | undefined;
675
+ readonly min?: number | undefined;
676
+ readonly max?: number | undefined;
677
+ readonly formula?: string | undefined;
585
678
  readonly label?: string | undefined;
679
+ readonly precision?: number | undefined;
586
680
  readonly name?: string | undefined;
587
681
  readonly description?: string | undefined;
588
682
  readonly format?: string | undefined;
589
- readonly required?: boolean | undefined;
590
683
  readonly searchable?: boolean | undefined;
591
684
  readonly multiple?: boolean | undefined;
592
685
  readonly unique?: boolean | undefined;
593
686
  readonly defaultValue?: any;
594
687
  readonly maxLength?: number | undefined;
595
688
  readonly minLength?: number | undefined;
596
- readonly precision?: number | undefined;
597
689
  readonly scale?: number | undefined;
598
- readonly min?: number | undefined;
599
- readonly max?: number | undefined;
600
690
  readonly reference?: string | undefined;
601
691
  readonly referenceFilters?: string[] | undefined;
602
692
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -604,7 +694,7 @@ export declare const Field: {
604
694
  readonly expression?: string | undefined;
605
695
  readonly summaryOperations?: {
606
696
  object: string;
607
- function: "min" | "max" | "count" | "sum" | "avg";
697
+ function: "count" | "sum" | "avg" | "min" | "max";
608
698
  field: string;
609
699
  } | undefined;
610
700
  readonly language?: string | undefined;
@@ -625,6 +715,11 @@ export declare const Field: {
625
715
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
626
716
  readonly displayValue?: boolean | undefined;
627
717
  readonly allowScanning?: boolean | undefined;
718
+ readonly currencyConfig?: {
719
+ precision: number;
720
+ currencyMode: "dynamic" | "fixed";
721
+ defaultCurrency: string;
722
+ } | undefined;
628
723
  readonly hidden?: boolean | undefined;
629
724
  readonly readonly?: boolean | undefined;
630
725
  readonly encryption?: boolean | undefined;
@@ -633,28 +728,28 @@ export declare const Field: {
633
728
  readonly type: "datetime";
634
729
  };
635
730
  currency: (config?: FieldInput) => {
636
- readonly formula?: string | undefined;
637
731
  readonly options?: {
638
732
  value: string;
639
733
  label: string;
640
734
  color?: string | undefined;
641
735
  default?: boolean | undefined;
642
736
  }[] | undefined;
737
+ readonly required?: boolean | undefined;
738
+ readonly min?: number | undefined;
739
+ readonly max?: number | undefined;
740
+ readonly formula?: string | undefined;
643
741
  readonly label?: string | undefined;
742
+ readonly precision?: number | undefined;
644
743
  readonly name?: string | undefined;
645
744
  readonly description?: string | undefined;
646
745
  readonly format?: string | undefined;
647
- readonly required?: boolean | undefined;
648
746
  readonly searchable?: boolean | undefined;
649
747
  readonly multiple?: boolean | undefined;
650
748
  readonly unique?: boolean | undefined;
651
749
  readonly defaultValue?: any;
652
750
  readonly maxLength?: number | undefined;
653
751
  readonly minLength?: number | undefined;
654
- readonly precision?: number | undefined;
655
752
  readonly scale?: number | undefined;
656
- readonly min?: number | undefined;
657
- readonly max?: number | undefined;
658
753
  readonly reference?: string | undefined;
659
754
  readonly referenceFilters?: string[] | undefined;
660
755
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -662,7 +757,7 @@ export declare const Field: {
662
757
  readonly expression?: string | undefined;
663
758
  readonly summaryOperations?: {
664
759
  object: string;
665
- function: "min" | "max" | "count" | "sum" | "avg";
760
+ function: "count" | "sum" | "avg" | "min" | "max";
666
761
  field: string;
667
762
  } | undefined;
668
763
  readonly language?: string | undefined;
@@ -683,6 +778,11 @@ export declare const Field: {
683
778
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
684
779
  readonly displayValue?: boolean | undefined;
685
780
  readonly allowScanning?: boolean | undefined;
781
+ readonly currencyConfig?: {
782
+ precision: number;
783
+ currencyMode: "dynamic" | "fixed";
784
+ defaultCurrency: string;
785
+ } | undefined;
686
786
  readonly hidden?: boolean | undefined;
687
787
  readonly readonly?: boolean | undefined;
688
788
  readonly encryption?: boolean | undefined;
@@ -691,28 +791,28 @@ export declare const Field: {
691
791
  readonly type: "currency";
692
792
  };
693
793
  percent: (config?: FieldInput) => {
694
- readonly formula?: string | undefined;
695
794
  readonly options?: {
696
795
  value: string;
697
796
  label: string;
698
797
  color?: string | undefined;
699
798
  default?: boolean | undefined;
700
799
  }[] | undefined;
800
+ readonly required?: boolean | undefined;
801
+ readonly min?: number | undefined;
802
+ readonly max?: number | undefined;
803
+ readonly formula?: string | undefined;
701
804
  readonly label?: string | undefined;
805
+ readonly precision?: number | undefined;
702
806
  readonly name?: string | undefined;
703
807
  readonly description?: string | undefined;
704
808
  readonly format?: string | undefined;
705
- readonly required?: boolean | undefined;
706
809
  readonly searchable?: boolean | undefined;
707
810
  readonly multiple?: boolean | undefined;
708
811
  readonly unique?: boolean | undefined;
709
812
  readonly defaultValue?: any;
710
813
  readonly maxLength?: number | undefined;
711
814
  readonly minLength?: number | undefined;
712
- readonly precision?: number | undefined;
713
815
  readonly scale?: number | undefined;
714
- readonly min?: number | undefined;
715
- readonly max?: number | undefined;
716
816
  readonly reference?: string | undefined;
717
817
  readonly referenceFilters?: string[] | undefined;
718
818
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -720,7 +820,7 @@ export declare const Field: {
720
820
  readonly expression?: string | undefined;
721
821
  readonly summaryOperations?: {
722
822
  object: string;
723
- function: "min" | "max" | "count" | "sum" | "avg";
823
+ function: "count" | "sum" | "avg" | "min" | "max";
724
824
  field: string;
725
825
  } | undefined;
726
826
  readonly language?: string | undefined;
@@ -741,6 +841,11 @@ export declare const Field: {
741
841
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
742
842
  readonly displayValue?: boolean | undefined;
743
843
  readonly allowScanning?: boolean | undefined;
844
+ readonly currencyConfig?: {
845
+ precision: number;
846
+ currencyMode: "dynamic" | "fixed";
847
+ defaultCurrency: string;
848
+ } | undefined;
744
849
  readonly hidden?: boolean | undefined;
745
850
  readonly readonly?: boolean | undefined;
746
851
  readonly encryption?: boolean | undefined;
@@ -749,28 +854,28 @@ export declare const Field: {
749
854
  readonly type: "percent";
750
855
  };
751
856
  url: (config?: FieldInput) => {
752
- readonly formula?: string | undefined;
753
857
  readonly options?: {
754
858
  value: string;
755
859
  label: string;
756
860
  color?: string | undefined;
757
861
  default?: boolean | undefined;
758
862
  }[] | undefined;
863
+ readonly required?: boolean | undefined;
864
+ readonly min?: number | undefined;
865
+ readonly max?: number | undefined;
866
+ readonly formula?: string | undefined;
759
867
  readonly label?: string | undefined;
868
+ readonly precision?: number | undefined;
760
869
  readonly name?: string | undefined;
761
870
  readonly description?: string | undefined;
762
871
  readonly format?: string | undefined;
763
- readonly required?: boolean | undefined;
764
872
  readonly searchable?: boolean | undefined;
765
873
  readonly multiple?: boolean | undefined;
766
874
  readonly unique?: boolean | undefined;
767
875
  readonly defaultValue?: any;
768
876
  readonly maxLength?: number | undefined;
769
877
  readonly minLength?: number | undefined;
770
- readonly precision?: number | undefined;
771
878
  readonly scale?: number | undefined;
772
- readonly min?: number | undefined;
773
- readonly max?: number | undefined;
774
879
  readonly reference?: string | undefined;
775
880
  readonly referenceFilters?: string[] | undefined;
776
881
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -778,7 +883,7 @@ export declare const Field: {
778
883
  readonly expression?: string | undefined;
779
884
  readonly summaryOperations?: {
780
885
  object: string;
781
- function: "min" | "max" | "count" | "sum" | "avg";
886
+ function: "count" | "sum" | "avg" | "min" | "max";
782
887
  field: string;
783
888
  } | undefined;
784
889
  readonly language?: string | undefined;
@@ -799,6 +904,11 @@ export declare const Field: {
799
904
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
800
905
  readonly displayValue?: boolean | undefined;
801
906
  readonly allowScanning?: boolean | undefined;
907
+ readonly currencyConfig?: {
908
+ precision: number;
909
+ currencyMode: "dynamic" | "fixed";
910
+ defaultCurrency: string;
911
+ } | undefined;
802
912
  readonly hidden?: boolean | undefined;
803
913
  readonly readonly?: boolean | undefined;
804
914
  readonly encryption?: boolean | undefined;
@@ -807,28 +917,28 @@ export declare const Field: {
807
917
  readonly type: "url";
808
918
  };
809
919
  email: (config?: FieldInput) => {
810
- readonly formula?: string | undefined;
811
920
  readonly options?: {
812
921
  value: string;
813
922
  label: string;
814
923
  color?: string | undefined;
815
924
  default?: boolean | undefined;
816
925
  }[] | undefined;
926
+ readonly required?: boolean | undefined;
927
+ readonly min?: number | undefined;
928
+ readonly max?: number | undefined;
929
+ readonly formula?: string | undefined;
817
930
  readonly label?: string | undefined;
931
+ readonly precision?: number | undefined;
818
932
  readonly name?: string | undefined;
819
933
  readonly description?: string | undefined;
820
934
  readonly format?: string | undefined;
821
- readonly required?: boolean | undefined;
822
935
  readonly searchable?: boolean | undefined;
823
936
  readonly multiple?: boolean | undefined;
824
937
  readonly unique?: boolean | undefined;
825
938
  readonly defaultValue?: any;
826
939
  readonly maxLength?: number | undefined;
827
940
  readonly minLength?: number | undefined;
828
- readonly precision?: number | undefined;
829
941
  readonly scale?: number | undefined;
830
- readonly min?: number | undefined;
831
- readonly max?: number | undefined;
832
942
  readonly reference?: string | undefined;
833
943
  readonly referenceFilters?: string[] | undefined;
834
944
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -836,7 +946,7 @@ export declare const Field: {
836
946
  readonly expression?: string | undefined;
837
947
  readonly summaryOperations?: {
838
948
  object: string;
839
- function: "min" | "max" | "count" | "sum" | "avg";
949
+ function: "count" | "sum" | "avg" | "min" | "max";
840
950
  field: string;
841
951
  } | undefined;
842
952
  readonly language?: string | undefined;
@@ -857,6 +967,11 @@ export declare const Field: {
857
967
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
858
968
  readonly displayValue?: boolean | undefined;
859
969
  readonly allowScanning?: boolean | undefined;
970
+ readonly currencyConfig?: {
971
+ precision: number;
972
+ currencyMode: "dynamic" | "fixed";
973
+ defaultCurrency: string;
974
+ } | undefined;
860
975
  readonly hidden?: boolean | undefined;
861
976
  readonly readonly?: boolean | undefined;
862
977
  readonly encryption?: boolean | undefined;
@@ -865,28 +980,28 @@ export declare const Field: {
865
980
  readonly type: "email";
866
981
  };
867
982
  phone: (config?: FieldInput) => {
868
- readonly formula?: string | undefined;
869
983
  readonly options?: {
870
984
  value: string;
871
985
  label: string;
872
986
  color?: string | undefined;
873
987
  default?: boolean | undefined;
874
988
  }[] | undefined;
989
+ readonly required?: boolean | undefined;
990
+ readonly min?: number | undefined;
991
+ readonly max?: number | undefined;
992
+ readonly formula?: string | undefined;
875
993
  readonly label?: string | undefined;
994
+ readonly precision?: number | undefined;
876
995
  readonly name?: string | undefined;
877
996
  readonly description?: string | undefined;
878
997
  readonly format?: string | undefined;
879
- readonly required?: boolean | undefined;
880
998
  readonly searchable?: boolean | undefined;
881
999
  readonly multiple?: boolean | undefined;
882
1000
  readonly unique?: boolean | undefined;
883
1001
  readonly defaultValue?: any;
884
1002
  readonly maxLength?: number | undefined;
885
1003
  readonly minLength?: number | undefined;
886
- readonly precision?: number | undefined;
887
1004
  readonly scale?: number | undefined;
888
- readonly min?: number | undefined;
889
- readonly max?: number | undefined;
890
1005
  readonly reference?: string | undefined;
891
1006
  readonly referenceFilters?: string[] | undefined;
892
1007
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -894,7 +1009,7 @@ export declare const Field: {
894
1009
  readonly expression?: string | undefined;
895
1010
  readonly summaryOperations?: {
896
1011
  object: string;
897
- function: "min" | "max" | "count" | "sum" | "avg";
1012
+ function: "count" | "sum" | "avg" | "min" | "max";
898
1013
  field: string;
899
1014
  } | undefined;
900
1015
  readonly language?: string | undefined;
@@ -915,6 +1030,11 @@ export declare const Field: {
915
1030
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
916
1031
  readonly displayValue?: boolean | undefined;
917
1032
  readonly allowScanning?: boolean | undefined;
1033
+ readonly currencyConfig?: {
1034
+ precision: number;
1035
+ currencyMode: "dynamic" | "fixed";
1036
+ defaultCurrency: string;
1037
+ } | undefined;
918
1038
  readonly hidden?: boolean | undefined;
919
1039
  readonly readonly?: boolean | undefined;
920
1040
  readonly encryption?: boolean | undefined;
@@ -923,28 +1043,28 @@ export declare const Field: {
923
1043
  readonly type: "phone";
924
1044
  };
925
1045
  image: (config?: FieldInput) => {
926
- readonly formula?: string | undefined;
927
1046
  readonly options?: {
928
1047
  value: string;
929
1048
  label: string;
930
1049
  color?: string | undefined;
931
1050
  default?: boolean | undefined;
932
1051
  }[] | undefined;
1052
+ readonly required?: boolean | undefined;
1053
+ readonly min?: number | undefined;
1054
+ readonly max?: number | undefined;
1055
+ readonly formula?: string | undefined;
933
1056
  readonly label?: string | undefined;
1057
+ readonly precision?: number | undefined;
934
1058
  readonly name?: string | undefined;
935
1059
  readonly description?: string | undefined;
936
1060
  readonly format?: string | undefined;
937
- readonly required?: boolean | undefined;
938
1061
  readonly searchable?: boolean | undefined;
939
1062
  readonly multiple?: boolean | undefined;
940
1063
  readonly unique?: boolean | undefined;
941
1064
  readonly defaultValue?: any;
942
1065
  readonly maxLength?: number | undefined;
943
1066
  readonly minLength?: number | undefined;
944
- readonly precision?: number | undefined;
945
1067
  readonly scale?: number | undefined;
946
- readonly min?: number | undefined;
947
- readonly max?: number | undefined;
948
1068
  readonly reference?: string | undefined;
949
1069
  readonly referenceFilters?: string[] | undefined;
950
1070
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -952,7 +1072,7 @@ export declare const Field: {
952
1072
  readonly expression?: string | undefined;
953
1073
  readonly summaryOperations?: {
954
1074
  object: string;
955
- function: "min" | "max" | "count" | "sum" | "avg";
1075
+ function: "count" | "sum" | "avg" | "min" | "max";
956
1076
  field: string;
957
1077
  } | undefined;
958
1078
  readonly language?: string | undefined;
@@ -973,6 +1093,11 @@ export declare const Field: {
973
1093
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
974
1094
  readonly displayValue?: boolean | undefined;
975
1095
  readonly allowScanning?: boolean | undefined;
1096
+ readonly currencyConfig?: {
1097
+ precision: number;
1098
+ currencyMode: "dynamic" | "fixed";
1099
+ defaultCurrency: string;
1100
+ } | undefined;
976
1101
  readonly hidden?: boolean | undefined;
977
1102
  readonly readonly?: boolean | undefined;
978
1103
  readonly encryption?: boolean | undefined;
@@ -981,28 +1106,28 @@ export declare const Field: {
981
1106
  readonly type: "image";
982
1107
  };
983
1108
  file: (config?: FieldInput) => {
984
- readonly formula?: string | undefined;
985
1109
  readonly options?: {
986
1110
  value: string;
987
1111
  label: string;
988
1112
  color?: string | undefined;
989
1113
  default?: boolean | undefined;
990
1114
  }[] | undefined;
1115
+ readonly required?: boolean | undefined;
1116
+ readonly min?: number | undefined;
1117
+ readonly max?: number | undefined;
1118
+ readonly formula?: string | undefined;
991
1119
  readonly label?: string | undefined;
1120
+ readonly precision?: number | undefined;
992
1121
  readonly name?: string | undefined;
993
1122
  readonly description?: string | undefined;
994
1123
  readonly format?: string | undefined;
995
- readonly required?: boolean | undefined;
996
1124
  readonly searchable?: boolean | undefined;
997
1125
  readonly multiple?: boolean | undefined;
998
1126
  readonly unique?: boolean | undefined;
999
1127
  readonly defaultValue?: any;
1000
1128
  readonly maxLength?: number | undefined;
1001
1129
  readonly minLength?: number | undefined;
1002
- readonly precision?: number | undefined;
1003
1130
  readonly scale?: number | undefined;
1004
- readonly min?: number | undefined;
1005
- readonly max?: number | undefined;
1006
1131
  readonly reference?: string | undefined;
1007
1132
  readonly referenceFilters?: string[] | undefined;
1008
1133
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1010,7 +1135,7 @@ export declare const Field: {
1010
1135
  readonly expression?: string | undefined;
1011
1136
  readonly summaryOperations?: {
1012
1137
  object: string;
1013
- function: "min" | "max" | "count" | "sum" | "avg";
1138
+ function: "count" | "sum" | "avg" | "min" | "max";
1014
1139
  field: string;
1015
1140
  } | undefined;
1016
1141
  readonly language?: string | undefined;
@@ -1031,6 +1156,11 @@ export declare const Field: {
1031
1156
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1032
1157
  readonly displayValue?: boolean | undefined;
1033
1158
  readonly allowScanning?: boolean | undefined;
1159
+ readonly currencyConfig?: {
1160
+ precision: number;
1161
+ currencyMode: "dynamic" | "fixed";
1162
+ defaultCurrency: string;
1163
+ } | undefined;
1034
1164
  readonly hidden?: boolean | undefined;
1035
1165
  readonly readonly?: boolean | undefined;
1036
1166
  readonly encryption?: boolean | undefined;
@@ -1039,28 +1169,28 @@ export declare const Field: {
1039
1169
  readonly type: "file";
1040
1170
  };
1041
1171
  avatar: (config?: FieldInput) => {
1042
- readonly formula?: string | undefined;
1043
1172
  readonly options?: {
1044
1173
  value: string;
1045
1174
  label: string;
1046
1175
  color?: string | undefined;
1047
1176
  default?: boolean | undefined;
1048
1177
  }[] | undefined;
1178
+ readonly required?: boolean | undefined;
1179
+ readonly min?: number | undefined;
1180
+ readonly max?: number | undefined;
1181
+ readonly formula?: string | undefined;
1049
1182
  readonly label?: string | undefined;
1183
+ readonly precision?: number | undefined;
1050
1184
  readonly name?: string | undefined;
1051
1185
  readonly description?: string | undefined;
1052
1186
  readonly format?: string | undefined;
1053
- readonly required?: boolean | undefined;
1054
1187
  readonly searchable?: boolean | undefined;
1055
1188
  readonly multiple?: boolean | undefined;
1056
1189
  readonly unique?: boolean | undefined;
1057
1190
  readonly defaultValue?: any;
1058
1191
  readonly maxLength?: number | undefined;
1059
1192
  readonly minLength?: number | undefined;
1060
- readonly precision?: number | undefined;
1061
1193
  readonly scale?: number | undefined;
1062
- readonly min?: number | undefined;
1063
- readonly max?: number | undefined;
1064
1194
  readonly reference?: string | undefined;
1065
1195
  readonly referenceFilters?: string[] | undefined;
1066
1196
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1068,7 +1198,7 @@ export declare const Field: {
1068
1198
  readonly expression?: string | undefined;
1069
1199
  readonly summaryOperations?: {
1070
1200
  object: string;
1071
- function: "min" | "max" | "count" | "sum" | "avg";
1201
+ function: "count" | "sum" | "avg" | "min" | "max";
1072
1202
  field: string;
1073
1203
  } | undefined;
1074
1204
  readonly language?: string | undefined;
@@ -1089,6 +1219,11 @@ export declare const Field: {
1089
1219
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1090
1220
  readonly displayValue?: boolean | undefined;
1091
1221
  readonly allowScanning?: boolean | undefined;
1222
+ readonly currencyConfig?: {
1223
+ precision: number;
1224
+ currencyMode: "dynamic" | "fixed";
1225
+ defaultCurrency: string;
1226
+ } | undefined;
1092
1227
  readonly hidden?: boolean | undefined;
1093
1228
  readonly readonly?: boolean | undefined;
1094
1229
  readonly encryption?: boolean | undefined;
@@ -1097,28 +1232,28 @@ export declare const Field: {
1097
1232
  readonly type: "avatar";
1098
1233
  };
1099
1234
  formula: (config?: FieldInput) => {
1100
- readonly formula?: string | undefined;
1101
1235
  readonly options?: {
1102
1236
  value: string;
1103
1237
  label: string;
1104
1238
  color?: string | undefined;
1105
1239
  default?: boolean | undefined;
1106
1240
  }[] | undefined;
1241
+ readonly required?: boolean | undefined;
1242
+ readonly min?: number | undefined;
1243
+ readonly max?: number | undefined;
1244
+ readonly formula?: string | undefined;
1107
1245
  readonly label?: string | undefined;
1246
+ readonly precision?: number | undefined;
1108
1247
  readonly name?: string | undefined;
1109
1248
  readonly description?: string | undefined;
1110
1249
  readonly format?: string | undefined;
1111
- readonly required?: boolean | undefined;
1112
1250
  readonly searchable?: boolean | undefined;
1113
1251
  readonly multiple?: boolean | undefined;
1114
1252
  readonly unique?: boolean | undefined;
1115
1253
  readonly defaultValue?: any;
1116
1254
  readonly maxLength?: number | undefined;
1117
1255
  readonly minLength?: number | undefined;
1118
- readonly precision?: number | undefined;
1119
1256
  readonly scale?: number | undefined;
1120
- readonly min?: number | undefined;
1121
- readonly max?: number | undefined;
1122
1257
  readonly reference?: string | undefined;
1123
1258
  readonly referenceFilters?: string[] | undefined;
1124
1259
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1126,7 +1261,7 @@ export declare const Field: {
1126
1261
  readonly expression?: string | undefined;
1127
1262
  readonly summaryOperations?: {
1128
1263
  object: string;
1129
- function: "min" | "max" | "count" | "sum" | "avg";
1264
+ function: "count" | "sum" | "avg" | "min" | "max";
1130
1265
  field: string;
1131
1266
  } | undefined;
1132
1267
  readonly language?: string | undefined;
@@ -1147,6 +1282,11 @@ export declare const Field: {
1147
1282
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1148
1283
  readonly displayValue?: boolean | undefined;
1149
1284
  readonly allowScanning?: boolean | undefined;
1285
+ readonly currencyConfig?: {
1286
+ precision: number;
1287
+ currencyMode: "dynamic" | "fixed";
1288
+ defaultCurrency: string;
1289
+ } | undefined;
1150
1290
  readonly hidden?: boolean | undefined;
1151
1291
  readonly readonly?: boolean | undefined;
1152
1292
  readonly encryption?: boolean | undefined;
@@ -1155,28 +1295,28 @@ export declare const Field: {
1155
1295
  readonly type: "formula";
1156
1296
  };
1157
1297
  summary: (config?: FieldInput) => {
1158
- readonly formula?: string | undefined;
1159
1298
  readonly options?: {
1160
1299
  value: string;
1161
1300
  label: string;
1162
1301
  color?: string | undefined;
1163
1302
  default?: boolean | undefined;
1164
1303
  }[] | undefined;
1304
+ readonly required?: boolean | undefined;
1305
+ readonly min?: number | undefined;
1306
+ readonly max?: number | undefined;
1307
+ readonly formula?: string | undefined;
1165
1308
  readonly label?: string | undefined;
1309
+ readonly precision?: number | undefined;
1166
1310
  readonly name?: string | undefined;
1167
1311
  readonly description?: string | undefined;
1168
1312
  readonly format?: string | undefined;
1169
- readonly required?: boolean | undefined;
1170
1313
  readonly searchable?: boolean | undefined;
1171
1314
  readonly multiple?: boolean | undefined;
1172
1315
  readonly unique?: boolean | undefined;
1173
1316
  readonly defaultValue?: any;
1174
1317
  readonly maxLength?: number | undefined;
1175
1318
  readonly minLength?: number | undefined;
1176
- readonly precision?: number | undefined;
1177
1319
  readonly scale?: number | undefined;
1178
- readonly min?: number | undefined;
1179
- readonly max?: number | undefined;
1180
1320
  readonly reference?: string | undefined;
1181
1321
  readonly referenceFilters?: string[] | undefined;
1182
1322
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1184,7 +1324,7 @@ export declare const Field: {
1184
1324
  readonly expression?: string | undefined;
1185
1325
  readonly summaryOperations?: {
1186
1326
  object: string;
1187
- function: "min" | "max" | "count" | "sum" | "avg";
1327
+ function: "count" | "sum" | "avg" | "min" | "max";
1188
1328
  field: string;
1189
1329
  } | undefined;
1190
1330
  readonly language?: string | undefined;
@@ -1205,6 +1345,11 @@ export declare const Field: {
1205
1345
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1206
1346
  readonly displayValue?: boolean | undefined;
1207
1347
  readonly allowScanning?: boolean | undefined;
1348
+ readonly currencyConfig?: {
1349
+ precision: number;
1350
+ currencyMode: "dynamic" | "fixed";
1351
+ defaultCurrency: string;
1352
+ } | undefined;
1208
1353
  readonly hidden?: boolean | undefined;
1209
1354
  readonly readonly?: boolean | undefined;
1210
1355
  readonly encryption?: boolean | undefined;
@@ -1213,28 +1358,28 @@ export declare const Field: {
1213
1358
  readonly type: "summary";
1214
1359
  };
1215
1360
  autonumber: (config?: FieldInput) => {
1216
- readonly formula?: string | undefined;
1217
1361
  readonly options?: {
1218
1362
  value: string;
1219
1363
  label: string;
1220
1364
  color?: string | undefined;
1221
1365
  default?: boolean | undefined;
1222
1366
  }[] | undefined;
1367
+ readonly required?: boolean | undefined;
1368
+ readonly min?: number | undefined;
1369
+ readonly max?: number | undefined;
1370
+ readonly formula?: string | undefined;
1223
1371
  readonly label?: string | undefined;
1372
+ readonly precision?: number | undefined;
1224
1373
  readonly name?: string | undefined;
1225
1374
  readonly description?: string | undefined;
1226
1375
  readonly format?: string | undefined;
1227
- readonly required?: boolean | undefined;
1228
1376
  readonly searchable?: boolean | undefined;
1229
1377
  readonly multiple?: boolean | undefined;
1230
1378
  readonly unique?: boolean | undefined;
1231
1379
  readonly defaultValue?: any;
1232
1380
  readonly maxLength?: number | undefined;
1233
1381
  readonly minLength?: number | undefined;
1234
- readonly precision?: number | undefined;
1235
1382
  readonly scale?: number | undefined;
1236
- readonly min?: number | undefined;
1237
- readonly max?: number | undefined;
1238
1383
  readonly reference?: string | undefined;
1239
1384
  readonly referenceFilters?: string[] | undefined;
1240
1385
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1242,7 +1387,7 @@ export declare const Field: {
1242
1387
  readonly expression?: string | undefined;
1243
1388
  readonly summaryOperations?: {
1244
1389
  object: string;
1245
- function: "min" | "max" | "count" | "sum" | "avg";
1390
+ function: "count" | "sum" | "avg" | "min" | "max";
1246
1391
  field: string;
1247
1392
  } | undefined;
1248
1393
  readonly language?: string | undefined;
@@ -1263,6 +1408,11 @@ export declare const Field: {
1263
1408
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1264
1409
  readonly displayValue?: boolean | undefined;
1265
1410
  readonly allowScanning?: boolean | undefined;
1411
+ readonly currencyConfig?: {
1412
+ precision: number;
1413
+ currencyMode: "dynamic" | "fixed";
1414
+ defaultCurrency: string;
1415
+ } | undefined;
1266
1416
  readonly hidden?: boolean | undefined;
1267
1417
  readonly readonly?: boolean | undefined;
1268
1418
  readonly encryption?: boolean | undefined;
@@ -1271,28 +1421,28 @@ export declare const Field: {
1271
1421
  readonly type: "autonumber";
1272
1422
  };
1273
1423
  markdown: (config?: FieldInput) => {
1274
- readonly formula?: string | undefined;
1275
1424
  readonly options?: {
1276
1425
  value: string;
1277
1426
  label: string;
1278
1427
  color?: string | undefined;
1279
1428
  default?: boolean | undefined;
1280
1429
  }[] | undefined;
1430
+ readonly required?: boolean | undefined;
1431
+ readonly min?: number | undefined;
1432
+ readonly max?: number | undefined;
1433
+ readonly formula?: string | undefined;
1281
1434
  readonly label?: string | undefined;
1435
+ readonly precision?: number | undefined;
1282
1436
  readonly name?: string | undefined;
1283
1437
  readonly description?: string | undefined;
1284
1438
  readonly format?: string | undefined;
1285
- readonly required?: boolean | undefined;
1286
1439
  readonly searchable?: boolean | undefined;
1287
1440
  readonly multiple?: boolean | undefined;
1288
1441
  readonly unique?: boolean | undefined;
1289
1442
  readonly defaultValue?: any;
1290
1443
  readonly maxLength?: number | undefined;
1291
1444
  readonly minLength?: number | undefined;
1292
- readonly precision?: number | undefined;
1293
1445
  readonly scale?: number | undefined;
1294
- readonly min?: number | undefined;
1295
- readonly max?: number | undefined;
1296
1446
  readonly reference?: string | undefined;
1297
1447
  readonly referenceFilters?: string[] | undefined;
1298
1448
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1300,7 +1450,7 @@ export declare const Field: {
1300
1450
  readonly expression?: string | undefined;
1301
1451
  readonly summaryOperations?: {
1302
1452
  object: string;
1303
- function: "min" | "max" | "count" | "sum" | "avg";
1453
+ function: "count" | "sum" | "avg" | "min" | "max";
1304
1454
  field: string;
1305
1455
  } | undefined;
1306
1456
  readonly language?: string | undefined;
@@ -1321,6 +1471,11 @@ export declare const Field: {
1321
1471
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1322
1472
  readonly displayValue?: boolean | undefined;
1323
1473
  readonly allowScanning?: boolean | undefined;
1474
+ readonly currencyConfig?: {
1475
+ precision: number;
1476
+ currencyMode: "dynamic" | "fixed";
1477
+ defaultCurrency: string;
1478
+ } | undefined;
1324
1479
  readonly hidden?: boolean | undefined;
1325
1480
  readonly readonly?: boolean | undefined;
1326
1481
  readonly encryption?: boolean | undefined;
@@ -1329,28 +1484,28 @@ export declare const Field: {
1329
1484
  readonly type: "markdown";
1330
1485
  };
1331
1486
  html: (config?: FieldInput) => {
1332
- readonly formula?: string | undefined;
1333
1487
  readonly options?: {
1334
1488
  value: string;
1335
1489
  label: string;
1336
1490
  color?: string | undefined;
1337
1491
  default?: boolean | undefined;
1338
1492
  }[] | undefined;
1493
+ readonly required?: boolean | undefined;
1494
+ readonly min?: number | undefined;
1495
+ readonly max?: number | undefined;
1496
+ readonly formula?: string | undefined;
1339
1497
  readonly label?: string | undefined;
1498
+ readonly precision?: number | undefined;
1340
1499
  readonly name?: string | undefined;
1341
1500
  readonly description?: string | undefined;
1342
1501
  readonly format?: string | undefined;
1343
- readonly required?: boolean | undefined;
1344
1502
  readonly searchable?: boolean | undefined;
1345
1503
  readonly multiple?: boolean | undefined;
1346
1504
  readonly unique?: boolean | undefined;
1347
1505
  readonly defaultValue?: any;
1348
1506
  readonly maxLength?: number | undefined;
1349
1507
  readonly minLength?: number | undefined;
1350
- readonly precision?: number | undefined;
1351
1508
  readonly scale?: number | undefined;
1352
- readonly min?: number | undefined;
1353
- readonly max?: number | undefined;
1354
1509
  readonly reference?: string | undefined;
1355
1510
  readonly referenceFilters?: string[] | undefined;
1356
1511
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1358,7 +1513,7 @@ export declare const Field: {
1358
1513
  readonly expression?: string | undefined;
1359
1514
  readonly summaryOperations?: {
1360
1515
  object: string;
1361
- function: "min" | "max" | "count" | "sum" | "avg";
1516
+ function: "count" | "sum" | "avg" | "min" | "max";
1362
1517
  field: string;
1363
1518
  } | undefined;
1364
1519
  readonly language?: string | undefined;
@@ -1379,6 +1534,11 @@ export declare const Field: {
1379
1534
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1380
1535
  readonly displayValue?: boolean | undefined;
1381
1536
  readonly allowScanning?: boolean | undefined;
1537
+ readonly currencyConfig?: {
1538
+ precision: number;
1539
+ currencyMode: "dynamic" | "fixed";
1540
+ defaultCurrency: string;
1541
+ } | undefined;
1382
1542
  readonly hidden?: boolean | undefined;
1383
1543
  readonly readonly?: boolean | undefined;
1384
1544
  readonly encryption?: boolean | undefined;
@@ -1387,28 +1547,28 @@ export declare const Field: {
1387
1547
  readonly type: "html";
1388
1548
  };
1389
1549
  password: (config?: FieldInput) => {
1390
- readonly formula?: string | undefined;
1391
1550
  readonly options?: {
1392
1551
  value: string;
1393
1552
  label: string;
1394
1553
  color?: string | undefined;
1395
1554
  default?: boolean | undefined;
1396
1555
  }[] | undefined;
1556
+ readonly required?: boolean | undefined;
1557
+ readonly min?: number | undefined;
1558
+ readonly max?: number | undefined;
1559
+ readonly formula?: string | undefined;
1397
1560
  readonly label?: string | undefined;
1561
+ readonly precision?: number | undefined;
1398
1562
  readonly name?: string | undefined;
1399
1563
  readonly description?: string | undefined;
1400
1564
  readonly format?: string | undefined;
1401
- readonly required?: boolean | undefined;
1402
1565
  readonly searchable?: boolean | undefined;
1403
1566
  readonly multiple?: boolean | undefined;
1404
1567
  readonly unique?: boolean | undefined;
1405
1568
  readonly defaultValue?: any;
1406
1569
  readonly maxLength?: number | undefined;
1407
1570
  readonly minLength?: number | undefined;
1408
- readonly precision?: number | undefined;
1409
1571
  readonly scale?: number | undefined;
1410
- readonly min?: number | undefined;
1411
- readonly max?: number | undefined;
1412
1572
  readonly reference?: string | undefined;
1413
1573
  readonly referenceFilters?: string[] | undefined;
1414
1574
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1416,7 +1576,7 @@ export declare const Field: {
1416
1576
  readonly expression?: string | undefined;
1417
1577
  readonly summaryOperations?: {
1418
1578
  object: string;
1419
- function: "min" | "max" | "count" | "sum" | "avg";
1579
+ function: "count" | "sum" | "avg" | "min" | "max";
1420
1580
  field: string;
1421
1581
  } | undefined;
1422
1582
  readonly language?: string | undefined;
@@ -1437,6 +1597,11 @@ export declare const Field: {
1437
1597
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1438
1598
  readonly displayValue?: boolean | undefined;
1439
1599
  readonly allowScanning?: boolean | undefined;
1600
+ readonly currencyConfig?: {
1601
+ precision: number;
1602
+ currencyMode: "dynamic" | "fixed";
1603
+ defaultCurrency: string;
1604
+ } | undefined;
1440
1605
  readonly hidden?: boolean | undefined;
1441
1606
  readonly readonly?: boolean | undefined;
1442
1607
  readonly encryption?: boolean | undefined;
@@ -1456,28 +1621,28 @@ export declare const Field: {
1456
1621
  select: (optionsOrConfig: SelectOption[] | string[] | (FieldInput & {
1457
1622
  options: SelectOption[] | string[];
1458
1623
  }), config?: FieldInput) => {
1459
- readonly formula?: string | undefined;
1460
1624
  options: {
1461
1625
  value: string;
1462
1626
  label: string;
1463
1627
  color?: string | undefined;
1464
1628
  default?: boolean | undefined;
1465
1629
  }[];
1630
+ readonly required?: boolean | undefined;
1631
+ readonly min?: number | undefined;
1632
+ readonly max?: number | undefined;
1633
+ readonly formula?: string | undefined;
1466
1634
  readonly label?: string | undefined;
1635
+ readonly precision?: number | undefined;
1467
1636
  readonly name?: string | undefined;
1468
1637
  readonly description?: string | undefined;
1469
1638
  readonly format?: string | undefined;
1470
- readonly required?: boolean | undefined;
1471
1639
  readonly searchable?: boolean | undefined;
1472
1640
  readonly multiple?: boolean | undefined;
1473
1641
  readonly unique?: boolean | undefined;
1474
1642
  readonly defaultValue?: any;
1475
1643
  readonly maxLength?: number | undefined;
1476
1644
  readonly minLength?: number | undefined;
1477
- readonly precision?: number | undefined;
1478
1645
  readonly scale?: number | undefined;
1479
- readonly min?: number | undefined;
1480
- readonly max?: number | undefined;
1481
1646
  readonly reference?: string | undefined;
1482
1647
  readonly referenceFilters?: string[] | undefined;
1483
1648
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1485,7 +1650,7 @@ export declare const Field: {
1485
1650
  readonly expression?: string | undefined;
1486
1651
  readonly summaryOperations?: {
1487
1652
  object: string;
1488
- function: "min" | "max" | "count" | "sum" | "avg";
1653
+ function: "count" | "sum" | "avg" | "min" | "max";
1489
1654
  field: string;
1490
1655
  } | undefined;
1491
1656
  readonly language?: string | undefined;
@@ -1506,6 +1671,11 @@ export declare const Field: {
1506
1671
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1507
1672
  readonly displayValue?: boolean | undefined;
1508
1673
  readonly allowScanning?: boolean | undefined;
1674
+ readonly currencyConfig?: {
1675
+ precision: number;
1676
+ currencyMode: "dynamic" | "fixed";
1677
+ defaultCurrency: string;
1678
+ } | undefined;
1509
1679
  readonly hidden?: boolean | undefined;
1510
1680
  readonly readonly?: boolean | undefined;
1511
1681
  readonly encryption?: boolean | undefined;
@@ -1514,28 +1684,28 @@ export declare const Field: {
1514
1684
  readonly type: "select";
1515
1685
  };
1516
1686
  lookup: (reference: string, config?: FieldInput) => {
1517
- readonly formula?: string | undefined;
1518
1687
  readonly options?: {
1519
1688
  value: string;
1520
1689
  label: string;
1521
1690
  color?: string | undefined;
1522
1691
  default?: boolean | undefined;
1523
1692
  }[] | undefined;
1693
+ readonly required?: boolean | undefined;
1694
+ readonly min?: number | undefined;
1695
+ readonly max?: number | undefined;
1696
+ readonly formula?: string | undefined;
1524
1697
  readonly label?: string | undefined;
1698
+ readonly precision?: number | undefined;
1525
1699
  readonly name?: string | undefined;
1526
1700
  readonly description?: string | undefined;
1527
1701
  readonly format?: string | undefined;
1528
- readonly required?: boolean | undefined;
1529
1702
  readonly searchable?: boolean | undefined;
1530
1703
  readonly multiple?: boolean | undefined;
1531
1704
  readonly unique?: boolean | undefined;
1532
1705
  readonly defaultValue?: any;
1533
1706
  readonly maxLength?: number | undefined;
1534
1707
  readonly minLength?: number | undefined;
1535
- readonly precision?: number | undefined;
1536
1708
  readonly scale?: number | undefined;
1537
- readonly min?: number | undefined;
1538
- readonly max?: number | undefined;
1539
1709
  reference: string;
1540
1710
  readonly referenceFilters?: string[] | undefined;
1541
1711
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1543,7 +1713,7 @@ export declare const Field: {
1543
1713
  readonly expression?: string | undefined;
1544
1714
  readonly summaryOperations?: {
1545
1715
  object: string;
1546
- function: "min" | "max" | "count" | "sum" | "avg";
1716
+ function: "count" | "sum" | "avg" | "min" | "max";
1547
1717
  field: string;
1548
1718
  } | undefined;
1549
1719
  readonly language?: string | undefined;
@@ -1564,6 +1734,11 @@ export declare const Field: {
1564
1734
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1565
1735
  readonly displayValue?: boolean | undefined;
1566
1736
  readonly allowScanning?: boolean | undefined;
1737
+ readonly currencyConfig?: {
1738
+ precision: number;
1739
+ currencyMode: "dynamic" | "fixed";
1740
+ defaultCurrency: string;
1741
+ } | undefined;
1567
1742
  readonly hidden?: boolean | undefined;
1568
1743
  readonly readonly?: boolean | undefined;
1569
1744
  readonly encryption?: boolean | undefined;
@@ -1572,28 +1747,28 @@ export declare const Field: {
1572
1747
  readonly type: "lookup";
1573
1748
  };
1574
1749
  masterDetail: (reference: string, config?: FieldInput) => {
1575
- readonly formula?: string | undefined;
1576
1750
  readonly options?: {
1577
1751
  value: string;
1578
1752
  label: string;
1579
1753
  color?: string | undefined;
1580
1754
  default?: boolean | undefined;
1581
1755
  }[] | undefined;
1756
+ readonly required?: boolean | undefined;
1757
+ readonly min?: number | undefined;
1758
+ readonly max?: number | undefined;
1759
+ readonly formula?: string | undefined;
1582
1760
  readonly label?: string | undefined;
1761
+ readonly precision?: number | undefined;
1583
1762
  readonly name?: string | undefined;
1584
1763
  readonly description?: string | undefined;
1585
1764
  readonly format?: string | undefined;
1586
- readonly required?: boolean | undefined;
1587
1765
  readonly searchable?: boolean | undefined;
1588
1766
  readonly multiple?: boolean | undefined;
1589
1767
  readonly unique?: boolean | undefined;
1590
1768
  readonly defaultValue?: any;
1591
1769
  readonly maxLength?: number | undefined;
1592
1770
  readonly minLength?: number | undefined;
1593
- readonly precision?: number | undefined;
1594
1771
  readonly scale?: number | undefined;
1595
- readonly min?: number | undefined;
1596
- readonly max?: number | undefined;
1597
1772
  reference: string;
1598
1773
  readonly referenceFilters?: string[] | undefined;
1599
1774
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1601,7 +1776,7 @@ export declare const Field: {
1601
1776
  readonly expression?: string | undefined;
1602
1777
  readonly summaryOperations?: {
1603
1778
  object: string;
1604
- function: "min" | "max" | "count" | "sum" | "avg";
1779
+ function: "count" | "sum" | "avg" | "min" | "max";
1605
1780
  field: string;
1606
1781
  } | undefined;
1607
1782
  readonly language?: string | undefined;
@@ -1622,6 +1797,11 @@ export declare const Field: {
1622
1797
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1623
1798
  readonly displayValue?: boolean | undefined;
1624
1799
  readonly allowScanning?: boolean | undefined;
1800
+ readonly currencyConfig?: {
1801
+ precision: number;
1802
+ currencyMode: "dynamic" | "fixed";
1803
+ defaultCurrency: string;
1804
+ } | undefined;
1625
1805
  readonly hidden?: boolean | undefined;
1626
1806
  readonly readonly?: boolean | undefined;
1627
1807
  readonly encryption?: boolean | undefined;
@@ -1630,28 +1810,28 @@ export declare const Field: {
1630
1810
  readonly type: "master_detail";
1631
1811
  };
1632
1812
  location: (config?: FieldInput) => {
1633
- readonly formula?: string | undefined;
1634
1813
  readonly options?: {
1635
1814
  value: string;
1636
1815
  label: string;
1637
1816
  color?: string | undefined;
1638
1817
  default?: boolean | undefined;
1639
1818
  }[] | undefined;
1819
+ readonly required?: boolean | undefined;
1820
+ readonly min?: number | undefined;
1821
+ readonly max?: number | undefined;
1822
+ readonly formula?: string | undefined;
1640
1823
  readonly label?: string | undefined;
1824
+ readonly precision?: number | undefined;
1641
1825
  readonly name?: string | undefined;
1642
1826
  readonly description?: string | undefined;
1643
1827
  readonly format?: string | undefined;
1644
- readonly required?: boolean | undefined;
1645
1828
  readonly searchable?: boolean | undefined;
1646
1829
  readonly multiple?: boolean | undefined;
1647
1830
  readonly unique?: boolean | undefined;
1648
1831
  readonly defaultValue?: any;
1649
1832
  readonly maxLength?: number | undefined;
1650
1833
  readonly minLength?: number | undefined;
1651
- readonly precision?: number | undefined;
1652
1834
  readonly scale?: number | undefined;
1653
- readonly min?: number | undefined;
1654
- readonly max?: number | undefined;
1655
1835
  readonly reference?: string | undefined;
1656
1836
  readonly referenceFilters?: string[] | undefined;
1657
1837
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1659,7 +1839,7 @@ export declare const Field: {
1659
1839
  readonly expression?: string | undefined;
1660
1840
  readonly summaryOperations?: {
1661
1841
  object: string;
1662
- function: "min" | "max" | "count" | "sum" | "avg";
1842
+ function: "count" | "sum" | "avg" | "min" | "max";
1663
1843
  field: string;
1664
1844
  } | undefined;
1665
1845
  readonly language?: string | undefined;
@@ -1680,6 +1860,11 @@ export declare const Field: {
1680
1860
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1681
1861
  readonly displayValue?: boolean | undefined;
1682
1862
  readonly allowScanning?: boolean | undefined;
1863
+ readonly currencyConfig?: {
1864
+ precision: number;
1865
+ currencyMode: "dynamic" | "fixed";
1866
+ defaultCurrency: string;
1867
+ } | undefined;
1683
1868
  readonly hidden?: boolean | undefined;
1684
1869
  readonly readonly?: boolean | undefined;
1685
1870
  readonly encryption?: boolean | undefined;
@@ -1688,28 +1873,28 @@ export declare const Field: {
1688
1873
  readonly type: "location";
1689
1874
  };
1690
1875
  address: (config?: FieldInput) => {
1691
- readonly formula?: string | undefined;
1692
1876
  readonly options?: {
1693
1877
  value: string;
1694
1878
  label: string;
1695
1879
  color?: string | undefined;
1696
1880
  default?: boolean | undefined;
1697
1881
  }[] | undefined;
1882
+ readonly required?: boolean | undefined;
1883
+ readonly min?: number | undefined;
1884
+ readonly max?: number | undefined;
1885
+ readonly formula?: string | undefined;
1698
1886
  readonly label?: string | undefined;
1887
+ readonly precision?: number | undefined;
1699
1888
  readonly name?: string | undefined;
1700
1889
  readonly description?: string | undefined;
1701
1890
  readonly format?: string | undefined;
1702
- readonly required?: boolean | undefined;
1703
1891
  readonly searchable?: boolean | undefined;
1704
1892
  readonly multiple?: boolean | undefined;
1705
1893
  readonly unique?: boolean | undefined;
1706
1894
  readonly defaultValue?: any;
1707
1895
  readonly maxLength?: number | undefined;
1708
1896
  readonly minLength?: number | undefined;
1709
- readonly precision?: number | undefined;
1710
1897
  readonly scale?: number | undefined;
1711
- readonly min?: number | undefined;
1712
- readonly max?: number | undefined;
1713
1898
  readonly reference?: string | undefined;
1714
1899
  readonly referenceFilters?: string[] | undefined;
1715
1900
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1717,7 +1902,7 @@ export declare const Field: {
1717
1902
  readonly expression?: string | undefined;
1718
1903
  readonly summaryOperations?: {
1719
1904
  object: string;
1720
- function: "min" | "max" | "count" | "sum" | "avg";
1905
+ function: "count" | "sum" | "avg" | "min" | "max";
1721
1906
  field: string;
1722
1907
  } | undefined;
1723
1908
  readonly language?: string | undefined;
@@ -1738,6 +1923,11 @@ export declare const Field: {
1738
1923
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1739
1924
  readonly displayValue?: boolean | undefined;
1740
1925
  readonly allowScanning?: boolean | undefined;
1926
+ readonly currencyConfig?: {
1927
+ precision: number;
1928
+ currencyMode: "dynamic" | "fixed";
1929
+ defaultCurrency: string;
1930
+ } | undefined;
1741
1931
  readonly hidden?: boolean | undefined;
1742
1932
  readonly readonly?: boolean | undefined;
1743
1933
  readonly encryption?: boolean | undefined;
@@ -1746,28 +1936,28 @@ export declare const Field: {
1746
1936
  readonly type: "address";
1747
1937
  };
1748
1938
  richtext: (config?: FieldInput) => {
1749
- readonly formula?: string | undefined;
1750
1939
  readonly options?: {
1751
1940
  value: string;
1752
1941
  label: string;
1753
1942
  color?: string | undefined;
1754
1943
  default?: boolean | undefined;
1755
1944
  }[] | undefined;
1945
+ readonly required?: boolean | undefined;
1946
+ readonly min?: number | undefined;
1947
+ readonly max?: number | undefined;
1948
+ readonly formula?: string | undefined;
1756
1949
  readonly label?: string | undefined;
1950
+ readonly precision?: number | undefined;
1757
1951
  readonly name?: string | undefined;
1758
1952
  readonly description?: string | undefined;
1759
1953
  readonly format?: string | undefined;
1760
- readonly required?: boolean | undefined;
1761
1954
  readonly searchable?: boolean | undefined;
1762
1955
  readonly multiple?: boolean | undefined;
1763
1956
  readonly unique?: boolean | undefined;
1764
1957
  readonly defaultValue?: any;
1765
1958
  readonly maxLength?: number | undefined;
1766
1959
  readonly minLength?: number | undefined;
1767
- readonly precision?: number | undefined;
1768
1960
  readonly scale?: number | undefined;
1769
- readonly min?: number | undefined;
1770
- readonly max?: number | undefined;
1771
1961
  readonly reference?: string | undefined;
1772
1962
  readonly referenceFilters?: string[] | undefined;
1773
1963
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1775,7 +1965,7 @@ export declare const Field: {
1775
1965
  readonly expression?: string | undefined;
1776
1966
  readonly summaryOperations?: {
1777
1967
  object: string;
1778
- function: "min" | "max" | "count" | "sum" | "avg";
1968
+ function: "count" | "sum" | "avg" | "min" | "max";
1779
1969
  field: string;
1780
1970
  } | undefined;
1781
1971
  readonly language?: string | undefined;
@@ -1796,6 +1986,11 @@ export declare const Field: {
1796
1986
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1797
1987
  readonly displayValue?: boolean | undefined;
1798
1988
  readonly allowScanning?: boolean | undefined;
1989
+ readonly currencyConfig?: {
1990
+ precision: number;
1991
+ currencyMode: "dynamic" | "fixed";
1992
+ defaultCurrency: string;
1993
+ } | undefined;
1799
1994
  readonly hidden?: boolean | undefined;
1800
1995
  readonly readonly?: boolean | undefined;
1801
1996
  readonly encryption?: boolean | undefined;
@@ -1804,28 +1999,28 @@ export declare const Field: {
1804
1999
  readonly type: "richtext";
1805
2000
  };
1806
2001
  code: (language?: string, config?: FieldInput) => {
1807
- readonly formula?: string | undefined;
1808
2002
  readonly options?: {
1809
2003
  value: string;
1810
2004
  label: string;
1811
2005
  color?: string | undefined;
1812
2006
  default?: boolean | undefined;
1813
2007
  }[] | undefined;
2008
+ readonly required?: boolean | undefined;
2009
+ readonly min?: number | undefined;
2010
+ readonly max?: number | undefined;
2011
+ readonly formula?: string | undefined;
1814
2012
  readonly label?: string | undefined;
2013
+ readonly precision?: number | undefined;
1815
2014
  readonly name?: string | undefined;
1816
2015
  readonly description?: string | undefined;
1817
2016
  readonly format?: string | undefined;
1818
- readonly required?: boolean | undefined;
1819
2017
  readonly searchable?: boolean | undefined;
1820
2018
  readonly multiple?: boolean | undefined;
1821
2019
  readonly unique?: boolean | undefined;
1822
2020
  readonly defaultValue?: any;
1823
2021
  readonly maxLength?: number | undefined;
1824
2022
  readonly minLength?: number | undefined;
1825
- readonly precision?: number | undefined;
1826
2023
  readonly scale?: number | undefined;
1827
- readonly min?: number | undefined;
1828
- readonly max?: number | undefined;
1829
2024
  readonly reference?: string | undefined;
1830
2025
  readonly referenceFilters?: string[] | undefined;
1831
2026
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1833,7 +2028,7 @@ export declare const Field: {
1833
2028
  readonly expression?: string | undefined;
1834
2029
  readonly summaryOperations?: {
1835
2030
  object: string;
1836
- function: "min" | "max" | "count" | "sum" | "avg";
2031
+ function: "count" | "sum" | "avg" | "min" | "max";
1837
2032
  field: string;
1838
2033
  } | undefined;
1839
2034
  language: string | undefined;
@@ -1854,6 +2049,11 @@ export declare const Field: {
1854
2049
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1855
2050
  readonly displayValue?: boolean | undefined;
1856
2051
  readonly allowScanning?: boolean | undefined;
2052
+ readonly currencyConfig?: {
2053
+ precision: number;
2054
+ currencyMode: "dynamic" | "fixed";
2055
+ defaultCurrency: string;
2056
+ } | undefined;
1857
2057
  readonly hidden?: boolean | undefined;
1858
2058
  readonly readonly?: boolean | undefined;
1859
2059
  readonly encryption?: boolean | undefined;
@@ -1862,28 +2062,28 @@ export declare const Field: {
1862
2062
  readonly type: "code";
1863
2063
  };
1864
2064
  color: (config?: FieldInput) => {
1865
- readonly formula?: string | undefined;
1866
2065
  readonly options?: {
1867
2066
  value: string;
1868
2067
  label: string;
1869
2068
  color?: string | undefined;
1870
2069
  default?: boolean | undefined;
1871
2070
  }[] | undefined;
2071
+ readonly required?: boolean | undefined;
2072
+ readonly min?: number | undefined;
2073
+ readonly max?: number | undefined;
2074
+ readonly formula?: string | undefined;
1872
2075
  readonly label?: string | undefined;
2076
+ readonly precision?: number | undefined;
1873
2077
  readonly name?: string | undefined;
1874
2078
  readonly description?: string | undefined;
1875
2079
  readonly format?: string | undefined;
1876
- readonly required?: boolean | undefined;
1877
2080
  readonly searchable?: boolean | undefined;
1878
2081
  readonly multiple?: boolean | undefined;
1879
2082
  readonly unique?: boolean | undefined;
1880
2083
  readonly defaultValue?: any;
1881
2084
  readonly maxLength?: number | undefined;
1882
2085
  readonly minLength?: number | undefined;
1883
- readonly precision?: number | undefined;
1884
2086
  readonly scale?: number | undefined;
1885
- readonly min?: number | undefined;
1886
- readonly max?: number | undefined;
1887
2087
  readonly reference?: string | undefined;
1888
2088
  readonly referenceFilters?: string[] | undefined;
1889
2089
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1891,7 +2091,7 @@ export declare const Field: {
1891
2091
  readonly expression?: string | undefined;
1892
2092
  readonly summaryOperations?: {
1893
2093
  object: string;
1894
- function: "min" | "max" | "count" | "sum" | "avg";
2094
+ function: "count" | "sum" | "avg" | "min" | "max";
1895
2095
  field: string;
1896
2096
  } | undefined;
1897
2097
  readonly language?: string | undefined;
@@ -1912,6 +2112,11 @@ export declare const Field: {
1912
2112
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1913
2113
  readonly displayValue?: boolean | undefined;
1914
2114
  readonly allowScanning?: boolean | undefined;
2115
+ readonly currencyConfig?: {
2116
+ precision: number;
2117
+ currencyMode: "dynamic" | "fixed";
2118
+ defaultCurrency: string;
2119
+ } | undefined;
1915
2120
  readonly hidden?: boolean | undefined;
1916
2121
  readonly readonly?: boolean | undefined;
1917
2122
  readonly encryption?: boolean | undefined;
@@ -1920,28 +2125,28 @@ export declare const Field: {
1920
2125
  readonly type: "color";
1921
2126
  };
1922
2127
  rating: (maxRating?: number, config?: FieldInput) => {
1923
- readonly formula?: string | undefined;
1924
2128
  readonly options?: {
1925
2129
  value: string;
1926
2130
  label: string;
1927
2131
  color?: string | undefined;
1928
2132
  default?: boolean | undefined;
1929
2133
  }[] | undefined;
2134
+ readonly required?: boolean | undefined;
2135
+ readonly min?: number | undefined;
2136
+ readonly max?: number | undefined;
2137
+ readonly formula?: string | undefined;
1930
2138
  readonly label?: string | undefined;
2139
+ readonly precision?: number | undefined;
1931
2140
  readonly name?: string | undefined;
1932
2141
  readonly description?: string | undefined;
1933
2142
  readonly format?: string | undefined;
1934
- readonly required?: boolean | undefined;
1935
2143
  readonly searchable?: boolean | undefined;
1936
2144
  readonly multiple?: boolean | undefined;
1937
2145
  readonly unique?: boolean | undefined;
1938
2146
  readonly defaultValue?: any;
1939
2147
  readonly maxLength?: number | undefined;
1940
2148
  readonly minLength?: number | undefined;
1941
- readonly precision?: number | undefined;
1942
2149
  readonly scale?: number | undefined;
1943
- readonly min?: number | undefined;
1944
- readonly max?: number | undefined;
1945
2150
  readonly reference?: string | undefined;
1946
2151
  readonly referenceFilters?: string[] | undefined;
1947
2152
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -1949,7 +2154,7 @@ export declare const Field: {
1949
2154
  readonly expression?: string | undefined;
1950
2155
  readonly summaryOperations?: {
1951
2156
  object: string;
1952
- function: "min" | "max" | "count" | "sum" | "avg";
2157
+ function: "count" | "sum" | "avg" | "min" | "max";
1953
2158
  field: string;
1954
2159
  } | undefined;
1955
2160
  readonly language?: string | undefined;
@@ -1970,6 +2175,11 @@ export declare const Field: {
1970
2175
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1971
2176
  readonly displayValue?: boolean | undefined;
1972
2177
  readonly allowScanning?: boolean | undefined;
2178
+ readonly currencyConfig?: {
2179
+ precision: number;
2180
+ currencyMode: "dynamic" | "fixed";
2181
+ defaultCurrency: string;
2182
+ } | undefined;
1973
2183
  readonly hidden?: boolean | undefined;
1974
2184
  readonly readonly?: boolean | undefined;
1975
2185
  readonly encryption?: boolean | undefined;
@@ -1978,28 +2188,28 @@ export declare const Field: {
1978
2188
  readonly type: "rating";
1979
2189
  };
1980
2190
  signature: (config?: FieldInput) => {
1981
- readonly formula?: string | undefined;
1982
2191
  readonly options?: {
1983
2192
  value: string;
1984
2193
  label: string;
1985
2194
  color?: string | undefined;
1986
2195
  default?: boolean | undefined;
1987
2196
  }[] | undefined;
2197
+ readonly required?: boolean | undefined;
2198
+ readonly min?: number | undefined;
2199
+ readonly max?: number | undefined;
2200
+ readonly formula?: string | undefined;
1988
2201
  readonly label?: string | undefined;
2202
+ readonly precision?: number | undefined;
1989
2203
  readonly name?: string | undefined;
1990
2204
  readonly description?: string | undefined;
1991
2205
  readonly format?: string | undefined;
1992
- readonly required?: boolean | undefined;
1993
2206
  readonly searchable?: boolean | undefined;
1994
2207
  readonly multiple?: boolean | undefined;
1995
2208
  readonly unique?: boolean | undefined;
1996
2209
  readonly defaultValue?: any;
1997
2210
  readonly maxLength?: number | undefined;
1998
2211
  readonly minLength?: number | undefined;
1999
- readonly precision?: number | undefined;
2000
2212
  readonly scale?: number | undefined;
2001
- readonly min?: number | undefined;
2002
- readonly max?: number | undefined;
2003
2213
  readonly reference?: string | undefined;
2004
2214
  readonly referenceFilters?: string[] | undefined;
2005
2215
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -2007,7 +2217,7 @@ export declare const Field: {
2007
2217
  readonly expression?: string | undefined;
2008
2218
  readonly summaryOperations?: {
2009
2219
  object: string;
2010
- function: "min" | "max" | "count" | "sum" | "avg";
2220
+ function: "count" | "sum" | "avg" | "min" | "max";
2011
2221
  field: string;
2012
2222
  } | undefined;
2013
2223
  readonly language?: string | undefined;
@@ -2028,6 +2238,11 @@ export declare const Field: {
2028
2238
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2029
2239
  readonly displayValue?: boolean | undefined;
2030
2240
  readonly allowScanning?: boolean | undefined;
2241
+ readonly currencyConfig?: {
2242
+ precision: number;
2243
+ currencyMode: "dynamic" | "fixed";
2244
+ defaultCurrency: string;
2245
+ } | undefined;
2031
2246
  readonly hidden?: boolean | undefined;
2032
2247
  readonly readonly?: boolean | undefined;
2033
2248
  readonly encryption?: boolean | undefined;
@@ -2036,28 +2251,28 @@ export declare const Field: {
2036
2251
  readonly type: "signature";
2037
2252
  };
2038
2253
  slider: (config?: FieldInput) => {
2039
- readonly formula?: string | undefined;
2040
2254
  readonly options?: {
2041
2255
  value: string;
2042
2256
  label: string;
2043
2257
  color?: string | undefined;
2044
2258
  default?: boolean | undefined;
2045
2259
  }[] | undefined;
2260
+ readonly required?: boolean | undefined;
2261
+ readonly min?: number | undefined;
2262
+ readonly max?: number | undefined;
2263
+ readonly formula?: string | undefined;
2046
2264
  readonly label?: string | undefined;
2265
+ readonly precision?: number | undefined;
2047
2266
  readonly name?: string | undefined;
2048
2267
  readonly description?: string | undefined;
2049
2268
  readonly format?: string | undefined;
2050
- readonly required?: boolean | undefined;
2051
2269
  readonly searchable?: boolean | undefined;
2052
2270
  readonly multiple?: boolean | undefined;
2053
2271
  readonly unique?: boolean | undefined;
2054
2272
  readonly defaultValue?: any;
2055
2273
  readonly maxLength?: number | undefined;
2056
2274
  readonly minLength?: number | undefined;
2057
- readonly precision?: number | undefined;
2058
2275
  readonly scale?: number | undefined;
2059
- readonly min?: number | undefined;
2060
- readonly max?: number | undefined;
2061
2276
  readonly reference?: string | undefined;
2062
2277
  readonly referenceFilters?: string[] | undefined;
2063
2278
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -2065,7 +2280,7 @@ export declare const Field: {
2065
2280
  readonly expression?: string | undefined;
2066
2281
  readonly summaryOperations?: {
2067
2282
  object: string;
2068
- function: "min" | "max" | "count" | "sum" | "avg";
2283
+ function: "count" | "sum" | "avg" | "min" | "max";
2069
2284
  field: string;
2070
2285
  } | undefined;
2071
2286
  readonly language?: string | undefined;
@@ -2086,6 +2301,11 @@ export declare const Field: {
2086
2301
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2087
2302
  readonly displayValue?: boolean | undefined;
2088
2303
  readonly allowScanning?: boolean | undefined;
2304
+ readonly currencyConfig?: {
2305
+ precision: number;
2306
+ currencyMode: "dynamic" | "fixed";
2307
+ defaultCurrency: string;
2308
+ } | undefined;
2089
2309
  readonly hidden?: boolean | undefined;
2090
2310
  readonly readonly?: boolean | undefined;
2091
2311
  readonly encryption?: boolean | undefined;
@@ -2094,28 +2314,28 @@ export declare const Field: {
2094
2314
  readonly type: "slider";
2095
2315
  };
2096
2316
  qrcode: (config?: FieldInput) => {
2097
- readonly formula?: string | undefined;
2098
2317
  readonly options?: {
2099
2318
  value: string;
2100
2319
  label: string;
2101
2320
  color?: string | undefined;
2102
2321
  default?: boolean | undefined;
2103
2322
  }[] | undefined;
2323
+ readonly required?: boolean | undefined;
2324
+ readonly min?: number | undefined;
2325
+ readonly max?: number | undefined;
2326
+ readonly formula?: string | undefined;
2104
2327
  readonly label?: string | undefined;
2328
+ readonly precision?: number | undefined;
2105
2329
  readonly name?: string | undefined;
2106
2330
  readonly description?: string | undefined;
2107
2331
  readonly format?: string | undefined;
2108
- readonly required?: boolean | undefined;
2109
2332
  readonly searchable?: boolean | undefined;
2110
2333
  readonly multiple?: boolean | undefined;
2111
2334
  readonly unique?: boolean | undefined;
2112
2335
  readonly defaultValue?: any;
2113
2336
  readonly maxLength?: number | undefined;
2114
2337
  readonly minLength?: number | undefined;
2115
- readonly precision?: number | undefined;
2116
2338
  readonly scale?: number | undefined;
2117
- readonly min?: number | undefined;
2118
- readonly max?: number | undefined;
2119
2339
  readonly reference?: string | undefined;
2120
2340
  readonly referenceFilters?: string[] | undefined;
2121
2341
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -2123,7 +2343,7 @@ export declare const Field: {
2123
2343
  readonly expression?: string | undefined;
2124
2344
  readonly summaryOperations?: {
2125
2345
  object: string;
2126
- function: "min" | "max" | "count" | "sum" | "avg";
2346
+ function: "count" | "sum" | "avg" | "min" | "max";
2127
2347
  field: string;
2128
2348
  } | undefined;
2129
2349
  readonly language?: string | undefined;
@@ -2144,6 +2364,11 @@ export declare const Field: {
2144
2364
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2145
2365
  readonly displayValue?: boolean | undefined;
2146
2366
  readonly allowScanning?: boolean | undefined;
2367
+ readonly currencyConfig?: {
2368
+ precision: number;
2369
+ currencyMode: "dynamic" | "fixed";
2370
+ defaultCurrency: string;
2371
+ } | undefined;
2147
2372
  readonly hidden?: boolean | undefined;
2148
2373
  readonly readonly?: boolean | undefined;
2149
2374
  readonly encryption?: boolean | undefined;
@@ -2152,28 +2377,28 @@ export declare const Field: {
2152
2377
  readonly type: "qrcode";
2153
2378
  };
2154
2379
  geolocation: (config?: FieldInput) => {
2155
- readonly formula?: string | undefined;
2156
2380
  readonly options?: {
2157
2381
  value: string;
2158
2382
  label: string;
2159
2383
  color?: string | undefined;
2160
2384
  default?: boolean | undefined;
2161
2385
  }[] | undefined;
2386
+ readonly required?: boolean | undefined;
2387
+ readonly min?: number | undefined;
2388
+ readonly max?: number | undefined;
2389
+ readonly formula?: string | undefined;
2162
2390
  readonly label?: string | undefined;
2391
+ readonly precision?: number | undefined;
2163
2392
  readonly name?: string | undefined;
2164
2393
  readonly description?: string | undefined;
2165
2394
  readonly format?: string | undefined;
2166
- readonly required?: boolean | undefined;
2167
2395
  readonly searchable?: boolean | undefined;
2168
2396
  readonly multiple?: boolean | undefined;
2169
2397
  readonly unique?: boolean | undefined;
2170
2398
  readonly defaultValue?: any;
2171
2399
  readonly maxLength?: number | undefined;
2172
2400
  readonly minLength?: number | undefined;
2173
- readonly precision?: number | undefined;
2174
2401
  readonly scale?: number | undefined;
2175
- readonly min?: number | undefined;
2176
- readonly max?: number | undefined;
2177
2402
  readonly reference?: string | undefined;
2178
2403
  readonly referenceFilters?: string[] | undefined;
2179
2404
  readonly writeRequiresMasterRead?: boolean | undefined;
@@ -2181,7 +2406,7 @@ export declare const Field: {
2181
2406
  readonly expression?: string | undefined;
2182
2407
  readonly summaryOperations?: {
2183
2408
  object: string;
2184
- function: "min" | "max" | "count" | "sum" | "avg";
2409
+ function: "count" | "sum" | "avg" | "min" | "max";
2185
2410
  field: string;
2186
2411
  } | undefined;
2187
2412
  readonly language?: string | undefined;
@@ -2202,6 +2427,11 @@ export declare const Field: {
2202
2427
  readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2203
2428
  readonly displayValue?: boolean | undefined;
2204
2429
  readonly allowScanning?: boolean | undefined;
2430
+ readonly currencyConfig?: {
2431
+ precision: number;
2432
+ currencyMode: "dynamic" | "fixed";
2433
+ defaultCurrency: string;
2434
+ } | undefined;
2205
2435
  readonly hidden?: boolean | undefined;
2206
2436
  readonly readonly?: boolean | undefined;
2207
2437
  readonly encryption?: boolean | undefined;