@jmruthers/pace-core 0.6.2 → 0.6.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.
- package/CHANGELOG.md +45 -0
- package/cursor-rules/00-pace-core-compliance.mdc +34 -2
- package/dist/{AuthService-BPvc3Ka0.d.ts → AuthService-Cb34EQs3.d.ts} +9 -1
- package/dist/{DataTable-TPTKCX4D.js → DataTable-THFPBKTP.js} +9 -8
- package/dist/{PublicPageProvider-DC6kCaqf.d.ts → PublicPageProvider-DEMpysFR.d.ts} +45 -67
- package/dist/{UnifiedAuthProvider-CVcTjx-d.d.ts → UnifiedAuthProvider-CKvHP1MK.d.ts} +1 -8
- package/dist/{UnifiedAuthProvider-CH6Z342H.js → UnifiedAuthProvider-KAGUYQ4J.js} +5 -4
- package/dist/{api-MVVQZLJI.js → api-IAGWF3ZG.js} +10 -10
- package/dist/{audit-B5P6FFIR.js → audit-V53FV5AG.js} +2 -2
- package/dist/{chunk-SFZUDBL5.js → chunk-2T2IG7T7.js} +70 -56
- package/dist/chunk-2T2IG7T7.js.map +1 -0
- package/dist/{chunk-MMZ7JXPU.js → chunk-6Z7LTB3D.js} +13 -21
- package/dist/{chunk-MMZ7JXPU.js.map → chunk-6Z7LTB3D.js.map} +1 -1
- package/dist/{chunk-6J4GEEJR.js → chunk-CNCQDFLN.js} +53 -27
- package/dist/chunk-CNCQDFLN.js.map +1 -0
- package/dist/chunk-DGUM43GV.js +11 -0
- package/dist/{chunk-EHMR7VYL.js → chunk-DWUBLJJM.js} +361 -187
- package/dist/chunk-DWUBLJJM.js.map +1 -0
- package/dist/{chunk-2UOI2FG5.js → chunk-HFZBI76P.js} +4 -4
- package/dist/{chunk-F2IMUDXZ.js → chunk-M7MPQISP.js} +2 -2
- package/dist/{chunk-3XC4CPTD.js → chunk-PQBSKX33.js} +244 -5727
- package/dist/chunk-PQBSKX33.js.map +1 -0
- package/dist/chunk-QRPVRXYT.js +226 -0
- package/dist/chunk-QRPVRXYT.js.map +1 -0
- package/dist/{chunk-24UVZUZG.js → chunk-RWEBCB47.js} +129 -387
- package/dist/chunk-RWEBCB47.js.map +1 -0
- package/dist/{chunk-XWQCNGTQ.js → chunk-YDQHOZNA.js} +173 -79
- package/dist/chunk-YDQHOZNA.js.map +1 -0
- package/dist/{chunk-NECFR5MM.js → chunk-ZNIWI3UC.js} +562 -644
- package/dist/chunk-ZNIWI3UC.js.map +1 -0
- package/dist/components.d.ts +2 -2
- package/dist/components.js +12 -13
- package/dist/contextValidator-3JNZKUTX.js +9 -0
- package/dist/contextValidator-3JNZKUTX.js.map +1 -0
- package/dist/eslint-rules/pace-core-compliance.cjs +106 -0
- package/dist/hooks.d.ts +2 -2
- package/dist/hooks.js +7 -6
- package/dist/hooks.js.map +1 -1
- package/dist/index.d.ts +7 -7
- package/dist/index.js +21 -16
- package/dist/index.js.map +1 -1
- package/dist/providers.d.ts +3 -3
- package/dist/providers.js +4 -3
- package/dist/rbac/index.d.ts +67 -27
- package/dist/rbac/index.js +15 -8
- package/dist/styles/index.js +1 -1
- package/dist/theming/runtime.js +1 -1
- package/dist/types.js +1 -1
- package/dist/{usePublicRouteParams-1oMokgLF.d.ts → usePublicRouteParams-i3qtoBgg.d.ts} +7 -16
- package/dist/utils.js +5 -7
- package/dist/utils.js.map +1 -1
- package/docs/api/README.md +14 -16
- package/docs/api/modules.md +3796 -2513
- package/docs/components/context-selector.md +126 -0
- package/docs/migration/RBAC_SCOPE_MIGRATION.md +385 -0
- package/docs/pace-mint-fix-auto-selection.md +218 -0
- package/docs/pace-mint-rbac-setup.md +391 -0
- package/docs/rbac/secure-client-protection.md +330 -0
- package/package.json +3 -3
- package/scripts/audit/core/checks/compliance.cjs +72 -0
- package/scripts/audit/core/checks/dependencies.cjs +559 -28
- package/scripts/audit/core/checks/documentation.cjs +68 -3
- package/scripts/audit/core/checks/environment.cjs +2 -14
- package/scripts/audit/core/checks/error-handling.cjs +47 -6
- package/src/components/ContextSelector/ContextSelector.tsx +384 -0
- package/src/components/ContextSelector/index.ts +3 -0
- package/src/components/DataTable/components/RowComponent.tsx +19 -19
- package/src/components/DataTable/components/UnifiedTableBody.tsx +2 -2
- package/src/components/DataTable/hooks/useDataTablePermissions.ts +8 -6
- package/src/components/Dialog/Dialog.tsx +29 -1
- package/src/components/FileDisplay/FileDisplay.tsx +42 -10
- package/src/components/Header/Header.test.tsx +43 -73
- package/src/components/Header/Header.tsx +44 -45
- package/src/components/PaceAppLayout/PaceAppLayout.integration.test.tsx +10 -19
- package/src/components/PaceAppLayout/PaceAppLayout.performance.test.tsx +2 -2
- package/src/components/PaceAppLayout/PaceAppLayout.security.test.tsx +5 -5
- package/src/components/PaceAppLayout/PaceAppLayout.test.tsx +9 -9
- package/src/components/PaceAppLayout/PaceAppLayout.tsx +135 -33
- package/src/components/PaceAppLayout/README.md +14 -17
- package/src/components/PaceAppLayout/test-setup.tsx +2 -2
- package/src/components/index.ts +5 -5
- package/src/eslint-rules/pace-core-compliance.cjs +106 -0
- package/src/hooks/__tests__/useAppConfig.unit.test.ts +4 -98
- package/src/hooks/useAppConfig.ts +15 -30
- package/src/hooks/useFileDisplay.ts +77 -50
- package/src/index.ts +4 -5
- package/src/providers/services/AuthServiceProvider.tsx +17 -7
- package/src/providers/services/EventServiceProvider.tsx +33 -5
- package/src/providers/services/UnifiedAuthProvider.tsx +90 -134
- package/src/rbac/__tests__/adapters.comprehensive.test.tsx +1 -1
- package/src/rbac/adapters.tsx +2 -2
- package/src/rbac/api.test.ts +59 -51
- package/src/rbac/api.ts +178 -132
- package/src/rbac/components/PagePermissionGuard.tsx +38 -10
- package/src/rbac/hooks/__tests__/useSecureSupabase.test.ts +32 -21
- package/src/rbac/hooks/permissions/useAccessLevel.ts +1 -1
- package/src/rbac/hooks/permissions/useCan.ts +41 -11
- package/src/rbac/hooks/permissions/useHasAllPermissions.ts +1 -1
- package/src/rbac/hooks/permissions/useHasAnyPermission.ts +1 -1
- package/src/rbac/hooks/permissions/useMultiplePermissions.ts +1 -1
- package/src/rbac/hooks/useCan.test.ts +0 -9
- package/src/rbac/hooks/useRBAC.test.ts +1 -5
- package/src/rbac/hooks/useRBAC.ts +36 -37
- package/src/rbac/hooks/useResolvedScope.test.ts +120 -35
- package/src/rbac/hooks/useResolvedScope.ts +35 -40
- package/src/rbac/hooks/useSecureSupabase.ts +7 -7
- package/src/rbac/index.ts +7 -0
- package/src/rbac/secureClient.test.ts +22 -18
- package/src/rbac/secureClient.ts +103 -16
- package/src/rbac/security.ts +0 -17
- package/src/rbac/types.ts +1 -0
- package/src/rbac/utils/__tests__/contextValidator.test.ts +64 -86
- package/src/rbac/utils/clientSecurity.ts +93 -0
- package/src/rbac/utils/contextValidator.ts +77 -168
- package/src/services/AuthService.ts +39 -7
- package/src/services/EventService.ts +186 -54
- package/src/services/OrganisationService.ts +81 -14
- package/src/services/__tests__/EventService.test.ts +1 -2
- package/src/services/base/BaseService.ts +3 -0
- package/src/utils/dynamic/dynamicUtils.ts +7 -4
- package/dist/chunk-24UVZUZG.js.map +0 -1
- package/dist/chunk-3XC4CPTD.js.map +0 -1
- package/dist/chunk-6J4GEEJR.js.map +0 -1
- package/dist/chunk-7D4SUZUM.js +0 -38
- package/dist/chunk-EHMR7VYL.js.map +0 -1
- package/dist/chunk-NECFR5MM.js.map +0 -1
- package/dist/chunk-SFZUDBL5.js.map +0 -1
- package/dist/chunk-XWQCNGTQ.js.map +0 -1
- package/docs/api/classes/ColumnFactory.md +0 -243
- package/docs/api/classes/InvalidScopeError.md +0 -73
- package/docs/api/classes/Logger.md +0 -178
- package/docs/api/classes/MissingUserContextError.md +0 -66
- package/docs/api/classes/OrganisationContextRequiredError.md +0 -66
- package/docs/api/classes/PermissionDeniedError.md +0 -73
- package/docs/api/classes/RBACAuditManager.md +0 -297
- package/docs/api/classes/RBACCache.md +0 -322
- package/docs/api/classes/RBACEngine.md +0 -171
- package/docs/api/classes/RBACError.md +0 -76
- package/docs/api/classes/RBACNotInitializedError.md +0 -66
- package/docs/api/classes/SecureSupabaseClient.md +0 -163
- package/docs/api/classes/StorageUtils.md +0 -328
- package/docs/api/enums/FileCategory.md +0 -184
- package/docs/api/enums/LogLevel.md +0 -54
- package/docs/api/enums/RBACErrorCode.md +0 -228
- package/docs/api/enums/RPCFunction.md +0 -118
- package/docs/api/interfaces/AddressFieldProps.md +0 -241
- package/docs/api/interfaces/AddressFieldRef.md +0 -94
- package/docs/api/interfaces/AggregateConfig.md +0 -43
- package/docs/api/interfaces/AutocompleteOptions.md +0 -75
- package/docs/api/interfaces/AvatarProps.md +0 -128
- package/docs/api/interfaces/BadgeProps.md +0 -34
- package/docs/api/interfaces/ButtonProps.md +0 -56
- package/docs/api/interfaces/CalendarProps.md +0 -73
- package/docs/api/interfaces/CardProps.md +0 -69
- package/docs/api/interfaces/ColorPalette.md +0 -7
- package/docs/api/interfaces/ColorShade.md +0 -66
- package/docs/api/interfaces/ComplianceResult.md +0 -30
- package/docs/api/interfaces/DataAccessRecord.md +0 -96
- package/docs/api/interfaces/DataRecord.md +0 -11
- package/docs/api/interfaces/DataTableAction.md +0 -252
- package/docs/api/interfaces/DataTableColumn.md +0 -504
- package/docs/api/interfaces/DataTableProps.md +0 -625
- package/docs/api/interfaces/DataTableToolbarButton.md +0 -96
- package/docs/api/interfaces/DatabaseComplianceResult.md +0 -85
- package/docs/api/interfaces/DatabaseIssue.md +0 -41
- package/docs/api/interfaces/EmptyStateConfig.md +0 -61
- package/docs/api/interfaces/EnhancedNavigationMenuProps.md +0 -235
- package/docs/api/interfaces/ErrorBoundaryProps.md +0 -147
- package/docs/api/interfaces/ErrorBoundaryProviderProps.md +0 -36
- package/docs/api/interfaces/ErrorBoundaryState.md +0 -75
- package/docs/api/interfaces/EventAppRoleData.md +0 -71
- package/docs/api/interfaces/ExportColumn.md +0 -90
- package/docs/api/interfaces/ExportOptions.md +0 -126
- package/docs/api/interfaces/FileDisplayProps.md +0 -249
- package/docs/api/interfaces/FileMetadata.md +0 -129
- package/docs/api/interfaces/FileReference.md +0 -118
- package/docs/api/interfaces/FileSizeLimits.md +0 -7
- package/docs/api/interfaces/FileUploadOptions.md +0 -139
- package/docs/api/interfaces/FileUploadProps.md +0 -296
- package/docs/api/interfaces/FooterProps.md +0 -107
- package/docs/api/interfaces/FormFieldProps.md +0 -166
- package/docs/api/interfaces/FormProps.md +0 -113
- package/docs/api/interfaces/GrantEventAppRoleParams.md +0 -122
- package/docs/api/interfaces/InactivityWarningModalProps.md +0 -115
- package/docs/api/interfaces/InputProps.md +0 -56
- package/docs/api/interfaces/LabelProps.md +0 -107
- package/docs/api/interfaces/LoggerConfig.md +0 -62
- package/docs/api/interfaces/LoginFormProps.md +0 -187
- package/docs/api/interfaces/NavigationAccessRecord.md +0 -107
- package/docs/api/interfaces/NavigationContextType.md +0 -164
- package/docs/api/interfaces/NavigationGuardProps.md +0 -139
- package/docs/api/interfaces/NavigationItem.md +0 -120
- package/docs/api/interfaces/NavigationMenuProps.md +0 -221
- package/docs/api/interfaces/NavigationProviderProps.md +0 -117
- package/docs/api/interfaces/Organisation.md +0 -140
- package/docs/api/interfaces/OrganisationContextType.md +0 -388
- package/docs/api/interfaces/OrganisationMembership.md +0 -140
- package/docs/api/interfaces/OrganisationProviderProps.md +0 -76
- package/docs/api/interfaces/OrganisationSecurityError.md +0 -62
- package/docs/api/interfaces/PaceAppLayoutProps.md +0 -409
- package/docs/api/interfaces/PaceLoginPageProps.md +0 -49
- package/docs/api/interfaces/PageAccessRecord.md +0 -85
- package/docs/api/interfaces/PagePermissionContextType.md +0 -140
- package/docs/api/interfaces/PagePermissionGuardProps.md +0 -153
- package/docs/api/interfaces/PagePermissionProviderProps.md +0 -119
- package/docs/api/interfaces/PaletteData.md +0 -41
- package/docs/api/interfaces/ParsedAddress.md +0 -120
- package/docs/api/interfaces/PermissionEnforcerProps.md +0 -153
- package/docs/api/interfaces/ProgressProps.md +0 -42
- package/docs/api/interfaces/ProtectedRouteProps.md +0 -78
- package/docs/api/interfaces/PublicPageFooterProps.md +0 -112
- package/docs/api/interfaces/PublicPageHeaderProps.md +0 -125
- package/docs/api/interfaces/PublicPageLayoutProps.md +0 -185
- package/docs/api/interfaces/QuickFix.md +0 -52
- package/docs/api/interfaces/RBACAccessValidateParams.md +0 -52
- package/docs/api/interfaces/RBACAccessValidateResult.md +0 -41
- package/docs/api/interfaces/RBACAuditLogParams.md +0 -85
- package/docs/api/interfaces/RBACAuditLogResult.md +0 -52
- package/docs/api/interfaces/RBACConfig.md +0 -133
- package/docs/api/interfaces/RBACContext.md +0 -52
- package/docs/api/interfaces/RBACLogger.md +0 -112
- package/docs/api/interfaces/RBACPageAccessCheckParams.md +0 -74
- package/docs/api/interfaces/RBACPerformanceMetrics.md +0 -138
- package/docs/api/interfaces/RBACPermissionCheckParams.md +0 -74
- package/docs/api/interfaces/RBACPermissionCheckResult.md +0 -52
- package/docs/api/interfaces/RBACPermissionsGetParams.md +0 -63
- package/docs/api/interfaces/RBACPermissionsGetResult.md +0 -63
- package/docs/api/interfaces/RBACResult.md +0 -58
- package/docs/api/interfaces/RBACRoleGrantParams.md +0 -63
- package/docs/api/interfaces/RBACRoleGrantResult.md +0 -52
- package/docs/api/interfaces/RBACRoleRevokeParams.md +0 -63
- package/docs/api/interfaces/RBACRoleRevokeResult.md +0 -52
- package/docs/api/interfaces/RBACRoleValidateParams.md +0 -52
- package/docs/api/interfaces/RBACRoleValidateResult.md +0 -63
- package/docs/api/interfaces/RBACRolesListParams.md +0 -52
- package/docs/api/interfaces/RBACRolesListResult.md +0 -74
- package/docs/api/interfaces/RBACSessionTrackParams.md +0 -74
- package/docs/api/interfaces/RBACSessionTrackResult.md +0 -52
- package/docs/api/interfaces/ResourcePermissions.md +0 -155
- package/docs/api/interfaces/RevokeEventAppRoleParams.md +0 -100
- package/docs/api/interfaces/RoleBasedRouterContextType.md +0 -151
- package/docs/api/interfaces/RoleBasedRouterProps.md +0 -156
- package/docs/api/interfaces/RoleManagementResult.md +0 -52
- package/docs/api/interfaces/RouteAccessRecord.md +0 -107
- package/docs/api/interfaces/RouteConfig.md +0 -134
- package/docs/api/interfaces/RuntimeComplianceResult.md +0 -55
- package/docs/api/interfaces/SecureDataContextType.md +0 -168
- package/docs/api/interfaces/SecureDataProviderProps.md +0 -132
- package/docs/api/interfaces/SessionRestorationLoaderProps.md +0 -34
- package/docs/api/interfaces/SetupIssue.md +0 -41
- package/docs/api/interfaces/StorageConfig.md +0 -41
- package/docs/api/interfaces/StorageFileInfo.md +0 -74
- package/docs/api/interfaces/StorageFileMetadata.md +0 -151
- package/docs/api/interfaces/StorageListOptions.md +0 -99
- package/docs/api/interfaces/StorageListResult.md +0 -41
- package/docs/api/interfaces/StorageUploadOptions.md +0 -101
- package/docs/api/interfaces/StorageUploadResult.md +0 -63
- package/docs/api/interfaces/StorageUrlOptions.md +0 -60
- package/docs/api/interfaces/StyleImport.md +0 -19
- package/docs/api/interfaces/SwitchProps.md +0 -34
- package/docs/api/interfaces/TabsContentProps.md +0 -9
- package/docs/api/interfaces/TabsListProps.md +0 -9
- package/docs/api/interfaces/TabsProps.md +0 -9
- package/docs/api/interfaces/TabsTriggerProps.md +0 -50
- package/docs/api/interfaces/TextareaProps.md +0 -53
- package/docs/api/interfaces/ToastActionElement.md +0 -12
- package/docs/api/interfaces/ToastProps.md +0 -9
- package/docs/api/interfaces/UnifiedAuthContextType.md +0 -823
- package/docs/api/interfaces/UnifiedAuthProviderProps.md +0 -173
- package/docs/api/interfaces/UseFormDialogOptions.md +0 -62
- package/docs/api/interfaces/UseFormDialogReturn.md +0 -117
- package/docs/api/interfaces/UseInactivityTrackerOptions.md +0 -138
- package/docs/api/interfaces/UseInactivityTrackerReturn.md +0 -123
- package/docs/api/interfaces/UsePublicEventLogoOptions.md +0 -87
- package/docs/api/interfaces/UsePublicEventLogoReturn.md +0 -84
- package/docs/api/interfaces/UsePublicEventOptions.md +0 -34
- package/docs/api/interfaces/UsePublicEventReturn.md +0 -71
- package/docs/api/interfaces/UsePublicFileDisplayOptions.md +0 -47
- package/docs/api/interfaces/UsePublicFileDisplayReturn.md +0 -123
- package/docs/api/interfaces/UsePublicRouteParamsReturn.md +0 -97
- package/docs/api/interfaces/UseResolvedScopeOptions.md +0 -47
- package/docs/api/interfaces/UseResolvedScopeReturn.md +0 -47
- package/docs/api/interfaces/UseResourcePermissionsOptions.md +0 -34
- package/docs/api/interfaces/UserEventAccess.md +0 -121
- package/docs/api/interfaces/UserMenuProps.md +0 -88
- package/docs/api/interfaces/UserProfile.md +0 -63
- package/src/components/EventSelector/EventSelector.test.tsx +0 -720
- package/src/components/EventSelector/EventSelector.tsx +0 -423
- package/src/components/EventSelector/index.ts +0 -3
- package/src/components/OrganisationSelector/OrganisationSelector.test.tsx +0 -784
- package/src/components/OrganisationSelector/OrganisationSelector.tsx +0 -327
- package/src/components/OrganisationSelector/index.ts +0 -9
- /package/dist/{DataTable-TPTKCX4D.js.map → DataTable-THFPBKTP.js.map} +0 -0
- /package/dist/{UnifiedAuthProvider-CH6Z342H.js.map → UnifiedAuthProvider-KAGUYQ4J.js.map} +0 -0
- /package/dist/{api-MVVQZLJI.js.map → api-IAGWF3ZG.js.map} +0 -0
- /package/dist/{audit-B5P6FFIR.js.map → audit-V53FV5AG.js.map} +0 -0
- /package/dist/{chunk-7D4SUZUM.js.map → chunk-DGUM43GV.js.map} +0 -0
- /package/dist/{chunk-2UOI2FG5.js.map → chunk-HFZBI76P.js.map} +0 -0
- /package/dist/{chunk-F2IMUDXZ.js.map → chunk-M7MPQISP.js.map} +0 -0
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
[@jmruthers/pace-core - v0.6.2](../README.md) / [Exports](../modules.md) / SecureSupabaseClient
|
|
2
|
-
|
|
3
|
-
# Class: SecureSupabaseClient
|
|
4
|
-
|
|
5
|
-
Secure Supabase Client that enforces organisation context
|
|
6
|
-
|
|
7
|
-
This client automatically injects organisation context into all requests
|
|
8
|
-
and prevents queries that don't have the required context.
|
|
9
|
-
|
|
10
|
-
Note: For non-super-admins, organisationId is required. Super-admins can operate
|
|
11
|
-
without organisationId to access system-wide tables (like core_organisations).
|
|
12
|
-
Callers should derive organisationId from eventId before creating this client
|
|
13
|
-
if working with event-required apps.
|
|
14
|
-
|
|
15
|
-
## Table of contents
|
|
16
|
-
|
|
17
|
-
### Constructors
|
|
18
|
-
|
|
19
|
-
- [constructor](SecureSupabaseClient.md#constructor)
|
|
20
|
-
|
|
21
|
-
### Methods
|
|
22
|
-
|
|
23
|
-
- [getEdgeFunctionClient](SecureSupabaseClient.md#getedgefunctionclient)
|
|
24
|
-
- [getOrganisationId](SecureSupabaseClient.md#getorganisationid)
|
|
25
|
-
- [getEventId](SecureSupabaseClient.md#geteventid)
|
|
26
|
-
- [getAppId](SecureSupabaseClient.md#getappid)
|
|
27
|
-
- [withContext](SecureSupabaseClient.md#withcontext)
|
|
28
|
-
- [getClient](SecureSupabaseClient.md#getclient)
|
|
29
|
-
|
|
30
|
-
## Constructors
|
|
31
|
-
|
|
32
|
-
### constructor
|
|
33
|
-
|
|
34
|
-
• **new SecureSupabaseClient**(`supabaseUrl`, `supabaseKey`, `organisationId`, `eventId?`, `appId?`, `isSuperAdmin?`, `existingClient?`): [`SecureSupabaseClient`](SecureSupabaseClient.md)
|
|
35
|
-
|
|
36
|
-
#### Parameters
|
|
37
|
-
|
|
38
|
-
| Name | Type | Default value |
|
|
39
|
-
| :------ | :------ | :------ |
|
|
40
|
-
| `supabaseUrl` | `string` | `undefined` |
|
|
41
|
-
| `supabaseKey` | `string` | `undefined` |
|
|
42
|
-
| `organisationId` | ``null`` \| `string` | `undefined` |
|
|
43
|
-
| `eventId?` | `string` | `undefined` |
|
|
44
|
-
| `appId?` | `string` | `undefined` |
|
|
45
|
-
| `isSuperAdmin` | `boolean` | `false` |
|
|
46
|
-
| `existingClient?` | `default`\<`Database`, ``"public"``, ``"public"``, \{ `Tables`: \{ `addresses`: \{ `Row`: \{ `country`: ``null`` \| `string` ; `created_at`: `string` ; `full_address`: ``null`` \| `string` ; `id`: `string` ; `lat`: ``null`` \| `number` ; `lng`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode`: ``null`` \| `string` ; `route`: ``null`` \| `string` ; `state`: ``null`` \| `string` ; `street_number`: ``null`` \| `string` ; `suburb`: ``null`` \| `string` } ; `Insert`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Update`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"addresses_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `base_application`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status`: `string` ; `status_updated_at`: ``null`` \| `string` ; `status_updated_by`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_application_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"base_application_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"base_application_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `base_questions`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `depends_on_question_id`: ``null`` \| `string` ; `depends_on_value`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `is_sensitive`: `boolean` ; `label`: `string` ; `options`: `Json` ; `organisation_id`: `string` ; `question_group`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order`: `number` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` ; `visibility`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label`: `string` ; `options?`: `Json` ; `organisation_id`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label?`: `string` ; `options?`: `Json` ; `organisation_id?`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type?`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_questions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_delivery`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `delivery_address`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date?`: `string` ; `delivery_event_id?`: `string` ; `delivery_id?`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id?`: `string` ; `delivery_unitcollectiondate?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_delivery_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_event_id_fkey"`` ; `columns`: [``"delivery_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_supplier_id_fkey"`` ; `columns`: [``"delivery_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_diettype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code?`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id?`: `string` ; `diettype_name?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diettype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_diner`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diner_adult`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id?`: `string` ; `diner_id?`: `string` ; `diner_unit_id?`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diner_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"diner_diner_diettype_id_fkey"`` ; `columns`: [``"diner_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"diner_diner_unit_id_fkey"`` ; `columns`: [``"diner_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_dish`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description`: ``null`` \| `string` ; `dish_dietnote`: ``null`` \| `string` ; `dish_equipment`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: ``null`` \| `string` ; `dish_step1`: ``null`` \| `string` ; `dish_step2`: ``null`` \| `string` ; `dish_step3`: ``null`` \| `string` ; `dish_step4`: ``null`` \| `string` ; `dish_step5`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code?`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id?`: `string` ; `dish_id?`: `string` ; `dish_mealtype_id?`: `string` ; `dish_name?`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_dish_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"dish_dish_event_id_fkey"`` ; `columns`: [``"dish_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"dish_dish_mealtype_id_fkey"`` ; `columns`: [``"dish_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_item`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `item_brand`: ``null`` \| `string` ; `item_diet_dairyfree`: ``null`` \| `boolean` ; `item_diet_diabetic`: ``null`` \| `boolean` ; `item_diet_eggfree`: ``null`` \| `boolean` ; `item_diet_glutenfree`: ``null`` \| `boolean` ; `item_diet_halal`: ``null`` \| `boolean` ; `item_diet_kosher`: ``null`` \| `boolean` ; `item_diet_lactosefree`: ``null`` \| `boolean` ; `item_diet_lowfodmap`: ``null`` \| `boolean` ; `item_diet_lowfructose`: ``null`` \| `boolean` ; `item_diet_porkfree`: ``null`` \| `boolean` ; `item_diet_redmeatfree`: ``null`` \| `boolean` ; `item_diet_vegan`: ``null`` \| `boolean` ; `item_diet_vegetarian`: ``null`` \| `boolean` ; `item_distribution`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id?`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics?`: `number` ; `item_name?`: `string` ; `item_packageunit?`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_item_logistics"`` ; `columns`: [``"item_logistics"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_logistics"`` ; `referencedColumns`: [``"logistics_id"``] }] } ; `cake_logistics`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code?`: `string` ; `logistics_id?`: `number` ; `logistics_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_logistics_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_meal`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code?`: `string` ; `meal_collectiondate?`: `string` ; `meal_date?`: `string` ; `meal_event_id?`: `string` ; `meal_id?`: `string` ; `meal_mealtype_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_meal_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"meal_meal_event_id_fkey"`` ; `columns`: [``"meal_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"meal_meal_mealtype_id_fkey"`` ; `columns`: [``"meal_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_mealplan`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id?`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id?`: `string` ; `mealplan_meal_id?`: `string` ; `mealplan_unit_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealplan_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_dish_id_fkey"`` ; `columns`: [``"mealplan_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_meal_id_fkey"`` ; `columns`: [``"mealplan_meal_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_meal"`` ; `referencedColumns`: [``"meal_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_unit_id_fkey"`` ; `columns`: [``"mealplan_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_mealtype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id?`: `string` ; `mealtype_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealtype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_package`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id?`: `string` ; `package_itemid?`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size?`: `number` ; `package_type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_package_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"package_package_itemid_fkey"`` ; `columns`: [``"package_itemid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_recipe`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recipe_diettype_id?`: `string` ; `recipe_dish_id?`: `string` ; `recipe_id?`: `string` ; `recipe_item_id?`: `string` ; `recipe_qtypp?`: `number` ; `recipe_uptake?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_recipe_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"recipe_dish_id_fkey"`` ; `columns`: [``"recipe_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_diettype_id_fkey"`` ; `columns`: [``"recipe_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_item_id_fkey"`` ; `columns`: [``"recipe_item_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_supplier`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail`: ``null`` \| `string` ; `supplier_contactname`: ``null`` \| `string` ; `supplier_contactnumber`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id?`: `string` ; `supplier_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supplier_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_supply`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code`: ``null`` \| `string` ; `supply_cost`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id?`: `string` ; `supply_id?`: `string` ; `supply_packageid?`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supply_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"supply_supply_event_id_fkey"`` ; `columns`: [``"supply_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"supply_supply_packageid_fkey"`` ; `columns`: [``"supply_packageid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_package"`` ; `referencedColumns`: [``"package_id"``] }, \{ `foreignKeyName`: ``"supply_supply_supplier_id_fkey"`` ; `columns`: [``"supply_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id?`: `string` ; `unit_id?`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number?`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"unit_unit_event_id_fkey"`` ; `columns`: [``"unit_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_events`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_billing`: ``null`` \| `string` ; `event_catering_email`: ``null`` \| `string` ; `event_code`: ``null`` \| `string` ; `event_colours`: `Json` ; `event_date`: ``null`` \| `string` ; `event_days`: ``null`` \| `number` ; `event_email`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: ``null`` \| `string` ; `event_participants`: ``null`` \| `number` ; `event_rounddown`: ``null`` \| `number` ; `event_typicalunit`: ``null`` \| `number` ; `event_venue`: ``null`` \| `string` ; `event_youthmultiplier`: ``null`` \| `number` ; `is_visible`: ``null`` \| `boolean` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id?`: `string` ; `event_name?`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_event_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_app_access_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"event_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_file_references`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path?`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"file_references_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"file_references_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_context_types`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_contexts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_field_config`: \{ `Row`: \{ `admin_notes`: ``null`` \| `string` ; `category`: ``null`` \| `string` ; `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_order`: ``null`` \| `number` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_field_config_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_fields`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_options`: `Json` ; `field_description`: ``null`` \| `string` ; `field_label`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `is_required`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sort_order?`: `number` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_fields_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_fields_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_response_values`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `form_field_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `value_json`: `Json` ; `value_text`: ``null`` \| `string` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `response_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_response_values_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_form_field_id_fkey"`` ; `columns`: [``"form_field_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_fields"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_response_id_fkey"`` ; `columns`: [``"response_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_responses"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_responses`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `respondent_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `target_record_id`: ``null`` \| `string` ; `target_table`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_responses_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_responses_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }] } ; `core_forms`: \{ `Row`: \{ `allow_multiple_submissions`: ``null`` \| `boolean` ; `closes_at`: ``null`` \| `string` ; `confirmation_message`: ``null`` \| `string` ; `context_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `max_submissions`: ``null`` \| `number` ; `name`: `string` ; `opens_at`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name?`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_forms_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"forms_context_id_fkey"`` ; `columns`: [``"context_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_context_types"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_access_log`: \{ `Row`: \{ `access_type`: `string` ; `accessed_at`: `string` ; `accessed_by`: `string` ; `id`: `number` ; `ip_address`: `unknown` ; `justification`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `record_id`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` } ; `Insert`: \{ `access_type`: `string` ; `accessed_at?`: `string` ; `accessed_by`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Update`: \{ `access_type?`: `string` ; `accessed_at?`: `string` ; `accessed_by?`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_access_log_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_access_log_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_action_plan`: \{ `Row`: \{ `condition_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `number` ; `is_current`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by`: ``null`` \| `string` ; `reviewed_date`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received?`: `string` ; `description?`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `plan_type?`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_action_plan_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_action_plan_condition_id_fkey"`` ; `columns`: [``"condition_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition`: \{ `Row`: \{ `aid`: ``null`` \| `string` ; `alert_description`: ``null`` \| `string` ; `condition_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `custom_name`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `diagnosed_by`: ``null`` \| `string` ; `diagnosed_date`: ``null`` \| `string` ; `emergency_protocol`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `last_episode_date`: ``null`` \| `string` ; `management_plan`: ``null`` \| `string` ; `medical_alert`: ``null`` \| `boolean` ; `medication`: ``null`` \| `string` ; `name`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `reaction`: ``null`` \| `string` ; `severity`: ``null`` \| `string` ; `treatment`: ``null`` \| `string` ; `triggers`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_condition_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_condition_type_id_fkey"`` ; `columns`: [``"condition_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"medi_condition_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_condition_types_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_diet`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_id`: ``null`` \| `string` ; `id`: `number` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description`: ``null`` \| `string` ; `profile_id`: ``null`` \| `number` ; `severity`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_diet_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_diet_diettype_id_fkey"`` ; `columns`: [``"diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"medi_diet_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile`: \{ `Row`: \{ `access_count`: ``null`` \| `number` ; `carer_name`: ``null`` \| `string` ; `consent_date`: ``null`` \| `string` ; `consent_given`: ``null`` \| `boolean` ; `consent_withdrawn_date`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `data_retention_until`: ``null`` \| `string` ; `dietary_comments`: ``null`` \| `string` ; `has_carer`: ``null`` \| `boolean` ; `has_dietary_requirements`: ``null`` \| `boolean` ; `health_care_card_expiry`: ``null`` \| `string` ; `health_care_card_number`: ``null`` \| `string` ; `health_fund_name`: ``null`` \| `string` ; `health_fund_number`: ``null`` \| `string` ; `health_satisfactory`: ``null`` \| `boolean` ; `id`: `number` ; `is_fully_immunised`: ``null`` \| `boolean` ; `last_accessed_at`: ``null`` \| `string` ; `last_accessed_by`: ``null`` \| `string` ; `last_tetanus_date`: ``null`` \| `string` ; `medicare_expiry`: ``null`` \| `string` ; `medicare_number`: ``null`` \| `string` ; `member_id`: ``null`` \| `string` ; `menu_selection`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support`: ``null`` \| `boolean` ; `support_details`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile_versions`: \{ `Row`: \{ `change_reason`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id`: `number` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `version_number`: `number` } ; `Insert`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id?`: `number` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number`: `number` } ; `Update`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `data_snapshot?`: `Json` ; `id?`: `number` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number?`: `number` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_versions_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_versions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_action_log`: \{ `Row`: \{ `action`: `string` ; `amount_minor`: ``null`` \| `number` ; `created_at`: `string` ; `gateway_ref`: ``null`` \| `string` ; `id`: `string` ; `invoice_id`: `string` ; `meta`: `Json` ; `reason`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id?`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_action_log_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }] } ; `mint_audit_log`: \{ `Row`: \{ `created_at`: `string` ; `details`: `Json` ; `event_type`: `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type?`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_credit_balance`: \{ `Row`: \{ `amount`: `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `credit_id`: `string` ; `expires_at`: ``null`` \| `string` ; `invoice_id`: ``null`` \| `string` ; `is_used`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `used_at`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `reason?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"credit_balance_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"credit_balance_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_dd_mandate_log`: \{ `Row`: \{ `created_at`: `string` ; `event`: `string` ; `id`: `string` ; `payload`: `Json` ; `payment_method_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `event`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `event?`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_dd_mandate_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_idempotency`: \{ `Row`: \{ `first_request_at`: `string` ; `id`: `string` ; `idempotency_key`: `string` ; `last_response`: `Json` ; `scope`: `string` ; `status`: `string` } ; `Insert`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status`: `string` } ; `Update`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key?`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status?`: `string` } ; `Relationships`: [] } ; `mint_invoice`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `greenpay_transaction_id`: ``null`` \| `string` ; `invoice_id`: `string` ; `issued_at`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin?`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app?`: `string` ; `source_origin?`: ``null`` \| `string` ; `status?`: `string` ; `total_amount?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"invoice_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_line_item`: \{ `Row`: \{ `amount`: `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at`: ``null`` \| `string` ; `fulfillment_status`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id`: `string` ; `org_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info`: `Json` ; `source_app`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info?`: `Json` ; `source_app`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `item_type?`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `proration_info?`: `Json` ; `source_app?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"line_item_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"line_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_mit_consent_log`: \{ `Row`: \{ `consent_text`: ``null`` \| `string` ; `created_at`: `string` ; `id`: `string` ; `invoice_id`: ``null`` \| `string` ; `ip`: `unknown` ; `member_id`: `string` ; `payment_method_id`: ``null`` \| `string` ; `terms_version`: ``null`` \| `string` ; `ua`: ``null`` \| `string` } ; `Insert`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Update`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id?`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_mit_consent_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_payment_method`: \{ `Row`: \{ `bank_account_bsb`: ``null`` \| `string` ; `bank_account_last4`: ``null`` \| `string` ; `bank_account_name`: ``null`` \| `string` ; `brand`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dd_mandate_id`: ``null`` \| `string` ; `dd_mandate_status`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent`: `boolean` ; `mit_consent_at`: ``null`` \| `string` ; `mit_consent_ip`: `unknown` ; `mit_consent_terms_version`: ``null`` \| `string` ; `mit_consent_text`: ``null`` \| `string` ; `mit_consent_ua`: ``null`` \| `string` ; `mit_initial_cit_at`: ``null`` \| `string` ; `mit_initial_cit_txn_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id`: `string` ; `type`: ``"card"`` \| ``"bank"`` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_status`: `string` } ; `Insert`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default?`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Update`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token?`: `string` ; `is_default?`: `boolean` ; `last_four_digits?`: `string` ; `member_id?`: `string` ; `method_type?`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"payment_method_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_security_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: ``null`` \| `string` ; `details`: `Json` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `record_id`: ``null`` \| `string` ; `table_name`: ``null`` \| `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_webhook_log`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `event_type`: `string` ; `headers`: `Json` ; `invoice_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at`: ``null`` \| `string` ; `processing_error`: ``null`` \| `string` ; `source`: `string` ; `status`: `string` ; `transaction_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `webhook_log_id`: `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `event_type`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `event_type?`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payload?`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status?`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"webhook_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `note_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `mime_type`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id?`: `string` ; `organisation_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"note_attachments_note_id_fkey"`` ; `columns`: [``"note_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_internal_notes"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"note_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings`: `Json` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_app_access_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"organisation_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_audit_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: `string` ; `entity_id`: ``null`` \| `string` ; `entity_type`: `string` ; `id`: `string` ; `ip_address`: `unknown` ; `new_values`: `Json` ; `old_values`: `Json` ; `organisation_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type?`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_audit_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_invitations`: \{ `Row`: \{ `accepted_at`: ``null`` \| `string` ; `created_at`: `string` ; `email`: `string` ; `expires_at`: `string` ; `id`: `string` ; `invited_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `role`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email?`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_invitations_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_settings`: \{ `Row`: \{ `address`: `Json` ; `contact_email`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `custom_css`: ``null`` \| `string` ; `date_format`: ``null`` \| `string` ; `email_templates`: `Json` ; `joining_fee`: ``null`` \| `number` ; `language`: ``null`` \| `string` ; `notification_settings`: `Json` ; `organisation_id`: `string` ; `phone`: ``null`` \| `string` ; `primary_color`: ``null`` \| `string` ; `recurring_fee`: ``null`` \| `number` ; `secondary_color`: ``null`` \| `string` ; `timezone`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id?`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_settings_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisations`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id`: ``null`` \| `string` ; `settings`: `Json` ; `subscription_tier`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisations_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent`: \{ `Row`: \{ `consent_type_id`: `number` ; `created_at`: ``null`` \| `string` ; `date_given`: ``null`` \| `string` ; `date_revoked`: ``null`` \| `string` ; `given`: `boolean` ; `id`: `string` ; `member_id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `consent_type_id`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given`: `boolean` ; `id?`: `string` ; `member_id`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `consent_type_id?`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given?`: `boolean` ; `id?`: `string` ; `member_id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"consents_consent_type_id_fkey"`` ; `columns`: [``"consent_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_consent_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"consents_member_id_fkey1"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_consent_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent_type`: \{ `Row`: \{ `active`: ``null`` \| `boolean` ; `category`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key?`: `string` ; `label?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_consent_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact`: \{ `Row`: \{ `contact_person_id`: ``null`` \| `string` ; `contact_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_contact_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_related_person_id_fkey"`` ; `columns`: [``"contact_person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_relationship_type_id_fkey"`` ; `columns`: [``"contact_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_contact_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_permissions_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_contact_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_gender_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_gender_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `document_number`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `identification_type_id`: ``null`` \| `number` ; `issue_city`: ``null`` \| `string` ; `issue_country`: ``null`` \| `string` ; `issue_date`: ``null`` \| `string` ; `issue_state`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_identification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_identification_type_id"`` ; `columns`: [``"identification_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_identification_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_identification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_identification_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member`: \{ `Row`: \{ `address_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_of_birth`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `gender_id`: ``null`` \| `number` ; `id`: `string` ; `membership_number`: ``null`` \| `string` ; `membership_status`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `postal_address`: ``null`` \| `string` ; `pronoun_id`: ``null`` \| `number` ; `residential_address`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_gender_id_fkey"`` ; `columns`: [``"gender_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_gender_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_membership_type_id_fkey"`` ; `columns`: [``"membership_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_membership_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_pronoun_id_fkey"`` ; `columns`: [``"pronoun_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_pronoun_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member_role`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `end_date`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date?`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_role_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_role_id_fkey"`` ; `columns`: [``"role_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_role_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_member_roles_unit_id_fkey"`` ; `columns`: [``"unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }] } ; `core_membership_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `max_age`: ``null`` \| `number` ; `min_age`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_membership_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_merchandise`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `color`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `price`: ``null`` \| `number` ; `size`: ``null`` \| `string` ; `sku`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_merchandise_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `core_person`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `first_name`: `string` ; `id`: `string` ; `last_name`: `string` ; `middle_name`: ``null`` \| `string` ; `preferred_name`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name`: `string` ; `id?`: `string` ; `last_name`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name?`: `string` ; `id?`: `string` ; `last_name?`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_phone`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number?`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_phone_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_contact_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_phone_type_id_fkey"`` ; `columns`: [``"phone_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_phone_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_phone_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_phone_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_pronoun_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_pronoun_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_qualification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `credential_id`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `institution`: ``null`` \| `string` ; `issued_date`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `title?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_qualification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_qualification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_role_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_role_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `public_rate_limits`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `requests`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_log`: \{ `Row`: \{ `body`: `string` ; `clicks`: ``null`` \| `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `from_address`: ``null`` \| `string` ; `id`: `string` ; `opens`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address`: ``null`` \| `string` ; `response_metadata`: `Json` ; `scheduled_at`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at`: ``null`` \| `string` ; `status`: `string` ; `subject`: ``null`` \| `string` ; `template_slug`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `recipients?`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id?`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_template`: \{ `Row`: \{ `body`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `subject?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_org_settings`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `default_from_address`: ``null`` \| `string` ; `default_reply_to_address`: ``null`` \| `string` ; `email_footer_html`: ``null`` \| `string` ; `email_header_html`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `sms_from_number`: ``null`` \| `string` ; `sms_messaging_service_sid`: ``null`` \| `string` ; `sms_opt_out_footer`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_scheduled_jobs`: \{ `Row`: \{ `attempts`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at`: `string` ; `id`: `string` ; `last_error`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id?`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for?`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pump_scheduled_jobs_comms_log_id_fkey"`` ; `columns`: [``"comms_log_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"pump_comms_log"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_app_pages`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `page_description`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_app_pages_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_apps`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event`: ``null`` \| `boolean` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_apps_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_audit_events`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `bypass`: ``null`` \| `boolean` ; `created_at`: ``null`` \| `string` ; `decision`: ``null`` \| `boolean` ; `duration_ms`: ``null`` \| `number` ; `event_id`: ``null`` \| `string` ; `event_type`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `page_id`: ``null`` \| `string` ; `permission`: ``null`` \| `string` ; `source`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_audit_events_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_auth_attempts`: \{ `Row`: \{ `attempt_time`: ``null`` \| `string` ; `attempts`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_auth_attempts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_event_app_roles`: \{ `Row`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `event_id?`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_function_backup`: \{ `Row`: \{ `backup_reason`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id`: `string` } ; `Insert`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id?`: `string` } ; `Update`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition?`: `string` ; `function_name?`: `string` ; `id?`: `string` } ; `Relationships`: [] } ; `rbac_global_roles`: \{ `Row`: \{ `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"super_admin"`` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_global_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_organisation_roles`: \{ `Row`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_page_permissions`: \{ `Row`: \{ `allowed`: `boolean` ; `app_page_id`: `string` ; `created_at`: ``null`` \| `string` ; `id`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `allowed?`: `boolean` ; `app_page_id`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `allowed?`: `boolean` ; `app_page_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation?`: `string` ; `organisation_id?`: `string` ; `role_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_page_permissions_app_page_id"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_app_page_id_fkey"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_policy_audit`: \{ `Row`: \{ `action`: `string` ; `changed_at`: ``null`` \| `string` ; `changed_by`: ``null`` \| `string` ; `error_message`: ``null`` \| `string` ; `id`: `string` ; `new_policy_sql`: ``null`` \| `string` ; `old_policy_sql`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success`: `boolean` ; `table_name`: `string` } ; `Insert`: \{ `action`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success?`: `boolean` ; `table_name`: `string` } ; `Update`: \{ `action?`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation?`: `string` ; `policy_name?`: `string` ; `success?`: `boolean` ; `table_name?`: `string` } ; `Relationships`: [] } ; `rbac_policy_configs`: \{ `Row`: \{ `app_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_column`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `operations`: `string`[] ; `organisation_column`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `rbac_user_login_history`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `email`: `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `login_timestamp`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `email`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `email?`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id?`: `string` ; `session_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_user_login_history_event"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_user_profiles`: \{ `Row`: \{ `created_at`: `string` ; `email`: `string` ; `full_name`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `email`: `string` ; `full_name?`: ``null`` \| `string` ; `id`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `email?`: `string` ; `full_name?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_profiles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_user_sessions`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `device_fingerprint`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: `unknown` ; `is_valid`: ``null`` \| `boolean` ; `metadata`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `session_type?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_sessions_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_internal_notes`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `description`: `string` ; `id`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description`: `string` ; `id?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description?`: `string` ; `id?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"internal_notes_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_internal_notes_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"team_organizational_units_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_accommodation`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `location_coords`: `Json` ; `location_display_name`: ``null`` \| `string` ; `location_place_id`: ``null`` \| `string` ; `location_short_address`: ``null`` \| `string` ; `location_timezone`: ``null`` \| `string` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time?`: `string` ; `check_out_time?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_accommodation_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_accommodation_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_activity`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords`: `Json` ; `finish_location_display_name`: ``null`` \| `string` ; `finish_location_place_id`: ``null`` \| `string` ; `finish_location_short_address`: ``null`` \| `string` ; `finish_location_timezone`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords`: `Json` ; `start_location_display_name`: ``null`` \| `string` ; `start_location_place_id`: ``null`` \| `string` ; `start_location_short_address`: ``null`` \| `string` ; `start_location_timezone`: ``null`` \| `string` ; `start_time`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_activity_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id?`: `string` ; `item_type?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_contacts`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `email_address`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `phone_number`: ``null`` \| `string` ; `role`: ``null`` \| `string` ; `surname`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id?`: `string` ; `first_name?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_contacts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_contacts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_currency_rates`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code?`: `string` ; `event_id?`: `string` ; `exchange_rate?`: `number` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_currency_rates_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_images`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `post_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_updated_by"`` ; `columns`: [``"updated_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_posts`: \{ `Row`: \{ `content`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `status`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `content`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at?`: `string` ; `updated_by`: `string` } ; `Update`: \{ `content?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title?`: `string` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `trac_location_cache`: \{ `Row`: \{ `city`: ``null`` \| `string` ; `coordinates`: `Json` ; `country`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `last_updated`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address`: ``null`` \| `string` ; `timezoneid`: ``null`` \| `string` } ; `Insert`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Update`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_location_cache_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_risks`: \{ `Row`: \{ `comment`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response`: ``null`` \| `string` ; `responsible_contact_id`: ``null`` \| `string` ; `risk`: `string` ; `status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Insert`: \{ `comment?`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Update`: \{ `comment?`: ``null`` \| `string` ; `consequence_after?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `impact_after?`: `number` ; `impact_before?`: `number` ; `likelihood_after?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id?`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk?`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type?`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when?`: ``"Prior"`` \| ``"During"`` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_risks_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_risks_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"trac_risks_responsible_contact_id_fkey"`` ; `columns`: [``"responsible_contact_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"trac_contacts"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_transport`: \{ `Row`: \{ `arrival_coords`: `Json` ; `arrival_display_name`: ``null`` \| `string` ; `arrival_place_id`: ``null`` \| `string` ; `arrival_short_address`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone`: ``null`` \| `string` ; `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `departure_coords`: `Json` ; `departure_display_name`: ``null`` \| `string` ; `departure_place_id`: ``null`` \| `string` ; `departure_short_address`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `mode`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `transport_number`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time?`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time?`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_transport_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } } ; `Views`: \{ `file_references_summary`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `file_count`: ``null`` \| `number` ; `private_count`: ``null`` \| `number` ; `public_count`: ``null`` \| `number` ; `table_name`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_organisation_memberships`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `is_primary`: ``null`` \| `boolean` ; `joined_at`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `core_field_list`: \{ `Row`: \{ `field_name`: `unknown` ; `field_type`: ``null`` \| `string` ; `is_nullable`: ``null`` \| `string` ; `ordinal_position`: ``null`` \| `number` ; `table_name`: `unknown` } ; `Relationships`: [] } ; `rbac_active_event_app_roles`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `role`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_active_organisation_roles`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `user_profiles`: \{ `Row`: \{ `avatar_url`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } } ; `Functions`: \{ `add_geo_columns_to_transport_tables`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `app_cake_delivery_upsert`: \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_create`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id`: `string` ; `p_diner_unit_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_update`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id?`: `string` ; `p_diner_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_create`: \{ `Args`: \{ `p_dish_code`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_event_id`: `string` ; `p_dish_mealtype_id`: `string` ; `p_dish_name`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_delete`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_update`: \{ `Args`: \{ `p_dish_code?`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_id`: `string` ; `p_dish_mealtype_id?`: `string` ; `p_dish_name?`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `item_id`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_create`: \{ `Args`: \{ `p_meal_code`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date`: `string` ; `p_meal_event_id`: `string` ; `p_meal_mealtype_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_delete`: \{ `Args`: \{ `p_meal_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_update`: \{ `Args`: \{ `p_meal_code?`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date?`: `string` ; `p_meal_id`: `string` ; `p_meal_mealtype_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_bulk_delete`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_unit_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `deleted_count`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_mealplan_create`: \{ `Args`: \{ `p_mealplan_dish_id`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_meal_id`: `string` ; `p_mealplan_unit_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_update`: \{ `Args`: \{ `p_mealplan_dish_id?`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_id`: `string` ; `p_mealplan_meal_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meals_bulk_import`: \{ `Args`: \{ `p_meals_data`: `Json` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_package_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `package_id`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_package_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id`: `string` ; `p_recipe_dish_id`: `string` ; `p_recipe_item_id`: `string` ; `p_recipe_qtypp`: `number` ; `p_recipe_uptake`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_delete`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_recipe_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id?`: `string` ; `p_recipe_id`: `string` ; `p_recipe_item_id?`: `string` ; `p_recipe_qtypp?`: `number` ; `p_recipe_uptake?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_create`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` ; `supply_id`: `string` }[] } \| \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_event_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `unit_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number?`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_units_bulk_import`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_units_data`: `Json` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_name`: \{ `Args`: `never` ; `Returns`: `string` } ; `cleanup_orphaned_file_references`: \{ `Args`: `never` ; `Returns`: `number` } ; `data_cake_deliveries_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `item_count`: `number` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_quantity`: `number` }[] } ; `data_cake_diettypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_diners_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids?`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dish_details`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dishes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_distribution_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `logistics_name`: `string` ; `meal_dates`: `string`[] ; `package_size`: `number` ; `packages_needed`: `number` ; `required_quantity`: `number` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` }[] } ; `data_cake_item_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `string` ; `item_diet_diabetic`: `string` ; `item_diet_eggfree`: `string` ; `item_diet_glutenfree`: `string` ; `item_diet_halal`: `string` ; `item_diet_kosher`: `string` ; `item_diet_lactosefree`: `string` ; `item_diet_lowfodmap`: `string` ; `item_diet_lowfructose`: `string` ; `item_diet_porkfree`: `string` ; `item_diet_redmeatfree`: `string` ; `item_diet_vegan`: `string` ; `item_diet_vegetarian`: `string` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_item_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_items_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealplans_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_dish_code`: `string` ; `dish_dish_id`: `string` ; `dish_dish_name`: `string` ; `meal_meal_code`: `string` ; `meal_meal_date`: `string` ; `meal_meal_event_id`: `string` ; `meal_mealtype_id`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_meals_get`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_cake_meals_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealtypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_orders_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_date`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `package_cost`: `number` ; `package_ctnpkgs`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_carton_cost`: `number` ; `total_cartons`: `number` ; `total_packages`: `number` ; `total_pkg_cost`: `number` }[] } ; `data_cake_package_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_package_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_packages_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_recipe_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_recipes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_suppliers_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supplies_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supply_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_units_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_event_get_by_code`: \{ `Args`: \{ `p_event_code`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_billing`: `string` ; `event_catering_email`: `string` ; `event_code`: `string` ; `event_col_d1`: `string` ; `event_col_d2`: `string` ; `event_col_l1`: `string` ; `event_col_l2`: `string` ; `event_col_m1`: `string` ; `event_col_m2`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_footer`: `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_by_category_list`: \{ `Args`: \{ `p_category`: `string` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_count_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `number` } ; `data_file_reference_create`: \{ `Args`: \{ `p_app_id`: `string` ; `p_file_metadata?`: `Json` ; `p_file_path`: `string` ; `p_is_public?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_delete`: \{ `Args`: \{ `p_delete_file?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `data_file_reference_get`: \{ `Args`: \{ `p_file_reference_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_list`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_signed_url_get`: \{ `Args`: \{ `p_expires_in?`: `number` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_url_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_user_events_get`: \{ `Args`: \{ `p_app_name?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_code`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_participants`: `number` ; `event_venue`: `string` ; `id`: `string` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_user_organisation_roles_get`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `id`: `string` ; `name`: `string` ; `notes`: `string` ; `organisation_id`: `string` ; `revoked_at`: `string` ; `revoked_by`: `string` ; `role`: `string` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` }[] } ; `data_user_organisations_get`: \{ `Args`: \{ `p_user_id?`: `string` } ; `Returns`: \{ `granted_at`: `string` ; `is_primary`: `boolean` ; `organisation_id`: `string` ; `organisation_name`: `string` ; `user_role`: `string` }[] } ; `debug_auth_context`: \{ `Args`: `never` ; `Returns`: `Json` } ; `delete_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `get_app_config`: \{ `Args`: \{ `app_id`: `string` } ; `Returns`: `Json` } ; `get_current_organisation_context`: \{ `Args`: `never` ; `Returns`: `string` } ; `get_file_url_for_record`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `string` } ; `get_files_to_migrate_to_public`: \{ `Args`: `never` ; `Returns`: \{ `file_id`: `string` ; `new_path`: `string` ; `old_path`: `string` ; `organisation_id`: `string` }[] } ; `get_medi_conditions`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `condition_type_id`: `number` ; `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `diagnosed_by`: `string` ; `diagnosed_date`: `string` ; `emergency_protocol`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `last_episode_date`: `string` ; `management_plan`: `string` ; `name`: `string` ; `notes`: `string` ; `profile_id`: `number` ; `reaction`: `string` ; `severity`: `string` ; `treatment`: `string` ; `triggers`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_medi_items`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `description`: `string` ; `dose`: `string` ; `end_date`: `string` ; `frequency`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `is_emergency_medication`: `boolean` ; `item_type_id`: `number` ; `name`: `string` ; `pharmacy_details`: `string` ; `prescribing_doctor`: `string` ; `profile_id`: `number` ; `route`: `string` ; `side_effects`: `string` ; `start_date`: `string` ; `storage_requirements`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_public_event_by_code`: \{ `Args`: \{ `event_code_param`: `string` } ; `Returns`: \{ `event_billing`: `string` ; `event_catering_email`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `organisation_id`: `string` }[] } ; `has_files`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `boolean` } ; `increment_attempts`: \{ `Args`: \{ `p_identifier`: `string` ; `p_window_minutes?`: `number` } ; `Returns`: \{ `current_attempts`: `number` ; `is_blocked`: `boolean` ; `window_start`: `string` }[] } ; `insert_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_created_by?`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_updated_by?`: `string` } ; `Returns`: `string` } ; `insert_journal_image`: \{ `Args`: \{ `p_created_by`: `string` ; `p_file_name`: `string` ; `p_file_path`: `string` ; `p_post_id`: `string` } ; `Returns`: `undefined` } ; `is_super_admin`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `is_user_super_admin`: \{ `Args`: `never` ; `Returns`: `boolean` } ; `populate_location_descriptions`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `populate_location_display_names`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `rbac_audit_log`: \{ `Args`: \{ `p_event_data?`: `Json` ; `p_event_type`: `string` ; `p_resource_id`: `string` ; `p_resource_type`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } \| \{ `Args`: \{ `p_event_type`: `string` ; `p_ip_address?`: `unknown` ; `p_metadata?`: `Json` ; `p_organisation_id?`: `string` ; `p_permission?`: `string` ; `p_user_agent?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } ; `rbac_check_distribution_or_page_permission`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_page_name`: `string` ; `p_permission_pattern`: `string` } ; `Returns`: `boolean` } ; `rbac_check_permission_simplified`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_permission`: `string` ; `p_user_id`: `string` } ; `Returns`: `boolean` } ; `rbac_detect_concurrent_sessions`: \{ `Args`: \{ `p_device_fingerprint?`: `string` ; `p_timeout_seconds?`: `number` ; `p_user_id`: `string` } ; `Returns`: \{ `concurrent_sessions_count`: `number` ; `has_concurrent`: `boolean` ; `session_ids`: `string`[] }[] } ; `rbac_enforce_session_timeout`: \{ `Args`: \{ `p_timeout_minutes?`: `number` } ; `Returns`: \{ `expired_sessions_count`: `number` ; `user_ids`: `string`[] }[] } ; `rbac_generate_device_fingerprint`: \{ `Args`: `never` ; `Returns`: `string` } ; `rbac_invalidate_other_sessions`: \{ `Args`: \{ `p_current_device_fingerprint`: `string` ; `p_user_id`: `string` } ; `Returns`: `number` } ; `rbac_permissions_get`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `has_permission`: `boolean` ; `permission_type`: `string` ; `role_name`: `string` }[] } ; `rbac_role_grant`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_granted_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `role_id`: `string` ; `success`: `boolean` }[] } ; `rbac_role_revoke`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_revoked_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `revoked_count`: `number` ; `success`: `boolean` }[] } ; `rbac_role_validate`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `expires_at`: `string` ; `granted_at`: `string` ; `is_valid`: `boolean` ; `role_id`: `string` ; `status`: `string` }[] } ; `rbac_roles_list`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `role_name`: `string` ; `role_type`: `string` ; `status`: `string` }[] } ; `rbac_session_track`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_device_fingerprint?`: `string` ; `p_event_id?`: `string` ; `p_ip_address?`: `string` ; `p_session_type?`: `string` ; `p_user_agent?`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } ; `rbac_super_admin_check`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `secure_query`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_select_columns`: `string` ; `p_table_name`: `string` ; `p_user_id`: `string` } ; `Returns`: `Json` } ; `set_app_organisation_id`: \{ `Args`: \{ `p_organisation_id`: `string` } ; `Returns`: `undefined` } ; `set_organisation_context`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `undefined` } ; `sys_audit_cleanup`: \{ `Args`: \{ `p_days_to_keep?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `rows_deleted`: `number` ; `success`: `boolean` }[] } ; `util_app_resolve`: \{ `Args`: \{ `p_app_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `app_name`: `string` ; `has_access`: `boolean` ; `is_active`: `boolean` }[] } ; `validate_base_question_options`: \{ `Args`: \{ `options`: `Json` ; `question_type`: `string` } ; `Returns`: `boolean` } ; `validate_organisation_access`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `boolean` } ; `verify_greenpay_signature`: \{ `Args`: \{ `payload`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } ; `verify_webhook_signature`: \{ `Args`: \{ `payload`: `string` ; `secret`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } } ; `Enums`: \{ `access_level`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"super"`` ; `crud_operation`: ``"create"`` \| ``"read"`` \| ``"update"`` \| ``"delete"`` ; `dd_mandate_status`: ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `journal_post_status`: ``"draft"`` \| ``"published"`` ; `organisation_role`: ``"org_admin"`` \| ``"member"`` \| ``"super_admin"`` \| ``"moderator"`` \| ``"admin"`` ; `pace_membership_status`: ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `payment_method_type`: ``"card"`` \| ``"bank"`` ; `rbac_event_app_role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `rbac_global_role`: ``"super_admin"`` ; `rbac_organisation_role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `risk_consequence`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `risk_likelihood`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `risk_status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `risk_type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `risk_when`: ``"Prior"`` \| ``"During"`` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` } ; `CompositeTypes`: {} }, \{ `PostgrestVersion`: ``"12.2.3 (519615d)"`` }\> | `undefined` |
|
|
47
|
-
|
|
48
|
-
#### Returns
|
|
49
|
-
|
|
50
|
-
[`SecureSupabaseClient`](SecureSupabaseClient.md)
|
|
51
|
-
|
|
52
|
-
#### Defined in
|
|
53
|
-
|
|
54
|
-
[packages/core/src/rbac/secureClient.ts:52](https://github.com/jmruthers/pace-core/blob/main/packages/core/src/rbac/secureClient.ts#L52)
|
|
55
|
-
|
|
56
|
-
## Methods
|
|
57
|
-
|
|
58
|
-
### getEdgeFunctionClient
|
|
59
|
-
|
|
60
|
-
▸ **getEdgeFunctionClient**(): `default`\<`Database`, ``"public"``, ``"public"``, \{ `Tables`: \{ `addresses`: \{ `Row`: \{ `country`: ``null`` \| `string` ; `created_at`: `string` ; `full_address`: ``null`` \| `string` ; `id`: `string` ; `lat`: ``null`` \| `number` ; `lng`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode`: ``null`` \| `string` ; `route`: ``null`` \| `string` ; `state`: ``null`` \| `string` ; `street_number`: ``null`` \| `string` ; `suburb`: ``null`` \| `string` } ; `Insert`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Update`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"addresses_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `base_application`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status`: `string` ; `status_updated_at`: ``null`` \| `string` ; `status_updated_by`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_application_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"base_application_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"base_application_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `base_questions`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `depends_on_question_id`: ``null`` \| `string` ; `depends_on_value`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `is_sensitive`: `boolean` ; `label`: `string` ; `options`: `Json` ; `organisation_id`: `string` ; `question_group`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order`: `number` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` ; `visibility`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label`: `string` ; `options?`: `Json` ; `organisation_id`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label?`: `string` ; `options?`: `Json` ; `organisation_id?`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type?`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_questions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_delivery`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `delivery_address`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date?`: `string` ; `delivery_event_id?`: `string` ; `delivery_id?`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id?`: `string` ; `delivery_unitcollectiondate?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_delivery_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_event_id_fkey"`` ; `columns`: [``"delivery_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_supplier_id_fkey"`` ; `columns`: [``"delivery_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_diettype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code?`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id?`: `string` ; `diettype_name?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diettype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_diner`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diner_adult`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id?`: `string` ; `diner_id?`: `string` ; `diner_unit_id?`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diner_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"diner_diner_diettype_id_fkey"`` ; `columns`: [``"diner_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"diner_diner_unit_id_fkey"`` ; `columns`: [``"diner_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_dish`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description`: ``null`` \| `string` ; `dish_dietnote`: ``null`` \| `string` ; `dish_equipment`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: ``null`` \| `string` ; `dish_step1`: ``null`` \| `string` ; `dish_step2`: ``null`` \| `string` ; `dish_step3`: ``null`` \| `string` ; `dish_step4`: ``null`` \| `string` ; `dish_step5`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code?`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id?`: `string` ; `dish_id?`: `string` ; `dish_mealtype_id?`: `string` ; `dish_name?`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_dish_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"dish_dish_event_id_fkey"`` ; `columns`: [``"dish_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"dish_dish_mealtype_id_fkey"`` ; `columns`: [``"dish_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_item`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `item_brand`: ``null`` \| `string` ; `item_diet_dairyfree`: ``null`` \| `boolean` ; `item_diet_diabetic`: ``null`` \| `boolean` ; `item_diet_eggfree`: ``null`` \| `boolean` ; `item_diet_glutenfree`: ``null`` \| `boolean` ; `item_diet_halal`: ``null`` \| `boolean` ; `item_diet_kosher`: ``null`` \| `boolean` ; `item_diet_lactosefree`: ``null`` \| `boolean` ; `item_diet_lowfodmap`: ``null`` \| `boolean` ; `item_diet_lowfructose`: ``null`` \| `boolean` ; `item_diet_porkfree`: ``null`` \| `boolean` ; `item_diet_redmeatfree`: ``null`` \| `boolean` ; `item_diet_vegan`: ``null`` \| `boolean` ; `item_diet_vegetarian`: ``null`` \| `boolean` ; `item_distribution`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id?`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics?`: `number` ; `item_name?`: `string` ; `item_packageunit?`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_item_logistics"`` ; `columns`: [``"item_logistics"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_logistics"`` ; `referencedColumns`: [``"logistics_id"``] }] } ; `cake_logistics`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code?`: `string` ; `logistics_id?`: `number` ; `logistics_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_logistics_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_meal`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code?`: `string` ; `meal_collectiondate?`: `string` ; `meal_date?`: `string` ; `meal_event_id?`: `string` ; `meal_id?`: `string` ; `meal_mealtype_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_meal_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"meal_meal_event_id_fkey"`` ; `columns`: [``"meal_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"meal_meal_mealtype_id_fkey"`` ; `columns`: [``"meal_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_mealplan`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id?`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id?`: `string` ; `mealplan_meal_id?`: `string` ; `mealplan_unit_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealplan_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_dish_id_fkey"`` ; `columns`: [``"mealplan_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_meal_id_fkey"`` ; `columns`: [``"mealplan_meal_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_meal"`` ; `referencedColumns`: [``"meal_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_unit_id_fkey"`` ; `columns`: [``"mealplan_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_mealtype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id?`: `string` ; `mealtype_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealtype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_package`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id?`: `string` ; `package_itemid?`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size?`: `number` ; `package_type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_package_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"package_package_itemid_fkey"`` ; `columns`: [``"package_itemid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_recipe`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recipe_diettype_id?`: `string` ; `recipe_dish_id?`: `string` ; `recipe_id?`: `string` ; `recipe_item_id?`: `string` ; `recipe_qtypp?`: `number` ; `recipe_uptake?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_recipe_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"recipe_dish_id_fkey"`` ; `columns`: [``"recipe_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_diettype_id_fkey"`` ; `columns`: [``"recipe_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_item_id_fkey"`` ; `columns`: [``"recipe_item_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_supplier`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail`: ``null`` \| `string` ; `supplier_contactname`: ``null`` \| `string` ; `supplier_contactnumber`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id?`: `string` ; `supplier_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supplier_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_supply`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code`: ``null`` \| `string` ; `supply_cost`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id?`: `string` ; `supply_id?`: `string` ; `supply_packageid?`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supply_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"supply_supply_event_id_fkey"`` ; `columns`: [``"supply_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"supply_supply_packageid_fkey"`` ; `columns`: [``"supply_packageid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_package"`` ; `referencedColumns`: [``"package_id"``] }, \{ `foreignKeyName`: ``"supply_supply_supplier_id_fkey"`` ; `columns`: [``"supply_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id?`: `string` ; `unit_id?`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number?`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"unit_unit_event_id_fkey"`` ; `columns`: [``"unit_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_events`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_billing`: ``null`` \| `string` ; `event_catering_email`: ``null`` \| `string` ; `event_code`: ``null`` \| `string` ; `event_colours`: `Json` ; `event_date`: ``null`` \| `string` ; `event_days`: ``null`` \| `number` ; `event_email`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: ``null`` \| `string` ; `event_participants`: ``null`` \| `number` ; `event_rounddown`: ``null`` \| `number` ; `event_typicalunit`: ``null`` \| `number` ; `event_venue`: ``null`` \| `string` ; `event_youthmultiplier`: ``null`` \| `number` ; `is_visible`: ``null`` \| `boolean` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id?`: `string` ; `event_name?`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_event_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_app_access_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"event_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_file_references`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path?`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"file_references_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"file_references_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_context_types`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_contexts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_field_config`: \{ `Row`: \{ `admin_notes`: ``null`` \| `string` ; `category`: ``null`` \| `string` ; `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_order`: ``null`` \| `number` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_field_config_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_fields`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_options`: `Json` ; `field_description`: ``null`` \| `string` ; `field_label`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `is_required`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sort_order?`: `number` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_fields_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_fields_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_response_values`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `form_field_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `value_json`: `Json` ; `value_text`: ``null`` \| `string` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `response_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_response_values_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_form_field_id_fkey"`` ; `columns`: [``"form_field_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_fields"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_response_id_fkey"`` ; `columns`: [``"response_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_responses"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_responses`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `respondent_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `target_record_id`: ``null`` \| `string` ; `target_table`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_responses_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_responses_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }] } ; `core_forms`: \{ `Row`: \{ `allow_multiple_submissions`: ``null`` \| `boolean` ; `closes_at`: ``null`` \| `string` ; `confirmation_message`: ``null`` \| `string` ; `context_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `max_submissions`: ``null`` \| `number` ; `name`: `string` ; `opens_at`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name?`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_forms_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"forms_context_id_fkey"`` ; `columns`: [``"context_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_context_types"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_access_log`: \{ `Row`: \{ `access_type`: `string` ; `accessed_at`: `string` ; `accessed_by`: `string` ; `id`: `number` ; `ip_address`: `unknown` ; `justification`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `record_id`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` } ; `Insert`: \{ `access_type`: `string` ; `accessed_at?`: `string` ; `accessed_by`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Update`: \{ `access_type?`: `string` ; `accessed_at?`: `string` ; `accessed_by?`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_access_log_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_access_log_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_action_plan`: \{ `Row`: \{ `condition_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `number` ; `is_current`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by`: ``null`` \| `string` ; `reviewed_date`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received?`: `string` ; `description?`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `plan_type?`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_action_plan_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_action_plan_condition_id_fkey"`` ; `columns`: [``"condition_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition`: \{ `Row`: \{ `aid`: ``null`` \| `string` ; `alert_description`: ``null`` \| `string` ; `condition_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `custom_name`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `diagnosed_by`: ``null`` \| `string` ; `diagnosed_date`: ``null`` \| `string` ; `emergency_protocol`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `last_episode_date`: ``null`` \| `string` ; `management_plan`: ``null`` \| `string` ; `medical_alert`: ``null`` \| `boolean` ; `medication`: ``null`` \| `string` ; `name`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `reaction`: ``null`` \| `string` ; `severity`: ``null`` \| `string` ; `treatment`: ``null`` \| `string` ; `triggers`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_condition_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_condition_type_id_fkey"`` ; `columns`: [``"condition_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"medi_condition_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_condition_types_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_diet`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_id`: ``null`` \| `string` ; `id`: `number` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description`: ``null`` \| `string` ; `profile_id`: ``null`` \| `number` ; `severity`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_diet_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_diet_diettype_id_fkey"`` ; `columns`: [``"diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"medi_diet_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile`: \{ `Row`: \{ `access_count`: ``null`` \| `number` ; `carer_name`: ``null`` \| `string` ; `consent_date`: ``null`` \| `string` ; `consent_given`: ``null`` \| `boolean` ; `consent_withdrawn_date`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `data_retention_until`: ``null`` \| `string` ; `dietary_comments`: ``null`` \| `string` ; `has_carer`: ``null`` \| `boolean` ; `has_dietary_requirements`: ``null`` \| `boolean` ; `health_care_card_expiry`: ``null`` \| `string` ; `health_care_card_number`: ``null`` \| `string` ; `health_fund_name`: ``null`` \| `string` ; `health_fund_number`: ``null`` \| `string` ; `health_satisfactory`: ``null`` \| `boolean` ; `id`: `number` ; `is_fully_immunised`: ``null`` \| `boolean` ; `last_accessed_at`: ``null`` \| `string` ; `last_accessed_by`: ``null`` \| `string` ; `last_tetanus_date`: ``null`` \| `string` ; `medicare_expiry`: ``null`` \| `string` ; `medicare_number`: ``null`` \| `string` ; `member_id`: ``null`` \| `string` ; `menu_selection`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support`: ``null`` \| `boolean` ; `support_details`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile_versions`: \{ `Row`: \{ `change_reason`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id`: `number` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `version_number`: `number` } ; `Insert`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id?`: `number` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number`: `number` } ; `Update`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `data_snapshot?`: `Json` ; `id?`: `number` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number?`: `number` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_versions_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_versions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_action_log`: \{ `Row`: \{ `action`: `string` ; `amount_minor`: ``null`` \| `number` ; `created_at`: `string` ; `gateway_ref`: ``null`` \| `string` ; `id`: `string` ; `invoice_id`: `string` ; `meta`: `Json` ; `reason`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id?`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_action_log_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }] } ; `mint_audit_log`: \{ `Row`: \{ `created_at`: `string` ; `details`: `Json` ; `event_type`: `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type?`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_credit_balance`: \{ `Row`: \{ `amount`: `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `credit_id`: `string` ; `expires_at`: ``null`` \| `string` ; `invoice_id`: ``null`` \| `string` ; `is_used`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `used_at`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `reason?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"credit_balance_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"credit_balance_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_dd_mandate_log`: \{ `Row`: \{ `created_at`: `string` ; `event`: `string` ; `id`: `string` ; `payload`: `Json` ; `payment_method_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `event`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `event?`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_dd_mandate_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_idempotency`: \{ `Row`: \{ `first_request_at`: `string` ; `id`: `string` ; `idempotency_key`: `string` ; `last_response`: `Json` ; `scope`: `string` ; `status`: `string` } ; `Insert`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status`: `string` } ; `Update`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key?`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status?`: `string` } ; `Relationships`: [] } ; `mint_invoice`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `greenpay_transaction_id`: ``null`` \| `string` ; `invoice_id`: `string` ; `issued_at`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin?`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app?`: `string` ; `source_origin?`: ``null`` \| `string` ; `status?`: `string` ; `total_amount?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"invoice_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_line_item`: \{ `Row`: \{ `amount`: `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at`: ``null`` \| `string` ; `fulfillment_status`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id`: `string` ; `org_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info`: `Json` ; `source_app`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info?`: `Json` ; `source_app`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `item_type?`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `proration_info?`: `Json` ; `source_app?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"line_item_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"line_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_mit_consent_log`: \{ `Row`: \{ `consent_text`: ``null`` \| `string` ; `created_at`: `string` ; `id`: `string` ; `invoice_id`: ``null`` \| `string` ; `ip`: `unknown` ; `member_id`: `string` ; `payment_method_id`: ``null`` \| `string` ; `terms_version`: ``null`` \| `string` ; `ua`: ``null`` \| `string` } ; `Insert`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Update`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id?`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_mit_consent_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_payment_method`: \{ `Row`: \{ `bank_account_bsb`: ``null`` \| `string` ; `bank_account_last4`: ``null`` \| `string` ; `bank_account_name`: ``null`` \| `string` ; `brand`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dd_mandate_id`: ``null`` \| `string` ; `dd_mandate_status`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent`: `boolean` ; `mit_consent_at`: ``null`` \| `string` ; `mit_consent_ip`: `unknown` ; `mit_consent_terms_version`: ``null`` \| `string` ; `mit_consent_text`: ``null`` \| `string` ; `mit_consent_ua`: ``null`` \| `string` ; `mit_initial_cit_at`: ``null`` \| `string` ; `mit_initial_cit_txn_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id`: `string` ; `type`: ``"card"`` \| ``"bank"`` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_status`: `string` } ; `Insert`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default?`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Update`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token?`: `string` ; `is_default?`: `boolean` ; `last_four_digits?`: `string` ; `member_id?`: `string` ; `method_type?`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"payment_method_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_security_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: ``null`` \| `string` ; `details`: `Json` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `record_id`: ``null`` \| `string` ; `table_name`: ``null`` \| `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_webhook_log`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `event_type`: `string` ; `headers`: `Json` ; `invoice_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at`: ``null`` \| `string` ; `processing_error`: ``null`` \| `string` ; `source`: `string` ; `status`: `string` ; `transaction_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `webhook_log_id`: `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `event_type`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `event_type?`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payload?`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status?`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"webhook_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `note_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `mime_type`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id?`: `string` ; `organisation_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"note_attachments_note_id_fkey"`` ; `columns`: [``"note_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_internal_notes"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"note_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings`: `Json` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_app_access_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"organisation_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_audit_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: `string` ; `entity_id`: ``null`` \| `string` ; `entity_type`: `string` ; `id`: `string` ; `ip_address`: `unknown` ; `new_values`: `Json` ; `old_values`: `Json` ; `organisation_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type?`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_audit_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_invitations`: \{ `Row`: \{ `accepted_at`: ``null`` \| `string` ; `created_at`: `string` ; `email`: `string` ; `expires_at`: `string` ; `id`: `string` ; `invited_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `role`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email?`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_invitations_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_settings`: \{ `Row`: \{ `address`: `Json` ; `contact_email`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `custom_css`: ``null`` \| `string` ; `date_format`: ``null`` \| `string` ; `email_templates`: `Json` ; `joining_fee`: ``null`` \| `number` ; `language`: ``null`` \| `string` ; `notification_settings`: `Json` ; `organisation_id`: `string` ; `phone`: ``null`` \| `string` ; `primary_color`: ``null`` \| `string` ; `recurring_fee`: ``null`` \| `number` ; `secondary_color`: ``null`` \| `string` ; `timezone`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id?`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_settings_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisations`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id`: ``null`` \| `string` ; `settings`: `Json` ; `subscription_tier`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisations_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent`: \{ `Row`: \{ `consent_type_id`: `number` ; `created_at`: ``null`` \| `string` ; `date_given`: ``null`` \| `string` ; `date_revoked`: ``null`` \| `string` ; `given`: `boolean` ; `id`: `string` ; `member_id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `consent_type_id`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given`: `boolean` ; `id?`: `string` ; `member_id`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `consent_type_id?`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given?`: `boolean` ; `id?`: `string` ; `member_id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"consents_consent_type_id_fkey"`` ; `columns`: [``"consent_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_consent_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"consents_member_id_fkey1"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_consent_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent_type`: \{ `Row`: \{ `active`: ``null`` \| `boolean` ; `category`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key?`: `string` ; `label?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_consent_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact`: \{ `Row`: \{ `contact_person_id`: ``null`` \| `string` ; `contact_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_contact_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_related_person_id_fkey"`` ; `columns`: [``"contact_person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_relationship_type_id_fkey"`` ; `columns`: [``"contact_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_contact_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_permissions_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_contact_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_gender_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_gender_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `document_number`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `identification_type_id`: ``null`` \| `number` ; `issue_city`: ``null`` \| `string` ; `issue_country`: ``null`` \| `string` ; `issue_date`: ``null`` \| `string` ; `issue_state`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_identification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_identification_type_id"`` ; `columns`: [``"identification_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_identification_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_identification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_identification_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member`: \{ `Row`: \{ `address_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_of_birth`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `gender_id`: ``null`` \| `number` ; `id`: `string` ; `membership_number`: ``null`` \| `string` ; `membership_status`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `postal_address`: ``null`` \| `string` ; `pronoun_id`: ``null`` \| `number` ; `residential_address`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_gender_id_fkey"`` ; `columns`: [``"gender_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_gender_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_membership_type_id_fkey"`` ; `columns`: [``"membership_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_membership_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_pronoun_id_fkey"`` ; `columns`: [``"pronoun_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_pronoun_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member_role`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `end_date`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date?`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_role_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_role_id_fkey"`` ; `columns`: [``"role_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_role_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_member_roles_unit_id_fkey"`` ; `columns`: [``"unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }] } ; `core_membership_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `max_age`: ``null`` \| `number` ; `min_age`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_membership_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_merchandise`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `color`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `price`: ``null`` \| `number` ; `size`: ``null`` \| `string` ; `sku`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_merchandise_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `core_person`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `first_name`: `string` ; `id`: `string` ; `last_name`: `string` ; `middle_name`: ``null`` \| `string` ; `preferred_name`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name`: `string` ; `id?`: `string` ; `last_name`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name?`: `string` ; `id?`: `string` ; `last_name?`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_phone`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number?`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_phone_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_contact_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_phone_type_id_fkey"`` ; `columns`: [``"phone_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_phone_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_phone_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_phone_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_pronoun_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_pronoun_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_qualification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `credential_id`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `institution`: ``null`` \| `string` ; `issued_date`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `title?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_qualification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_qualification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_role_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_role_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `public_rate_limits`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `requests`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_log`: \{ `Row`: \{ `body`: `string` ; `clicks`: ``null`` \| `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `from_address`: ``null`` \| `string` ; `id`: `string` ; `opens`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address`: ``null`` \| `string` ; `response_metadata`: `Json` ; `scheduled_at`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at`: ``null`` \| `string` ; `status`: `string` ; `subject`: ``null`` \| `string` ; `template_slug`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `recipients?`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id?`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_template`: \{ `Row`: \{ `body`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `subject?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_org_settings`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `default_from_address`: ``null`` \| `string` ; `default_reply_to_address`: ``null`` \| `string` ; `email_footer_html`: ``null`` \| `string` ; `email_header_html`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `sms_from_number`: ``null`` \| `string` ; `sms_messaging_service_sid`: ``null`` \| `string` ; `sms_opt_out_footer`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_scheduled_jobs`: \{ `Row`: \{ `attempts`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at`: `string` ; `id`: `string` ; `last_error`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id?`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for?`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pump_scheduled_jobs_comms_log_id_fkey"`` ; `columns`: [``"comms_log_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"pump_comms_log"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_app_pages`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `page_description`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_app_pages_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_apps`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event`: ``null`` \| `boolean` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_apps_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_audit_events`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `bypass`: ``null`` \| `boolean` ; `created_at`: ``null`` \| `string` ; `decision`: ``null`` \| `boolean` ; `duration_ms`: ``null`` \| `number` ; `event_id`: ``null`` \| `string` ; `event_type`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `page_id`: ``null`` \| `string` ; `permission`: ``null`` \| `string` ; `source`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_audit_events_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_auth_attempts`: \{ `Row`: \{ `attempt_time`: ``null`` \| `string` ; `attempts`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_auth_attempts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_event_app_roles`: \{ `Row`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `event_id?`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_function_backup`: \{ `Row`: \{ `backup_reason`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id`: `string` } ; `Insert`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id?`: `string` } ; `Update`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition?`: `string` ; `function_name?`: `string` ; `id?`: `string` } ; `Relationships`: [] } ; `rbac_global_roles`: \{ `Row`: \{ `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"super_admin"`` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_global_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_organisation_roles`: \{ `Row`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_page_permissions`: \{ `Row`: \{ `allowed`: `boolean` ; `app_page_id`: `string` ; `created_at`: ``null`` \| `string` ; `id`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `allowed?`: `boolean` ; `app_page_id`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `allowed?`: `boolean` ; `app_page_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation?`: `string` ; `organisation_id?`: `string` ; `role_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_page_permissions_app_page_id"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_app_page_id_fkey"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_policy_audit`: \{ `Row`: \{ `action`: `string` ; `changed_at`: ``null`` \| `string` ; `changed_by`: ``null`` \| `string` ; `error_message`: ``null`` \| `string` ; `id`: `string` ; `new_policy_sql`: ``null`` \| `string` ; `old_policy_sql`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success`: `boolean` ; `table_name`: `string` } ; `Insert`: \{ `action`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success?`: `boolean` ; `table_name`: `string` } ; `Update`: \{ `action?`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation?`: `string` ; `policy_name?`: `string` ; `success?`: `boolean` ; `table_name?`: `string` } ; `Relationships`: [] } ; `rbac_policy_configs`: \{ `Row`: \{ `app_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_column`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `operations`: `string`[] ; `organisation_column`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `rbac_user_login_history`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `email`: `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `login_timestamp`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `email`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `email?`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id?`: `string` ; `session_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_user_login_history_event"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_user_profiles`: \{ `Row`: \{ `created_at`: `string` ; `email`: `string` ; `full_name`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `email`: `string` ; `full_name?`: ``null`` \| `string` ; `id`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `email?`: `string` ; `full_name?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_profiles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_user_sessions`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `device_fingerprint`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: `unknown` ; `is_valid`: ``null`` \| `boolean` ; `metadata`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `session_type?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_sessions_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_internal_notes`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `description`: `string` ; `id`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description`: `string` ; `id?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description?`: `string` ; `id?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"internal_notes_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_internal_notes_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"team_organizational_units_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_accommodation`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `location_coords`: `Json` ; `location_display_name`: ``null`` \| `string` ; `location_place_id`: ``null`` \| `string` ; `location_short_address`: ``null`` \| `string` ; `location_timezone`: ``null`` \| `string` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time?`: `string` ; `check_out_time?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_accommodation_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_accommodation_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_activity`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords`: `Json` ; `finish_location_display_name`: ``null`` \| `string` ; `finish_location_place_id`: ``null`` \| `string` ; `finish_location_short_address`: ``null`` \| `string` ; `finish_location_timezone`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords`: `Json` ; `start_location_display_name`: ``null`` \| `string` ; `start_location_place_id`: ``null`` \| `string` ; `start_location_short_address`: ``null`` \| `string` ; `start_location_timezone`: ``null`` \| `string` ; `start_time`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_activity_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id?`: `string` ; `item_type?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_contacts`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `email_address`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `phone_number`: ``null`` \| `string` ; `role`: ``null`` \| `string` ; `surname`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id?`: `string` ; `first_name?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_contacts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_contacts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_currency_rates`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code?`: `string` ; `event_id?`: `string` ; `exchange_rate?`: `number` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_currency_rates_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_images`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `post_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_updated_by"`` ; `columns`: [``"updated_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_posts`: \{ `Row`: \{ `content`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `status`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `content`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at?`: `string` ; `updated_by`: `string` } ; `Update`: \{ `content?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title?`: `string` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `trac_location_cache`: \{ `Row`: \{ `city`: ``null`` \| `string` ; `coordinates`: `Json` ; `country`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `last_updated`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address`: ``null`` \| `string` ; `timezoneid`: ``null`` \| `string` } ; `Insert`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Update`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_location_cache_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_risks`: \{ `Row`: \{ `comment`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response`: ``null`` \| `string` ; `responsible_contact_id`: ``null`` \| `string` ; `risk`: `string` ; `status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Insert`: \{ `comment?`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Update`: \{ `comment?`: ``null`` \| `string` ; `consequence_after?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `impact_after?`: `number` ; `impact_before?`: `number` ; `likelihood_after?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id?`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk?`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type?`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when?`: ``"Prior"`` \| ``"During"`` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_risks_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_risks_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"trac_risks_responsible_contact_id_fkey"`` ; `columns`: [``"responsible_contact_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"trac_contacts"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_transport`: \{ `Row`: \{ `arrival_coords`: `Json` ; `arrival_display_name`: ``null`` \| `string` ; `arrival_place_id`: ``null`` \| `string` ; `arrival_short_address`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone`: ``null`` \| `string` ; `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `departure_coords`: `Json` ; `departure_display_name`: ``null`` \| `string` ; `departure_place_id`: ``null`` \| `string` ; `departure_short_address`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `mode`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `transport_number`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time?`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time?`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_transport_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } } ; `Views`: \{ `file_references_summary`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `file_count`: ``null`` \| `number` ; `private_count`: ``null`` \| `number` ; `public_count`: ``null`` \| `number` ; `table_name`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_organisation_memberships`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `is_primary`: ``null`` \| `boolean` ; `joined_at`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `core_field_list`: \{ `Row`: \{ `field_name`: `unknown` ; `field_type`: ``null`` \| `string` ; `is_nullable`: ``null`` \| `string` ; `ordinal_position`: ``null`` \| `number` ; `table_name`: `unknown` } ; `Relationships`: [] } ; `rbac_active_event_app_roles`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `role`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_active_organisation_roles`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `user_profiles`: \{ `Row`: \{ `avatar_url`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } } ; `Functions`: \{ `add_geo_columns_to_transport_tables`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `app_cake_delivery_upsert`: \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_create`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id`: `string` ; `p_diner_unit_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_update`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id?`: `string` ; `p_diner_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_create`: \{ `Args`: \{ `p_dish_code`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_event_id`: `string` ; `p_dish_mealtype_id`: `string` ; `p_dish_name`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_delete`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_update`: \{ `Args`: \{ `p_dish_code?`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_id`: `string` ; `p_dish_mealtype_id?`: `string` ; `p_dish_name?`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `item_id`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_create`: \{ `Args`: \{ `p_meal_code`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date`: `string` ; `p_meal_event_id`: `string` ; `p_meal_mealtype_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_delete`: \{ `Args`: \{ `p_meal_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_update`: \{ `Args`: \{ `p_meal_code?`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date?`: `string` ; `p_meal_id`: `string` ; `p_meal_mealtype_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_bulk_delete`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_unit_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `deleted_count`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_mealplan_create`: \{ `Args`: \{ `p_mealplan_dish_id`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_meal_id`: `string` ; `p_mealplan_unit_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_update`: \{ `Args`: \{ `p_mealplan_dish_id?`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_id`: `string` ; `p_mealplan_meal_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meals_bulk_import`: \{ `Args`: \{ `p_meals_data`: `Json` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_package_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `package_id`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_package_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id`: `string` ; `p_recipe_dish_id`: `string` ; `p_recipe_item_id`: `string` ; `p_recipe_qtypp`: `number` ; `p_recipe_uptake`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_delete`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_recipe_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id?`: `string` ; `p_recipe_id`: `string` ; `p_recipe_item_id?`: `string` ; `p_recipe_qtypp?`: `number` ; `p_recipe_uptake?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_create`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` ; `supply_id`: `string` }[] } \| \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_event_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `unit_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number?`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_units_bulk_import`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_units_data`: `Json` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_name`: \{ `Args`: `never` ; `Returns`: `string` } ; `cleanup_orphaned_file_references`: \{ `Args`: `never` ; `Returns`: `number` } ; `data_cake_deliveries_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `item_count`: `number` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_quantity`: `number` }[] } ; `data_cake_diettypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_diners_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids?`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dish_details`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dishes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_distribution_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `logistics_name`: `string` ; `meal_dates`: `string`[] ; `package_size`: `number` ; `packages_needed`: `number` ; `required_quantity`: `number` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` }[] } ; `data_cake_item_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `string` ; `item_diet_diabetic`: `string` ; `item_diet_eggfree`: `string` ; `item_diet_glutenfree`: `string` ; `item_diet_halal`: `string` ; `item_diet_kosher`: `string` ; `item_diet_lactosefree`: `string` ; `item_diet_lowfodmap`: `string` ; `item_diet_lowfructose`: `string` ; `item_diet_porkfree`: `string` ; `item_diet_redmeatfree`: `string` ; `item_diet_vegan`: `string` ; `item_diet_vegetarian`: `string` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_item_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_items_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealplans_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_dish_code`: `string` ; `dish_dish_id`: `string` ; `dish_dish_name`: `string` ; `meal_meal_code`: `string` ; `meal_meal_date`: `string` ; `meal_meal_event_id`: `string` ; `meal_mealtype_id`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_meals_get`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_cake_meals_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealtypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_orders_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_date`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `package_cost`: `number` ; `package_ctnpkgs`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_carton_cost`: `number` ; `total_cartons`: `number` ; `total_packages`: `number` ; `total_pkg_cost`: `number` }[] } ; `data_cake_package_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_package_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_packages_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_recipe_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_recipes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_suppliers_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supplies_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supply_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_units_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_event_get_by_code`: \{ `Args`: \{ `p_event_code`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_billing`: `string` ; `event_catering_email`: `string` ; `event_code`: `string` ; `event_col_d1`: `string` ; `event_col_d2`: `string` ; `event_col_l1`: `string` ; `event_col_l2`: `string` ; `event_col_m1`: `string` ; `event_col_m2`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_footer`: `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_by_category_list`: \{ `Args`: \{ `p_category`: `string` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_count_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `number` } ; `data_file_reference_create`: \{ `Args`: \{ `p_app_id`: `string` ; `p_file_metadata?`: `Json` ; `p_file_path`: `string` ; `p_is_public?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_delete`: \{ `Args`: \{ `p_delete_file?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `data_file_reference_get`: \{ `Args`: \{ `p_file_reference_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_list`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_signed_url_get`: \{ `Args`: \{ `p_expires_in?`: `number` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_url_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_user_events_get`: \{ `Args`: \{ `p_app_name?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_code`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_participants`: `number` ; `event_venue`: `string` ; `id`: `string` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_user_organisation_roles_get`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `id`: `string` ; `name`: `string` ; `notes`: `string` ; `organisation_id`: `string` ; `revoked_at`: `string` ; `revoked_by`: `string` ; `role`: `string` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` }[] } ; `data_user_organisations_get`: \{ `Args`: \{ `p_user_id?`: `string` } ; `Returns`: \{ `granted_at`: `string` ; `is_primary`: `boolean` ; `organisation_id`: `string` ; `organisation_name`: `string` ; `user_role`: `string` }[] } ; `debug_auth_context`: \{ `Args`: `never` ; `Returns`: `Json` } ; `delete_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `get_app_config`: \{ `Args`: \{ `app_id`: `string` } ; `Returns`: `Json` } ; `get_current_organisation_context`: \{ `Args`: `never` ; `Returns`: `string` } ; `get_file_url_for_record`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `string` } ; `get_files_to_migrate_to_public`: \{ `Args`: `never` ; `Returns`: \{ `file_id`: `string` ; `new_path`: `string` ; `old_path`: `string` ; `organisation_id`: `string` }[] } ; `get_medi_conditions`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `condition_type_id`: `number` ; `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `diagnosed_by`: `string` ; `diagnosed_date`: `string` ; `emergency_protocol`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `last_episode_date`: `string` ; `management_plan`: `string` ; `name`: `string` ; `notes`: `string` ; `profile_id`: `number` ; `reaction`: `string` ; `severity`: `string` ; `treatment`: `string` ; `triggers`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_medi_items`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `description`: `string` ; `dose`: `string` ; `end_date`: `string` ; `frequency`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `is_emergency_medication`: `boolean` ; `item_type_id`: `number` ; `name`: `string` ; `pharmacy_details`: `string` ; `prescribing_doctor`: `string` ; `profile_id`: `number` ; `route`: `string` ; `side_effects`: `string` ; `start_date`: `string` ; `storage_requirements`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_public_event_by_code`: \{ `Args`: \{ `event_code_param`: `string` } ; `Returns`: \{ `event_billing`: `string` ; `event_catering_email`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `organisation_id`: `string` }[] } ; `has_files`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `boolean` } ; `increment_attempts`: \{ `Args`: \{ `p_identifier`: `string` ; `p_window_minutes?`: `number` } ; `Returns`: \{ `current_attempts`: `number` ; `is_blocked`: `boolean` ; `window_start`: `string` }[] } ; `insert_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_created_by?`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_updated_by?`: `string` } ; `Returns`: `string` } ; `insert_journal_image`: \{ `Args`: \{ `p_created_by`: `string` ; `p_file_name`: `string` ; `p_file_path`: `string` ; `p_post_id`: `string` } ; `Returns`: `undefined` } ; `is_super_admin`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `is_user_super_admin`: \{ `Args`: `never` ; `Returns`: `boolean` } ; `populate_location_descriptions`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `populate_location_display_names`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `rbac_audit_log`: \{ `Args`: \{ `p_event_data?`: `Json` ; `p_event_type`: `string` ; `p_resource_id`: `string` ; `p_resource_type`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } \| \{ `Args`: \{ `p_event_type`: `string` ; `p_ip_address?`: `unknown` ; `p_metadata?`: `Json` ; `p_organisation_id?`: `string` ; `p_permission?`: `string` ; `p_user_agent?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } ; `rbac_check_distribution_or_page_permission`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_page_name`: `string` ; `p_permission_pattern`: `string` } ; `Returns`: `boolean` } ; `rbac_check_permission_simplified`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_permission`: `string` ; `p_user_id`: `string` } ; `Returns`: `boolean` } ; `rbac_detect_concurrent_sessions`: \{ `Args`: \{ `p_device_fingerprint?`: `string` ; `p_timeout_seconds?`: `number` ; `p_user_id`: `string` } ; `Returns`: \{ `concurrent_sessions_count`: `number` ; `has_concurrent`: `boolean` ; `session_ids`: `string`[] }[] } ; `rbac_enforce_session_timeout`: \{ `Args`: \{ `p_timeout_minutes?`: `number` } ; `Returns`: \{ `expired_sessions_count`: `number` ; `user_ids`: `string`[] }[] } ; `rbac_generate_device_fingerprint`: \{ `Args`: `never` ; `Returns`: `string` } ; `rbac_invalidate_other_sessions`: \{ `Args`: \{ `p_current_device_fingerprint`: `string` ; `p_user_id`: `string` } ; `Returns`: `number` } ; `rbac_permissions_get`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `has_permission`: `boolean` ; `permission_type`: `string` ; `role_name`: `string` }[] } ; `rbac_role_grant`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_granted_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `role_id`: `string` ; `success`: `boolean` }[] } ; `rbac_role_revoke`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_revoked_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `revoked_count`: `number` ; `success`: `boolean` }[] } ; `rbac_role_validate`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `expires_at`: `string` ; `granted_at`: `string` ; `is_valid`: `boolean` ; `role_id`: `string` ; `status`: `string` }[] } ; `rbac_roles_list`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `role_name`: `string` ; `role_type`: `string` ; `status`: `string` }[] } ; `rbac_session_track`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_device_fingerprint?`: `string` ; `p_event_id?`: `string` ; `p_ip_address?`: `string` ; `p_session_type?`: `string` ; `p_user_agent?`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } ; `rbac_super_admin_check`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `secure_query`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_select_columns`: `string` ; `p_table_name`: `string` ; `p_user_id`: `string` } ; `Returns`: `Json` } ; `set_app_organisation_id`: \{ `Args`: \{ `p_organisation_id`: `string` } ; `Returns`: `undefined` } ; `set_organisation_context`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `undefined` } ; `sys_audit_cleanup`: \{ `Args`: \{ `p_days_to_keep?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `rows_deleted`: `number` ; `success`: `boolean` }[] } ; `util_app_resolve`: \{ `Args`: \{ `p_app_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `app_name`: `string` ; `has_access`: `boolean` ; `is_active`: `boolean` }[] } ; `validate_base_question_options`: \{ `Args`: \{ `options`: `Json` ; `question_type`: `string` } ; `Returns`: `boolean` } ; `validate_organisation_access`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `boolean` } ; `verify_greenpay_signature`: \{ `Args`: \{ `payload`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } ; `verify_webhook_signature`: \{ `Args`: \{ `payload`: `string` ; `secret`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } } ; `Enums`: \{ `access_level`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"super"`` ; `crud_operation`: ``"create"`` \| ``"read"`` \| ``"update"`` \| ``"delete"`` ; `dd_mandate_status`: ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `journal_post_status`: ``"draft"`` \| ``"published"`` ; `organisation_role`: ``"org_admin"`` \| ``"member"`` \| ``"super_admin"`` \| ``"moderator"`` \| ``"admin"`` ; `pace_membership_status`: ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `payment_method_type`: ``"card"`` \| ``"bank"`` ; `rbac_event_app_role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `rbac_global_role`: ``"super_admin"`` ; `rbac_organisation_role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `risk_consequence`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `risk_likelihood`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `risk_status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `risk_type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `risk_when`: ``"Prior"`` \| ``"During"`` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` } ; `CompositeTypes`: {} }, \{ `PostgrestVersion`: ``"12.2.3 (519615d)"`` }\>
|
|
61
|
-
|
|
62
|
-
Get a client for Edge Function calls without custom headers
|
|
63
|
-
Edge Functions may not have CORS configured to accept custom headers
|
|
64
|
-
|
|
65
|
-
#### Returns
|
|
66
|
-
|
|
67
|
-
`default`\<`Database`, ``"public"``, ``"public"``, \{ `Tables`: \{ `addresses`: \{ `Row`: \{ `country`: ``null`` \| `string` ; `created_at`: `string` ; `full_address`: ``null`` \| `string` ; `id`: `string` ; `lat`: ``null`` \| `number` ; `lng`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode`: ``null`` \| `string` ; `route`: ``null`` \| `string` ; `state`: ``null`` \| `string` ; `street_number`: ``null`` \| `string` ; `suburb`: ``null`` \| `string` } ; `Insert`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Update`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"addresses_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `base_application`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status`: `string` ; `status_updated_at`: ``null`` \| `string` ; `status_updated_by`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_application_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"base_application_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"base_application_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `base_questions`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `depends_on_question_id`: ``null`` \| `string` ; `depends_on_value`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `is_sensitive`: `boolean` ; `label`: `string` ; `options`: `Json` ; `organisation_id`: `string` ; `question_group`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order`: `number` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` ; `visibility`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label`: `string` ; `options?`: `Json` ; `organisation_id`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label?`: `string` ; `options?`: `Json` ; `organisation_id?`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type?`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_questions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_delivery`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `delivery_address`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date?`: `string` ; `delivery_event_id?`: `string` ; `delivery_id?`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id?`: `string` ; `delivery_unitcollectiondate?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_delivery_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_event_id_fkey"`` ; `columns`: [``"delivery_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_supplier_id_fkey"`` ; `columns`: [``"delivery_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_diettype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code?`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id?`: `string` ; `diettype_name?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diettype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_diner`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diner_adult`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id?`: `string` ; `diner_id?`: `string` ; `diner_unit_id?`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diner_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"diner_diner_diettype_id_fkey"`` ; `columns`: [``"diner_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"diner_diner_unit_id_fkey"`` ; `columns`: [``"diner_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_dish`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description`: ``null`` \| `string` ; `dish_dietnote`: ``null`` \| `string` ; `dish_equipment`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: ``null`` \| `string` ; `dish_step1`: ``null`` \| `string` ; `dish_step2`: ``null`` \| `string` ; `dish_step3`: ``null`` \| `string` ; `dish_step4`: ``null`` \| `string` ; `dish_step5`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code?`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id?`: `string` ; `dish_id?`: `string` ; `dish_mealtype_id?`: `string` ; `dish_name?`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_dish_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"dish_dish_event_id_fkey"`` ; `columns`: [``"dish_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"dish_dish_mealtype_id_fkey"`` ; `columns`: [``"dish_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_item`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `item_brand`: ``null`` \| `string` ; `item_diet_dairyfree`: ``null`` \| `boolean` ; `item_diet_diabetic`: ``null`` \| `boolean` ; `item_diet_eggfree`: ``null`` \| `boolean` ; `item_diet_glutenfree`: ``null`` \| `boolean` ; `item_diet_halal`: ``null`` \| `boolean` ; `item_diet_kosher`: ``null`` \| `boolean` ; `item_diet_lactosefree`: ``null`` \| `boolean` ; `item_diet_lowfodmap`: ``null`` \| `boolean` ; `item_diet_lowfructose`: ``null`` \| `boolean` ; `item_diet_porkfree`: ``null`` \| `boolean` ; `item_diet_redmeatfree`: ``null`` \| `boolean` ; `item_diet_vegan`: ``null`` \| `boolean` ; `item_diet_vegetarian`: ``null`` \| `boolean` ; `item_distribution`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id?`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics?`: `number` ; `item_name?`: `string` ; `item_packageunit?`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_item_logistics"`` ; `columns`: [``"item_logistics"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_logistics"`` ; `referencedColumns`: [``"logistics_id"``] }] } ; `cake_logistics`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code?`: `string` ; `logistics_id?`: `number` ; `logistics_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_logistics_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_meal`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code?`: `string` ; `meal_collectiondate?`: `string` ; `meal_date?`: `string` ; `meal_event_id?`: `string` ; `meal_id?`: `string` ; `meal_mealtype_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_meal_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"meal_meal_event_id_fkey"`` ; `columns`: [``"meal_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"meal_meal_mealtype_id_fkey"`` ; `columns`: [``"meal_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_mealplan`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id?`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id?`: `string` ; `mealplan_meal_id?`: `string` ; `mealplan_unit_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealplan_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_dish_id_fkey"`` ; `columns`: [``"mealplan_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_meal_id_fkey"`` ; `columns`: [``"mealplan_meal_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_meal"`` ; `referencedColumns`: [``"meal_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_unit_id_fkey"`` ; `columns`: [``"mealplan_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_mealtype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id?`: `string` ; `mealtype_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealtype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_package`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id?`: `string` ; `package_itemid?`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size?`: `number` ; `package_type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_package_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"package_package_itemid_fkey"`` ; `columns`: [``"package_itemid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_recipe`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recipe_diettype_id?`: `string` ; `recipe_dish_id?`: `string` ; `recipe_id?`: `string` ; `recipe_item_id?`: `string` ; `recipe_qtypp?`: `number` ; `recipe_uptake?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_recipe_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"recipe_dish_id_fkey"`` ; `columns`: [``"recipe_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_diettype_id_fkey"`` ; `columns`: [``"recipe_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_item_id_fkey"`` ; `columns`: [``"recipe_item_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_supplier`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail`: ``null`` \| `string` ; `supplier_contactname`: ``null`` \| `string` ; `supplier_contactnumber`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id?`: `string` ; `supplier_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supplier_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_supply`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code`: ``null`` \| `string` ; `supply_cost`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id?`: `string` ; `supply_id?`: `string` ; `supply_packageid?`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supply_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"supply_supply_event_id_fkey"`` ; `columns`: [``"supply_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"supply_supply_packageid_fkey"`` ; `columns`: [``"supply_packageid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_package"`` ; `referencedColumns`: [``"package_id"``] }, \{ `foreignKeyName`: ``"supply_supply_supplier_id_fkey"`` ; `columns`: [``"supply_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id?`: `string` ; `unit_id?`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number?`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"unit_unit_event_id_fkey"`` ; `columns`: [``"unit_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_events`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_billing`: ``null`` \| `string` ; `event_catering_email`: ``null`` \| `string` ; `event_code`: ``null`` \| `string` ; `event_colours`: `Json` ; `event_date`: ``null`` \| `string` ; `event_days`: ``null`` \| `number` ; `event_email`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: ``null`` \| `string` ; `event_participants`: ``null`` \| `number` ; `event_rounddown`: ``null`` \| `number` ; `event_typicalunit`: ``null`` \| `number` ; `event_venue`: ``null`` \| `string` ; `event_youthmultiplier`: ``null`` \| `number` ; `is_visible`: ``null`` \| `boolean` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id?`: `string` ; `event_name?`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_event_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_app_access_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"event_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_file_references`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path?`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"file_references_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"file_references_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_context_types`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_contexts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_field_config`: \{ `Row`: \{ `admin_notes`: ``null`` \| `string` ; `category`: ``null`` \| `string` ; `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_order`: ``null`` \| `number` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_field_config_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_fields`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_options`: `Json` ; `field_description`: ``null`` \| `string` ; `field_label`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `is_required`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sort_order?`: `number` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_fields_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_fields_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_response_values`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `form_field_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `value_json`: `Json` ; `value_text`: ``null`` \| `string` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `response_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_response_values_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_form_field_id_fkey"`` ; `columns`: [``"form_field_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_fields"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_response_id_fkey"`` ; `columns`: [``"response_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_responses"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_responses`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `respondent_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `target_record_id`: ``null`` \| `string` ; `target_table`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_responses_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_responses_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }] } ; `core_forms`: \{ `Row`: \{ `allow_multiple_submissions`: ``null`` \| `boolean` ; `closes_at`: ``null`` \| `string` ; `confirmation_message`: ``null`` \| `string` ; `context_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `max_submissions`: ``null`` \| `number` ; `name`: `string` ; `opens_at`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name?`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_forms_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"forms_context_id_fkey"`` ; `columns`: [``"context_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_context_types"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_access_log`: \{ `Row`: \{ `access_type`: `string` ; `accessed_at`: `string` ; `accessed_by`: `string` ; `id`: `number` ; `ip_address`: `unknown` ; `justification`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `record_id`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` } ; `Insert`: \{ `access_type`: `string` ; `accessed_at?`: `string` ; `accessed_by`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Update`: \{ `access_type?`: `string` ; `accessed_at?`: `string` ; `accessed_by?`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_access_log_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_access_log_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_action_plan`: \{ `Row`: \{ `condition_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `number` ; `is_current`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by`: ``null`` \| `string` ; `reviewed_date`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received?`: `string` ; `description?`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `plan_type?`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_action_plan_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_action_plan_condition_id_fkey"`` ; `columns`: [``"condition_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition`: \{ `Row`: \{ `aid`: ``null`` \| `string` ; `alert_description`: ``null`` \| `string` ; `condition_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `custom_name`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `diagnosed_by`: ``null`` \| `string` ; `diagnosed_date`: ``null`` \| `string` ; `emergency_protocol`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `last_episode_date`: ``null`` \| `string` ; `management_plan`: ``null`` \| `string` ; `medical_alert`: ``null`` \| `boolean` ; `medication`: ``null`` \| `string` ; `name`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `reaction`: ``null`` \| `string` ; `severity`: ``null`` \| `string` ; `treatment`: ``null`` \| `string` ; `triggers`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_condition_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_condition_type_id_fkey"`` ; `columns`: [``"condition_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"medi_condition_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_condition_types_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_diet`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_id`: ``null`` \| `string` ; `id`: `number` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description`: ``null`` \| `string` ; `profile_id`: ``null`` \| `number` ; `severity`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_diet_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_diet_diettype_id_fkey"`` ; `columns`: [``"diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"medi_diet_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile`: \{ `Row`: \{ `access_count`: ``null`` \| `number` ; `carer_name`: ``null`` \| `string` ; `consent_date`: ``null`` \| `string` ; `consent_given`: ``null`` \| `boolean` ; `consent_withdrawn_date`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `data_retention_until`: ``null`` \| `string` ; `dietary_comments`: ``null`` \| `string` ; `has_carer`: ``null`` \| `boolean` ; `has_dietary_requirements`: ``null`` \| `boolean` ; `health_care_card_expiry`: ``null`` \| `string` ; `health_care_card_number`: ``null`` \| `string` ; `health_fund_name`: ``null`` \| `string` ; `health_fund_number`: ``null`` \| `string` ; `health_satisfactory`: ``null`` \| `boolean` ; `id`: `number` ; `is_fully_immunised`: ``null`` \| `boolean` ; `last_accessed_at`: ``null`` \| `string` ; `last_accessed_by`: ``null`` \| `string` ; `last_tetanus_date`: ``null`` \| `string` ; `medicare_expiry`: ``null`` \| `string` ; `medicare_number`: ``null`` \| `string` ; `member_id`: ``null`` \| `string` ; `menu_selection`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support`: ``null`` \| `boolean` ; `support_details`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile_versions`: \{ `Row`: \{ `change_reason`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id`: `number` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `version_number`: `number` } ; `Insert`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id?`: `number` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number`: `number` } ; `Update`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `data_snapshot?`: `Json` ; `id?`: `number` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number?`: `number` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_versions_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_versions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_action_log`: \{ `Row`: \{ `action`: `string` ; `amount_minor`: ``null`` \| `number` ; `created_at`: `string` ; `gateway_ref`: ``null`` \| `string` ; `id`: `string` ; `invoice_id`: `string` ; `meta`: `Json` ; `reason`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id?`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_action_log_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }] } ; `mint_audit_log`: \{ `Row`: \{ `created_at`: `string` ; `details`: `Json` ; `event_type`: `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type?`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_credit_balance`: \{ `Row`: \{ `amount`: `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `credit_id`: `string` ; `expires_at`: ``null`` \| `string` ; `invoice_id`: ``null`` \| `string` ; `is_used`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `used_at`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `reason?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"credit_balance_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"credit_balance_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_dd_mandate_log`: \{ `Row`: \{ `created_at`: `string` ; `event`: `string` ; `id`: `string` ; `payload`: `Json` ; `payment_method_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `event`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `event?`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_dd_mandate_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_idempotency`: \{ `Row`: \{ `first_request_at`: `string` ; `id`: `string` ; `idempotency_key`: `string` ; `last_response`: `Json` ; `scope`: `string` ; `status`: `string` } ; `Insert`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status`: `string` } ; `Update`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key?`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status?`: `string` } ; `Relationships`: [] } ; `mint_invoice`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `greenpay_transaction_id`: ``null`` \| `string` ; `invoice_id`: `string` ; `issued_at`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin?`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app?`: `string` ; `source_origin?`: ``null`` \| `string` ; `status?`: `string` ; `total_amount?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"invoice_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_line_item`: \{ `Row`: \{ `amount`: `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at`: ``null`` \| `string` ; `fulfillment_status`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id`: `string` ; `org_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info`: `Json` ; `source_app`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info?`: `Json` ; `source_app`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `item_type?`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `proration_info?`: `Json` ; `source_app?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"line_item_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"line_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_mit_consent_log`: \{ `Row`: \{ `consent_text`: ``null`` \| `string` ; `created_at`: `string` ; `id`: `string` ; `invoice_id`: ``null`` \| `string` ; `ip`: `unknown` ; `member_id`: `string` ; `payment_method_id`: ``null`` \| `string` ; `terms_version`: ``null`` \| `string` ; `ua`: ``null`` \| `string` } ; `Insert`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Update`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id?`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_mit_consent_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_payment_method`: \{ `Row`: \{ `bank_account_bsb`: ``null`` \| `string` ; `bank_account_last4`: ``null`` \| `string` ; `bank_account_name`: ``null`` \| `string` ; `brand`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dd_mandate_id`: ``null`` \| `string` ; `dd_mandate_status`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent`: `boolean` ; `mit_consent_at`: ``null`` \| `string` ; `mit_consent_ip`: `unknown` ; `mit_consent_terms_version`: ``null`` \| `string` ; `mit_consent_text`: ``null`` \| `string` ; `mit_consent_ua`: ``null`` \| `string` ; `mit_initial_cit_at`: ``null`` \| `string` ; `mit_initial_cit_txn_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id`: `string` ; `type`: ``"card"`` \| ``"bank"`` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_status`: `string` } ; `Insert`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default?`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Update`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token?`: `string` ; `is_default?`: `boolean` ; `last_four_digits?`: `string` ; `member_id?`: `string` ; `method_type?`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"payment_method_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_security_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: ``null`` \| `string` ; `details`: `Json` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `record_id`: ``null`` \| `string` ; `table_name`: ``null`` \| `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_webhook_log`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `event_type`: `string` ; `headers`: `Json` ; `invoice_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at`: ``null`` \| `string` ; `processing_error`: ``null`` \| `string` ; `source`: `string` ; `status`: `string` ; `transaction_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `webhook_log_id`: `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `event_type`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `event_type?`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payload?`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status?`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"webhook_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `note_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `mime_type`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id?`: `string` ; `organisation_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"note_attachments_note_id_fkey"`` ; `columns`: [``"note_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_internal_notes"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"note_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings`: `Json` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_app_access_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"organisation_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_audit_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: `string` ; `entity_id`: ``null`` \| `string` ; `entity_type`: `string` ; `id`: `string` ; `ip_address`: `unknown` ; `new_values`: `Json` ; `old_values`: `Json` ; `organisation_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type?`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_audit_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_invitations`: \{ `Row`: \{ `accepted_at`: ``null`` \| `string` ; `created_at`: `string` ; `email`: `string` ; `expires_at`: `string` ; `id`: `string` ; `invited_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `role`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email?`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_invitations_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_settings`: \{ `Row`: \{ `address`: `Json` ; `contact_email`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `custom_css`: ``null`` \| `string` ; `date_format`: ``null`` \| `string` ; `email_templates`: `Json` ; `joining_fee`: ``null`` \| `number` ; `language`: ``null`` \| `string` ; `notification_settings`: `Json` ; `organisation_id`: `string` ; `phone`: ``null`` \| `string` ; `primary_color`: ``null`` \| `string` ; `recurring_fee`: ``null`` \| `number` ; `secondary_color`: ``null`` \| `string` ; `timezone`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id?`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_settings_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisations`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id`: ``null`` \| `string` ; `settings`: `Json` ; `subscription_tier`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisations_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent`: \{ `Row`: \{ `consent_type_id`: `number` ; `created_at`: ``null`` \| `string` ; `date_given`: ``null`` \| `string` ; `date_revoked`: ``null`` \| `string` ; `given`: `boolean` ; `id`: `string` ; `member_id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `consent_type_id`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given`: `boolean` ; `id?`: `string` ; `member_id`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `consent_type_id?`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given?`: `boolean` ; `id?`: `string` ; `member_id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"consents_consent_type_id_fkey"`` ; `columns`: [``"consent_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_consent_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"consents_member_id_fkey1"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_consent_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent_type`: \{ `Row`: \{ `active`: ``null`` \| `boolean` ; `category`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key?`: `string` ; `label?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_consent_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact`: \{ `Row`: \{ `contact_person_id`: ``null`` \| `string` ; `contact_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_contact_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_related_person_id_fkey"`` ; `columns`: [``"contact_person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_relationship_type_id_fkey"`` ; `columns`: [``"contact_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_contact_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_permissions_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_contact_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_gender_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_gender_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `document_number`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `identification_type_id`: ``null`` \| `number` ; `issue_city`: ``null`` \| `string` ; `issue_country`: ``null`` \| `string` ; `issue_date`: ``null`` \| `string` ; `issue_state`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_identification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_identification_type_id"`` ; `columns`: [``"identification_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_identification_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_identification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_identification_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member`: \{ `Row`: \{ `address_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_of_birth`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `gender_id`: ``null`` \| `number` ; `id`: `string` ; `membership_number`: ``null`` \| `string` ; `membership_status`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `postal_address`: ``null`` \| `string` ; `pronoun_id`: ``null`` \| `number` ; `residential_address`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_gender_id_fkey"`` ; `columns`: [``"gender_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_gender_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_membership_type_id_fkey"`` ; `columns`: [``"membership_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_membership_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_pronoun_id_fkey"`` ; `columns`: [``"pronoun_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_pronoun_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member_role`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `end_date`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date?`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_role_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_role_id_fkey"`` ; `columns`: [``"role_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_role_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_member_roles_unit_id_fkey"`` ; `columns`: [``"unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }] } ; `core_membership_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `max_age`: ``null`` \| `number` ; `min_age`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_membership_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_merchandise`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `color`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `price`: ``null`` \| `number` ; `size`: ``null`` \| `string` ; `sku`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_merchandise_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `core_person`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `first_name`: `string` ; `id`: `string` ; `last_name`: `string` ; `middle_name`: ``null`` \| `string` ; `preferred_name`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name`: `string` ; `id?`: `string` ; `last_name`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name?`: `string` ; `id?`: `string` ; `last_name?`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_phone`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number?`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_phone_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_contact_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_phone_type_id_fkey"`` ; `columns`: [``"phone_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_phone_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_phone_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_phone_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_pronoun_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_pronoun_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_qualification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `credential_id`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `institution`: ``null`` \| `string` ; `issued_date`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `title?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_qualification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_qualification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_role_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_role_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `public_rate_limits`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `requests`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_log`: \{ `Row`: \{ `body`: `string` ; `clicks`: ``null`` \| `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `from_address`: ``null`` \| `string` ; `id`: `string` ; `opens`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address`: ``null`` \| `string` ; `response_metadata`: `Json` ; `scheduled_at`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at`: ``null`` \| `string` ; `status`: `string` ; `subject`: ``null`` \| `string` ; `template_slug`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `recipients?`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id?`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_template`: \{ `Row`: \{ `body`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `subject?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_org_settings`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `default_from_address`: ``null`` \| `string` ; `default_reply_to_address`: ``null`` \| `string` ; `email_footer_html`: ``null`` \| `string` ; `email_header_html`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `sms_from_number`: ``null`` \| `string` ; `sms_messaging_service_sid`: ``null`` \| `string` ; `sms_opt_out_footer`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_scheduled_jobs`: \{ `Row`: \{ `attempts`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at`: `string` ; `id`: `string` ; `last_error`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id?`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for?`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pump_scheduled_jobs_comms_log_id_fkey"`` ; `columns`: [``"comms_log_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"pump_comms_log"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_app_pages`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `page_description`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_app_pages_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_apps`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event`: ``null`` \| `boolean` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_apps_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_audit_events`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `bypass`: ``null`` \| `boolean` ; `created_at`: ``null`` \| `string` ; `decision`: ``null`` \| `boolean` ; `duration_ms`: ``null`` \| `number` ; `event_id`: ``null`` \| `string` ; `event_type`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `page_id`: ``null`` \| `string` ; `permission`: ``null`` \| `string` ; `source`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_audit_events_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_auth_attempts`: \{ `Row`: \{ `attempt_time`: ``null`` \| `string` ; `attempts`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_auth_attempts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_event_app_roles`: \{ `Row`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `event_id?`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_function_backup`: \{ `Row`: \{ `backup_reason`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id`: `string` } ; `Insert`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id?`: `string` } ; `Update`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition?`: `string` ; `function_name?`: `string` ; `id?`: `string` } ; `Relationships`: [] } ; `rbac_global_roles`: \{ `Row`: \{ `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"super_admin"`` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_global_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_organisation_roles`: \{ `Row`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_page_permissions`: \{ `Row`: \{ `allowed`: `boolean` ; `app_page_id`: `string` ; `created_at`: ``null`` \| `string` ; `id`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `allowed?`: `boolean` ; `app_page_id`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `allowed?`: `boolean` ; `app_page_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation?`: `string` ; `organisation_id?`: `string` ; `role_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_page_permissions_app_page_id"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_app_page_id_fkey"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_policy_audit`: \{ `Row`: \{ `action`: `string` ; `changed_at`: ``null`` \| `string` ; `changed_by`: ``null`` \| `string` ; `error_message`: ``null`` \| `string` ; `id`: `string` ; `new_policy_sql`: ``null`` \| `string` ; `old_policy_sql`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success`: `boolean` ; `table_name`: `string` } ; `Insert`: \{ `action`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success?`: `boolean` ; `table_name`: `string` } ; `Update`: \{ `action?`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation?`: `string` ; `policy_name?`: `string` ; `success?`: `boolean` ; `table_name?`: `string` } ; `Relationships`: [] } ; `rbac_policy_configs`: \{ `Row`: \{ `app_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_column`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `operations`: `string`[] ; `organisation_column`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `rbac_user_login_history`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `email`: `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `login_timestamp`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `email`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `email?`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id?`: `string` ; `session_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_user_login_history_event"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_user_profiles`: \{ `Row`: \{ `created_at`: `string` ; `email`: `string` ; `full_name`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `email`: `string` ; `full_name?`: ``null`` \| `string` ; `id`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `email?`: `string` ; `full_name?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_profiles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_user_sessions`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `device_fingerprint`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: `unknown` ; `is_valid`: ``null`` \| `boolean` ; `metadata`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `session_type?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_sessions_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_internal_notes`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `description`: `string` ; `id`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description`: `string` ; `id?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description?`: `string` ; `id?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"internal_notes_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_internal_notes_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"team_organizational_units_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_accommodation`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `location_coords`: `Json` ; `location_display_name`: ``null`` \| `string` ; `location_place_id`: ``null`` \| `string` ; `location_short_address`: ``null`` \| `string` ; `location_timezone`: ``null`` \| `string` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time?`: `string` ; `check_out_time?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_accommodation_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_accommodation_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_activity`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords`: `Json` ; `finish_location_display_name`: ``null`` \| `string` ; `finish_location_place_id`: ``null`` \| `string` ; `finish_location_short_address`: ``null`` \| `string` ; `finish_location_timezone`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords`: `Json` ; `start_location_display_name`: ``null`` \| `string` ; `start_location_place_id`: ``null`` \| `string` ; `start_location_short_address`: ``null`` \| `string` ; `start_location_timezone`: ``null`` \| `string` ; `start_time`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_activity_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id?`: `string` ; `item_type?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_contacts`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `email_address`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `phone_number`: ``null`` \| `string` ; `role`: ``null`` \| `string` ; `surname`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id?`: `string` ; `first_name?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_contacts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_contacts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_currency_rates`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code?`: `string` ; `event_id?`: `string` ; `exchange_rate?`: `number` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_currency_rates_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_images`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `post_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_updated_by"`` ; `columns`: [``"updated_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_posts`: \{ `Row`: \{ `content`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `status`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `content`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at?`: `string` ; `updated_by`: `string` } ; `Update`: \{ `content?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title?`: `string` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `trac_location_cache`: \{ `Row`: \{ `city`: ``null`` \| `string` ; `coordinates`: `Json` ; `country`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `last_updated`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address`: ``null`` \| `string` ; `timezoneid`: ``null`` \| `string` } ; `Insert`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Update`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_location_cache_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_risks`: \{ `Row`: \{ `comment`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response`: ``null`` \| `string` ; `responsible_contact_id`: ``null`` \| `string` ; `risk`: `string` ; `status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Insert`: \{ `comment?`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Update`: \{ `comment?`: ``null`` \| `string` ; `consequence_after?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `impact_after?`: `number` ; `impact_before?`: `number` ; `likelihood_after?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id?`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk?`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type?`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when?`: ``"Prior"`` \| ``"During"`` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_risks_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_risks_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"trac_risks_responsible_contact_id_fkey"`` ; `columns`: [``"responsible_contact_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"trac_contacts"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_transport`: \{ `Row`: \{ `arrival_coords`: `Json` ; `arrival_display_name`: ``null`` \| `string` ; `arrival_place_id`: ``null`` \| `string` ; `arrival_short_address`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone`: ``null`` \| `string` ; `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `departure_coords`: `Json` ; `departure_display_name`: ``null`` \| `string` ; `departure_place_id`: ``null`` \| `string` ; `departure_short_address`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `mode`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `transport_number`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time?`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time?`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_transport_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } } ; `Views`: \{ `file_references_summary`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `file_count`: ``null`` \| `number` ; `private_count`: ``null`` \| `number` ; `public_count`: ``null`` \| `number` ; `table_name`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_organisation_memberships`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `is_primary`: ``null`` \| `boolean` ; `joined_at`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `core_field_list`: \{ `Row`: \{ `field_name`: `unknown` ; `field_type`: ``null`` \| `string` ; `is_nullable`: ``null`` \| `string` ; `ordinal_position`: ``null`` \| `number` ; `table_name`: `unknown` } ; `Relationships`: [] } ; `rbac_active_event_app_roles`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `role`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_active_organisation_roles`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `user_profiles`: \{ `Row`: \{ `avatar_url`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } } ; `Functions`: \{ `add_geo_columns_to_transport_tables`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `app_cake_delivery_upsert`: \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_create`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id`: `string` ; `p_diner_unit_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_update`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id?`: `string` ; `p_diner_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_create`: \{ `Args`: \{ `p_dish_code`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_event_id`: `string` ; `p_dish_mealtype_id`: `string` ; `p_dish_name`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_delete`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_update`: \{ `Args`: \{ `p_dish_code?`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_id`: `string` ; `p_dish_mealtype_id?`: `string` ; `p_dish_name?`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `item_id`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_create`: \{ `Args`: \{ `p_meal_code`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date`: `string` ; `p_meal_event_id`: `string` ; `p_meal_mealtype_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_delete`: \{ `Args`: \{ `p_meal_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_update`: \{ `Args`: \{ `p_meal_code?`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date?`: `string` ; `p_meal_id`: `string` ; `p_meal_mealtype_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_bulk_delete`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_unit_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `deleted_count`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_mealplan_create`: \{ `Args`: \{ `p_mealplan_dish_id`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_meal_id`: `string` ; `p_mealplan_unit_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_update`: \{ `Args`: \{ `p_mealplan_dish_id?`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_id`: `string` ; `p_mealplan_meal_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meals_bulk_import`: \{ `Args`: \{ `p_meals_data`: `Json` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_package_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `package_id`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_package_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id`: `string` ; `p_recipe_dish_id`: `string` ; `p_recipe_item_id`: `string` ; `p_recipe_qtypp`: `number` ; `p_recipe_uptake`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_delete`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_recipe_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id?`: `string` ; `p_recipe_id`: `string` ; `p_recipe_item_id?`: `string` ; `p_recipe_qtypp?`: `number` ; `p_recipe_uptake?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_create`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` ; `supply_id`: `string` }[] } \| \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_event_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `unit_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number?`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_units_bulk_import`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_units_data`: `Json` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_name`: \{ `Args`: `never` ; `Returns`: `string` } ; `cleanup_orphaned_file_references`: \{ `Args`: `never` ; `Returns`: `number` } ; `data_cake_deliveries_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `item_count`: `number` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_quantity`: `number` }[] } ; `data_cake_diettypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_diners_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids?`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dish_details`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dishes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_distribution_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `logistics_name`: `string` ; `meal_dates`: `string`[] ; `package_size`: `number` ; `packages_needed`: `number` ; `required_quantity`: `number` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` }[] } ; `data_cake_item_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `string` ; `item_diet_diabetic`: `string` ; `item_diet_eggfree`: `string` ; `item_diet_glutenfree`: `string` ; `item_diet_halal`: `string` ; `item_diet_kosher`: `string` ; `item_diet_lactosefree`: `string` ; `item_diet_lowfodmap`: `string` ; `item_diet_lowfructose`: `string` ; `item_diet_porkfree`: `string` ; `item_diet_redmeatfree`: `string` ; `item_diet_vegan`: `string` ; `item_diet_vegetarian`: `string` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_item_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_items_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealplans_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_dish_code`: `string` ; `dish_dish_id`: `string` ; `dish_dish_name`: `string` ; `meal_meal_code`: `string` ; `meal_meal_date`: `string` ; `meal_meal_event_id`: `string` ; `meal_mealtype_id`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_meals_get`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_cake_meals_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealtypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_orders_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_date`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `package_cost`: `number` ; `package_ctnpkgs`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_carton_cost`: `number` ; `total_cartons`: `number` ; `total_packages`: `number` ; `total_pkg_cost`: `number` }[] } ; `data_cake_package_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_package_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_packages_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_recipe_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_recipes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_suppliers_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supplies_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supply_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_units_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_event_get_by_code`: \{ `Args`: \{ `p_event_code`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_billing`: `string` ; `event_catering_email`: `string` ; `event_code`: `string` ; `event_col_d1`: `string` ; `event_col_d2`: `string` ; `event_col_l1`: `string` ; `event_col_l2`: `string` ; `event_col_m1`: `string` ; `event_col_m2`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_footer`: `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_by_category_list`: \{ `Args`: \{ `p_category`: `string` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_count_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `number` } ; `data_file_reference_create`: \{ `Args`: \{ `p_app_id`: `string` ; `p_file_metadata?`: `Json` ; `p_file_path`: `string` ; `p_is_public?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_delete`: \{ `Args`: \{ `p_delete_file?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `data_file_reference_get`: \{ `Args`: \{ `p_file_reference_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_list`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_signed_url_get`: \{ `Args`: \{ `p_expires_in?`: `number` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_url_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_user_events_get`: \{ `Args`: \{ `p_app_name?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_code`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_participants`: `number` ; `event_venue`: `string` ; `id`: `string` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_user_organisation_roles_get`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `id`: `string` ; `name`: `string` ; `notes`: `string` ; `organisation_id`: `string` ; `revoked_at`: `string` ; `revoked_by`: `string` ; `role`: `string` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` }[] } ; `data_user_organisations_get`: \{ `Args`: \{ `p_user_id?`: `string` } ; `Returns`: \{ `granted_at`: `string` ; `is_primary`: `boolean` ; `organisation_id`: `string` ; `organisation_name`: `string` ; `user_role`: `string` }[] } ; `debug_auth_context`: \{ `Args`: `never` ; `Returns`: `Json` } ; `delete_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `get_app_config`: \{ `Args`: \{ `app_id`: `string` } ; `Returns`: `Json` } ; `get_current_organisation_context`: \{ `Args`: `never` ; `Returns`: `string` } ; `get_file_url_for_record`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `string` } ; `get_files_to_migrate_to_public`: \{ `Args`: `never` ; `Returns`: \{ `file_id`: `string` ; `new_path`: `string` ; `old_path`: `string` ; `organisation_id`: `string` }[] } ; `get_medi_conditions`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `condition_type_id`: `number` ; `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `diagnosed_by`: `string` ; `diagnosed_date`: `string` ; `emergency_protocol`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `last_episode_date`: `string` ; `management_plan`: `string` ; `name`: `string` ; `notes`: `string` ; `profile_id`: `number` ; `reaction`: `string` ; `severity`: `string` ; `treatment`: `string` ; `triggers`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_medi_items`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `description`: `string` ; `dose`: `string` ; `end_date`: `string` ; `frequency`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `is_emergency_medication`: `boolean` ; `item_type_id`: `number` ; `name`: `string` ; `pharmacy_details`: `string` ; `prescribing_doctor`: `string` ; `profile_id`: `number` ; `route`: `string` ; `side_effects`: `string` ; `start_date`: `string` ; `storage_requirements`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_public_event_by_code`: \{ `Args`: \{ `event_code_param`: `string` } ; `Returns`: \{ `event_billing`: `string` ; `event_catering_email`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `organisation_id`: `string` }[] } ; `has_files`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `boolean` } ; `increment_attempts`: \{ `Args`: \{ `p_identifier`: `string` ; `p_window_minutes?`: `number` } ; `Returns`: \{ `current_attempts`: `number` ; `is_blocked`: `boolean` ; `window_start`: `string` }[] } ; `insert_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_created_by?`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_updated_by?`: `string` } ; `Returns`: `string` } ; `insert_journal_image`: \{ `Args`: \{ `p_created_by`: `string` ; `p_file_name`: `string` ; `p_file_path`: `string` ; `p_post_id`: `string` } ; `Returns`: `undefined` } ; `is_super_admin`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `is_user_super_admin`: \{ `Args`: `never` ; `Returns`: `boolean` } ; `populate_location_descriptions`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `populate_location_display_names`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `rbac_audit_log`: \{ `Args`: \{ `p_event_data?`: `Json` ; `p_event_type`: `string` ; `p_resource_id`: `string` ; `p_resource_type`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } \| \{ `Args`: \{ `p_event_type`: `string` ; `p_ip_address?`: `unknown` ; `p_metadata?`: `Json` ; `p_organisation_id?`: `string` ; `p_permission?`: `string` ; `p_user_agent?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } ; `rbac_check_distribution_or_page_permission`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_page_name`: `string` ; `p_permission_pattern`: `string` } ; `Returns`: `boolean` } ; `rbac_check_permission_simplified`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_permission`: `string` ; `p_user_id`: `string` } ; `Returns`: `boolean` } ; `rbac_detect_concurrent_sessions`: \{ `Args`: \{ `p_device_fingerprint?`: `string` ; `p_timeout_seconds?`: `number` ; `p_user_id`: `string` } ; `Returns`: \{ `concurrent_sessions_count`: `number` ; `has_concurrent`: `boolean` ; `session_ids`: `string`[] }[] } ; `rbac_enforce_session_timeout`: \{ `Args`: \{ `p_timeout_minutes?`: `number` } ; `Returns`: \{ `expired_sessions_count`: `number` ; `user_ids`: `string`[] }[] } ; `rbac_generate_device_fingerprint`: \{ `Args`: `never` ; `Returns`: `string` } ; `rbac_invalidate_other_sessions`: \{ `Args`: \{ `p_current_device_fingerprint`: `string` ; `p_user_id`: `string` } ; `Returns`: `number` } ; `rbac_permissions_get`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `has_permission`: `boolean` ; `permission_type`: `string` ; `role_name`: `string` }[] } ; `rbac_role_grant`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_granted_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `role_id`: `string` ; `success`: `boolean` }[] } ; `rbac_role_revoke`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_revoked_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `revoked_count`: `number` ; `success`: `boolean` }[] } ; `rbac_role_validate`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `expires_at`: `string` ; `granted_at`: `string` ; `is_valid`: `boolean` ; `role_id`: `string` ; `status`: `string` }[] } ; `rbac_roles_list`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `role_name`: `string` ; `role_type`: `string` ; `status`: `string` }[] } ; `rbac_session_track`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_device_fingerprint?`: `string` ; `p_event_id?`: `string` ; `p_ip_address?`: `string` ; `p_session_type?`: `string` ; `p_user_agent?`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } ; `rbac_super_admin_check`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `secure_query`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_select_columns`: `string` ; `p_table_name`: `string` ; `p_user_id`: `string` } ; `Returns`: `Json` } ; `set_app_organisation_id`: \{ `Args`: \{ `p_organisation_id`: `string` } ; `Returns`: `undefined` } ; `set_organisation_context`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `undefined` } ; `sys_audit_cleanup`: \{ `Args`: \{ `p_days_to_keep?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `rows_deleted`: `number` ; `success`: `boolean` }[] } ; `util_app_resolve`: \{ `Args`: \{ `p_app_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `app_name`: `string` ; `has_access`: `boolean` ; `is_active`: `boolean` }[] } ; `validate_base_question_options`: \{ `Args`: \{ `options`: `Json` ; `question_type`: `string` } ; `Returns`: `boolean` } ; `validate_organisation_access`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `boolean` } ; `verify_greenpay_signature`: \{ `Args`: \{ `payload`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } ; `verify_webhook_signature`: \{ `Args`: \{ `payload`: `string` ; `secret`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } } ; `Enums`: \{ `access_level`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"super"`` ; `crud_operation`: ``"create"`` \| ``"read"`` \| ``"update"`` \| ``"delete"`` ; `dd_mandate_status`: ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `journal_post_status`: ``"draft"`` \| ``"published"`` ; `organisation_role`: ``"org_admin"`` \| ``"member"`` \| ``"super_admin"`` \| ``"moderator"`` \| ``"admin"`` ; `pace_membership_status`: ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `payment_method_type`: ``"card"`` \| ``"bank"`` ; `rbac_event_app_role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `rbac_global_role`: ``"super_admin"`` ; `rbac_organisation_role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `risk_consequence`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `risk_likelihood`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `risk_status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `risk_type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `risk_when`: ``"Prior"`` \| ``"During"`` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` } ; `CompositeTypes`: {} }, \{ `PostgrestVersion`: ``"12.2.3 (519615d)"`` }\>
|
|
68
|
-
|
|
69
|
-
Supabase client without custom headers for Edge Function calls
|
|
70
|
-
|
|
71
|
-
#### Defined in
|
|
72
|
-
|
|
73
|
-
[packages/core/src/rbac/secureClient.ts:180](https://github.com/jmruthers/pace-core/blob/main/packages/core/src/rbac/secureClient.ts#L180)
|
|
74
|
-
|
|
75
|
-
___
|
|
76
|
-
|
|
77
|
-
### getOrganisationId
|
|
78
|
-
|
|
79
|
-
▸ **getOrganisationId**(): ``null`` \| `string`
|
|
80
|
-
|
|
81
|
-
Get the current organisation ID
|
|
82
|
-
|
|
83
|
-
#### Returns
|
|
84
|
-
|
|
85
|
-
``null`` \| `string`
|
|
86
|
-
|
|
87
|
-
#### Defined in
|
|
88
|
-
|
|
89
|
-
[packages/core/src/rbac/secureClient.ts:414](https://github.com/jmruthers/pace-core/blob/main/packages/core/src/rbac/secureClient.ts#L414)
|
|
90
|
-
|
|
91
|
-
___
|
|
92
|
-
|
|
93
|
-
### getEventId
|
|
94
|
-
|
|
95
|
-
▸ **getEventId**(): `undefined` \| `string`
|
|
96
|
-
|
|
97
|
-
Get the current event ID
|
|
98
|
-
|
|
99
|
-
#### Returns
|
|
100
|
-
|
|
101
|
-
`undefined` \| `string`
|
|
102
|
-
|
|
103
|
-
#### Defined in
|
|
104
|
-
|
|
105
|
-
[packages/core/src/rbac/secureClient.ts:421](https://github.com/jmruthers/pace-core/blob/main/packages/core/src/rbac/secureClient.ts#L421)
|
|
106
|
-
|
|
107
|
-
___
|
|
108
|
-
|
|
109
|
-
### getAppId
|
|
110
|
-
|
|
111
|
-
▸ **getAppId**(): `undefined` \| `string`
|
|
112
|
-
|
|
113
|
-
Get the current app ID
|
|
114
|
-
|
|
115
|
-
#### Returns
|
|
116
|
-
|
|
117
|
-
`undefined` \| `string`
|
|
118
|
-
|
|
119
|
-
#### Defined in
|
|
120
|
-
|
|
121
|
-
[packages/core/src/rbac/secureClient.ts:428](https://github.com/jmruthers/pace-core/blob/main/packages/core/src/rbac/secureClient.ts#L428)
|
|
122
|
-
|
|
123
|
-
___
|
|
124
|
-
|
|
125
|
-
### withContext
|
|
126
|
-
|
|
127
|
-
▸ **withContext**(`updates`): [`SecureSupabaseClient`](SecureSupabaseClient.md)
|
|
128
|
-
|
|
129
|
-
Create a new client with updated context
|
|
130
|
-
|
|
131
|
-
#### Parameters
|
|
132
|
-
|
|
133
|
-
| Name | Type |
|
|
134
|
-
| :------ | :------ |
|
|
135
|
-
| `updates` | `Object` |
|
|
136
|
-
| `updates.organisationId?` | ``null`` \| `string` |
|
|
137
|
-
| `updates.eventId?` | `string` |
|
|
138
|
-
| `updates.appId?` | `string` |
|
|
139
|
-
| `updates.isSuperAdmin?` | `boolean` |
|
|
140
|
-
|
|
141
|
-
#### Returns
|
|
142
|
-
|
|
143
|
-
[`SecureSupabaseClient`](SecureSupabaseClient.md)
|
|
144
|
-
|
|
145
|
-
#### Defined in
|
|
146
|
-
|
|
147
|
-
[packages/core/src/rbac/secureClient.ts:435](https://github.com/jmruthers/pace-core/blob/main/packages/core/src/rbac/secureClient.ts#L435)
|
|
148
|
-
|
|
149
|
-
___
|
|
150
|
-
|
|
151
|
-
### getClient
|
|
152
|
-
|
|
153
|
-
▸ **getClient**(): `default`\<`Database`, ``"public"``, ``"public"``, \{ `Tables`: \{ `addresses`: \{ `Row`: \{ `country`: ``null`` \| `string` ; `created_at`: `string` ; `full_address`: ``null`` \| `string` ; `id`: `string` ; `lat`: ``null`` \| `number` ; `lng`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode`: ``null`` \| `string` ; `route`: ``null`` \| `string` ; `state`: ``null`` \| `string` ; `street_number`: ``null`` \| `string` ; `suburb`: ``null`` \| `string` } ; `Insert`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Update`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"addresses_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `base_application`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status`: `string` ; `status_updated_at`: ``null`` \| `string` ; `status_updated_by`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_application_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"base_application_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"base_application_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `base_questions`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `depends_on_question_id`: ``null`` \| `string` ; `depends_on_value`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `is_sensitive`: `boolean` ; `label`: `string` ; `options`: `Json` ; `organisation_id`: `string` ; `question_group`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order`: `number` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` ; `visibility`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label`: `string` ; `options?`: `Json` ; `organisation_id`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label?`: `string` ; `options?`: `Json` ; `organisation_id?`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type?`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_questions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_delivery`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `delivery_address`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date?`: `string` ; `delivery_event_id?`: `string` ; `delivery_id?`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id?`: `string` ; `delivery_unitcollectiondate?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_delivery_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_event_id_fkey"`` ; `columns`: [``"delivery_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_supplier_id_fkey"`` ; `columns`: [``"delivery_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_diettype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code?`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id?`: `string` ; `diettype_name?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diettype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_diner`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diner_adult`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id?`: `string` ; `diner_id?`: `string` ; `diner_unit_id?`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diner_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"diner_diner_diettype_id_fkey"`` ; `columns`: [``"diner_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"diner_diner_unit_id_fkey"`` ; `columns`: [``"diner_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_dish`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description`: ``null`` \| `string` ; `dish_dietnote`: ``null`` \| `string` ; `dish_equipment`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: ``null`` \| `string` ; `dish_step1`: ``null`` \| `string` ; `dish_step2`: ``null`` \| `string` ; `dish_step3`: ``null`` \| `string` ; `dish_step4`: ``null`` \| `string` ; `dish_step5`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code?`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id?`: `string` ; `dish_id?`: `string` ; `dish_mealtype_id?`: `string` ; `dish_name?`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_dish_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"dish_dish_event_id_fkey"`` ; `columns`: [``"dish_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"dish_dish_mealtype_id_fkey"`` ; `columns`: [``"dish_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_item`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `item_brand`: ``null`` \| `string` ; `item_diet_dairyfree`: ``null`` \| `boolean` ; `item_diet_diabetic`: ``null`` \| `boolean` ; `item_diet_eggfree`: ``null`` \| `boolean` ; `item_diet_glutenfree`: ``null`` \| `boolean` ; `item_diet_halal`: ``null`` \| `boolean` ; `item_diet_kosher`: ``null`` \| `boolean` ; `item_diet_lactosefree`: ``null`` \| `boolean` ; `item_diet_lowfodmap`: ``null`` \| `boolean` ; `item_diet_lowfructose`: ``null`` \| `boolean` ; `item_diet_porkfree`: ``null`` \| `boolean` ; `item_diet_redmeatfree`: ``null`` \| `boolean` ; `item_diet_vegan`: ``null`` \| `boolean` ; `item_diet_vegetarian`: ``null`` \| `boolean` ; `item_distribution`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id?`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics?`: `number` ; `item_name?`: `string` ; `item_packageunit?`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_item_logistics"`` ; `columns`: [``"item_logistics"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_logistics"`` ; `referencedColumns`: [``"logistics_id"``] }] } ; `cake_logistics`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code?`: `string` ; `logistics_id?`: `number` ; `logistics_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_logistics_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_meal`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code?`: `string` ; `meal_collectiondate?`: `string` ; `meal_date?`: `string` ; `meal_event_id?`: `string` ; `meal_id?`: `string` ; `meal_mealtype_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_meal_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"meal_meal_event_id_fkey"`` ; `columns`: [``"meal_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"meal_meal_mealtype_id_fkey"`` ; `columns`: [``"meal_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_mealplan`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id?`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id?`: `string` ; `mealplan_meal_id?`: `string` ; `mealplan_unit_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealplan_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_dish_id_fkey"`` ; `columns`: [``"mealplan_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_meal_id_fkey"`` ; `columns`: [``"mealplan_meal_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_meal"`` ; `referencedColumns`: [``"meal_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_unit_id_fkey"`` ; `columns`: [``"mealplan_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_mealtype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id?`: `string` ; `mealtype_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealtype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_package`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id?`: `string` ; `package_itemid?`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size?`: `number` ; `package_type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_package_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"package_package_itemid_fkey"`` ; `columns`: [``"package_itemid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_recipe`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recipe_diettype_id?`: `string` ; `recipe_dish_id?`: `string` ; `recipe_id?`: `string` ; `recipe_item_id?`: `string` ; `recipe_qtypp?`: `number` ; `recipe_uptake?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_recipe_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"recipe_dish_id_fkey"`` ; `columns`: [``"recipe_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_diettype_id_fkey"`` ; `columns`: [``"recipe_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_item_id_fkey"`` ; `columns`: [``"recipe_item_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_supplier`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail`: ``null`` \| `string` ; `supplier_contactname`: ``null`` \| `string` ; `supplier_contactnumber`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id?`: `string` ; `supplier_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supplier_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_supply`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code`: ``null`` \| `string` ; `supply_cost`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id?`: `string` ; `supply_id?`: `string` ; `supply_packageid?`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supply_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"supply_supply_event_id_fkey"`` ; `columns`: [``"supply_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"supply_supply_packageid_fkey"`` ; `columns`: [``"supply_packageid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_package"`` ; `referencedColumns`: [``"package_id"``] }, \{ `foreignKeyName`: ``"supply_supply_supplier_id_fkey"`` ; `columns`: [``"supply_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id?`: `string` ; `unit_id?`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number?`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"unit_unit_event_id_fkey"`` ; `columns`: [``"unit_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_events`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_billing`: ``null`` \| `string` ; `event_catering_email`: ``null`` \| `string` ; `event_code`: ``null`` \| `string` ; `event_colours`: `Json` ; `event_date`: ``null`` \| `string` ; `event_days`: ``null`` \| `number` ; `event_email`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: ``null`` \| `string` ; `event_participants`: ``null`` \| `number` ; `event_rounddown`: ``null`` \| `number` ; `event_typicalunit`: ``null`` \| `number` ; `event_venue`: ``null`` \| `string` ; `event_youthmultiplier`: ``null`` \| `number` ; `is_visible`: ``null`` \| `boolean` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id?`: `string` ; `event_name?`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_event_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_app_access_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"event_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_file_references`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path?`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"file_references_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"file_references_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_context_types`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_contexts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_field_config`: \{ `Row`: \{ `admin_notes`: ``null`` \| `string` ; `category`: ``null`` \| `string` ; `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_order`: ``null`` \| `number` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_field_config_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_fields`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_options`: `Json` ; `field_description`: ``null`` \| `string` ; `field_label`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `is_required`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sort_order?`: `number` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_fields_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_fields_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_response_values`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `form_field_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `value_json`: `Json` ; `value_text`: ``null`` \| `string` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `response_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_response_values_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_form_field_id_fkey"`` ; `columns`: [``"form_field_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_fields"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_response_id_fkey"`` ; `columns`: [``"response_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_responses"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_responses`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `respondent_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `target_record_id`: ``null`` \| `string` ; `target_table`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_responses_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_responses_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }] } ; `core_forms`: \{ `Row`: \{ `allow_multiple_submissions`: ``null`` \| `boolean` ; `closes_at`: ``null`` \| `string` ; `confirmation_message`: ``null`` \| `string` ; `context_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `max_submissions`: ``null`` \| `number` ; `name`: `string` ; `opens_at`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name?`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_forms_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"forms_context_id_fkey"`` ; `columns`: [``"context_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_context_types"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_access_log`: \{ `Row`: \{ `access_type`: `string` ; `accessed_at`: `string` ; `accessed_by`: `string` ; `id`: `number` ; `ip_address`: `unknown` ; `justification`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `record_id`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` } ; `Insert`: \{ `access_type`: `string` ; `accessed_at?`: `string` ; `accessed_by`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Update`: \{ `access_type?`: `string` ; `accessed_at?`: `string` ; `accessed_by?`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_access_log_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_access_log_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_action_plan`: \{ `Row`: \{ `condition_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `number` ; `is_current`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by`: ``null`` \| `string` ; `reviewed_date`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received?`: `string` ; `description?`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `plan_type?`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_action_plan_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_action_plan_condition_id_fkey"`` ; `columns`: [``"condition_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition`: \{ `Row`: \{ `aid`: ``null`` \| `string` ; `alert_description`: ``null`` \| `string` ; `condition_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `custom_name`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `diagnosed_by`: ``null`` \| `string` ; `diagnosed_date`: ``null`` \| `string` ; `emergency_protocol`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `last_episode_date`: ``null`` \| `string` ; `management_plan`: ``null`` \| `string` ; `medical_alert`: ``null`` \| `boolean` ; `medication`: ``null`` \| `string` ; `name`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `reaction`: ``null`` \| `string` ; `severity`: ``null`` \| `string` ; `treatment`: ``null`` \| `string` ; `triggers`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_condition_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_condition_type_id_fkey"`` ; `columns`: [``"condition_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"medi_condition_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_condition_types_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_diet`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_id`: ``null`` \| `string` ; `id`: `number` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description`: ``null`` \| `string` ; `profile_id`: ``null`` \| `number` ; `severity`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_diet_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_diet_diettype_id_fkey"`` ; `columns`: [``"diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"medi_diet_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile`: \{ `Row`: \{ `access_count`: ``null`` \| `number` ; `carer_name`: ``null`` \| `string` ; `consent_date`: ``null`` \| `string` ; `consent_given`: ``null`` \| `boolean` ; `consent_withdrawn_date`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `data_retention_until`: ``null`` \| `string` ; `dietary_comments`: ``null`` \| `string` ; `has_carer`: ``null`` \| `boolean` ; `has_dietary_requirements`: ``null`` \| `boolean` ; `health_care_card_expiry`: ``null`` \| `string` ; `health_care_card_number`: ``null`` \| `string` ; `health_fund_name`: ``null`` \| `string` ; `health_fund_number`: ``null`` \| `string` ; `health_satisfactory`: ``null`` \| `boolean` ; `id`: `number` ; `is_fully_immunised`: ``null`` \| `boolean` ; `last_accessed_at`: ``null`` \| `string` ; `last_accessed_by`: ``null`` \| `string` ; `last_tetanus_date`: ``null`` \| `string` ; `medicare_expiry`: ``null`` \| `string` ; `medicare_number`: ``null`` \| `string` ; `member_id`: ``null`` \| `string` ; `menu_selection`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support`: ``null`` \| `boolean` ; `support_details`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile_versions`: \{ `Row`: \{ `change_reason`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id`: `number` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `version_number`: `number` } ; `Insert`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id?`: `number` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number`: `number` } ; `Update`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `data_snapshot?`: `Json` ; `id?`: `number` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number?`: `number` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_versions_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_versions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_action_log`: \{ `Row`: \{ `action`: `string` ; `amount_minor`: ``null`` \| `number` ; `created_at`: `string` ; `gateway_ref`: ``null`` \| `string` ; `id`: `string` ; `invoice_id`: `string` ; `meta`: `Json` ; `reason`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id?`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_action_log_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }] } ; `mint_audit_log`: \{ `Row`: \{ `created_at`: `string` ; `details`: `Json` ; `event_type`: `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type?`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_credit_balance`: \{ `Row`: \{ `amount`: `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `credit_id`: `string` ; `expires_at`: ``null`` \| `string` ; `invoice_id`: ``null`` \| `string` ; `is_used`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `used_at`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `reason?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"credit_balance_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"credit_balance_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_dd_mandate_log`: \{ `Row`: \{ `created_at`: `string` ; `event`: `string` ; `id`: `string` ; `payload`: `Json` ; `payment_method_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `event`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `event?`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_dd_mandate_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_idempotency`: \{ `Row`: \{ `first_request_at`: `string` ; `id`: `string` ; `idempotency_key`: `string` ; `last_response`: `Json` ; `scope`: `string` ; `status`: `string` } ; `Insert`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status`: `string` } ; `Update`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key?`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status?`: `string` } ; `Relationships`: [] } ; `mint_invoice`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `greenpay_transaction_id`: ``null`` \| `string` ; `invoice_id`: `string` ; `issued_at`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin?`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app?`: `string` ; `source_origin?`: ``null`` \| `string` ; `status?`: `string` ; `total_amount?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"invoice_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_line_item`: \{ `Row`: \{ `amount`: `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at`: ``null`` \| `string` ; `fulfillment_status`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id`: `string` ; `org_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info`: `Json` ; `source_app`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info?`: `Json` ; `source_app`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `item_type?`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `proration_info?`: `Json` ; `source_app?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"line_item_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"line_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_mit_consent_log`: \{ `Row`: \{ `consent_text`: ``null`` \| `string` ; `created_at`: `string` ; `id`: `string` ; `invoice_id`: ``null`` \| `string` ; `ip`: `unknown` ; `member_id`: `string` ; `payment_method_id`: ``null`` \| `string` ; `terms_version`: ``null`` \| `string` ; `ua`: ``null`` \| `string` } ; `Insert`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Update`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id?`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_mit_consent_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_payment_method`: \{ `Row`: \{ `bank_account_bsb`: ``null`` \| `string` ; `bank_account_last4`: ``null`` \| `string` ; `bank_account_name`: ``null`` \| `string` ; `brand`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dd_mandate_id`: ``null`` \| `string` ; `dd_mandate_status`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent`: `boolean` ; `mit_consent_at`: ``null`` \| `string` ; `mit_consent_ip`: `unknown` ; `mit_consent_terms_version`: ``null`` \| `string` ; `mit_consent_text`: ``null`` \| `string` ; `mit_consent_ua`: ``null`` \| `string` ; `mit_initial_cit_at`: ``null`` \| `string` ; `mit_initial_cit_txn_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id`: `string` ; `type`: ``"card"`` \| ``"bank"`` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_status`: `string` } ; `Insert`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default?`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Update`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token?`: `string` ; `is_default?`: `boolean` ; `last_four_digits?`: `string` ; `member_id?`: `string` ; `method_type?`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"payment_method_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_security_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: ``null`` \| `string` ; `details`: `Json` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `record_id`: ``null`` \| `string` ; `table_name`: ``null`` \| `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_webhook_log`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `event_type`: `string` ; `headers`: `Json` ; `invoice_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at`: ``null`` \| `string` ; `processing_error`: ``null`` \| `string` ; `source`: `string` ; `status`: `string` ; `transaction_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `webhook_log_id`: `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `event_type`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `event_type?`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payload?`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status?`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"webhook_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `note_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `mime_type`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id?`: `string` ; `organisation_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"note_attachments_note_id_fkey"`` ; `columns`: [``"note_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_internal_notes"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"note_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings`: `Json` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_app_access_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"organisation_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_audit_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: `string` ; `entity_id`: ``null`` \| `string` ; `entity_type`: `string` ; `id`: `string` ; `ip_address`: `unknown` ; `new_values`: `Json` ; `old_values`: `Json` ; `organisation_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type?`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_audit_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_invitations`: \{ `Row`: \{ `accepted_at`: ``null`` \| `string` ; `created_at`: `string` ; `email`: `string` ; `expires_at`: `string` ; `id`: `string` ; `invited_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `role`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email?`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_invitations_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_settings`: \{ `Row`: \{ `address`: `Json` ; `contact_email`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `custom_css`: ``null`` \| `string` ; `date_format`: ``null`` \| `string` ; `email_templates`: `Json` ; `joining_fee`: ``null`` \| `number` ; `language`: ``null`` \| `string` ; `notification_settings`: `Json` ; `organisation_id`: `string` ; `phone`: ``null`` \| `string` ; `primary_color`: ``null`` \| `string` ; `recurring_fee`: ``null`` \| `number` ; `secondary_color`: ``null`` \| `string` ; `timezone`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id?`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_settings_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisations`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id`: ``null`` \| `string` ; `settings`: `Json` ; `subscription_tier`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisations_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent`: \{ `Row`: \{ `consent_type_id`: `number` ; `created_at`: ``null`` \| `string` ; `date_given`: ``null`` \| `string` ; `date_revoked`: ``null`` \| `string` ; `given`: `boolean` ; `id`: `string` ; `member_id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `consent_type_id`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given`: `boolean` ; `id?`: `string` ; `member_id`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `consent_type_id?`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given?`: `boolean` ; `id?`: `string` ; `member_id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"consents_consent_type_id_fkey"`` ; `columns`: [``"consent_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_consent_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"consents_member_id_fkey1"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_consent_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent_type`: \{ `Row`: \{ `active`: ``null`` \| `boolean` ; `category`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key?`: `string` ; `label?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_consent_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact`: \{ `Row`: \{ `contact_person_id`: ``null`` \| `string` ; `contact_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_contact_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_related_person_id_fkey"`` ; `columns`: [``"contact_person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_relationship_type_id_fkey"`` ; `columns`: [``"contact_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_contact_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_permissions_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_contact_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_gender_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_gender_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `document_number`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `identification_type_id`: ``null`` \| `number` ; `issue_city`: ``null`` \| `string` ; `issue_country`: ``null`` \| `string` ; `issue_date`: ``null`` \| `string` ; `issue_state`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_identification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_identification_type_id"`` ; `columns`: [``"identification_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_identification_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_identification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_identification_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member`: \{ `Row`: \{ `address_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_of_birth`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `gender_id`: ``null`` \| `number` ; `id`: `string` ; `membership_number`: ``null`` \| `string` ; `membership_status`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `postal_address`: ``null`` \| `string` ; `pronoun_id`: ``null`` \| `number` ; `residential_address`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_gender_id_fkey"`` ; `columns`: [``"gender_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_gender_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_membership_type_id_fkey"`` ; `columns`: [``"membership_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_membership_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_pronoun_id_fkey"`` ; `columns`: [``"pronoun_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_pronoun_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member_role`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `end_date`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date?`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_role_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_role_id_fkey"`` ; `columns`: [``"role_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_role_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_member_roles_unit_id_fkey"`` ; `columns`: [``"unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }] } ; `core_membership_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `max_age`: ``null`` \| `number` ; `min_age`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_membership_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_merchandise`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `color`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `price`: ``null`` \| `number` ; `size`: ``null`` \| `string` ; `sku`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_merchandise_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `core_person`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `first_name`: `string` ; `id`: `string` ; `last_name`: `string` ; `middle_name`: ``null`` \| `string` ; `preferred_name`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name`: `string` ; `id?`: `string` ; `last_name`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name?`: `string` ; `id?`: `string` ; `last_name?`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_phone`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number?`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_phone_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_contact_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_phone_type_id_fkey"`` ; `columns`: [``"phone_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_phone_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_phone_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_phone_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_pronoun_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_pronoun_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_qualification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `credential_id`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `institution`: ``null`` \| `string` ; `issued_date`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `title?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_qualification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_qualification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_role_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_role_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `public_rate_limits`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `requests`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_log`: \{ `Row`: \{ `body`: `string` ; `clicks`: ``null`` \| `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `from_address`: ``null`` \| `string` ; `id`: `string` ; `opens`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address`: ``null`` \| `string` ; `response_metadata`: `Json` ; `scheduled_at`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at`: ``null`` \| `string` ; `status`: `string` ; `subject`: ``null`` \| `string` ; `template_slug`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `recipients?`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id?`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_template`: \{ `Row`: \{ `body`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `subject?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_org_settings`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `default_from_address`: ``null`` \| `string` ; `default_reply_to_address`: ``null`` \| `string` ; `email_footer_html`: ``null`` \| `string` ; `email_header_html`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `sms_from_number`: ``null`` \| `string` ; `sms_messaging_service_sid`: ``null`` \| `string` ; `sms_opt_out_footer`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_scheduled_jobs`: \{ `Row`: \{ `attempts`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at`: `string` ; `id`: `string` ; `last_error`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id?`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for?`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pump_scheduled_jobs_comms_log_id_fkey"`` ; `columns`: [``"comms_log_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"pump_comms_log"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_app_pages`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `page_description`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_app_pages_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_apps`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event`: ``null`` \| `boolean` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_apps_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_audit_events`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `bypass`: ``null`` \| `boolean` ; `created_at`: ``null`` \| `string` ; `decision`: ``null`` \| `boolean` ; `duration_ms`: ``null`` \| `number` ; `event_id`: ``null`` \| `string` ; `event_type`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `page_id`: ``null`` \| `string` ; `permission`: ``null`` \| `string` ; `source`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_audit_events_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_auth_attempts`: \{ `Row`: \{ `attempt_time`: ``null`` \| `string` ; `attempts`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_auth_attempts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_event_app_roles`: \{ `Row`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `event_id?`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_function_backup`: \{ `Row`: \{ `backup_reason`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id`: `string` } ; `Insert`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id?`: `string` } ; `Update`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition?`: `string` ; `function_name?`: `string` ; `id?`: `string` } ; `Relationships`: [] } ; `rbac_global_roles`: \{ `Row`: \{ `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"super_admin"`` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_global_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_organisation_roles`: \{ `Row`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_page_permissions`: \{ `Row`: \{ `allowed`: `boolean` ; `app_page_id`: `string` ; `created_at`: ``null`` \| `string` ; `id`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `allowed?`: `boolean` ; `app_page_id`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `allowed?`: `boolean` ; `app_page_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation?`: `string` ; `organisation_id?`: `string` ; `role_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_page_permissions_app_page_id"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_app_page_id_fkey"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_policy_audit`: \{ `Row`: \{ `action`: `string` ; `changed_at`: ``null`` \| `string` ; `changed_by`: ``null`` \| `string` ; `error_message`: ``null`` \| `string` ; `id`: `string` ; `new_policy_sql`: ``null`` \| `string` ; `old_policy_sql`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success`: `boolean` ; `table_name`: `string` } ; `Insert`: \{ `action`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success?`: `boolean` ; `table_name`: `string` } ; `Update`: \{ `action?`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation?`: `string` ; `policy_name?`: `string` ; `success?`: `boolean` ; `table_name?`: `string` } ; `Relationships`: [] } ; `rbac_policy_configs`: \{ `Row`: \{ `app_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_column`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `operations`: `string`[] ; `organisation_column`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `rbac_user_login_history`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `email`: `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `login_timestamp`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `email`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `email?`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id?`: `string` ; `session_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_user_login_history_event"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_user_profiles`: \{ `Row`: \{ `created_at`: `string` ; `email`: `string` ; `full_name`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `email`: `string` ; `full_name?`: ``null`` \| `string` ; `id`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `email?`: `string` ; `full_name?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_profiles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_user_sessions`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `device_fingerprint`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: `unknown` ; `is_valid`: ``null`` \| `boolean` ; `metadata`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `session_type?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_sessions_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_internal_notes`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `description`: `string` ; `id`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description`: `string` ; `id?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description?`: `string` ; `id?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"internal_notes_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_internal_notes_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"team_organizational_units_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_accommodation`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `location_coords`: `Json` ; `location_display_name`: ``null`` \| `string` ; `location_place_id`: ``null`` \| `string` ; `location_short_address`: ``null`` \| `string` ; `location_timezone`: ``null`` \| `string` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time?`: `string` ; `check_out_time?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_accommodation_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_accommodation_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_activity`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords`: `Json` ; `finish_location_display_name`: ``null`` \| `string` ; `finish_location_place_id`: ``null`` \| `string` ; `finish_location_short_address`: ``null`` \| `string` ; `finish_location_timezone`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords`: `Json` ; `start_location_display_name`: ``null`` \| `string` ; `start_location_place_id`: ``null`` \| `string` ; `start_location_short_address`: ``null`` \| `string` ; `start_location_timezone`: ``null`` \| `string` ; `start_time`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_activity_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id?`: `string` ; `item_type?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_contacts`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `email_address`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `phone_number`: ``null`` \| `string` ; `role`: ``null`` \| `string` ; `surname`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id?`: `string` ; `first_name?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_contacts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_contacts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_currency_rates`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code?`: `string` ; `event_id?`: `string` ; `exchange_rate?`: `number` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_currency_rates_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_images`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `post_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_updated_by"`` ; `columns`: [``"updated_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_posts`: \{ `Row`: \{ `content`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `status`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `content`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at?`: `string` ; `updated_by`: `string` } ; `Update`: \{ `content?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title?`: `string` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `trac_location_cache`: \{ `Row`: \{ `city`: ``null`` \| `string` ; `coordinates`: `Json` ; `country`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `last_updated`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address`: ``null`` \| `string` ; `timezoneid`: ``null`` \| `string` } ; `Insert`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Update`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_location_cache_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_risks`: \{ `Row`: \{ `comment`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response`: ``null`` \| `string` ; `responsible_contact_id`: ``null`` \| `string` ; `risk`: `string` ; `status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Insert`: \{ `comment?`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Update`: \{ `comment?`: ``null`` \| `string` ; `consequence_after?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `impact_after?`: `number` ; `impact_before?`: `number` ; `likelihood_after?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id?`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk?`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type?`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when?`: ``"Prior"`` \| ``"During"`` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_risks_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_risks_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"trac_risks_responsible_contact_id_fkey"`` ; `columns`: [``"responsible_contact_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"trac_contacts"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_transport`: \{ `Row`: \{ `arrival_coords`: `Json` ; `arrival_display_name`: ``null`` \| `string` ; `arrival_place_id`: ``null`` \| `string` ; `arrival_short_address`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone`: ``null`` \| `string` ; `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `departure_coords`: `Json` ; `departure_display_name`: ``null`` \| `string` ; `departure_place_id`: ``null`` \| `string` ; `departure_short_address`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `mode`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `transport_number`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time?`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time?`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_transport_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } } ; `Views`: \{ `file_references_summary`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `file_count`: ``null`` \| `number` ; `private_count`: ``null`` \| `number` ; `public_count`: ``null`` \| `number` ; `table_name`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_organisation_memberships`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `is_primary`: ``null`` \| `boolean` ; `joined_at`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `core_field_list`: \{ `Row`: \{ `field_name`: `unknown` ; `field_type`: ``null`` \| `string` ; `is_nullable`: ``null`` \| `string` ; `ordinal_position`: ``null`` \| `number` ; `table_name`: `unknown` } ; `Relationships`: [] } ; `rbac_active_event_app_roles`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `role`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_active_organisation_roles`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `user_profiles`: \{ `Row`: \{ `avatar_url`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } } ; `Functions`: \{ `add_geo_columns_to_transport_tables`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `app_cake_delivery_upsert`: \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_create`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id`: `string` ; `p_diner_unit_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_update`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id?`: `string` ; `p_diner_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_create`: \{ `Args`: \{ `p_dish_code`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_event_id`: `string` ; `p_dish_mealtype_id`: `string` ; `p_dish_name`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_delete`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_update`: \{ `Args`: \{ `p_dish_code?`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_id`: `string` ; `p_dish_mealtype_id?`: `string` ; `p_dish_name?`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `item_id`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_create`: \{ `Args`: \{ `p_meal_code`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date`: `string` ; `p_meal_event_id`: `string` ; `p_meal_mealtype_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_delete`: \{ `Args`: \{ `p_meal_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_update`: \{ `Args`: \{ `p_meal_code?`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date?`: `string` ; `p_meal_id`: `string` ; `p_meal_mealtype_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_bulk_delete`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_unit_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `deleted_count`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_mealplan_create`: \{ `Args`: \{ `p_mealplan_dish_id`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_meal_id`: `string` ; `p_mealplan_unit_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_update`: \{ `Args`: \{ `p_mealplan_dish_id?`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_id`: `string` ; `p_mealplan_meal_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meals_bulk_import`: \{ `Args`: \{ `p_meals_data`: `Json` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_package_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `package_id`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_package_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id`: `string` ; `p_recipe_dish_id`: `string` ; `p_recipe_item_id`: `string` ; `p_recipe_qtypp`: `number` ; `p_recipe_uptake`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_delete`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_recipe_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id?`: `string` ; `p_recipe_id`: `string` ; `p_recipe_item_id?`: `string` ; `p_recipe_qtypp?`: `number` ; `p_recipe_uptake?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_create`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` ; `supply_id`: `string` }[] } \| \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_event_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `unit_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number?`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_units_bulk_import`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_units_data`: `Json` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_name`: \{ `Args`: `never` ; `Returns`: `string` } ; `cleanup_orphaned_file_references`: \{ `Args`: `never` ; `Returns`: `number` } ; `data_cake_deliveries_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `item_count`: `number` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_quantity`: `number` }[] } ; `data_cake_diettypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_diners_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids?`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dish_details`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dishes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_distribution_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `logistics_name`: `string` ; `meal_dates`: `string`[] ; `package_size`: `number` ; `packages_needed`: `number` ; `required_quantity`: `number` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` }[] } ; `data_cake_item_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `string` ; `item_diet_diabetic`: `string` ; `item_diet_eggfree`: `string` ; `item_diet_glutenfree`: `string` ; `item_diet_halal`: `string` ; `item_diet_kosher`: `string` ; `item_diet_lactosefree`: `string` ; `item_diet_lowfodmap`: `string` ; `item_diet_lowfructose`: `string` ; `item_diet_porkfree`: `string` ; `item_diet_redmeatfree`: `string` ; `item_diet_vegan`: `string` ; `item_diet_vegetarian`: `string` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_item_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_items_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealplans_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_dish_code`: `string` ; `dish_dish_id`: `string` ; `dish_dish_name`: `string` ; `meal_meal_code`: `string` ; `meal_meal_date`: `string` ; `meal_meal_event_id`: `string` ; `meal_mealtype_id`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_meals_get`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_cake_meals_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealtypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_orders_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_date`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `package_cost`: `number` ; `package_ctnpkgs`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_carton_cost`: `number` ; `total_cartons`: `number` ; `total_packages`: `number` ; `total_pkg_cost`: `number` }[] } ; `data_cake_package_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_package_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_packages_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_recipe_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_recipes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_suppliers_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supplies_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supply_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_units_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_event_get_by_code`: \{ `Args`: \{ `p_event_code`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_billing`: `string` ; `event_catering_email`: `string` ; `event_code`: `string` ; `event_col_d1`: `string` ; `event_col_d2`: `string` ; `event_col_l1`: `string` ; `event_col_l2`: `string` ; `event_col_m1`: `string` ; `event_col_m2`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_footer`: `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_by_category_list`: \{ `Args`: \{ `p_category`: `string` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_count_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `number` } ; `data_file_reference_create`: \{ `Args`: \{ `p_app_id`: `string` ; `p_file_metadata?`: `Json` ; `p_file_path`: `string` ; `p_is_public?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_delete`: \{ `Args`: \{ `p_delete_file?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `data_file_reference_get`: \{ `Args`: \{ `p_file_reference_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_list`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_signed_url_get`: \{ `Args`: \{ `p_expires_in?`: `number` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_url_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_user_events_get`: \{ `Args`: \{ `p_app_name?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_code`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_participants`: `number` ; `event_venue`: `string` ; `id`: `string` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_user_organisation_roles_get`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `id`: `string` ; `name`: `string` ; `notes`: `string` ; `organisation_id`: `string` ; `revoked_at`: `string` ; `revoked_by`: `string` ; `role`: `string` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` }[] } ; `data_user_organisations_get`: \{ `Args`: \{ `p_user_id?`: `string` } ; `Returns`: \{ `granted_at`: `string` ; `is_primary`: `boolean` ; `organisation_id`: `string` ; `organisation_name`: `string` ; `user_role`: `string` }[] } ; `debug_auth_context`: \{ `Args`: `never` ; `Returns`: `Json` } ; `delete_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `get_app_config`: \{ `Args`: \{ `app_id`: `string` } ; `Returns`: `Json` } ; `get_current_organisation_context`: \{ `Args`: `never` ; `Returns`: `string` } ; `get_file_url_for_record`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `string` } ; `get_files_to_migrate_to_public`: \{ `Args`: `never` ; `Returns`: \{ `file_id`: `string` ; `new_path`: `string` ; `old_path`: `string` ; `organisation_id`: `string` }[] } ; `get_medi_conditions`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `condition_type_id`: `number` ; `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `diagnosed_by`: `string` ; `diagnosed_date`: `string` ; `emergency_protocol`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `last_episode_date`: `string` ; `management_plan`: `string` ; `name`: `string` ; `notes`: `string` ; `profile_id`: `number` ; `reaction`: `string` ; `severity`: `string` ; `treatment`: `string` ; `triggers`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_medi_items`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `description`: `string` ; `dose`: `string` ; `end_date`: `string` ; `frequency`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `is_emergency_medication`: `boolean` ; `item_type_id`: `number` ; `name`: `string` ; `pharmacy_details`: `string` ; `prescribing_doctor`: `string` ; `profile_id`: `number` ; `route`: `string` ; `side_effects`: `string` ; `start_date`: `string` ; `storage_requirements`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_public_event_by_code`: \{ `Args`: \{ `event_code_param`: `string` } ; `Returns`: \{ `event_billing`: `string` ; `event_catering_email`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `organisation_id`: `string` }[] } ; `has_files`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `boolean` } ; `increment_attempts`: \{ `Args`: \{ `p_identifier`: `string` ; `p_window_minutes?`: `number` } ; `Returns`: \{ `current_attempts`: `number` ; `is_blocked`: `boolean` ; `window_start`: `string` }[] } ; `insert_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_created_by?`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_updated_by?`: `string` } ; `Returns`: `string` } ; `insert_journal_image`: \{ `Args`: \{ `p_created_by`: `string` ; `p_file_name`: `string` ; `p_file_path`: `string` ; `p_post_id`: `string` } ; `Returns`: `undefined` } ; `is_super_admin`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `is_user_super_admin`: \{ `Args`: `never` ; `Returns`: `boolean` } ; `populate_location_descriptions`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `populate_location_display_names`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `rbac_audit_log`: \{ `Args`: \{ `p_event_data?`: `Json` ; `p_event_type`: `string` ; `p_resource_id`: `string` ; `p_resource_type`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } \| \{ `Args`: \{ `p_event_type`: `string` ; `p_ip_address?`: `unknown` ; `p_metadata?`: `Json` ; `p_organisation_id?`: `string` ; `p_permission?`: `string` ; `p_user_agent?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } ; `rbac_check_distribution_or_page_permission`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_page_name`: `string` ; `p_permission_pattern`: `string` } ; `Returns`: `boolean` } ; `rbac_check_permission_simplified`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_permission`: `string` ; `p_user_id`: `string` } ; `Returns`: `boolean` } ; `rbac_detect_concurrent_sessions`: \{ `Args`: \{ `p_device_fingerprint?`: `string` ; `p_timeout_seconds?`: `number` ; `p_user_id`: `string` } ; `Returns`: \{ `concurrent_sessions_count`: `number` ; `has_concurrent`: `boolean` ; `session_ids`: `string`[] }[] } ; `rbac_enforce_session_timeout`: \{ `Args`: \{ `p_timeout_minutes?`: `number` } ; `Returns`: \{ `expired_sessions_count`: `number` ; `user_ids`: `string`[] }[] } ; `rbac_generate_device_fingerprint`: \{ `Args`: `never` ; `Returns`: `string` } ; `rbac_invalidate_other_sessions`: \{ `Args`: \{ `p_current_device_fingerprint`: `string` ; `p_user_id`: `string` } ; `Returns`: `number` } ; `rbac_permissions_get`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `has_permission`: `boolean` ; `permission_type`: `string` ; `role_name`: `string` }[] } ; `rbac_role_grant`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_granted_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `role_id`: `string` ; `success`: `boolean` }[] } ; `rbac_role_revoke`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_revoked_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `revoked_count`: `number` ; `success`: `boolean` }[] } ; `rbac_role_validate`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `expires_at`: `string` ; `granted_at`: `string` ; `is_valid`: `boolean` ; `role_id`: `string` ; `status`: `string` }[] } ; `rbac_roles_list`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `role_name`: `string` ; `role_type`: `string` ; `status`: `string` }[] } ; `rbac_session_track`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_device_fingerprint?`: `string` ; `p_event_id?`: `string` ; `p_ip_address?`: `string` ; `p_session_type?`: `string` ; `p_user_agent?`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } ; `rbac_super_admin_check`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `secure_query`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_select_columns`: `string` ; `p_table_name`: `string` ; `p_user_id`: `string` } ; `Returns`: `Json` } ; `set_app_organisation_id`: \{ `Args`: \{ `p_organisation_id`: `string` } ; `Returns`: `undefined` } ; `set_organisation_context`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `undefined` } ; `sys_audit_cleanup`: \{ `Args`: \{ `p_days_to_keep?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `rows_deleted`: `number` ; `success`: `boolean` }[] } ; `util_app_resolve`: \{ `Args`: \{ `p_app_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `app_name`: `string` ; `has_access`: `boolean` ; `is_active`: `boolean` }[] } ; `validate_base_question_options`: \{ `Args`: \{ `options`: `Json` ; `question_type`: `string` } ; `Returns`: `boolean` } ; `validate_organisation_access`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `boolean` } ; `verify_greenpay_signature`: \{ `Args`: \{ `payload`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } ; `verify_webhook_signature`: \{ `Args`: \{ `payload`: `string` ; `secret`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } } ; `Enums`: \{ `access_level`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"super"`` ; `crud_operation`: ``"create"`` \| ``"read"`` \| ``"update"`` \| ``"delete"`` ; `dd_mandate_status`: ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `journal_post_status`: ``"draft"`` \| ``"published"`` ; `organisation_role`: ``"org_admin"`` \| ``"member"`` \| ``"super_admin"`` \| ``"moderator"`` \| ``"admin"`` ; `pace_membership_status`: ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `payment_method_type`: ``"card"`` \| ``"bank"`` ; `rbac_event_app_role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `rbac_global_role`: ``"super_admin"`` ; `rbac_organisation_role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `risk_consequence`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `risk_likelihood`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `risk_status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `risk_type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `risk_when`: ``"Prior"`` \| ``"During"`` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` } ; `CompositeTypes`: {} }, \{ `PostgrestVersion`: ``"12.2.3 (519615d)"`` }\>
|
|
154
|
-
|
|
155
|
-
Get the underlying Supabase client (for internal use only)
|
|
156
|
-
|
|
157
|
-
#### Returns
|
|
158
|
-
|
|
159
|
-
`default`\<`Database`, ``"public"``, ``"public"``, \{ `Tables`: \{ `addresses`: \{ `Row`: \{ `country`: ``null`` \| `string` ; `created_at`: `string` ; `full_address`: ``null`` \| `string` ; `id`: `string` ; `lat`: ``null`` \| `number` ; `lng`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode`: ``null`` \| `string` ; `route`: ``null`` \| `string` ; `state`: ``null`` \| `string` ; `street_number`: ``null`` \| `string` ; `suburb`: ``null`` \| `string` } ; `Insert`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id`: `string` ; `place_id`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Update`: \{ `country?`: ``null`` \| `string` ; `created_at?`: `string` ; `full_address?`: ``null`` \| `string` ; `id?`: `string` ; `lat?`: ``null`` \| `number` ; `lng?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `postcode?`: ``null`` \| `string` ; `route?`: ``null`` \| `string` ; `state?`: ``null`` \| `string` ; `street_number?`: ``null`` \| `string` ; `suburb?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"addresses_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `base_application`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status`: `string` ; `status_updated_at`: ``null`` \| `string` ; `status_updated_by`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: `string` ; `status?`: `string` ; `status_updated_at?`: ``null`` \| `string` ; `status_updated_by?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_application_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"base_application_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"base_application_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `base_questions`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `depends_on_question_id`: ``null`` \| `string` ; `depends_on_value`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `is_sensitive`: `boolean` ; `label`: `string` ; `options`: `Json` ; `organisation_id`: `string` ; `question_group`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order`: `number` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` ; `visibility`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label`: `string` ; `options?`: `Json` ; `organisation_id`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `depends_on_question_id?`: ``null`` \| `string` ; `depends_on_value?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `is_sensitive?`: `boolean` ; `label?`: `string` ; `options?`: `Json` ; `organisation_id?`: `string` ; `question_group?`: ``null`` \| `string` ; `question_type?`: `string` ; `sort_order?`: `number` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` ; `visibility?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"base_questions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_delivery`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `delivery_address`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `delivery_address?`: ``null`` \| `string` ; `delivery_date?`: `string` ; `delivery_event_id?`: `string` ; `delivery_id?`: `string` ; `delivery_notes?`: ``null`` \| `string` ; `delivery_supplier_id?`: `string` ; `delivery_unitcollectiondate?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_delivery_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_event_id_fkey"`` ; `columns`: [``"delivery_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"delivery_delivery_supplier_id_fkey"`` ; `columns`: [``"delivery_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_diettype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_code?`: `string` ; `diettype_description?`: ``null`` \| `string` ; `diettype_id?`: `string` ; `diettype_name?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diettype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_diner`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diner_adult`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diner_adult?`: ``null`` \| `number` ; `diner_diettype_id?`: `string` ; `diner_id?`: `string` ; `diner_unit_id?`: `string` ; `diner_youth?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_diner_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"diner_diner_diettype_id_fkey"`` ; `columns`: [``"diner_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"diner_diner_unit_id_fkey"`` ; `columns`: [``"diner_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_dish`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description`: ``null`` \| `string` ; `dish_dietnote`: ``null`` \| `string` ; `dish_equipment`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: ``null`` \| `string` ; `dish_step1`: ``null`` \| `string` ; `dish_step2`: ``null`` \| `string` ; `dish_step3`: ``null`` \| `string` ; `dish_step4`: ``null`` \| `string` ; `dish_step5`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dish_code?`: `string` ; `dish_description?`: ``null`` \| `string` ; `dish_dietnote?`: ``null`` \| `string` ; `dish_equipment?`: ``null`` \| `string` ; `dish_event_id?`: `string` ; `dish_id?`: `string` ; `dish_mealtype_id?`: `string` ; `dish_name?`: `string` ; `dish_prep?`: ``null`` \| `string` ; `dish_step1?`: ``null`` \| `string` ; `dish_step2?`: ``null`` \| `string` ; `dish_step3?`: ``null`` \| `string` ; `dish_step4?`: ``null`` \| `string` ; `dish_step5?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_dish_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"dish_dish_event_id_fkey"`` ; `columns`: [``"dish_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"dish_dish_mealtype_id_fkey"`` ; `columns`: [``"dish_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_item`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `item_brand`: ``null`` \| `string` ; `item_diet_dairyfree`: ``null`` \| `boolean` ; `item_diet_diabetic`: ``null`` \| `boolean` ; `item_diet_eggfree`: ``null`` \| `boolean` ; `item_diet_glutenfree`: ``null`` \| `boolean` ; `item_diet_halal`: ``null`` \| `boolean` ; `item_diet_kosher`: ``null`` \| `boolean` ; `item_diet_lactosefree`: ``null`` \| `boolean` ; `item_diet_lowfodmap`: ``null`` \| `boolean` ; `item_diet_lowfructose`: ``null`` \| `boolean` ; `item_diet_porkfree`: ``null`` \| `boolean` ; `item_diet_redmeatfree`: ``null`` \| `boolean` ; `item_diet_vegan`: ``null`` \| `boolean` ; `item_diet_vegetarian`: ``null`` \| `boolean` ; `item_distribution`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `item_brand?`: ``null`` \| `string` ; `item_diet_dairyfree?`: ``null`` \| `boolean` ; `item_diet_diabetic?`: ``null`` \| `boolean` ; `item_diet_eggfree?`: ``null`` \| `boolean` ; `item_diet_glutenfree?`: ``null`` \| `boolean` ; `item_diet_halal?`: ``null`` \| `boolean` ; `item_diet_kosher?`: ``null`` \| `boolean` ; `item_diet_lactosefree?`: ``null`` \| `boolean` ; `item_diet_lowfodmap?`: ``null`` \| `boolean` ; `item_diet_lowfructose?`: ``null`` \| `boolean` ; `item_diet_porkfree?`: ``null`` \| `boolean` ; `item_diet_redmeatfree?`: ``null`` \| `boolean` ; `item_diet_vegan?`: ``null`` \| `boolean` ; `item_diet_vegetarian?`: ``null`` \| `boolean` ; `item_distribution?`: ``null`` \| `string` ; `item_id?`: `string` ; `item_ingredients?`: ``null`` \| `string` ; `item_logistics?`: `number` ; `item_name?`: `string` ; `item_packageunit?`: `string` ; `item_producturl?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_item_logistics"`` ; `columns`: [``"item_logistics"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_logistics"`` ; `referencedColumns`: [``"logistics_id"``] }] } ; `cake_logistics`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code`: `string` ; `logistics_id`: `number` ; `logistics_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `logistics_code?`: `string` ; `logistics_id?`: `number` ; `logistics_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_logistics_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_meal`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `meal_code?`: `string` ; `meal_collectiondate?`: `string` ; `meal_date?`: `string` ; `meal_event_id?`: `string` ; `meal_id?`: `string` ; `meal_mealtype_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_meal_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"meal_meal_event_id_fkey"`` ; `columns`: [``"meal_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"meal_meal_mealtype_id_fkey"`` ; `columns`: [``"meal_mealtype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_mealtype"`` ; `referencedColumns`: [``"mealtype_id"``] }] } ; `cake_mealplan`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealplan_dish_id?`: `string` ; `mealplan_dish_multiplier?`: ``null`` \| `number` ; `mealplan_id?`: `string` ; `mealplan_meal_id?`: `string` ; `mealplan_unit_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealplan_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_dish_id_fkey"`` ; `columns`: [``"mealplan_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_meal_id_fkey"`` ; `columns`: [``"mealplan_meal_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_meal"`` ; `referencedColumns`: [``"meal_id"``] }, \{ `foreignKeyName`: ``"mealplan_mealplan_unit_id_fkey"`` ; `columns`: [``"mealplan_unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_unit"`` ; `referencedColumns`: [``"unit_id"``] }] } ; `cake_mealtype`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `mealtype_id?`: `string` ; `mealtype_name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_mealtype_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_package`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `package_ctnpkgs?`: ``null`` \| `number` ; `package_id?`: `string` ; `package_itemid?`: `string` ; `package_palletctns?`: ``null`` \| `number` ; `package_size?`: `number` ; `package_type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_package_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"package_package_itemid_fkey"`` ; `columns`: [``"package_itemid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_recipe`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recipe_diettype_id?`: `string` ; `recipe_dish_id?`: `string` ; `recipe_id?`: `string` ; `recipe_item_id?`: `string` ; `recipe_qtypp?`: `number` ; `recipe_uptake?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_recipe_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"recipe_dish_id_fkey"`` ; `columns`: [``"recipe_dish_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_dish"`` ; `referencedColumns`: [``"dish_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_diettype_id_fkey"`` ; `columns`: [``"recipe_diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"recipe_recipe_item_id_fkey"`` ; `columns`: [``"recipe_item_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_item"`` ; `referencedColumns`: [``"item_id"``] }] } ; `cake_supplier`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail`: ``null`` \| `string` ; `supplier_contactname`: ``null`` \| `string` ; `supplier_contactnumber`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supplier_contactemail?`: ``null`` \| `string` ; `supplier_contactname?`: ``null`` \| `string` ; `supplier_contactnumber?`: ``null`` \| `string` ; `supplier_id?`: `string` ; `supplier_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supplier_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `cake_supply`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code`: ``null`` \| `string` ; `supply_cost`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `supply_code?`: ``null`` \| `string` ; `supply_cost?`: ``null`` \| `number` ; `supply_event_id?`: `string` ; `supply_id?`: `string` ; `supply_packageid?`: `string` ; `supply_supplier_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_supply_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"supply_supply_event_id_fkey"`` ; `columns`: [``"supply_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"supply_supply_packageid_fkey"`` ; `columns`: [``"supply_packageid"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_package"`` ; `referencedColumns`: [``"package_id"``] }, \{ `foreignKeyName`: ``"supply_supply_supplier_id_fkey"`` ; `columns`: [``"supply_supplier_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_supplier"`` ; `referencedColumns`: [``"supplier_id"``] }] } ; `cake_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `unit_contingent?`: ``null`` \| `string` ; `unit_event_id?`: `string` ; `unit_id?`: `string` ; `unit_name?`: ``null`` \| `string` ; `unit_number?`: `number` ; `unit_subcamp?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"cake_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"unit_unit_event_id_fkey"`` ; `columns`: [``"unit_event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_events`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_billing`: ``null`` \| `string` ; `event_catering_email`: ``null`` \| `string` ; `event_code`: ``null`` \| `string` ; `event_colours`: `Json` ; `event_date`: ``null`` \| `string` ; `event_days`: ``null`` \| `number` ; `event_email`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: ``null`` \| `string` ; `event_participants`: ``null`` \| `number` ; `event_rounddown`: ``null`` \| `number` ; `event_typicalunit`: ``null`` \| `number` ; `event_venue`: ``null`` \| `string` ; `event_youthmultiplier`: ``null`` \| `number` ; `is_visible`: ``null`` \| `boolean` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_billing?`: ``null`` \| `string` ; `event_catering_email?`: ``null`` \| `string` ; `event_code?`: ``null`` \| `string` ; `event_colours?`: `Json` ; `event_date?`: ``null`` \| `string` ; `event_days?`: ``null`` \| `number` ; `event_email?`: ``null`` \| `string` ; `event_id?`: `string` ; `event_name?`: `string` ; `event_news?`: ``null`` \| `string` ; `event_participants?`: ``null`` \| `number` ; `event_rounddown?`: ``null`` \| `number` ; `event_typicalunit?`: ``null`` \| `number` ; `event_venue?`: ``null`` \| `string` ; `event_youthmultiplier?`: ``null`` \| `number` ; `is_visible?`: ``null`` \| `boolean` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_event_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"event_app_access_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"event_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_event_app_access_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `core_file_references`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `file_metadata?`: `Json` ; `file_path?`: `string` ; `id?`: `string` ; `is_public?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"file_references_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"file_references_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_context_types`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_contexts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_field_config`: \{ `Row`: \{ `admin_notes`: ``null`` \| `string` ; `category`: ``null`` \| `string` ; `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_order`: ``null`` \| `number` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `admin_notes?`: ``null`` \| `string` ; `category?`: ``null`` \| `string` ; `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_order?`: ``null`` \| `number` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sensitivity_level?`: ``null`` \| `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_field_config_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_fields`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `display_options`: `Json` ; `field_description`: ``null`` \| `string` ; `field_label`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `is_required`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_rules`: `Json` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `sort_order`: `number` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `display_options?`: `Json` ; `field_description?`: ``null`` \| `string` ; `field_label?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `is_required?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `sort_order?`: `number` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_rules?`: `Json` } ; `Relationships`: [\{ `foreignKeyName`: ``"form_fields_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_fields_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_response_values`: \{ `Row`: \{ `column_name`: `string` ; `created_at`: ``null`` \| `string` ; `form_field_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `value_json`: `Json` ; `value_text`: ``null`` \| `string` } ; `Insert`: \{ `column_name`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `response_id`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Update`: \{ `column_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `form_field_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `response_id?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `value_json?`: `Json` ; `value_text?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_response_values_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_form_field_id_fkey"`` ; `columns`: [``"form_field_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_fields"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_response_values_response_id_fkey"`` ; `columns`: [``"response_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_responses"`` ; `referencedColumns`: [``"id"``] }] } ; `core_form_responses`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `form_id`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `respondent_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `submitted_at`: ``null`` \| `string` ; `target_record_id`: ``null`` \| `string` ; `target_table`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `form_id?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `respondent_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `submitted_at?`: ``null`` \| `string` ; `target_record_id?`: ``null`` \| `string` ; `target_table?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_form_responses_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"form_responses_form_id_fkey"`` ; `columns`: [``"form_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_forms"`` ; `referencedColumns`: [``"id"``] }] } ; `core_forms`: \{ `Row`: \{ `allow_multiple_submissions`: ``null`` \| `boolean` ; `closes_at`: ``null`` \| `string` ; `confirmation_message`: ``null`` \| `string` ; `context_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `max_submissions`: ``null`` \| `number` ; `name`: `string` ; `opens_at`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id`: `string` ; `slug`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `allow_multiple_submissions?`: ``null`` \| `boolean` ; `closes_at?`: ``null`` \| `string` ; `confirmation_message?`: ``null`` \| `string` ; `context_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `max_submissions?`: ``null`` \| `number` ; `name?`: `string` ; `opens_at?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_forms_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"forms_context_id_fkey"`` ; `columns`: [``"context_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_form_context_types"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_access_log`: \{ `Row`: \{ `access_type`: `string` ; `accessed_at`: `string` ; `accessed_by`: `string` ; `id`: `number` ; `ip_address`: `unknown` ; `justification`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `record_id`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` } ; `Insert`: \{ `access_type`: `string` ; `accessed_at?`: `string` ; `accessed_by`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Update`: \{ `access_type?`: `string` ; `accessed_at?`: `string` ; `accessed_by?`: `string` ; `id?`: `number` ; `ip_address?`: `unknown` ; `justification?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `record_id?`: ``null`` \| `number` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_access_log_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_access_log_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_action_plan`: \{ `Row`: \{ `condition_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `number` ; `is_current`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by`: ``null`` \| `string` ; `reviewed_date`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received`: `string` ; `description`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `plan_type`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `condition_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_received?`: `string` ; `description?`: `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `number` ; `is_current?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `plan_type?`: `string` ; `reviewed_by?`: ``null`` \| `string` ; `reviewed_date?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_action_plan_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_action_plan_condition_id_fkey"`` ; `columns`: [``"condition_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition`: \{ `Row`: \{ `aid`: ``null`` \| `string` ; `alert_description`: ``null`` \| `string` ; `condition_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `custom_name`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `diagnosed_by`: ``null`` \| `string` ; `diagnosed_date`: ``null`` \| `string` ; `emergency_protocol`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `last_episode_date`: ``null`` \| `string` ; `management_plan`: ``null`` \| `string` ; `medical_alert`: ``null`` \| `boolean` ; `medication`: ``null`` \| `string` ; `name`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `reaction`: ``null`` \| `string` ; `severity`: ``null`` \| `string` ; `treatment`: ``null`` \| `string` ; `triggers`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `aid?`: ``null`` \| `string` ; `alert_description?`: ``null`` \| `string` ; `condition_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `custom_name?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `diagnosed_by?`: ``null`` \| `string` ; `diagnosed_date?`: ``null`` \| `string` ; `emergency_protocol?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `last_episode_date?`: ``null`` \| `string` ; `management_plan?`: ``null`` \| `string` ; `medical_alert?`: ``null`` \| `boolean` ; `medication?`: ``null`` \| `string` ; `name?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `reaction?`: ``null`` \| `string` ; `severity?`: ``null`` \| `string` ; `treatment?`: ``null`` \| `string` ; `triggers?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_condition_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_condition_type_id_fkey"`` ; `columns`: [``"condition_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_conditions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_condition_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"medi_condition_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_condition_types_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_condition_type"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_diet`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `diettype_id`: ``null`` \| `string` ; `id`: `number` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description`: ``null`` \| `string` ; `profile_id`: ``null`` \| `number` ; `severity`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `diettype_id?`: ``null`` \| `string` ; `id?`: `number` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `other_description?`: ``null`` \| `string` ; `profile_id?`: ``null`` \| `number` ; `severity?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_diet_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_diet_diettype_id_fkey"`` ; `columns`: [``"diettype_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"cake_diettype"`` ; `referencedColumns`: [``"diettype_id"``] }, \{ `foreignKeyName`: ``"medi_diet_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile`: \{ `Row`: \{ `access_count`: ``null`` \| `number` ; `carer_name`: ``null`` \| `string` ; `consent_date`: ``null`` \| `string` ; `consent_given`: ``null`` \| `boolean` ; `consent_withdrawn_date`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `data_classification`: ``null`` \| `string` ; `data_retention_until`: ``null`` \| `string` ; `dietary_comments`: ``null`` \| `string` ; `has_carer`: ``null`` \| `boolean` ; `has_dietary_requirements`: ``null`` \| `boolean` ; `health_care_card_expiry`: ``null`` \| `string` ; `health_care_card_number`: ``null`` \| `string` ; `health_fund_name`: ``null`` \| `string` ; `health_fund_number`: ``null`` \| `string` ; `health_satisfactory`: ``null`` \| `boolean` ; `id`: `number` ; `is_fully_immunised`: ``null`` \| `boolean` ; `last_accessed_at`: ``null`` \| `string` ; `last_accessed_by`: ``null`` \| `string` ; `last_tetanus_date`: ``null`` \| `string` ; `medicare_expiry`: ``null`` \| `string` ; `medicare_number`: ``null`` \| `string` ; `member_id`: ``null`` \| `string` ; `menu_selection`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support`: ``null`` \| `boolean` ; `support_details`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `access_count?`: ``null`` \| `number` ; `carer_name?`: ``null`` \| `string` ; `consent_date?`: ``null`` \| `string` ; `consent_given?`: ``null`` \| `boolean` ; `consent_withdrawn_date?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `data_classification?`: ``null`` \| `string` ; `data_retention_until?`: ``null`` \| `string` ; `dietary_comments?`: ``null`` \| `string` ; `has_carer?`: ``null`` \| `boolean` ; `has_dietary_requirements?`: ``null`` \| `boolean` ; `health_care_card_expiry?`: ``null`` \| `string` ; `health_care_card_number?`: ``null`` \| `string` ; `health_fund_name?`: ``null`` \| `string` ; `health_fund_number?`: ``null`` \| `string` ; `health_satisfactory?`: ``null`` \| `boolean` ; `id?`: `number` ; `is_fully_immunised?`: ``null`` \| `boolean` ; `last_accessed_at?`: ``null`` \| `string` ; `last_accessed_by?`: ``null`` \| `string` ; `last_tetanus_date?`: ``null`` \| `string` ; `medicare_expiry?`: ``null`` \| `string` ; `medicare_number?`: ``null`` \| `string` ; `member_id?`: ``null`` \| `string` ; `menu_selection?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `requires_support?`: ``null`` \| `boolean` ; `support_details?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `medi_profile_versions`: \{ `Row`: \{ `change_reason`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id`: `number` ; `organisation_id`: `string` ; `profile_id`: ``null`` \| `number` ; `version_number`: `number` } ; `Insert`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by`: `string` ; `data_snapshot`: `Json` ; `id?`: `number` ; `organisation_id`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number`: `number` } ; `Update`: \{ `change_reason?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `data_snapshot?`: `Json` ; `id?`: `number` ; `organisation_id?`: `string` ; `profile_id?`: ``null`` \| `number` ; `version_number?`: `number` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_medi_profile_versions_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"medi_profile_versions_profile_id_fkey"`` ; `columns`: [``"profile_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"medi_profile"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_action_log`: \{ `Row`: \{ `action`: `string` ; `amount_minor`: ``null`` \| `number` ; `created_at`: `string` ; `gateway_ref`: ``null`` \| `string` ; `id`: `string` ; `invoice_id`: `string` ; `meta`: `Json` ; `reason`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `amount_minor?`: ``null`` \| `number` ; `created_at?`: `string` ; `gateway_ref?`: ``null`` \| `string` ; `id?`: `string` ; `invoice_id?`: `string` ; `meta?`: `Json` ; `reason?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_action_log_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }] } ; `mint_audit_log`: \{ `Row`: \{ `created_at`: `string` ; `details`: `Json` ; `event_type`: `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `details?`: `Json` ; `event_type?`: `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `record_id?`: `string` ; `table_name?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_credit_balance`: \{ `Row`: \{ `amount`: `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `credit_id`: `string` ; `expires_at`: ``null`` \| `string` ; `invoice_id`: ``null`` \| `string` ; `is_used`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `used_at`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id`: `string` ; `organisation_id`: `string` ; `reason`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `credit_id?`: `string` ; `expires_at?`: ``null`` \| `string` ; `invoice_id?`: ``null`` \| `string` ; `is_used?`: `boolean` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `reason?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `used_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"credit_balance_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"credit_balance_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_dd_mandate_log`: \{ `Row`: \{ `created_at`: `string` ; `event`: `string` ; `id`: `string` ; `payload`: `Json` ; `payment_method_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `event`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `event?`: `string` ; `id?`: `string` ; `payload?`: `Json` ; `payment_method_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_dd_mandate_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_idempotency`: \{ `Row`: \{ `first_request_at`: `string` ; `id`: `string` ; `idempotency_key`: `string` ; `last_response`: `Json` ; `scope`: `string` ; `status`: `string` } ; `Insert`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status`: `string` } ; `Update`: \{ `first_request_at?`: `string` ; `id?`: `string` ; `idempotency_key?`: `string` ; `last_response?`: `Json` ; `scope?`: `string` ; `status?`: `string` } ; `Relationships`: [] } ; `mint_invoice`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `greenpay_transaction_id`: ``null`` \| `string` ; `invoice_id`: `string` ; `issued_at`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app`: `string` ; `source_origin?`: ``null`` \| `string` ; `status`: `string` ; `total_amount`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `greenpay_transaction_id?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `issued_at?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `paid_at?`: ``null`` \| `string` ; `source_app?`: `string` ; `source_origin?`: ``null`` \| `string` ; `status?`: `string` ; `total_amount?`: `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"invoice_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_line_item`: \{ `Row`: \{ `amount`: `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at`: ``null`` \| `string` ; `fulfillment_status`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id`: `string` ; `org_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info`: `Json` ; `source_app`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `amount`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id`: `string` ; `item_type`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `proration_info?`: `Json` ; `source_app`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `amount?`: `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: `string` ; `fulfilled_at?`: ``null`` \| `string` ; `fulfillment_status?`: ``null`` \| `string` ; `invoice_id?`: `string` ; `item_type?`: `string` ; `line_item_id?`: `string` ; `org_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `proration_info?`: `Json` ; `source_app?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"line_item_invoice_id_fkey"`` ; `columns`: [``"invoice_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_invoice"`` ; `referencedColumns`: [``"invoice_id"``] }, \{ `foreignKeyName`: ``"line_item_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_mit_consent_log`: \{ `Row`: \{ `consent_text`: ``null`` \| `string` ; `created_at`: `string` ; `id`: `string` ; `invoice_id`: ``null`` \| `string` ; `ip`: `unknown` ; `member_id`: `string` ; `payment_method_id`: ``null`` \| `string` ; `terms_version`: ``null`` \| `string` ; `ua`: ``null`` \| `string` } ; `Insert`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Update`: \{ `consent_text?`: ``null`` \| `string` ; `created_at?`: `string` ; `id?`: `string` ; `invoice_id?`: ``null`` \| `string` ; `ip?`: `unknown` ; `member_id?`: `string` ; `payment_method_id?`: ``null`` \| `string` ; `terms_version?`: ``null`` \| `string` ; `ua?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"mint_mit_consent_log_payment_method_id_fkey"`` ; `columns`: [``"payment_method_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"mint_payment_method"`` ; `referencedColumns`: [``"payment_method_id"``] }] } ; `mint_payment_method`: \{ `Row`: \{ `bank_account_bsb`: ``null`` \| `string` ; `bank_account_last4`: ``null`` \| `string` ; `bank_account_name`: ``null`` \| `string` ; `brand`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `dd_mandate_id`: ``null`` \| `string` ; `dd_mandate_status`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent`: `boolean` ; `mit_consent_at`: ``null`` \| `string` ; `mit_consent_ip`: `unknown` ; `mit_consent_terms_version`: ``null`` \| `string` ; `mit_consent_text`: ``null`` \| `string` ; `mit_consent_ua`: ``null`` \| `string` ; `mit_initial_cit_at`: ``null`` \| `string` ; `mit_initial_cit_txn_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id`: `string` ; `type`: ``"card"`` \| ``"bank"`` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `validation_status`: `string` } ; `Insert`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token`: `string` ; `is_default?`: `boolean` ; `last_four_digits`: `string` ; `member_id`: `string` ; `method_type`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Update`: \{ `bank_account_bsb?`: ``null`` \| `string` ; `bank_account_last4?`: ``null`` \| `string` ; `bank_account_name?`: ``null`` \| `string` ; `brand?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `dd_mandate_id?`: ``null`` \| `string` ; `dd_mandate_status?`: ``null`` \| ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `expires_at?`: ``null`` \| `string` ; `greenpay_token?`: `string` ; `is_default?`: `boolean` ; `last_four_digits?`: `string` ; `member_id?`: `string` ; `method_type?`: `string` ; `mit_consent?`: `boolean` ; `mit_consent_at?`: ``null`` \| `string` ; `mit_consent_ip?`: `unknown` ; `mit_consent_terms_version?`: ``null`` \| `string` ; `mit_consent_text?`: ``null`` \| `string` ; `mit_consent_ua?`: ``null`` \| `string` ; `mit_initial_cit_at?`: ``null`` \| `string` ; `mit_initial_cit_txn_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payment_method_id?`: `string` ; `type?`: ``"card"`` \| ``"bank"`` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `validation_status?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"payment_method_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `mint_security_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: ``null`` \| `string` ; `details`: `Json` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `record_id`: ``null`` \| `string` ; `table_name`: ``null`` \| `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: ``null`` \| `string` ; `details?`: `Json` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `record_id?`: ``null`` \| `string` ; `table_name?`: ``null`` \| `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `mint_webhook_log`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `event_type`: `string` ; `headers`: `Json` ; `invoice_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at`: ``null`` \| `string` ; `processing_error`: ``null`` \| `string` ; `source`: `string` ; `status`: `string` ; `transaction_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `webhook_log_id`: `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `event_type`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `payload`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `event_type?`: `string` ; `headers?`: `Json` ; `invoice_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `payload?`: `Json` ; `processed_at?`: ``null`` \| `string` ; `processing_error?`: ``null`` \| `string` ; `source?`: `string` ; `status?`: `string` ; `transaction_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `webhook_log_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"webhook_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `note_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `mime_type`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id`: `string` ; `organisation_id`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `mime_type?`: ``null`` \| `string` ; `note_id?`: `string` ; `organisation_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"note_attachments_note_id_fkey"`` ; `columns`: [``"note_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_internal_notes"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"note_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_app_access`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `is_enabled`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings`: `Json` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `is_enabled?`: ``null`` \| `boolean` ; `organisation_id?`: `string` ; `settings?`: `Json` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_app_access_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"organisation_app_access_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisation_audit_log`: \{ `Row`: \{ `action`: `string` ; `created_at`: `string` ; `entity_id`: ``null`` \| `string` ; `entity_type`: `string` ; `id`: `string` ; `ip_address`: `unknown` ; `new_values`: `Json` ; `old_values`: `Json` ; `organisation_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `action`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `action?`: `string` ; `created_at?`: `string` ; `entity_id?`: ``null`` \| `string` ; `entity_type?`: `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `new_values?`: `Json` ; `old_values?`: `Json` ; `organisation_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_audit_log_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_invitations`: \{ `Row`: \{ `accepted_at`: ``null`` \| `string` ; `created_at`: `string` ; `email`: `string` ; `expires_at`: `string` ; `id`: `string` ; `invited_by`: ``null`` \| `string` ; `organisation_id`: `string` ; `role`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `accepted_at?`: ``null`` \| `string` ; `created_at?`: `string` ; `email?`: `string` ; `expires_at?`: `string` ; `id?`: `string` ; `invited_by?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_invitations_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `organisation_settings`: \{ `Row`: \{ `address`: `Json` ; `contact_email`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `custom_css`: ``null`` \| `string` ; `date_format`: ``null`` \| `string` ; `email_templates`: `Json` ; `joining_fee`: ``null`` \| `number` ; `language`: ``null`` \| `string` ; `notification_settings`: `Json` ; `organisation_id`: `string` ; `phone`: ``null`` \| `string` ; `primary_color`: ``null`` \| `string` ; `recurring_fee`: ``null`` \| `number` ; `secondary_color`: ``null`` \| `string` ; `timezone`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address?`: `Json` ; `contact_email?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `custom_css?`: ``null`` \| `string` ; `date_format?`: ``null`` \| `string` ; `email_templates?`: `Json` ; `joining_fee?`: ``null`` \| `number` ; `language?`: ``null`` \| `string` ; `notification_settings?`: `Json` ; `organisation_id?`: `string` ; `phone?`: ``null`` \| `string` ; `primary_color?`: ``null`` \| `string` ; `recurring_fee?`: ``null`` \| `number` ; `secondary_color?`: ``null`` \| `string` ; `timezone?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisation_settings_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_organisations`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id`: ``null`` \| `string` ; `settings`: `Json` ; `subscription_tier`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `parent_id?`: ``null`` \| `string` ; `settings?`: `Json` ; `subscription_tier?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"organisations_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent`: \{ `Row`: \{ `consent_type_id`: `number` ; `created_at`: ``null`` \| `string` ; `date_given`: ``null`` \| `string` ; `date_revoked`: ``null`` \| `string` ; `given`: `boolean` ; `id`: `string` ; `member_id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `consent_type_id`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given`: `boolean` ; `id?`: `string` ; `member_id`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `consent_type_id?`: `number` ; `created_at?`: ``null`` \| `string` ; `date_given?`: ``null`` \| `string` ; `date_revoked?`: ``null`` \| `string` ; `given?`: `boolean` ; `id?`: `string` ; `member_id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `recorded_by?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"consents_consent_type_id_fkey"`` ; `columns`: [``"consent_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_consent_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"consents_member_id_fkey1"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_consent_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_consent_type`: \{ `Row`: \{ `active`: ``null`` \| `boolean` ; `category`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key`: `string` ; `label`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `active?`: ``null`` \| `boolean` ; `category?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `number` ; `key?`: `string` ; `label?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_consent_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact`: \{ `Row`: \{ `contact_person_id`: ``null`` \| `string` ; `contact_type_id`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `contact_person_id?`: ``null`` \| `string` ; `contact_type_id?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `permission_type?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_contact_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_related_person_id_fkey"`` ; `columns`: [``"contact_person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_contact_relationship_type_id_fkey"`` ; `columns`: [``"contact_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_contact_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_permissions_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_contact_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_contact_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_gender_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_gender_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `document_number`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `identification_type_id`: ``null`` \| `number` ; `issue_city`: ``null`` \| `string` ; `issue_country`: ``null`` \| `string` ; `issue_date`: ``null`` \| `string` ; `issue_state`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `document_number?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `identification_type_id?`: ``null`` \| `number` ; `issue_city?`: ``null`` \| `string` ; `issue_country?`: ``null`` \| `string` ; `issue_date?`: ``null`` \| `string` ; `issue_state?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_identification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_pace_identification_type_id"`` ; `columns`: [``"identification_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_identification_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_identification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_identification_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `undefined` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `sort_order?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_identification_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member`: \{ `Row`: \{ `address_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `date_of_birth`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `gender_id`: ``null`` \| `number` ; `id`: `string` ; `membership_number`: ``null`` \| `string` ; `membership_status`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `postal_address`: ``null`` \| `string` ; `pronoun_id`: ``null`` \| `number` ; `residential_address`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `address_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `date_of_birth?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `gender_id?`: ``null`` \| `number` ; `id?`: `string` ; `membership_number?`: ``null`` \| `string` ; `membership_status?`: ``null`` \| ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `membership_type_id?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `postal_address?`: ``null`` \| `string` ; `pronoun_id?`: ``null`` \| `number` ; `residential_address?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``true`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_gender_id_fkey"`` ; `columns`: [``"gender_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_gender_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_membership_type_id_fkey"`` ; `columns`: [``"membership_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_membership_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_members_pronoun_id_fkey"`` ; `columns`: [``"pronoun_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_pronoun_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_member_role`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `end_date`: ``null`` \| `string` ; `id`: `string` ; `member_id`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `end_date?`: ``null`` \| `string` ; `id?`: `string` ; `member_id?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `role_id?`: ``null`` \| `number` ; `start_date?`: `string` ; `unit_id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_member_role_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_member_roles_role_id_fkey"`` ; `columns`: [``"role_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_role_type"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_member_roles_unit_id_fkey"`` ; `columns`: [``"unit_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }] } ; `core_membership_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `is_active`: ``null`` \| `boolean` ; `max_age`: ``null`` \| `number` ; `min_age`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `is_active?`: ``null`` \| `boolean` ; `max_age?`: ``null`` \| `number` ; `min_age?`: ``null`` \| `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_membership_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_merchandise`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `color`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `price`: ``null`` \| `number` ; `size`: ``null`` \| `string` ; `sku`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `category?`: ``null`` \| `string` ; `color?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `price?`: ``null`` \| `number` ; `size?`: ``null`` \| `string` ; `sku?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_merchandise_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_merchandise_person_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }] } ; `core_person`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `first_name`: `string` ; `id`: `string` ; `last_name`: `string` ; `middle_name`: ``null`` \| `string` ; `preferred_name`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name`: `string` ; `id?`: `string` ; `last_name`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `first_name?`: `string` ; `id?`: `string` ; `last_name?`: `string` ; `middle_name?`: ``null`` \| `string` ; `preferred_name?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_phone`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `person_id`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `person_id?`: ``null`` \| `string` ; `phone_number?`: `string` ; `phone_type_id?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_phone_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_contact_id_fkey"`` ; `columns`: [``"person_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_person"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_phones_phone_type_id_fkey"`` ; `columns`: [``"phone_type_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_phone_type"`` ; `referencedColumns`: [``"id"``] }] } ; `core_phone_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_phone_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_pronoun_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_pronoun_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `core_qualification`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `credential_id`: ``null`` \| `string` ; `expiry_date`: ``null`` \| `string` ; `id`: `string` ; `institution`: ``null`` \| `string` ; `issued_date`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at`: ``null`` \| `string` ; `verified`: ``null`` \| `boolean` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `title`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `credential_id?`: ``null`` \| `string` ; `expiry_date?`: ``null`` \| `string` ; `id?`: `string` ; `institution?`: ``null`` \| `string` ; `issued_date?`: ``null`` \| `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `title?`: `string` ; `updated_at?`: ``null`` \| `string` ; `verified?`: ``null`` \| `boolean` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_pace_qualification_organisation_id"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"pace_qualification_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }] } ; `core_role_type`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `number` ; `name?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pace_role_type_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `public_rate_limits`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `requests`: ``null`` \| `number` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `requests?`: ``null`` \| `number` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_log`: \{ `Row`: \{ `body`: `string` ; `clicks`: ``null`` \| `number` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `from_address`: ``null`` \| `string` ; `id`: `string` ; `opens`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address`: ``null`` \| `string` ; `response_metadata`: `Json` ; `scheduled_at`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at`: ``null`` \| `string` ; `status`: `string` ; `subject`: ``null`` \| `string` ; `template_slug`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id`: `string` ; `recipients`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `clicks?`: ``null`` \| `number` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `from_address?`: ``null`` \| `string` ; `id?`: `string` ; `opens?`: ``null`` \| `number` ; `organisation_id?`: `string` ; `recipients?`: `Json` ; `reply_to_address?`: ``null`` \| `string` ; `response_metadata?`: `Json` ; `scheduled_at?`: ``null`` \| `string` ; `sender_id?`: `string` ; `sent_at?`: ``null`` \| `string` ; `status?`: `string` ; `subject?`: ``null`` \| `string` ; `template_slug?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_comms_template`: \{ `Row`: \{ `body`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `body`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `slug`: `string` ; `subject?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `body?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `slug?`: `string` ; `subject?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_org_settings`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `default_from_address`: ``null`` \| `string` ; `default_reply_to_address`: ``null`` \| `string` ; `email_footer_html`: ``null`` \| `string` ; `email_header_html`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `sms_from_number`: ``null`` \| `string` ; `sms_messaging_service_sid`: ``null`` \| `string` ; `sms_opt_out_footer`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `default_from_address?`: ``null`` \| `string` ; `default_reply_to_address?`: ``null`` \| `string` ; `email_footer_html?`: ``null`` \| `string` ; `email_header_html?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `sms_from_number?`: ``null`` \| `string` ; `sms_messaging_service_sid?`: ``null`` \| `string` ; `sms_opt_out_footer?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `pump_scheduled_jobs`: \{ `Row`: \{ `attempts`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at`: `string` ; `id`: `string` ; `last_error`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status`: `string` ; `updated_at`: `string` } ; `Insert`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Update`: \{ `attempts?`: ``null`` \| `number` ; `comms_log_id?`: `string` ; `created_at?`: `string` ; `id?`: `string` ; `last_error?`: ``null`` \| `string` ; `scheduled_for?`: `string` ; `status?`: `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"pump_scheduled_jobs_comms_log_id_fkey"`` ; `columns`: [``"comms_log_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"pump_comms_log"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_app_pages`: \{ `Row`: \{ `app_id`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `id`: `string` ; `page_description`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `id?`: `string` ; `page_description?`: ``null`` \| `string` ; `page_name?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_app_pages_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_apps`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: `string` ; `id`: `string` ; `is_active`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event`: ``null`` \| `boolean` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name`: `string` ; `organisation_id`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: `string` ; `id?`: `string` ; `is_active?`: ``null`` \| `boolean` ; `name?`: `string` ; `organisation_id?`: `string` ; `requires_event?`: ``null`` \| `boolean` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_apps_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_audit_events`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `bypass`: ``null`` \| `boolean` ; `created_at`: ``null`` \| `string` ; `decision`: ``null`` \| `boolean` ; `duration_ms`: ``null`` \| `number` ; `event_id`: ``null`` \| `string` ; `event_type`: `string` ; `id`: `string` ; `metadata`: `Json` ; `organisation_id`: `string` ; `page_id`: ``null`` \| `string` ; `permission`: ``null`` \| `string` ; `source`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `bypass?`: ``null`` \| `boolean` ; `created_at?`: ``null`` \| `string` ; `decision?`: ``null`` \| `boolean` ; `duration_ms?`: ``null`` \| `number` ; `event_id?`: ``null`` \| `string` ; `event_type?`: `string` ; `id?`: `string` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `page_id?`: ``null`` \| `string` ; `permission?`: ``null`` \| `string` ; `source?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_audit_events_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_auth_attempts`: \{ `Row`: \{ `attempt_time`: ``null`` \| `string` ; `attempts`: ``null`` \| `number` ; `created_at`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `window_start`: ``null`` \| `string` } ; `Insert`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Update`: \{ `attempt_time?`: ``null`` \| `string` ; `attempts?`: ``null`` \| `number` ; `created_at?`: ``null`` \| `string` ; `identifier?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `window_start?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_auth_attempts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_event_app_roles`: \{ `Row`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id`: `string` ; `event_id`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: `string` ; `event_id?`: `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `status?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_function_backup`: \{ `Row`: \{ `backup_reason`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id`: `string` } ; `Insert`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition`: `string` ; `function_name`: `string` ; `id?`: `string` } ; `Update`: \{ `backup_reason?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `function_definition?`: `string` ; `function_name?`: `string` ; `id?`: `string` } ; `Relationships`: [] } ; `rbac_global_roles`: \{ `Row`: \{ `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id`: `string` ; `role`: ``"super_admin"`` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `role?`: ``"super_admin"`` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_global_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_organisation_roles`: \{ `Row`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: ``null`` \| `string` ; `id`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `granted_at?`: `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: `string` ; `updated_at?`: `string` ; `user_id?`: `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_page_permissions`: \{ `Row`: \{ `allowed`: `boolean` ; `app_page_id`: `string` ; `created_at`: ``null`` \| `string` ; `id`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at`: ``null`` \| `string` } ; `Insert`: \{ `allowed?`: `boolean` ; `app_page_id`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation`: `string` ; `organisation_id`: `string` ; `role_name`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Update`: \{ `allowed?`: `boolean` ; `app_page_id?`: `string` ; `created_at?`: ``null`` \| `string` ; `id?`: `string` ; `operation?`: `string` ; `organisation_id?`: `string` ; `role_name?`: `string` ; `updated_at?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_page_permissions_app_page_id"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_app_page_id_fkey"`` ; `columns`: [``"app_page_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_app_pages"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_page_permissions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_policy_audit`: \{ `Row`: \{ `action`: `string` ; `changed_at`: ``null`` \| `string` ; `changed_by`: ``null`` \| `string` ; `error_message`: ``null`` \| `string` ; `id`: `string` ; `new_policy_sql`: ``null`` \| `string` ; `old_policy_sql`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success`: `boolean` ; `table_name`: `string` } ; `Insert`: \{ `action`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation`: `string` ; `policy_name`: `string` ; `success?`: `boolean` ; `table_name`: `string` } ; `Update`: \{ `action?`: `string` ; `changed_at?`: ``null`` \| `string` ; `changed_by?`: ``null`` \| `string` ; `error_message?`: ``null`` \| `string` ; `id?`: `string` ; `new_policy_sql?`: ``null`` \| `string` ; `old_policy_sql?`: ``null`` \| `string` ; `operation?`: `string` ; `policy_name?`: `string` ; `success?`: `boolean` ; `table_name?`: `string` } ; `Relationships`: [] } ; `rbac_policy_configs`: \{ `Row`: \{ `app_name`: `string` ; `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `event_column`: ``null`` \| `string` ; `id`: `string` ; `is_active`: `boolean` ; `operations`: `string`[] ; `organisation_column`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name`: `string` ; `table_name`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `app_name?`: `string` ; `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `event_column?`: ``null`` \| `string` ; `id?`: `string` ; `is_active?`: `boolean` ; `operations?`: `string`[] ; `organisation_column?`: `string` ; `page_name?`: `string` ; `table_name?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [] } ; `rbac_user_login_history`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `email`: `string` ; `event_id`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: ``null`` \| `string` ; `login_timestamp`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `email`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id`: `string` ; `session_id`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `email?`: `string` ; `event_id?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: ``null`` \| `string` ; `login_timestamp?`: `string` ; `organisation_id?`: `string` ; `session_id?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_user_login_history_event"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_user_login_history_user_profiles"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `rbac_user_profiles`: \{ `Row`: \{ `created_at`: `string` ; `email`: `string` ; `full_name`: ``null`` \| `string` ; `id`: `string` ; `organisation_id`: ``null`` \| `string` ; `updated_at`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `email`: `string` ; `full_name?`: ``null`` \| `string` ; `id`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `email?`: `string` ; `full_name?`: ``null`` \| `string` ; `id?`: `string` ; `organisation_id?`: ``null`` \| `string` ; `updated_at?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_profiles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_user_sessions`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `device_fingerprint`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `expires_at`: ``null`` \| `string` ; `id`: `string` ; `ip_address`: `unknown` ; `is_valid`: ``null`` \| `boolean` ; `metadata`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent`: ``null`` \| `string` ; `user_id`: `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id`: `string` ; `session_type`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id`: `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `created_at?`: ``null`` \| `string` ; `device_fingerprint?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `expires_at?`: ``null`` \| `string` ; `id?`: `string` ; `ip_address?`: `unknown` ; `is_valid?`: ``null`` \| `boolean` ; `metadata?`: `Json` ; `organisation_id?`: `string` ; `session_type?`: `string` ; `user_agent?`: ``null`` \| `string` ; `user_id?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_user_sessions_app_id_fkey"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_user_sessions_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_internal_notes`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `description`: `string` ; `id`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description`: `string` ; `id?`: `string` ; `member_id`: `string` ; `organisation_id`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `description?`: `string` ; `id?`: `string` ; `member_id?`: `string` ; `organisation_id?`: `string` ; `sensitivity?`: ``"low"`` \| ``"medium"`` \| ``"high"`` ; `show_to_user?`: `boolean` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"internal_notes_member_id_fkey"`` ; `columns`: [``"member_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_member"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_internal_notes_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `team_unit`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `deleted_at`: ``null`` \| `string` ; `id`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id`: ``null`` \| `string` ; `type`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name`: `string` ; `organisation_id`: `string` ; `parent_id?`: ``null`` \| `string` ; `type`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `deleted_at?`: ``null`` \| `string` ; `id?`: `string` ; `name?`: `string` ; `organisation_id?`: `string` ; `parent_id?`: ``null`` \| `string` ; `type?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"team_organizational_units_parent_id_fkey"`` ; `columns`: [``"parent_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"team_unit"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"team_unit_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_accommodation`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `location_coords`: `Json` ; `location_display_name`: ``null`` \| `string` ; `location_place_id`: ``null`` \| `string` ; `location_short_address`: ``null`` \| `string` ; `location_timezone`: ``null`` \| `string` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time`: `string` ; `check_out_time`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `check_in_time?`: `string` ; `check_out_time?`: `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `location_coords?`: `Json` ; `location_display_name?`: ``null`` \| `string` ; `location_place_id?`: ``null`` \| `string` ; `location_short_address?`: ``null`` \| `string` ; `location_timezone?`: ``null`` \| `string` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_accommodation_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_accommodation_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_activity`: \{ `Row`: \{ `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords`: `Json` ; `finish_location_display_name`: ``null`` \| `string` ; `finish_location_place_id`: ``null`` \| `string` ; `finish_location_short_address`: ``null`` \| `string` ; `finish_location_timezone`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `name`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords`: `Json` ; `start_location_display_name`: ``null`` \| `string` ; `start_location_place_id`: ``null`` \| `string` ; `start_location_short_address`: ``null`` \| `string` ; `start_location_timezone`: ``null`` \| `string` ; `start_time`: `string` ; `status`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `event_id?`: `string` ; `finish_location_coords?`: `Json` ; `finish_location_display_name?`: ``null`` \| `string` ; `finish_location_place_id?`: ``null`` \| `string` ; `finish_location_short_address?`: ``null`` \| `string` ; `finish_location_timezone?`: ``null`` \| `string` ; `finish_time?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `name?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `start_location_coords?`: `Json` ; `start_location_display_name?`: ``null`` \| `string` ; `start_location_place_id?`: ``null`` \| `string` ; `start_location_short_address?`: ``null`` \| `string` ; `start_location_timezone?`: ``null`` \| `string` ; `start_time?`: `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_activity_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_activity_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_attachments`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `id`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id`: `string` ; `item_type`: `string` ; `organisation_id`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `id?`: `string` ; `item_id?`: `string` ; `item_type?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_attachments_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_contacts`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `email_address`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `phone_number`: ``null`` \| `string` ; `role`: ``null`` \| `string` ; `surname`: `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id`: `string` ; `first_name`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `email_address?`: ``null`` \| `string` ; `event_id?`: `string` ; `first_name?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `phone_number?`: ``null`` \| `string` ; `role?`: ``null`` \| `string` ; `surname?`: `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_contacts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_contacts_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_currency_rates`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id`: `string` ; `organisation_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code`: `string` ; `event_id`: `string` ; `exchange_rate`: `number` ; `id?`: `string` ; `organisation_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `currency_code?`: `string` ; `event_id?`: `string` ; `exchange_rate?`: `number` ; `id?`: `string` ; `organisation_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_currency_rates_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_currency_rates_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_images`: \{ `Row`: \{ `created_at`: `string` ; `created_by`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: `string` ; `created_by`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `post_id`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: `string` ; `created_by?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `post_id?`: `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_images_updated_by"`` ; `columns`: [``"updated_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_journal_posts`: \{ `Row`: \{ `content`: `string` ; `created_at`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id`: `string` ; `organisation_id`: `string` ; `status`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at`: `string` ; `updated_by`: `string` } ; `Insert`: \{ `content`: `string` ; `created_at?`: `string` ; `created_by`: `string` ; `event_id`: `string` ; `id?`: `string` ; `organisation_id`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title`: `string` ; `updated_at?`: `string` ; `updated_by`: `string` } ; `Update`: \{ `content?`: `string` ; `created_at?`: `string` ; `created_by?`: `string` ; `event_id?`: `string` ; `id?`: `string` ; `organisation_id?`: `string` ; `status?`: ``"draft"`` \| ``"published"`` ; `title?`: `string` ; `updated_at?`: `string` ; `updated_by?`: `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_created_by"`` ; `columns`: [``"created_by"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }, \{ `foreignKeyName`: ``"fk_trac_journal_posts_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }] } ; `trac_location_cache`: \{ `Row`: \{ `city`: ``null`` \| `string` ; `coordinates`: `Json` ; `country`: ``null`` \| `string` ; `description`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `last_updated`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address`: ``null`` \| `string` ; `timezoneid`: ``null`` \| `string` } ; `Insert`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id`: `string` ; `place_id`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Update`: \{ `city?`: ``null`` \| `string` ; `coordinates?`: `Json` ; `country?`: ``null`` \| `string` ; `description?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `last_updated?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `place_id?`: `string` ; `short_address?`: ``null`` \| `string` ; `timezoneid?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"trac_location_cache_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_risks`: \{ `Row`: \{ `comment`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `event_id`: `string` ; `id`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response`: ``null`` \| `string` ; `responsible_contact_id`: ``null`` \| `string` ; `risk`: `string` ; `status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Insert`: \{ `comment?`: ``null`` \| `string` ; `consequence_after`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id`: `string` ; `id?`: `string` ; `impact_after`: `number` ; `impact_before`: `number` ; `likelihood_after`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when`: ``"Prior"`` \| ``"During"`` } ; `Update`: \{ `comment?`: ``null`` \| `string` ; `consequence_after?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `consequence_before?`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `control?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `event_id?`: `string` ; `id?`: `string` ; `impact_after?`: `number` ; `impact_before?`: `number` ; `likelihood_after?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `likelihood_before?`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `organisation_id?`: `string` ; `response?`: ``null`` \| `string` ; `responsible_contact_id?`: ``null`` \| `string` ; `risk?`: `string` ; `status?`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `type?`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` ; `when?`: ``"Prior"`` \| ``"During"`` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_risks_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_risks_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"trac_risks_responsible_contact_id_fkey"`` ; `columns`: [``"responsible_contact_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"trac_contacts"`` ; `referencedColumns`: [``"id"``] }] } ; `trac_transport`: \{ `Row`: \{ `arrival_coords`: `Json` ; `arrival_display_name`: ``null`` \| `string` ; `arrival_place_id`: ``null`` \| `string` ; `arrival_short_address`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone`: ``null`` \| `string` ; `booking_reference`: ``null`` \| `string` ; `created_at`: `string` ; `created_by`: ``null`` \| `string` ; `currency`: ``null`` \| `string` ; `departure_coords`: `Json` ; `departure_display_name`: ``null`` \| `string` ; `departure_place_id`: ``null`` \| `string` ; `departure_short_address`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost`: ``null`` \| `number` ; `id`: `string` ; `individual_cost`: ``null`` \| `number` ; `mode`: `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: `string` ; `status`: ``null`` \| `string` ; `transport_number`: ``null`` \| `string` ; `updated_at`: `string` ; `updated_by`: ``null`` \| `string` } ; `Insert`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Update`: \{ `arrival_coords?`: `Json` ; `arrival_display_name?`: ``null`` \| `string` ; `arrival_place_id?`: ``null`` \| `string` ; `arrival_short_address?`: ``null`` \| `string` ; `arrival_time?`: `string` ; `arrival_timezone?`: ``null`` \| `string` ; `booking_reference?`: ``null`` \| `string` ; `created_at?`: `string` ; `created_by?`: ``null`` \| `string` ; `currency?`: ``null`` \| `string` ; `departure_coords?`: `Json` ; `departure_display_name?`: ``null`` \| `string` ; `departure_place_id?`: ``null`` \| `string` ; `departure_short_address?`: ``null`` \| `string` ; `departure_time?`: `string` ; `departure_timezone?`: ``null`` \| `string` ; `event_id?`: `string` ; `group_cost?`: ``null`` \| `number` ; `id?`: `string` ; `individual_cost?`: ``null`` \| `number` ; `mode?`: `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: `string` ; `status?`: ``null`` \| `string` ; `transport_number?`: ``null`` \| `string` ; `updated_at?`: `string` ; `updated_by?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_trac_transport_event_id"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"trac_transport_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } } ; `Views`: \{ `file_references_summary`: \{ `Row`: \{ `category`: ``null`` \| `string` ; `file_count`: ``null`` \| `number` ; `private_count`: ``null`` \| `number` ; `public_count`: ``null`` \| `number` ; `table_name`: ``null`` \| `string` } ; `Relationships`: [] } ; `core_organisation_memberships`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `created_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `is_primary`: ``null`` \| `boolean` ; `joined_at`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `created_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `is_primary?`: `undefined` ; `joined_at?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `updated_by?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `core_field_list`: \{ `Row`: \{ `field_name`: `unknown` ; `field_type`: ``null`` \| `string` ; `is_nullable`: ``null`` \| `string` ; `ordinal_position`: ``null`` \| `number` ; `table_name`: `unknown` } ; `Relationships`: [] } ; `rbac_active_event_app_roles`: \{ `Row`: \{ `app_id`: ``null`` \| `string` ; `event_id`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `role`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `app_id?`: ``null`` \| `string` ; `event_id?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"fk_rbac_event_app_roles_app_id"`` ; `columns`: [``"app_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_apps"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_event_id_fkey"`` ; `columns`: [``"event_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_events"`` ; `referencedColumns`: [``"event_id"``] }, \{ `foreignKeyName`: ``"rbac_event_app_roles_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }] } ; `rbac_active_organisation_roles`: \{ `Row`: \{ `created_at`: ``null`` \| `string` ; `granted_at`: ``null`` \| `string` ; `granted_by`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `notes`: ``null`` \| `string` ; `organisation_id`: ``null`` \| `string` ; `revoked_at`: ``null`` \| `string` ; `revoked_by`: ``null`` \| `string` ; `role`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` ; `valid_from`: ``null`` \| `string` ; `valid_to`: ``null`` \| `string` } ; `Insert`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Update`: \{ `created_at?`: ``null`` \| `string` ; `granted_at?`: ``null`` \| `string` ; `granted_by?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `notes?`: ``null`` \| `string` ; `organisation_id?`: ``null`` \| `string` ; `revoked_at?`: ``null`` \| `string` ; `revoked_by?`: ``null`` \| `string` ; `role?`: ``null`` \| ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `status?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` ; `valid_from?`: ``null`` \| `string` ; `valid_to?`: ``null`` \| `string` } ; `Relationships`: [\{ `foreignKeyName`: ``"rbac_organisation_roles_new_organisation_id_fkey"`` ; `columns`: [``"organisation_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"core_organisations"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"rbac_user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"id"``] }, \{ `foreignKeyName`: ``"rbac_organisation_roles_user_profiles_fkey"`` ; `columns`: [``"user_id"``] ; `isOneToOne`: ``false`` ; `referencedRelation`: ``"user_profiles"`` ; `referencedColumns`: [``"user_id"``] }] } ; `user_profiles`: \{ `Row`: \{ `avatar_url`: ``null`` \| `string` ; `created_at`: ``null`` \| `string` ; `display_name`: ``null`` \| `string` ; `email`: ``null`` \| `string` ; `id`: ``null`` \| `string` ; `updated_at`: ``null`` \| `string` ; `user_id`: ``null`` \| `string` } ; `Insert`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Update`: \{ `avatar_url?`: `undefined` ; `created_at?`: ``null`` \| `string` ; `display_name?`: ``null`` \| `string` ; `email?`: ``null`` \| `string` ; `id?`: ``null`` \| `string` ; `updated_at?`: ``null`` \| `string` ; `user_id?`: ``null`` \| `string` } ; `Relationships`: [] } } ; `Functions`: \{ `add_geo_columns_to_transport_tables`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `app_cake_delivery_upsert`: \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_collection_date`: `string` ; `p_delivery_address?`: `string` ; `p_delivery_date`: `string` ; `p_delivery_id?`: `string` ; `p_delivery_notes?`: `string` ; `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_event_id`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `delivery_supplier_id`: `string` ; `delivery_unitcollectiondate`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_create`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id`: `string` ; `p_diner_unit_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_diner_update`: \{ `Args`: \{ `p_diner_adult?`: `number` ; `p_diner_diettype_id?`: `string` ; `p_diner_id`: `string` ; `p_diner_youth?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_create`: \{ `Args`: \{ `p_dish_code`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_event_id`: `string` ; `p_dish_mealtype_id`: `string` ; `p_dish_name`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_delete`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_dish_update`: \{ `Args`: \{ `p_dish_code?`: `string` ; `p_dish_description?`: `string` ; `p_dish_dietnote?`: `string` ; `p_dish_equipment?`: `string` ; `p_dish_id`: `string` ; `p_dish_mealtype_id?`: `string` ; `p_dish_name?`: `string` ; `p_dish_prep?`: `string` ; `p_dish_step1?`: `string` ; `p_dish_step2?`: `string` ; `p_dish_step3?`: `string` ; `p_dish_step4?`: `string` ; `p_dish_step5?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `item_id`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_item_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `string` ; `p_item_diet_diabetic?`: `string` ; `p_item_diet_eggfree?`: `string` ; `p_item_diet_glutenfree?`: `string` ; `p_item_diet_halal?`: `string` ; `p_item_diet_kosher?`: `string` ; `p_item_diet_lactosefree?`: `string` ; `p_item_diet_lowfodmap?`: `string` ; `p_item_diet_lowfructose?`: `string` ; `p_item_diet_porkfree?`: `string` ; `p_item_diet_redmeatfree?`: `string` ; `p_item_diet_vegan?`: `string` ; `p_item_diet_vegetarian?`: `string` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_item_brand?`: `string` ; `p_item_diet_dairyfree?`: `boolean` ; `p_item_diet_diabetic?`: `boolean` ; `p_item_diet_eggfree?`: `boolean` ; `p_item_diet_glutenfree?`: `boolean` ; `p_item_diet_halal?`: `boolean` ; `p_item_diet_kosher?`: `boolean` ; `p_item_diet_lactosefree?`: `boolean` ; `p_item_diet_lowfodmap?`: `boolean` ; `p_item_diet_lowfructose?`: `boolean` ; `p_item_diet_porkfree?`: `boolean` ; `p_item_diet_redmeatfree?`: `boolean` ; `p_item_diet_vegan?`: `boolean` ; `p_item_diet_vegetarian?`: `boolean` ; `p_item_distribution?`: `string` ; `p_item_id`: `string` ; `p_item_ingredients?`: `string` ; `p_item_logistics?`: `number` ; `p_item_name?`: `string` ; `p_item_packageunit?`: `string` ; `p_item_producturl?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_create`: \{ `Args`: \{ `p_meal_code`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date`: `string` ; `p_meal_event_id`: `string` ; `p_meal_mealtype_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_delete`: \{ `Args`: \{ `p_meal_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meal_update`: \{ `Args`: \{ `p_meal_code?`: `string` ; `p_meal_collectiondate?`: `string` ; `p_meal_date?`: `string` ; `p_meal_id`: `string` ; `p_meal_mealtype_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_bulk_delete`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_unit_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `deleted_count`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_mealplan_create`: \{ `Args`: \{ `p_mealplan_dish_id`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_meal_id`: `string` ; `p_mealplan_unit_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_mealplan_update`: \{ `Args`: \{ `p_mealplan_dish_id?`: `string` ; `p_mealplan_dish_multiplier?`: `number` ; `p_mealplan_id`: `string` ; `p_mealplan_meal_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_meals_bulk_import`: \{ `Args`: \{ `p_meals_data`: `Json` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_package_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `package_id`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_itemid`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_package_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_ctnpkgs?`: `number` ; `p_package_id`: `string` ; `p_package_itemid?`: `string` ; `p_package_palletctns?`: `number` ; `p_package_size?`: `number` ; `p_package_type?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id`: `string` ; `p_recipe_dish_id`: `string` ; `p_recipe_item_id`: `string` ; `p_recipe_qtypp`: `number` ; `p_recipe_uptake`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_recipe_delete`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` }[] } ; `app_cake_recipe_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_recipe_diettype_id?`: `string` ; `p_recipe_id`: `string` ; `p_recipe_item_id?`: `string` ; `p_recipe_qtypp?`: `number` ; `p_recipe_uptake?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_name`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `success`: `boolean` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_create`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supplier_update`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `supplier_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_supplier_contactemail?`: `string` ; `p_supplier_contactname?`: `string` ; `p_supplier_contactnumber?`: `string` ; `p_supplier_id`: `string` ; `p_supplier_name?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_create`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` ; `supply_id`: `string` }[] } \| \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_supply_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_supplier_id?`: `string` ; `p_supply_code?`: `string` ; `p_supply_cost?`: `number` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `success`: `boolean` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_create`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_event_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_unit_update`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `message`: `string` ; `success`: `boolean` ; `unit_id`: `string` }[] } \| \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_unit_contingent?`: `string` ; `p_unit_id`: `string` ; `p_unit_name?`: `string` ; `p_unit_number?`: `number` ; `p_unit_subcamp?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `message`: `string` ; `organisation_id`: `string` ; `success`: `boolean` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `app_cake_units_bulk_import`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_units_data`: `Json` ; `p_user_id?`: `string` } ; `Returns`: \{ `errors`: `Json` ; `failed`: `number` ; `imported`: `number` ; `message`: `string` ; `success`: `boolean` }[] } ; `app_name`: \{ `Args`: `never` ; `Returns`: `string` } ; `cleanup_orphaned_file_references`: \{ `Args`: `never` ; `Returns`: `number` } ; `data_cake_deliveries_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `delivery_address`: `string` ; `delivery_date`: `string` ; `delivery_id`: `string` ; `delivery_notes`: `string` ; `item_count`: `number` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_quantity`: `number` }[] } ; `data_cake_diettypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_diners_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids?`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `diettype_code`: `string` ; `diettype_description`: `string` ; `diettype_name`: `string` ; `diner_adult`: `number` ; `diner_diettype_id`: `string` ; `diner_id`: `string` ; `diner_unit_id`: `string` ; `diner_youth`: `number` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dish_details`: \{ `Args`: \{ `p_dish_id`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_dishes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_code`: `string` ; `dish_description`: `string` ; `dish_dietnote`: `string` ; `dish_equipment`: `string` ; `dish_event_id`: `string` ; `dish_id`: `string` ; `dish_mealtype_id`: `string` ; `dish_name`: `string` ; `dish_prep`: `string` ; `dish_step1`: `string` ; `dish_step2`: `string` ; `dish_step3`: `string` ; `dish_step4`: `string` ; `dish_step5`: `string` ; `event_code`: `string` ; `event_name`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_distribution_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `collection_date`: `string` ; `diettype_id`: `string` ; `diettype_name`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `logistics_name`: `string` ; `meal_dates`: `string`[] ; `package_size`: `number` ; `packages_needed`: `number` ; `required_quantity`: `number` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` }[] } ; `data_cake_item_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `string` ; `item_diet_diabetic`: `string` ; `item_diet_eggfree`: `string` ; `item_diet_glutenfree`: `string` ; `item_diet_halal`: `string` ; `item_diet_kosher`: `string` ; `item_diet_lactosefree`: `string` ; `item_diet_lowfodmap`: `string` ; `item_diet_lowfructose`: `string` ; `item_diet_porkfree`: `string` ; `item_diet_redmeatfree`: `string` ; `item_diet_vegan`: `string` ; `item_diet_vegetarian`: `string` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_item_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_item_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_items_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `item_brand`: `string` ; `item_diet_dairyfree`: `boolean` ; `item_diet_diabetic`: `boolean` ; `item_diet_eggfree`: `boolean` ; `item_diet_glutenfree`: `boolean` ; `item_diet_halal`: `boolean` ; `item_diet_kosher`: `boolean` ; `item_diet_lactosefree`: `boolean` ; `item_diet_lowfodmap`: `boolean` ; `item_diet_lowfructose`: `boolean` ; `item_diet_porkfree`: `boolean` ; `item_diet_redmeatfree`: `boolean` ; `item_diet_vegan`: `boolean` ; `item_diet_vegetarian`: `boolean` ; `item_distribution`: `string` ; `item_id`: `string` ; `item_ingredients`: `string` ; `item_logistics`: `number` ; `item_name`: `string` ; `item_packageunit`: `string` ; `item_producturl`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealplans_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_unit_ids`: `string`[] ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `dish_dish_code`: `string` ; `dish_dish_id`: `string` ; `dish_dish_name`: `string` ; `meal_meal_code`: `string` ; `meal_meal_date`: `string` ; `meal_meal_event_id`: `string` ; `meal_mealtype_id`: `string` ; `mealplan_dish_id`: `string` ; `mealplan_dish_multiplier`: `number` ; `mealplan_id`: `string` ; `mealplan_meal_id`: `string` ; `mealplan_unit_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_meals_get`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_cake_meals_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `meal_code`: `string` ; `meal_collectiondate`: `string` ; `meal_date`: `string` ; `meal_event_id`: `string` ; `meal_id`: `string` ; `meal_mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_mealtypes_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `mealtype_id`: `string` ; `mealtype_name`: `string` ; `organisation_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_orders_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `delivery_date`: `string` ; `item_brand`: `string` ; `item_id`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `package_cost`: `number` ; `package_ctnpkgs`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `total_carton_cost`: `number` ; `total_cartons`: `number` ; `total_packages`: `number` ; `total_pkg_cost`: `number` }[] } ; `data_cake_package_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_package_usage_check`: \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } \| \{ `Args`: \{ `p_current_event_id`: `string` ; `p_organisation_id?`: `string` ; `p_package_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `other_event_names`: `string`[] ; `used_in_current_event`: `boolean` ; `used_in_other_events`: `boolean` }[] } ; `data_cake_packages_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_item_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `package_ctnpkgs`: `number` ; `package_id`: `string` ; `package_itemid`: `string` ; `package_palletctns`: `number` ; `package_size`: `number` ; `package_type`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_recipe_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_recipe_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_recipes_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `diettype_name`: `string` ; `dish_code`: `string` ; `dish_name`: `string` ; `item_brand`: `string` ; `item_name`: `string` ; `item_packageunit`: `string` ; `mealtype_name`: `string` ; `recipe_diettype_id`: `string` ; `recipe_dish_id`: `string` ; `recipe_id`: `string` ; `recipe_item_id`: `string` ; `recipe_qtypp`: `number` ; `recipe_uptake`: `number` ; `updated_at`: `string` }[] } ; `data_cake_suppliers_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supplier_contactemail`: `string` ; `supplier_contactname`: `string` ; `supplier_contactnumber`: `string` ; `supplier_id`: `string` ; `supplier_name`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supplies_list`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_package_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_supply_details`: \{ `Args`: \{ `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_supply_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `supply_code`: `string` ; `supply_cost`: `number` ; `supply_event_id`: `string` ; `supply_id`: `string` ; `supply_packageid`: `string` ; `supply_supplier_id`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_cake_units_list`: \{ `Args`: \{ `p_event_id`: `string` ; `p_limit?`: `number` ; `p_offset?`: `number` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `organisation_id`: `string` ; `unit_contingent`: `string` ; `unit_event_id`: `string` ; `unit_id`: `string` ; `unit_name`: `string` ; `unit_number`: `number` ; `unit_subcamp`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `data_event_get_by_code`: \{ `Args`: \{ `p_event_code`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_billing`: `string` ; `event_catering_email`: `string` ; `event_code`: `string` ; `event_col_d1`: `string` ; `event_col_d2`: `string` ; `event_col_l1`: `string` ; `event_col_l2`: `string` ; `event_col_m1`: `string` ; `event_col_m2`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_footer`: `string` ; `event_id`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_by_category_list`: \{ `Args`: \{ `p_category`: `string` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_count_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `number` } ; `data_file_reference_create`: \{ `Args`: \{ `p_app_id`: `string` ; `p_file_metadata?`: `Json` ; `p_file_path`: `string` ; `p_is_public?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_delete`: \{ `Args`: \{ `p_delete_file?`: `boolean` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `data_file_reference_get`: \{ `Args`: \{ `p_file_reference_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` ; `organisation_id`: `string` ; `record_id`: `string` ; `table_name`: `string` ; `updated_at`: `string` }[] } ; `data_file_reference_list`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `file_metadata`: `Json` ; `file_path`: `string` ; `id`: `string` ; `is_public`: `boolean` }[] } ; `data_file_reference_signed_url_get`: \{ `Args`: \{ `p_expires_in?`: `number` ; `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_file_reference_url_get`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: `string` } ; `data_user_events_get`: \{ `Args`: \{ `p_app_name?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `created_at`: `string` ; `event_code`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_participants`: `number` ; `event_venue`: `string` ; `id`: `string` ; `is_visible`: `boolean` ; `organisation_id`: `string` ; `updated_at`: `string` }[] } ; `data_user_organisation_roles_get`: \{ `Args`: \{ `p_organisation_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `created_at`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `id`: `string` ; `name`: `string` ; `notes`: `string` ; `organisation_id`: `string` ; `revoked_at`: `string` ; `revoked_by`: `string` ; `role`: `string` ; `status`: `string` ; `updated_at`: `string` ; `user_id`: `string` }[] } ; `data_user_organisations_get`: \{ `Args`: \{ `p_user_id?`: `string` } ; `Returns`: \{ `granted_at`: `string` ; `is_primary`: `boolean` ; `organisation_id`: `string` ; `organisation_name`: `string` ; `user_role`: `string` }[] } ; `debug_auth_context`: \{ `Args`: `never` ; `Returns`: `Json` } ; `delete_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_user_id?`: `string` } ; `Returns`: `boolean` } ; `get_app_config`: \{ `Args`: \{ `app_id`: `string` } ; `Returns`: `Json` } ; `get_current_organisation_context`: \{ `Args`: `never` ; `Returns`: `string` } ; `get_file_url_for_record`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `string` } ; `get_files_to_migrate_to_public`: \{ `Args`: `never` ; `Returns`: \{ `file_id`: `string` ; `new_path`: `string` ; `old_path`: `string` ; `organisation_id`: `string` }[] } ; `get_medi_conditions`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `condition_type_id`: `number` ; `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `diagnosed_by`: `string` ; `diagnosed_date`: `string` ; `emergency_protocol`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `last_episode_date`: `string` ; `management_plan`: `string` ; `name`: `string` ; `notes`: `string` ; `profile_id`: `number` ; `reaction`: `string` ; `severity`: `string` ; `treatment`: `string` ; `triggers`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_medi_items`: \{ `Args`: \{ `p_profile_id`: `number` } ; `Returns`: \{ `created_at`: `string` ; `created_by`: `string` ; `custom_name`: `string` ; `data_classification`: `string` ; `description`: `string` ; `dose`: `string` ; `end_date`: `string` ; `frequency`: `string` ; `id`: `number` ; `is_active`: `boolean` ; `is_emergency_medication`: `boolean` ; `item_type_id`: `number` ; `name`: `string` ; `pharmacy_details`: `string` ; `prescribing_doctor`: `string` ; `profile_id`: `number` ; `route`: `string` ; `side_effects`: `string` ; `start_date`: `string` ; `storage_requirements`: `string` ; `updated_at`: `string` ; `updated_by`: `string` }[] } ; `get_public_event_by_code`: \{ `Args`: \{ `event_code_param`: `string` } ; `Returns`: \{ `event_billing`: `string` ; `event_catering_email`: `string` ; `event_colours`: `Json` ; `event_date`: `string` ; `event_days`: `number` ; `event_email`: `string` ; `event_id`: `string` ; `event_logo`: `string` ; `event_name`: `string` ; `event_news`: `string` ; `event_participants`: `number` ; `event_rounddown`: `number` ; `event_typicalunit`: `number` ; `event_venue`: `string` ; `event_youthmultiplier`: `number` ; `organisation_id`: `string` }[] } ; `has_files`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_record_id`: `string` ; `p_table_name`: `string` } ; `Returns`: `boolean` } ; `increment_attempts`: \{ `Args`: \{ `p_identifier`: `string` ; `p_window_minutes?`: `number` } ; `Returns`: \{ `current_attempts`: `number` ; `is_blocked`: `boolean` ; `window_start`: `string` }[] } ; `insert_event_app_access`: \{ `Args`: \{ `p_app_id`: `string` ; `p_created_by?`: `string` ; `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_updated_by?`: `string` } ; `Returns`: `string` } ; `insert_journal_image`: \{ `Args`: \{ `p_created_by`: `string` ; `p_file_name`: `string` ; `p_file_path`: `string` ; `p_post_id`: `string` } ; `Returns`: `undefined` } ; `is_super_admin`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `is_user_super_admin`: \{ `Args`: `never` ; `Returns`: `boolean` } ; `populate_location_descriptions`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `populate_location_display_names`: \{ `Args`: `never` ; `Returns`: `undefined` } ; `rbac_audit_log`: \{ `Args`: \{ `p_event_data?`: `Json` ; `p_event_type`: `string` ; `p_resource_id`: `string` ; `p_resource_type`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } \| \{ `Args`: \{ `p_event_type`: `string` ; `p_ip_address?`: `unknown` ; `p_metadata?`: `Json` ; `p_organisation_id?`: `string` ; `p_permission?`: `string` ; `p_user_agent?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `audit_id`: `string` ; `error_code`: `string` ; `message`: `string` ; `success`: `boolean` }[] } ; `rbac_check_distribution_or_page_permission`: \{ `Args`: \{ `p_event_id`: `string` ; `p_organisation_id`: `string` ; `p_page_name`: `string` ; `p_permission_pattern`: `string` } ; `Returns`: `boolean` } ; `rbac_check_permission_simplified`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_permission`: `string` ; `p_user_id`: `string` } ; `Returns`: `boolean` } ; `rbac_detect_concurrent_sessions`: \{ `Args`: \{ `p_device_fingerprint?`: `string` ; `p_timeout_seconds?`: `number` ; `p_user_id`: `string` } ; `Returns`: \{ `concurrent_sessions_count`: `number` ; `has_concurrent`: `boolean` ; `session_ids`: `string`[] }[] } ; `rbac_enforce_session_timeout`: \{ `Args`: \{ `p_timeout_minutes?`: `number` } ; `Returns`: \{ `expired_sessions_count`: `number` ; `user_ids`: `string`[] }[] } ; `rbac_generate_device_fingerprint`: \{ `Args`: `never` ; `Returns`: `string` } ; `rbac_invalidate_other_sessions`: \{ `Args`: \{ `p_current_device_fingerprint`: `string` ; `p_user_id`: `string` } ; `Returns`: `number` } ; `rbac_permissions_get`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_page_id?`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `has_permission`: `boolean` ; `permission_type`: `string` ; `role_name`: `string` }[] } ; `rbac_role_grant`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_granted_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `role_id`: `string` ; `success`: `boolean` }[] } ; `rbac_role_revoke`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_revoked_by?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `revoked_count`: `number` ; `success`: `boolean` }[] } ; `rbac_role_validate`: \{ `Args`: \{ `p_context_id?`: `string` ; `p_role_name`: `string` ; `p_role_type`: `string` ; `p_user_id`: `string` } ; `Returns`: \{ `expires_at`: `string` ; `granted_at`: `string` ; `is_valid`: `boolean` ; `role_id`: `string` ; `status`: `string` }[] } ; `rbac_roles_list`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_event_id?`: `string` ; `p_organisation_id?`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `context_id`: `string` ; `granted_at`: `string` ; `granted_by`: `string` ; `role_name`: `string` ; `role_type`: `string` ; `status`: `string` }[] } ; `rbac_session_track`: \{ `Args`: \{ `p_app_id?`: `string` ; `p_device_fingerprint?`: `string` ; `p_event_id?`: `string` ; `p_ip_address?`: `string` ; `p_session_type?`: `string` ; `p_user_agent?`: `string` ; `p_user_id`: `string` } ; `Returns`: `string` } ; `rbac_super_admin_check`: \{ `Args`: \{ `p_user_id`: `string` } ; `Returns`: `boolean` } ; `secure_query`: \{ `Args`: \{ `p_organisation_id`: `string` ; `p_select_columns`: `string` ; `p_table_name`: `string` ; `p_user_id`: `string` } ; `Returns`: `Json` } ; `set_app_organisation_id`: \{ `Args`: \{ `p_organisation_id`: `string` } ; `Returns`: `undefined` } ; `set_organisation_context`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `undefined` } ; `sys_audit_cleanup`: \{ `Args`: \{ `p_days_to_keep?`: `number` ; `p_user_id?`: `string` } ; `Returns`: \{ `error_code`: `string` ; `message`: `string` ; `rows_deleted`: `number` ; `success`: `boolean` }[] } ; `util_app_resolve`: \{ `Args`: \{ `p_app_name`: `string` ; `p_user_id?`: `string` } ; `Returns`: \{ `app_id`: `string` ; `app_name`: `string` ; `has_access`: `boolean` ; `is_active`: `boolean` }[] } ; `validate_base_question_options`: \{ `Args`: \{ `options`: `Json` ; `question_type`: `string` } ; `Returns`: `boolean` } ; `validate_organisation_access`: \{ `Args`: \{ `org_id`: `string` } ; `Returns`: `boolean` } ; `verify_greenpay_signature`: \{ `Args`: \{ `payload`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } ; `verify_webhook_signature`: \{ `Args`: \{ `payload`: `string` ; `secret`: `string` ; `signature`: `string` } ; `Returns`: `boolean` } } ; `Enums`: \{ `access_level`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"super"`` ; `crud_operation`: ``"create"`` \| ``"read"`` \| ``"update"`` \| ``"delete"`` ; `dd_mandate_status`: ``"active"`` \| ``"pending"`` \| ``"revoked"`` \| ``"failed"`` ; `journal_post_status`: ``"draft"`` \| ``"published"`` ; `organisation_role`: ``"org_admin"`` \| ``"member"`` \| ``"super_admin"`` \| ``"moderator"`` \| ``"admin"`` ; `pace_membership_status`: ``"Provisional"`` \| ``"Cancelled"`` \| ``"Active"`` \| ``"Suspended"`` \| ``"Resigned"`` ; `payment_method_type`: ``"card"`` \| ``"bank"`` ; `rbac_event_app_role`: ``"viewer"`` \| ``"participant"`` \| ``"planner"`` \| ``"event_admin"`` ; `rbac_global_role`: ``"super_admin"`` ; `rbac_organisation_role`: ``"org_admin"`` \| ``"leader"`` \| ``"member"`` \| ``"supporter"`` ; `risk_consequence`: ``"Insignificant"`` \| ``"Minor"`` \| ``"Significant"`` \| ``"Major"`` \| ``"Severe"`` ; `risk_likelihood`: ``"Rare"`` \| ``"Unlikely"`` \| ``"Possible"`` \| ``"Likely"`` \| ``"Almost certain"`` ; `risk_status`: ``"Planned"`` \| ``"In progress"`` \| ``"Complete"`` ; `risk_type`: ``"Transport"`` \| ``"Accommodation"`` \| ``"Activity"`` \| ``"Financial"`` \| ``"Medical/Welfare"`` \| ``"Operational"`` ; `risk_when`: ``"Prior"`` \| ``"During"`` ; `sensitivity`: ``"low"`` \| ``"medium"`` \| ``"high"`` } ; `CompositeTypes`: {} }, \{ `PostgrestVersion`: ``"12.2.3 (519615d)"`` }\>
|
|
160
|
-
|
|
161
|
-
#### Defined in
|
|
162
|
-
|
|
163
|
-
[packages/core/src/rbac/secureClient.ts:455](https://github.com/jmruthers/pace-core/blob/main/packages/core/src/rbac/secureClient.ts#L455)
|