@litusarchieve18/agricore-utils 1.0.12 → 1.0.13
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/README.md +2 -0
- package/dist/chunk-QI4YXI4P.mjs +585 -0
- package/dist/constants-DxCjnH4L.d.mts +402 -0
- package/dist/constants-DxCjnH4L.d.ts +402 -0
- package/dist/constants.d.mts +1 -0
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +654 -0
- package/dist/constants.mjs +96 -0
- package/dist/index.d.mts +16 -417
- package/dist/index.d.ts +16 -417
- package/dist/index.js +281 -272
- package/dist/index.mjs +75 -555
- package/package.json +7 -2
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
type PermissionLevel = 'WRITE' | 'READ' | 'NONE';
|
|
2
|
+
type ScopeType = 'company' | 'legalEntity' | 'facility';
|
|
3
|
+
interface AvailableScope {
|
|
4
|
+
authScopeId: string;
|
|
5
|
+
base44Id: string;
|
|
6
|
+
type: ScopeType;
|
|
7
|
+
name: string;
|
|
8
|
+
parentId: string | null;
|
|
9
|
+
}
|
|
10
|
+
interface CompanyConfig {
|
|
11
|
+
isMultiEntity: boolean;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Deep map of scope IDs to resource paths and their permission levels.
|
|
15
|
+
* Example: { "uuid-123": { "farm.records": "WRITE" } }
|
|
16
|
+
*/
|
|
17
|
+
interface ResourceOverrides {
|
|
18
|
+
[scopeId: string]: Record<string, PermissionLevel>;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* The canonical Session object used throughout the AgriCore ecosystem.
|
|
22
|
+
* All backend logic and frontend components should rely on THIS shape.
|
|
23
|
+
*/
|
|
24
|
+
interface AgriCoreSession {
|
|
25
|
+
userId: string;
|
|
26
|
+
userName: string;
|
|
27
|
+
userEmail: string;
|
|
28
|
+
companyId: string;
|
|
29
|
+
activeScopeId: string | null;
|
|
30
|
+
companyConfig: CompanyConfig;
|
|
31
|
+
role: string;
|
|
32
|
+
privileges: string[];
|
|
33
|
+
enabledModules: string[];
|
|
34
|
+
readScopes: string[];
|
|
35
|
+
writeScopes: string[];
|
|
36
|
+
availableScopes: AvailableScope[];
|
|
37
|
+
resourceOverrides: ResourceOverrides;
|
|
38
|
+
}
|
|
39
|
+
interface ResolvedError {
|
|
40
|
+
title: string;
|
|
41
|
+
text: string;
|
|
42
|
+
module: string;
|
|
43
|
+
moduleLabel: string;
|
|
44
|
+
status: number;
|
|
45
|
+
catAct: string;
|
|
46
|
+
isSubscriptionIssue: boolean;
|
|
47
|
+
isPermissionIssue: boolean;
|
|
48
|
+
}
|
|
49
|
+
interface AuthScopeFields {
|
|
50
|
+
facilityId?: string;
|
|
51
|
+
legalEntityId?: string;
|
|
52
|
+
companyId?: string;
|
|
53
|
+
}
|
|
54
|
+
interface TabConfig {
|
|
55
|
+
resourceId?: string;
|
|
56
|
+
allowedRoles?: string[];
|
|
57
|
+
requiredPrivileges?: string[];
|
|
58
|
+
}
|
|
59
|
+
interface FormMeta {
|
|
60
|
+
label: string;
|
|
61
|
+
menuUrl: string;
|
|
62
|
+
module: string;
|
|
63
|
+
}
|
|
64
|
+
interface TaskTypeConfig {
|
|
65
|
+
label: string;
|
|
66
|
+
targetEntity: string;
|
|
67
|
+
description: string;
|
|
68
|
+
mimeTypes: string[];
|
|
69
|
+
icon: string;
|
|
70
|
+
approveAction: string;
|
|
71
|
+
}
|
|
72
|
+
interface InfrastructureFields {
|
|
73
|
+
canonicalId: string;
|
|
74
|
+
companyId: string;
|
|
75
|
+
legalEntityId: string | null;
|
|
76
|
+
facilityId: string | null;
|
|
77
|
+
authScopeId: string;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
declare const MOD: {
|
|
81
|
+
readonly OPERATIONS: "OPR";
|
|
82
|
+
readonly EQUIPMENT: "EQP";
|
|
83
|
+
readonly PACKHOUSE: "PCK";
|
|
84
|
+
readonly FARM: "FRM";
|
|
85
|
+
readonly SAFETY: "SAF";
|
|
86
|
+
readonly TEAM_HR: "THR";
|
|
87
|
+
readonly RECORDS: "REC";
|
|
88
|
+
readonly ADMIN: "ADM";
|
|
89
|
+
readonly DOCUMENTS: "DOC";
|
|
90
|
+
readonly ALERTS: "ALT";
|
|
91
|
+
readonly INFRA: "INF";
|
|
92
|
+
readonly SESSION: "SES";
|
|
93
|
+
};
|
|
94
|
+
type ModCode = typeof MOD[keyof typeof MOD];
|
|
95
|
+
declare const CAT: {
|
|
96
|
+
readonly SUBSCRIPTION: "1";
|
|
97
|
+
readonly PERMISSION: "2";
|
|
98
|
+
readonly VALIDATION: "3";
|
|
99
|
+
readonly INTEGRITY: "4";
|
|
100
|
+
};
|
|
101
|
+
declare const ACT: {
|
|
102
|
+
readonly GENERIC: "00";
|
|
103
|
+
readonly VIEW: "01";
|
|
104
|
+
readonly CREATE: "02";
|
|
105
|
+
readonly EDIT: "03";
|
|
106
|
+
readonly DELETE: "04";
|
|
107
|
+
readonly UPLOAD: "05";
|
|
108
|
+
};
|
|
109
|
+
declare const SENTINEL_UUID = "00000000-0000-0000-0000-000000000000";
|
|
110
|
+
declare const MODULE_LABELS: Record<string, string>;
|
|
111
|
+
declare const ERROR_DICTIONARY: Record<string, {
|
|
112
|
+
title: string;
|
|
113
|
+
text: string;
|
|
114
|
+
}>;
|
|
115
|
+
declare const UserRole: {
|
|
116
|
+
readonly OWNER: "owner";
|
|
117
|
+
readonly MANAGER: "manager";
|
|
118
|
+
readonly SUPERVISOR: "supervisor";
|
|
119
|
+
readonly LEADING_HAND: "leadingHand";
|
|
120
|
+
readonly WORKER: "worker";
|
|
121
|
+
};
|
|
122
|
+
type UserRoleType = typeof UserRole[keyof typeof UserRole];
|
|
123
|
+
declare const UserPrivilege: {
|
|
124
|
+
readonly FINANCE: "finance";
|
|
125
|
+
readonly HR: "hr";
|
|
126
|
+
readonly MECHANIC: "mechanic";
|
|
127
|
+
readonly AUDIT_COMPLIANCE: "auditCompliance";
|
|
128
|
+
readonly ADMIN: "admin";
|
|
129
|
+
};
|
|
130
|
+
declare const AccessLevel: {
|
|
131
|
+
readonly NONE: "NONE";
|
|
132
|
+
readonly READ: "READ";
|
|
133
|
+
readonly WRITE: "WRITE";
|
|
134
|
+
};
|
|
135
|
+
type AccessLevelType = keyof typeof AccessLevel;
|
|
136
|
+
declare const EnabledModule: {
|
|
137
|
+
readonly FARM_MANAGEMENT: "farm_management";
|
|
138
|
+
readonly PACKHOUSE: "packhouse";
|
|
139
|
+
readonly ACCOMMODATION: "accommodation";
|
|
140
|
+
};
|
|
141
|
+
declare const FacilityType: {
|
|
142
|
+
readonly FARM: "farm";
|
|
143
|
+
readonly PACKHOUSE: "packhouse";
|
|
144
|
+
readonly ACCOMMODATION: "accommodation";
|
|
145
|
+
};
|
|
146
|
+
declare const LinkedStatus: {
|
|
147
|
+
readonly NOT_LINKED: "not_linked";
|
|
148
|
+
readonly PENDING_LINK: "pending_link";
|
|
149
|
+
readonly LINKED: "linked";
|
|
150
|
+
};
|
|
151
|
+
declare const RelationshipType: {
|
|
152
|
+
readonly SUPPLIER: "supplier";
|
|
153
|
+
readonly CUSTOMER: "customer";
|
|
154
|
+
readonly BOTH: "both";
|
|
155
|
+
};
|
|
156
|
+
declare const ApprovalType: {
|
|
157
|
+
readonly ROLE: "role";
|
|
158
|
+
readonly PRIVILEGE: "privilege";
|
|
159
|
+
readonly SPECIFIC_USERS: "specific_users";
|
|
160
|
+
};
|
|
161
|
+
declare const TransactionType: {
|
|
162
|
+
readonly PURCHASE_ORDER: "purchase_order";
|
|
163
|
+
readonly SALES_ORDER: "sales_order";
|
|
164
|
+
readonly REPAIR: "repair";
|
|
165
|
+
readonly FUEL: "fuel";
|
|
166
|
+
readonly OTHER: "other";
|
|
167
|
+
};
|
|
168
|
+
declare const ApprovalStatus: {
|
|
169
|
+
readonly PENDING: "pending";
|
|
170
|
+
readonly APPROVED: "approved";
|
|
171
|
+
readonly REJECTED: "rejected";
|
|
172
|
+
};
|
|
173
|
+
declare const OrderStatus: {
|
|
174
|
+
readonly DRAFT: "draft";
|
|
175
|
+
readonly PENDING_FINANCE: "pending_finance";
|
|
176
|
+
readonly NEW: "new";
|
|
177
|
+
readonly ACKNOWLEDGED: "acknowledged";
|
|
178
|
+
readonly IN_PROGRESS: "in_progress";
|
|
179
|
+
readonly SHIPPED: "shipped";
|
|
180
|
+
readonly RECEIVED: "received";
|
|
181
|
+
readonly CANCELLED: "cancelled";
|
|
182
|
+
};
|
|
183
|
+
declare const NotificationMode: {
|
|
184
|
+
readonly INTERNAL: "internal";
|
|
185
|
+
readonly EXTERNAL_EMAIL: "external_email";
|
|
186
|
+
readonly NONE: "none";
|
|
187
|
+
};
|
|
188
|
+
declare const TaskType: {
|
|
189
|
+
readonly KML_PARSE: "KML_PARSE";
|
|
190
|
+
readonly INVOICE_OCR: "INVOICE_OCR";
|
|
191
|
+
readonly AUDIT_UPLOAD: "AUDIT_UPLOAD";
|
|
192
|
+
readonly REPORT_GEN: "REPORT_GEN";
|
|
193
|
+
};
|
|
194
|
+
declare const TaskStatus: {
|
|
195
|
+
readonly PENDING: "PENDING";
|
|
196
|
+
readonly PROCESSING: "PROCESSING";
|
|
197
|
+
readonly COMPLETED: "COMPLETED";
|
|
198
|
+
readonly FAILED: "FAILED";
|
|
199
|
+
readonly AWAITING_REVIEW: "AWAITING_REVIEW";
|
|
200
|
+
readonly VERIFIED: "VERIFIED";
|
|
201
|
+
readonly REJECTED: "REJECTED";
|
|
202
|
+
};
|
|
203
|
+
declare const MimeType: {
|
|
204
|
+
readonly KML: "application/vnd.google-earth.kml+xml";
|
|
205
|
+
readonly KMZ: "application/vnd.google-earth.kmz";
|
|
206
|
+
readonly PDF: "application/pdf";
|
|
207
|
+
readonly XLSX: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
|
|
208
|
+
readonly XLS: "application/vnd.ms-excel";
|
|
209
|
+
readonly JPEG: "image/jpeg";
|
|
210
|
+
readonly PNG: "image/png";
|
|
211
|
+
};
|
|
212
|
+
declare const TargetEntityType: {
|
|
213
|
+
readonly FARM: "FARM";
|
|
214
|
+
readonly ZONE: "ZONE";
|
|
215
|
+
readonly BLOCK: "BLOCK";
|
|
216
|
+
readonly INFRASTRUCTURE: "INFRASTRUCTURE";
|
|
217
|
+
readonly AUTO: "AUTO";
|
|
218
|
+
};
|
|
219
|
+
declare const AuditType: {
|
|
220
|
+
readonly FRESHCARE: "Freshcare";
|
|
221
|
+
readonly HACCP: "HACCP";
|
|
222
|
+
readonly WHS: "WHS";
|
|
223
|
+
readonly CUSTOM: "Custom";
|
|
224
|
+
};
|
|
225
|
+
declare const AuditStatus: {
|
|
226
|
+
readonly DRAFT: "DRAFT";
|
|
227
|
+
readonly IN_REVIEW: "IN_REVIEW";
|
|
228
|
+
readonly FINALIZED: "FINALIZED";
|
|
229
|
+
};
|
|
230
|
+
declare const SoilTexture: {
|
|
231
|
+
readonly SAND: "SAND";
|
|
232
|
+
readonly LOAMY_SAND: "LOAMY_SAND";
|
|
233
|
+
readonly SANDY_LOAM: "SANDY_LOAM";
|
|
234
|
+
readonly LOAM: "LOAM";
|
|
235
|
+
readonly SILT_LOAM: "SILT_LOAM";
|
|
236
|
+
readonly SILT: "SILT";
|
|
237
|
+
readonly SANDY_CLAY_LOAM: "SANDY_CLAY_LOAM";
|
|
238
|
+
readonly CLAY_LOAM: "CLAY_LOAM";
|
|
239
|
+
readonly SILTY_CLAY_LOAM: "SILTY_CLAY_LOAM";
|
|
240
|
+
readonly SANDY_CLAY: "SANDY_CLAY";
|
|
241
|
+
readonly SILTY_CLAY: "SILTY_CLAY";
|
|
242
|
+
readonly CLAY: "CLAY";
|
|
243
|
+
};
|
|
244
|
+
declare const MicroclimateZone: {
|
|
245
|
+
readonly STANDARD: "STANDARD";
|
|
246
|
+
readonly FROST_POCKET: "FROST_POCKET";
|
|
247
|
+
readonly WIND_CORRIDOR: "WIND_CORRIDOR";
|
|
248
|
+
readonly EXPOSED_RIDGE: "EXPOSED_RIDGE";
|
|
249
|
+
readonly HEAT_TRAP: "HEAT_TRAP";
|
|
250
|
+
readonly RIPARIAN: "RIPARIAN";
|
|
251
|
+
};
|
|
252
|
+
declare const PlantingMethod: {
|
|
253
|
+
readonly SQUARE: "SQUARE";
|
|
254
|
+
readonly RECTANGULAR: "RECTANGULAR";
|
|
255
|
+
readonly HEXAGONAL: "HEXAGONAL";
|
|
256
|
+
readonly QUINCUNX: "QUINCUNX";
|
|
257
|
+
readonly CONTOUR: "CONTOUR";
|
|
258
|
+
};
|
|
259
|
+
declare const RowOrientation: {
|
|
260
|
+
readonly NORTH_SOUTH: "NORTH_SOUTH";
|
|
261
|
+
readonly EAST_WEST: "EAST_WEST";
|
|
262
|
+
readonly NORTHEAST_SOUTHWEST: "NORTHEAST_SOUTHWEST";
|
|
263
|
+
readonly NORTHWEST_SOUTHEAST: "NORTHWEST_SOUTHEAST";
|
|
264
|
+
};
|
|
265
|
+
declare const EmitterType: {
|
|
266
|
+
readonly SURFACE_DRIP: "SURFACE_DRIP";
|
|
267
|
+
readonly SUBSURFACE_DRIP: "SUBSURFACE_DRIP";
|
|
268
|
+
readonly MICRO_SPRINKLER: "MICRO_SPRINKLER";
|
|
269
|
+
readonly JET_SPRAY: "JET_SPRAY";
|
|
270
|
+
readonly INLINE_DRIPPER: "INLINE_DRIPPER";
|
|
271
|
+
readonly PRESSURE_COMPENSATED: "PRESSURE_COMPENSATED";
|
|
272
|
+
};
|
|
273
|
+
declare const TrellisType: {
|
|
274
|
+
readonly NONE: "NONE";
|
|
275
|
+
readonly VERTICAL_AXIS: "VERTICAL_AXIS";
|
|
276
|
+
readonly TWO_D_PLANE: "2D_PLANE";
|
|
277
|
+
readonly V_TRELLIS: "V_TRELLIS";
|
|
278
|
+
readonly T_BAR: "T_BAR";
|
|
279
|
+
readonly PERGOLA: "PERGOLA";
|
|
280
|
+
readonly Y_TRELLIS: "Y_TRELLIS";
|
|
281
|
+
};
|
|
282
|
+
declare const NettingType: {
|
|
283
|
+
readonly NONE: "NONE";
|
|
284
|
+
readonly OVERHEAD_HAIL: "OVERHEAD_HAIL";
|
|
285
|
+
readonly SIDE_BIRD: "SIDE_BIRD";
|
|
286
|
+
readonly FULL_EXCLUSION: "FULL_EXCLUSION";
|
|
287
|
+
readonly SHADE_30: "SHADE_30";
|
|
288
|
+
readonly SHADE_50: "SHADE_50";
|
|
289
|
+
readonly CROSS_OVER: "CROSS_OVER";
|
|
290
|
+
};
|
|
291
|
+
declare const HarvestMethod: {
|
|
292
|
+
readonly HAND: "HAND";
|
|
293
|
+
readonly MACHINE: "MACHINE";
|
|
294
|
+
};
|
|
295
|
+
declare const VigorRating: {
|
|
296
|
+
readonly VERY_LOW: "VERY_LOW";
|
|
297
|
+
readonly LOW: "LOW";
|
|
298
|
+
readonly MODERATE: "MODERATE";
|
|
299
|
+
readonly HIGH: "HIGH";
|
|
300
|
+
readonly VERY_HIGH: "VERY_HIGH";
|
|
301
|
+
};
|
|
302
|
+
declare const CropCycleStatus: {
|
|
303
|
+
readonly NEW: "NEW";
|
|
304
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
305
|
+
readonly ACTIVE: "ACTIVE";
|
|
306
|
+
readonly COMPLETED: "COMPLETED";
|
|
307
|
+
};
|
|
308
|
+
declare const WaterSource: {
|
|
309
|
+
readonly BORE_WELL: "BORE_WELL";
|
|
310
|
+
readonly RIVER_STREAM: "RIVER_STREAM";
|
|
311
|
+
readonly ON_FARM_DAM: "ON_FARM_DAM";
|
|
312
|
+
readonly IRRIGATION_SCHEME: "IRRIGATION_SCHEME";
|
|
313
|
+
readonly MUNICIPAL: "MUNICIPAL";
|
|
314
|
+
readonly RECLAIMED_WASTE: "RECLAIMED_WASTE";
|
|
315
|
+
readonly RAINWATER: "RAINWATER";
|
|
316
|
+
};
|
|
317
|
+
declare const PhysicalState: {
|
|
318
|
+
readonly LIQUID: "LIQUID";
|
|
319
|
+
readonly GAS: "GAS";
|
|
320
|
+
};
|
|
321
|
+
declare const FORM_REGISTRY: Record<string, FormMeta>;
|
|
322
|
+
declare const TASK_TYPE_REGISTRY: Record<string, TaskTypeConfig>;
|
|
323
|
+
declare const RESOURCE_PATHS: {
|
|
324
|
+
dashboard: string;
|
|
325
|
+
operations: string;
|
|
326
|
+
equipment: string;
|
|
327
|
+
safety: string;
|
|
328
|
+
team: string;
|
|
329
|
+
records: string;
|
|
330
|
+
adminSettings: string;
|
|
331
|
+
documentHub: string;
|
|
332
|
+
documentHubTemplates: string;
|
|
333
|
+
documentHubFolder: string;
|
|
334
|
+
documentHubExtraction: string;
|
|
335
|
+
documentHubQueue: string;
|
|
336
|
+
analytics: string;
|
|
337
|
+
adminUserRoster: string;
|
|
338
|
+
adminRolesPermissions: string;
|
|
339
|
+
adminBlueprintsSites: string;
|
|
340
|
+
adminCompanySettings: string;
|
|
341
|
+
farmManagement: string;
|
|
342
|
+
packhouse: string;
|
|
343
|
+
accommodation: string;
|
|
344
|
+
equipPreStart: string;
|
|
345
|
+
equipMaintenance: string;
|
|
346
|
+
equipFuelRegister: string;
|
|
347
|
+
equipCalibration: string;
|
|
348
|
+
equipFleet: string;
|
|
349
|
+
safetyAuditing: string;
|
|
350
|
+
safetyFood: string;
|
|
351
|
+
safetyWhs: string;
|
|
352
|
+
safetyCleaning: string;
|
|
353
|
+
teamStaff: string;
|
|
354
|
+
teamTraining: string;
|
|
355
|
+
};
|
|
356
|
+
declare const RESOURCE_MODULE_MAP: Record<string, string[]>;
|
|
357
|
+
declare const ACCESS_RANK: Record<AccessLevelType, number>;
|
|
358
|
+
declare const ROLE_SECTIONS_BY_KEY: Record<string, UserRoleType[]>;
|
|
359
|
+
interface ResourceRequirement {
|
|
360
|
+
allowedRoles?: UserRoleType[];
|
|
361
|
+
requiredPrivileges?: string[];
|
|
362
|
+
}
|
|
363
|
+
declare const EVERYONE: ("owner" | "manager" | "supervisor" | "leadingHand" | "worker")[];
|
|
364
|
+
declare const RESOURCE_REQUIREMENTS: Record<string, ResourceRequirement>;
|
|
365
|
+
declare enum DocumentType {
|
|
366
|
+
SPRAY_RECORD = "SPRAY_RECORD",
|
|
367
|
+
FERTIGATION_RECORD = "FERTIGATION_RECORD",
|
|
368
|
+
FERTILIZER_RECORD = "FERTILIZER_RECORD",
|
|
369
|
+
QA = "QA",
|
|
370
|
+
CLEANING = "CLEANING",
|
|
371
|
+
PEST = "PEST",
|
|
372
|
+
EQUIPMENT_CALIBRATION_RECORD = "EQUIPMENT_CALIBRATION_RECORD",
|
|
373
|
+
INVENTORY_CONSUMABLES = "INVENTORY_CONSUMABLES",
|
|
374
|
+
INVENTORY_BOX_CARTON = "INVENTORY_BOX_CARTON",
|
|
375
|
+
INVENTORY_CHEMICALS = "INVENTORY_CHEMICALS",
|
|
376
|
+
STOCKTAKE = "STOCKTAKE",
|
|
377
|
+
STOCKTAKE_MSDS = "STOCKTAKE_MSDS",
|
|
378
|
+
MAPPING_FARM_MAPS = "MAPPING_FARM_MAPS",
|
|
379
|
+
MAPPING_TRAFIC_MANAGEMENT = "MAPPING_TRAFIC_MANAGEMENT",
|
|
380
|
+
MAPPING_EMERGENCY = "MAPPING_EMERGENCY",
|
|
381
|
+
INCIDENT_REPORT = "INCIDENT_REPORT",
|
|
382
|
+
TRAINING_RECORDS = "TRAINING_RECORDS",
|
|
383
|
+
SOPS = "SOPS",
|
|
384
|
+
RISK_ASSESSMENTS = "RISK_ASSESSMENTS",
|
|
385
|
+
SERVICING_MAINTENANCE = "SERVICING_MAINTENANCE",
|
|
386
|
+
SOIL_TEST = "SOIL_TEST",
|
|
387
|
+
LEAF_TEST = "LEAF_TEST",
|
|
388
|
+
WATER_TEST = "WATER_TEST",
|
|
389
|
+
MRL_TESTING = "MRL_TESTING",
|
|
390
|
+
HEAVY_METAL = "HEAVY_METAL",
|
|
391
|
+
MICROBIAL = "MICROBIAL",
|
|
392
|
+
HARVEST_LOG = "HARVEST_LOG",
|
|
393
|
+
PACKHOUSE_INSPECTION = "PACKHOUSE_INSPECTION",
|
|
394
|
+
TRAINING_CERTIFICATE = "TRAINING_CERTIFICATE",
|
|
395
|
+
INVOICE = "INVOICE",
|
|
396
|
+
LEGAL_CONTRACT = "LEGAL_CONTRACT",
|
|
397
|
+
AUDIT_REPORT = "AUDIT_REPORT",
|
|
398
|
+
SENSITIVE_IDENTITY = "SENSITIVE_IDENTITY"
|
|
399
|
+
}
|
|
400
|
+
declare const DOCUMENT_MENU_MAP: Record<DocumentType, string[]>;
|
|
401
|
+
|
|
402
|
+
export { TaskType as $, ACCESS_RANK as A, RESOURCE_REQUIREMENTS as B, CAT as C, DOCUMENT_MENU_MAP as D, ERROR_DICTIONARY as E, FORM_REGISTRY as F, ROLE_SECTIONS_BY_KEY as G, HarvestMethod as H, type InfrastructureFields as I, RelationshipType as J, type ResolvedError as K, LinkedStatus as L, MOD as M, NettingType as N, OrderStatus as O, type PermissionLevel as P, type ResourceOverrides as Q, RESOURCE_MODULE_MAP as R, type ResourceRequirement as S, RowOrientation as T, SENTINEL_UUID as U, type ScopeType as V, SoilTexture as W, TASK_TYPE_REGISTRY as X, type TabConfig as Y, TargetEntityType as Z, TaskStatus as _, ACT as a, type TaskTypeConfig as a0, TransactionType as a1, TrellisType as a2, UserPrivilege as a3, UserRole as a4, type UserRoleType as a5, VigorRating as a6, WaterSource as a7, AccessLevel as b, type AccessLevelType as c, type AgriCoreSession as d, ApprovalStatus as e, ApprovalType as f, AuditStatus as g, AuditType as h, type AuthScopeFields as i, type AvailableScope as j, type CompanyConfig as k, CropCycleStatus as l, DocumentType as m, EVERYONE as n, EmitterType as o, EnabledModule as p, FacilityType as q, type FormMeta as r, MODULE_LABELS as s, MicroclimateZone as t, MimeType as u, type ModCode as v, NotificationMode as w, PhysicalState as x, PlantingMethod as y, RESOURCE_PATHS as z };
|