@voyantjs/i18n 0.64.1 → 0.66.6
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/dist/admin/action-ledger-operator.d.ts +378 -0
- package/dist/admin/action-ledger-operator.d.ts.map +1 -0
- package/dist/admin/action-ledger-operator.js +375 -0
- package/dist/admin/app-operator.d.ts +3 -1
- package/dist/admin/app-operator.d.ts.map +1 -1
- package/dist/admin/app-operator.js +3 -1
- package/dist/admin/availability.d.ts +90 -0
- package/dist/admin/availability.d.ts.map +1 -1
- package/dist/admin/availability.js +90 -0
- package/dist/admin/bookings.d.ts +288 -0
- package/dist/admin/bookings.d.ts.map +1 -1
- package/dist/admin/bookings.js +288 -0
- package/dist/admin/legal-operator.d.ts +486 -0
- package/dist/admin/legal-operator.d.ts.map +1 -0
- package/dist/admin/legal-operator.js +483 -0
- package/dist/admin/products-dmc.d.ts +26 -0
- package/dist/admin/products-dmc.d.ts.map +1 -1
- package/dist/admin/products-dmc.js +26 -0
- package/dist/admin/products-operator.d.ts +108 -0
- package/dist/admin/products-operator.d.ts.map +1 -1
- package/dist/admin/products-operator.js +108 -0
- package/dist/admin/resources.d.ts +4 -0
- package/dist/admin/resources.d.ts.map +1 -1
- package/dist/admin/resources.js +4 -0
- package/dist/admin/settings-operator.d.ts +122 -0
- package/dist/admin/settings-operator.d.ts.map +1 -1
- package/dist/admin/settings-operator.js +122 -0
- package/dist/admin/trips.d.ts +566 -0
- package/dist/admin/trips.d.ts.map +1 -1
- package/dist/admin/trips.js +566 -0
- package/package.json +1 -1
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
import type { LocaleMessageSchema } from "../runtime.js";
|
|
2
|
+
/**
|
|
3
|
+
* Operator-side strings for the central action ledger surface — list
|
|
4
|
+
* page (filters + table) and per-entry sheet (actor, target, mutation,
|
|
5
|
+
* sensitive-read, payloads, relay outbox). The booking-detail panel
|
|
6
|
+
* uses `bookings.detail.actionLedger`; this surface is the
|
|
7
|
+
* cross-booking explorer.
|
|
8
|
+
*/
|
|
9
|
+
export declare const operatorAdminActionLedgerMessages: {
|
|
10
|
+
en: {
|
|
11
|
+
actionLedgerPage: {
|
|
12
|
+
title: string;
|
|
13
|
+
description: string;
|
|
14
|
+
searchAria: string;
|
|
15
|
+
searchPlaceholder: string;
|
|
16
|
+
clear: string;
|
|
17
|
+
filters: string;
|
|
18
|
+
table: {
|
|
19
|
+
headerWhen: string;
|
|
20
|
+
headerAction: string;
|
|
21
|
+
headerActor: string;
|
|
22
|
+
headerTarget: string;
|
|
23
|
+
headerWorkflow: string;
|
|
24
|
+
headerRisk: string;
|
|
25
|
+
headerStatus: string;
|
|
26
|
+
loadFailed: string;
|
|
27
|
+
empty: string;
|
|
28
|
+
};
|
|
29
|
+
footer: {
|
|
30
|
+
empty: string;
|
|
31
|
+
showingOne: string;
|
|
32
|
+
showingMany: string;
|
|
33
|
+
previous: string;
|
|
34
|
+
next: string;
|
|
35
|
+
pageLabel: string;
|
|
36
|
+
};
|
|
37
|
+
viewEntryAria: string;
|
|
38
|
+
filtersPopover: {
|
|
39
|
+
principalTypeLabel: string;
|
|
40
|
+
principalIdLabel: string;
|
|
41
|
+
targetTypeLabel: string;
|
|
42
|
+
targetLabel: string;
|
|
43
|
+
workflowRunLabel: string;
|
|
44
|
+
correlationIdLabel: string;
|
|
45
|
+
correlationIdPlaceholder: string;
|
|
46
|
+
riskLabel: string;
|
|
47
|
+
statusLabel: string;
|
|
48
|
+
principalTypeOptions: {
|
|
49
|
+
any: string;
|
|
50
|
+
user: string;
|
|
51
|
+
api_key: string;
|
|
52
|
+
agent: string;
|
|
53
|
+
workflow: string;
|
|
54
|
+
system: string;
|
|
55
|
+
};
|
|
56
|
+
principalIdPlaceholder: {
|
|
57
|
+
any: string;
|
|
58
|
+
user: string;
|
|
59
|
+
api_key: string;
|
|
60
|
+
agent: string;
|
|
61
|
+
workflow: string;
|
|
62
|
+
system: string;
|
|
63
|
+
};
|
|
64
|
+
targetTypeOptions: {
|
|
65
|
+
any: string;
|
|
66
|
+
booking: string;
|
|
67
|
+
product: string;
|
|
68
|
+
person: string;
|
|
69
|
+
organization: string;
|
|
70
|
+
invoice: string;
|
|
71
|
+
supplier: string;
|
|
72
|
+
};
|
|
73
|
+
targetSearch: {
|
|
74
|
+
bookingPlaceholder: string;
|
|
75
|
+
bookingEmpty: string;
|
|
76
|
+
productPlaceholder: string;
|
|
77
|
+
productEmpty: string;
|
|
78
|
+
personPlaceholder: string;
|
|
79
|
+
personEmpty: string;
|
|
80
|
+
organizationPlaceholder: string;
|
|
81
|
+
organizationEmpty: string;
|
|
82
|
+
unknownPickType: string;
|
|
83
|
+
unknownPlaceholder: string;
|
|
84
|
+
};
|
|
85
|
+
workflowRunPlaceholder: string;
|
|
86
|
+
workflowRunLoading: string;
|
|
87
|
+
workflowRunEmpty: string;
|
|
88
|
+
riskOptions: {
|
|
89
|
+
any: string;
|
|
90
|
+
low: string;
|
|
91
|
+
medium: string;
|
|
92
|
+
high: string;
|
|
93
|
+
critical: string;
|
|
94
|
+
};
|
|
95
|
+
statusOptions: {
|
|
96
|
+
any: string;
|
|
97
|
+
requested: string;
|
|
98
|
+
awaiting_approval: string;
|
|
99
|
+
approved: string;
|
|
100
|
+
denied: string;
|
|
101
|
+
succeeded: string;
|
|
102
|
+
failed: string;
|
|
103
|
+
reversed: string;
|
|
104
|
+
compensated: string;
|
|
105
|
+
expired: string;
|
|
106
|
+
cancelled: string;
|
|
107
|
+
superseded: string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
entrySheet: {
|
|
111
|
+
title: string;
|
|
112
|
+
description: string;
|
|
113
|
+
loading: string;
|
|
114
|
+
notFound: string;
|
|
115
|
+
noValue: string;
|
|
116
|
+
booleanYes: string;
|
|
117
|
+
booleanNo: string;
|
|
118
|
+
baseFields: {
|
|
119
|
+
when: string;
|
|
120
|
+
action: string;
|
|
121
|
+
version: string;
|
|
122
|
+
kind: string;
|
|
123
|
+
routeOrTool: string;
|
|
124
|
+
authorization: string;
|
|
125
|
+
};
|
|
126
|
+
actor: {
|
|
127
|
+
title: string;
|
|
128
|
+
principalType: string;
|
|
129
|
+
principalId: string;
|
|
130
|
+
actorType: string;
|
|
131
|
+
callerType: string;
|
|
132
|
+
sessionId: string;
|
|
133
|
+
apiToken: string;
|
|
134
|
+
organization: string;
|
|
135
|
+
internal: string;
|
|
136
|
+
};
|
|
137
|
+
targetFlow: {
|
|
138
|
+
title: string;
|
|
139
|
+
targetType: string;
|
|
140
|
+
targetId: string;
|
|
141
|
+
workflowRun: string;
|
|
142
|
+
workflowStep: string;
|
|
143
|
+
correlation: string;
|
|
144
|
+
causationAction: string;
|
|
145
|
+
capability: string;
|
|
146
|
+
capabilityVersion: string;
|
|
147
|
+
};
|
|
148
|
+
idempotency: {
|
|
149
|
+
title: string;
|
|
150
|
+
scope: string;
|
|
151
|
+
key: string;
|
|
152
|
+
fingerprint: string;
|
|
153
|
+
};
|
|
154
|
+
mutation: {
|
|
155
|
+
title: string;
|
|
156
|
+
summary: string;
|
|
157
|
+
inputRef: string;
|
|
158
|
+
resultRef: string;
|
|
159
|
+
reversalKind: string;
|
|
160
|
+
reversalState: string;
|
|
161
|
+
reverses: string;
|
|
162
|
+
};
|
|
163
|
+
sensitiveRead: {
|
|
164
|
+
title: string;
|
|
165
|
+
reason: string;
|
|
166
|
+
decisionPolicy: string;
|
|
167
|
+
disclosure: string;
|
|
168
|
+
fields: string;
|
|
169
|
+
};
|
|
170
|
+
payloads: {
|
|
171
|
+
title: string;
|
|
172
|
+
empty: string;
|
|
173
|
+
kind: string;
|
|
174
|
+
schema: string;
|
|
175
|
+
storageRef: string;
|
|
176
|
+
redaction: string;
|
|
177
|
+
retention: string;
|
|
178
|
+
hash: string;
|
|
179
|
+
};
|
|
180
|
+
relay: {
|
|
181
|
+
title: string;
|
|
182
|
+
empty: string;
|
|
183
|
+
status: string;
|
|
184
|
+
payloadRef: string;
|
|
185
|
+
attempts: string;
|
|
186
|
+
nextRetry: string;
|
|
187
|
+
processed: string;
|
|
188
|
+
lastError: string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
ro: {
|
|
194
|
+
actionLedgerPage: {
|
|
195
|
+
title: string;
|
|
196
|
+
description: string;
|
|
197
|
+
searchAria: string;
|
|
198
|
+
searchPlaceholder: string;
|
|
199
|
+
clear: string;
|
|
200
|
+
filters: string;
|
|
201
|
+
table: {
|
|
202
|
+
headerWhen: string;
|
|
203
|
+
headerAction: string;
|
|
204
|
+
headerActor: string;
|
|
205
|
+
headerTarget: string;
|
|
206
|
+
headerWorkflow: string;
|
|
207
|
+
headerRisk: string;
|
|
208
|
+
headerStatus: string;
|
|
209
|
+
loadFailed: string;
|
|
210
|
+
empty: string;
|
|
211
|
+
};
|
|
212
|
+
footer: {
|
|
213
|
+
empty: string;
|
|
214
|
+
showingOne: string;
|
|
215
|
+
showingMany: string;
|
|
216
|
+
previous: string;
|
|
217
|
+
next: string;
|
|
218
|
+
pageLabel: string;
|
|
219
|
+
};
|
|
220
|
+
viewEntryAria: string;
|
|
221
|
+
filtersPopover: {
|
|
222
|
+
principalTypeLabel: string;
|
|
223
|
+
principalIdLabel: string;
|
|
224
|
+
targetTypeLabel: string;
|
|
225
|
+
targetLabel: string;
|
|
226
|
+
workflowRunLabel: string;
|
|
227
|
+
correlationIdLabel: string;
|
|
228
|
+
correlationIdPlaceholder: string;
|
|
229
|
+
riskLabel: string;
|
|
230
|
+
statusLabel: string;
|
|
231
|
+
principalTypeOptions: {
|
|
232
|
+
any: string;
|
|
233
|
+
user: string;
|
|
234
|
+
api_key: string;
|
|
235
|
+
agent: string;
|
|
236
|
+
workflow: string;
|
|
237
|
+
system: string;
|
|
238
|
+
};
|
|
239
|
+
principalIdPlaceholder: {
|
|
240
|
+
any: string;
|
|
241
|
+
user: string;
|
|
242
|
+
api_key: string;
|
|
243
|
+
agent: string;
|
|
244
|
+
workflow: string;
|
|
245
|
+
system: string;
|
|
246
|
+
};
|
|
247
|
+
targetTypeOptions: {
|
|
248
|
+
any: string;
|
|
249
|
+
booking: string;
|
|
250
|
+
product: string;
|
|
251
|
+
person: string;
|
|
252
|
+
organization: string;
|
|
253
|
+
invoice: string;
|
|
254
|
+
supplier: string;
|
|
255
|
+
};
|
|
256
|
+
targetSearch: {
|
|
257
|
+
bookingPlaceholder: string;
|
|
258
|
+
bookingEmpty: string;
|
|
259
|
+
productPlaceholder: string;
|
|
260
|
+
productEmpty: string;
|
|
261
|
+
personPlaceholder: string;
|
|
262
|
+
personEmpty: string;
|
|
263
|
+
organizationPlaceholder: string;
|
|
264
|
+
organizationEmpty: string;
|
|
265
|
+
unknownPickType: string;
|
|
266
|
+
unknownPlaceholder: string;
|
|
267
|
+
};
|
|
268
|
+
workflowRunPlaceholder: string;
|
|
269
|
+
workflowRunLoading: string;
|
|
270
|
+
workflowRunEmpty: string;
|
|
271
|
+
riskOptions: {
|
|
272
|
+
any: string;
|
|
273
|
+
low: string;
|
|
274
|
+
medium: string;
|
|
275
|
+
high: string;
|
|
276
|
+
critical: string;
|
|
277
|
+
};
|
|
278
|
+
statusOptions: {
|
|
279
|
+
any: string;
|
|
280
|
+
requested: string;
|
|
281
|
+
awaiting_approval: string;
|
|
282
|
+
approved: string;
|
|
283
|
+
denied: string;
|
|
284
|
+
succeeded: string;
|
|
285
|
+
failed: string;
|
|
286
|
+
reversed: string;
|
|
287
|
+
compensated: string;
|
|
288
|
+
expired: string;
|
|
289
|
+
cancelled: string;
|
|
290
|
+
superseded: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
entrySheet: {
|
|
294
|
+
title: string;
|
|
295
|
+
description: string;
|
|
296
|
+
loading: string;
|
|
297
|
+
notFound: string;
|
|
298
|
+
noValue: string;
|
|
299
|
+
booleanYes: string;
|
|
300
|
+
booleanNo: string;
|
|
301
|
+
baseFields: {
|
|
302
|
+
when: string;
|
|
303
|
+
action: string;
|
|
304
|
+
version: string;
|
|
305
|
+
kind: string;
|
|
306
|
+
routeOrTool: string;
|
|
307
|
+
authorization: string;
|
|
308
|
+
};
|
|
309
|
+
actor: {
|
|
310
|
+
title: string;
|
|
311
|
+
principalType: string;
|
|
312
|
+
principalId: string;
|
|
313
|
+
actorType: string;
|
|
314
|
+
callerType: string;
|
|
315
|
+
sessionId: string;
|
|
316
|
+
apiToken: string;
|
|
317
|
+
organization: string;
|
|
318
|
+
internal: string;
|
|
319
|
+
};
|
|
320
|
+
targetFlow: {
|
|
321
|
+
title: string;
|
|
322
|
+
targetType: string;
|
|
323
|
+
targetId: string;
|
|
324
|
+
workflowRun: string;
|
|
325
|
+
workflowStep: string;
|
|
326
|
+
correlation: string;
|
|
327
|
+
causationAction: string;
|
|
328
|
+
capability: string;
|
|
329
|
+
capabilityVersion: string;
|
|
330
|
+
};
|
|
331
|
+
idempotency: {
|
|
332
|
+
title: string;
|
|
333
|
+
scope: string;
|
|
334
|
+
key: string;
|
|
335
|
+
fingerprint: string;
|
|
336
|
+
};
|
|
337
|
+
mutation: {
|
|
338
|
+
title: string;
|
|
339
|
+
summary: string;
|
|
340
|
+
inputRef: string;
|
|
341
|
+
resultRef: string;
|
|
342
|
+
reversalKind: string;
|
|
343
|
+
reversalState: string;
|
|
344
|
+
reverses: string;
|
|
345
|
+
};
|
|
346
|
+
sensitiveRead: {
|
|
347
|
+
title: string;
|
|
348
|
+
reason: string;
|
|
349
|
+
decisionPolicy: string;
|
|
350
|
+
disclosure: string;
|
|
351
|
+
fields: string;
|
|
352
|
+
};
|
|
353
|
+
payloads: {
|
|
354
|
+
title: string;
|
|
355
|
+
empty: string;
|
|
356
|
+
kind: string;
|
|
357
|
+
schema: string;
|
|
358
|
+
storageRef: string;
|
|
359
|
+
redaction: string;
|
|
360
|
+
retention: string;
|
|
361
|
+
hash: string;
|
|
362
|
+
};
|
|
363
|
+
relay: {
|
|
364
|
+
title: string;
|
|
365
|
+
empty: string;
|
|
366
|
+
status: string;
|
|
367
|
+
payloadRef: string;
|
|
368
|
+
attempts: string;
|
|
369
|
+
nextRetry: string;
|
|
370
|
+
processed: string;
|
|
371
|
+
lastError: string;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
export type OperatorAdminActionLedgerMessages = LocaleMessageSchema<(typeof operatorAdminActionLedgerMessages)["en"]>;
|
|
378
|
+
//# sourceMappingURL=action-ledger-operator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action-ledger-operator.d.ts","sourceRoot":"","sources":["../../src/admin/action-ledger-operator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD;;;;;;GAMG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkX7C,CAAA;AAED,MAAM,MAAM,iCAAiC,GAAG,mBAAmB,CACjE,CAAC,OAAO,iCAAiC,CAAC,CAAC,IAAI,CAAC,CACjD,CAAA"}
|