@voyant-travel/quotes-react 0.119.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +39 -0
- package/dist/client.d.ts +31 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +71 -0
- package/dist/components/create-quote-dialog.d.ts +10 -0
- package/dist/components/create-quote-dialog.d.ts.map +1 -0
- package/dist/components/create-quote-dialog.js +45 -0
- package/dist/components/create-quote-version-dialog.d.ts +9 -0
- package/dist/components/create-quote-version-dialog.d.ts.map +1 -0
- package/dist/components/create-quote-version-dialog.js +108 -0
- package/dist/components/crm-format.d.ts +7 -0
- package/dist/components/crm-format.d.ts.map +1 -0
- package/dist/components/crm-format.js +40 -0
- package/dist/components/inline-currency-field.d.ts +12 -0
- package/dist/components/inline-currency-field.d.ts.map +1 -0
- package/dist/components/inline-currency-field.js +46 -0
- package/dist/components/inline-field.d.ts +16 -0
- package/dist/components/inline-field.d.ts.map +1 -0
- package/dist/components/inline-field.js +45 -0
- package/dist/components/inline-language-field.d.ts +12 -0
- package/dist/components/inline-language-field.d.ts.map +1 -0
- package/dist/components/inline-language-field.js +46 -0
- package/dist/components/inline-number-field.d.ts +15 -0
- package/dist/components/inline-number-field.d.ts.map +1 -0
- package/dist/components/inline-number-field.js +58 -0
- package/dist/components/inline-select-field.d.ts +19 -0
- package/dist/components/inline-select-field.d.ts.map +1 -0
- package/dist/components/inline-select-field.js +34 -0
- package/dist/components/quote-summary-card.d.ts +11 -0
- package/dist/components/quote-summary-card.d.ts.map +1 -0
- package/dist/components/quote-summary-card.js +11 -0
- package/dist/components/quote-version-detail-sections.d.ts +22 -0
- package/dist/components/quote-version-detail-sections.d.ts.map +1 -0
- package/dist/components/quote-version-detail-sections.js +87 -0
- package/dist/components/quote-versions-page.d.ts +8 -0
- package/dist/components/quote-versions-page.d.ts.map +1 -0
- package/dist/components/quote-versions-page.js +30 -0
- package/dist/components/quotes-board.d.ts +8 -0
- package/dist/components/quotes-board.d.ts.map +1 -0
- package/dist/components/quotes-board.js +24 -0
- package/dist/hooks/index.d.ts +10 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +9 -0
- package/dist/hooks/use-pipeline-mutation.d.ts +76 -0
- package/dist/hooks/use-pipeline-mutation.d.ts.map +1 -0
- package/dist/hooks/use-pipeline-mutation.js +76 -0
- package/dist/hooks/use-pipelines.d.ts +31 -0
- package/dist/hooks/use-pipelines.d.ts.map +1 -0
- package/dist/hooks/use-pipelines.js +42 -0
- package/dist/hooks/use-quote-mutation.d.ts +72 -0
- package/dist/hooks/use-quote-mutation.d.ts.map +1 -0
- package/dist/hooks/use-quote-mutation.js +50 -0
- package/dist/hooks/use-quote-version-mutation.d.ts +272 -0
- package/dist/hooks/use-quote-version-mutation.d.ts.map +1 -0
- package/dist/hooks/use-quote-version-mutation.js +164 -0
- package/dist/hooks/use-quote-version.d.ts +37 -0
- package/dist/hooks/use-quote-version.d.ts.map +1 -0
- package/dist/hooks/use-quote-version.js +34 -0
- package/dist/hooks/use-quote-versions.d.ts +30 -0
- package/dist/hooks/use-quote-versions.d.ts.map +1 -0
- package/dist/hooks/use-quote-versions.js +27 -0
- package/dist/hooks/use-quote.d.ts +26 -0
- package/dist/hooks/use-quote.d.ts.map +1 -0
- package/dist/hooks/use-quote.js +23 -0
- package/dist/hooks/use-quotes.d.ts +36 -0
- package/dist/hooks/use-quotes.d.ts.map +1 -0
- package/dist/hooks/use-quotes.js +44 -0
- package/dist/hooks/use-stages.d.ts +37 -0
- package/dist/hooks/use-stages.d.ts.map +1 -0
- package/dist/hooks/use-stages.js +45 -0
- package/dist/i18n/en/base.d.ts +189 -0
- package/dist/i18n/en/base.d.ts.map +1 -0
- package/dist/i18n/en/base.js +188 -0
- package/dist/i18n/en/commerce.d.ts +133 -0
- package/dist/i18n/en/commerce.d.ts.map +1 -0
- package/dist/i18n/en/commerce.js +132 -0
- package/dist/i18n/en/detail.d.ts +211 -0
- package/dist/i18n/en/detail.d.ts.map +1 -0
- package/dist/i18n/en/detail.js +210 -0
- package/dist/i18n/en/lists.d.ts +75 -0
- package/dist/i18n/en/lists.d.ts.map +1 -0
- package/dist/i18n/en/lists.js +74 -0
- package/dist/i18n/en.d.ts +599 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/en.js +10 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +3 -0
- package/dist/i18n/messages.d.ts +577 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/i18n/messages.js +15 -0
- package/dist/i18n/provider.d.ts +1220 -0
- package/dist/i18n/provider.d.ts.map +1 -0
- package/dist/i18n/provider.js +44 -0
- package/dist/i18n/ro/base.d.ts +189 -0
- package/dist/i18n/ro/base.d.ts.map +1 -0
- package/dist/i18n/ro/base.js +188 -0
- package/dist/i18n/ro/commerce.d.ts +133 -0
- package/dist/i18n/ro/commerce.d.ts.map +1 -0
- package/dist/i18n/ro/commerce.js +132 -0
- package/dist/i18n/ro/detail.d.ts +211 -0
- package/dist/i18n/ro/detail.d.ts.map +1 -0
- package/dist/i18n/ro/detail.js +210 -0
- package/dist/i18n/ro/lists.d.ts +75 -0
- package/dist/i18n/ro/lists.d.ts.map +1 -0
- package/dist/i18n/ro/lists.js +74 -0
- package/dist/i18n/ro.d.ts +599 -0
- package/dist/i18n/ro.d.ts.map +1 -0
- package/dist/i18n/ro.js +10 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +21 -0
- package/dist/provider.d.ts +2 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +1 -0
- package/dist/query-keys.d.ts +44 -0
- package/dist/query-keys.d.ts.map +1 -0
- package/dist/query-keys.js +16 -0
- package/dist/query-options.d.ts +678 -0
- package/dist/query-options.d.ts.map +1 -0
- package/dist/query-options.js +160 -0
- package/dist/schemas.d.ts +348 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +101 -0
- package/dist/ui.d.ts +8 -0
- package/dist/ui.d.ts.map +1 -0
- package/dist/ui.js +7 -0
- package/package.json +117 -0
- package/src/styles.css +11 -0
|
@@ -0,0 +1,577 @@
|
|
|
1
|
+
export declare const crmRelationTypes: readonly ["client", "partner", "supplier", "other"];
|
|
2
|
+
export declare const crmRecordStatuses: readonly ["active", "inactive", "archived"];
|
|
3
|
+
export declare const crmActivityTypes: readonly ["note", "call", "email", "meeting", "task", "follow_up"];
|
|
4
|
+
export declare const crmActivityStatuses: readonly ["planned", "done", "cancelled"];
|
|
5
|
+
export declare const crmEntityTypes: readonly ["none", "person", "organization", "quote", "activity"];
|
|
6
|
+
export declare const crmQuoteStatuses: readonly ["open", "won", "lost", "archived"];
|
|
7
|
+
export declare const crmQuoteVersionStatuses: readonly ["draft", "sent", "accepted", "declined", "superseded", "expired"];
|
|
8
|
+
export type CrmRelationType = (typeof crmRelationTypes)[number];
|
|
9
|
+
export type CrmRecordStatus = (typeof crmRecordStatuses)[number];
|
|
10
|
+
export type CrmActivityType = (typeof crmActivityTypes)[number];
|
|
11
|
+
export type CrmActivityStatus = (typeof crmActivityStatuses)[number];
|
|
12
|
+
export type CrmEntityType = (typeof crmEntityTypes)[number];
|
|
13
|
+
export type CrmQuoteStatus = (typeof crmQuoteStatuses)[number];
|
|
14
|
+
export type CrmQuoteVersionStatus = (typeof crmQuoteVersionStatuses)[number];
|
|
15
|
+
export type CrmUiMessages = {
|
|
16
|
+
common: {
|
|
17
|
+
cancel: string;
|
|
18
|
+
done: string;
|
|
19
|
+
saveChanges: string;
|
|
20
|
+
create: string;
|
|
21
|
+
saving: string;
|
|
22
|
+
none: string;
|
|
23
|
+
unknownError: string;
|
|
24
|
+
today: string;
|
|
25
|
+
previous: string;
|
|
26
|
+
next: string;
|
|
27
|
+
page: string;
|
|
28
|
+
pageSummary: string;
|
|
29
|
+
loading: string;
|
|
30
|
+
activityTypeLabels: Record<CrmActivityType, string>;
|
|
31
|
+
activityStatusLabels: Record<CrmActivityStatus, string>;
|
|
32
|
+
relationTypeLabels: Record<CrmRelationType, string>;
|
|
33
|
+
recordStatusLabels: Record<CrmRecordStatus, string>;
|
|
34
|
+
entityTypeLabels: Record<CrmEntityType, string>;
|
|
35
|
+
quoteStatusLabels: Record<CrmQuoteStatus, string>;
|
|
36
|
+
quoteVersionStatusLabels: Record<CrmQuoteVersionStatus, string>;
|
|
37
|
+
relativeTime: {
|
|
38
|
+
daysAgo: string;
|
|
39
|
+
weeksAgo: string;
|
|
40
|
+
monthsAgo: string;
|
|
41
|
+
yearsAgo: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
organizationForm: {
|
|
45
|
+
fields: {
|
|
46
|
+
name: string;
|
|
47
|
+
legalName: string;
|
|
48
|
+
taxId: string;
|
|
49
|
+
website: string;
|
|
50
|
+
industry: string;
|
|
51
|
+
billingEmail: string;
|
|
52
|
+
billingAddressLine1: string;
|
|
53
|
+
billingAddressLine2: string;
|
|
54
|
+
billingCity: string;
|
|
55
|
+
billingRegion: string;
|
|
56
|
+
billingPostalCode: string;
|
|
57
|
+
billingCountry: string;
|
|
58
|
+
};
|
|
59
|
+
actions: {
|
|
60
|
+
create: string;
|
|
61
|
+
};
|
|
62
|
+
validation: {
|
|
63
|
+
nameRequired: string;
|
|
64
|
+
saveFailed: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
personForm: {
|
|
68
|
+
fields: {
|
|
69
|
+
firstName: string;
|
|
70
|
+
lastName: string;
|
|
71
|
+
jobTitle: string;
|
|
72
|
+
email: string;
|
|
73
|
+
phone: string;
|
|
74
|
+
dateOfBirth: string;
|
|
75
|
+
addressLine1: string;
|
|
76
|
+
addressLine2: string;
|
|
77
|
+
addressCity: string;
|
|
78
|
+
addressRegion: string;
|
|
79
|
+
addressPostalCode: string;
|
|
80
|
+
addressCountry: string;
|
|
81
|
+
};
|
|
82
|
+
sections: {
|
|
83
|
+
identity: string;
|
|
84
|
+
contact: string;
|
|
85
|
+
address: string;
|
|
86
|
+
addresses: string;
|
|
87
|
+
relationships: string;
|
|
88
|
+
documents: string;
|
|
89
|
+
};
|
|
90
|
+
relationships: {
|
|
91
|
+
empty: string;
|
|
92
|
+
add: string;
|
|
93
|
+
personLabel: string;
|
|
94
|
+
personPlaceholder: string;
|
|
95
|
+
personEmpty: string;
|
|
96
|
+
kindLabel: string;
|
|
97
|
+
primaryToggle: string;
|
|
98
|
+
notesLabel: string;
|
|
99
|
+
remove: string;
|
|
100
|
+
saveFailed: string;
|
|
101
|
+
};
|
|
102
|
+
addresses: {
|
|
103
|
+
empty: string;
|
|
104
|
+
add: string;
|
|
105
|
+
edit: string;
|
|
106
|
+
remove: string;
|
|
107
|
+
saving: string;
|
|
108
|
+
saveFailed: string;
|
|
109
|
+
noValue: string;
|
|
110
|
+
primaryToggle: string;
|
|
111
|
+
typeLabel: string;
|
|
112
|
+
typePrimary: string;
|
|
113
|
+
typeBilling: string;
|
|
114
|
+
typeShipping: string;
|
|
115
|
+
typeMailing: string;
|
|
116
|
+
typeMeeting: string;
|
|
117
|
+
typeService: string;
|
|
118
|
+
typeLegal: string;
|
|
119
|
+
typeOther: string;
|
|
120
|
+
notesLabel: string;
|
|
121
|
+
dialogAddTitle: string;
|
|
122
|
+
dialogAddDescription: string;
|
|
123
|
+
dialogEditTitle: string;
|
|
124
|
+
dialogEditDescription: string;
|
|
125
|
+
};
|
|
126
|
+
documents: {
|
|
127
|
+
empty: string;
|
|
128
|
+
add: string;
|
|
129
|
+
type: string;
|
|
130
|
+
number: string;
|
|
131
|
+
issuingCountry: string;
|
|
132
|
+
expiryDate: string;
|
|
133
|
+
save: string;
|
|
134
|
+
remove: string;
|
|
135
|
+
};
|
|
136
|
+
actions: {
|
|
137
|
+
create: string;
|
|
138
|
+
};
|
|
139
|
+
validation: {
|
|
140
|
+
nameRequired: string;
|
|
141
|
+
saveFailed: string;
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
organizationDialog: {
|
|
145
|
+
titles: {
|
|
146
|
+
create: string;
|
|
147
|
+
edit: string;
|
|
148
|
+
};
|
|
149
|
+
descriptions: {
|
|
150
|
+
create: string;
|
|
151
|
+
edit: string;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
personDialog: {
|
|
155
|
+
titles: {
|
|
156
|
+
create: string;
|
|
157
|
+
edit: string;
|
|
158
|
+
};
|
|
159
|
+
descriptions: {
|
|
160
|
+
create: string;
|
|
161
|
+
edit: string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
personCard: {
|
|
165
|
+
unnamed: string;
|
|
166
|
+
};
|
|
167
|
+
personCardConnected: {
|
|
168
|
+
loadFailed: string;
|
|
169
|
+
};
|
|
170
|
+
personList: {
|
|
171
|
+
searchPlaceholder: string;
|
|
172
|
+
create: string;
|
|
173
|
+
columns: {
|
|
174
|
+
name: string;
|
|
175
|
+
email: string;
|
|
176
|
+
phone: string;
|
|
177
|
+
relation: string;
|
|
178
|
+
status: string;
|
|
179
|
+
};
|
|
180
|
+
filters: {
|
|
181
|
+
button: string;
|
|
182
|
+
relationLabel: string;
|
|
183
|
+
relationAll: string;
|
|
184
|
+
statusLabel: string;
|
|
185
|
+
statusAll: string;
|
|
186
|
+
organizationLabel: string;
|
|
187
|
+
organizationAny: string;
|
|
188
|
+
organizationEmpty: string;
|
|
189
|
+
clear: string;
|
|
190
|
+
};
|
|
191
|
+
loadFailed: string;
|
|
192
|
+
empty: string;
|
|
193
|
+
};
|
|
194
|
+
peoplePage: {
|
|
195
|
+
title: string;
|
|
196
|
+
description: string;
|
|
197
|
+
};
|
|
198
|
+
organizationList: {
|
|
199
|
+
searchPlaceholder: string;
|
|
200
|
+
create: string;
|
|
201
|
+
columns: {
|
|
202
|
+
name: string;
|
|
203
|
+
industry: string;
|
|
204
|
+
relation: string;
|
|
205
|
+
website: string;
|
|
206
|
+
status: string;
|
|
207
|
+
updated: string;
|
|
208
|
+
};
|
|
209
|
+
filters: {
|
|
210
|
+
button: string;
|
|
211
|
+
relationLabel: string;
|
|
212
|
+
relationAll: string;
|
|
213
|
+
statusLabel: string;
|
|
214
|
+
statusAll: string;
|
|
215
|
+
clear: string;
|
|
216
|
+
};
|
|
217
|
+
loadFailed: string;
|
|
218
|
+
empty: string;
|
|
219
|
+
};
|
|
220
|
+
organizationsPage: {
|
|
221
|
+
title: string;
|
|
222
|
+
description: string;
|
|
223
|
+
};
|
|
224
|
+
entityComboboxes: {
|
|
225
|
+
person: {
|
|
226
|
+
placeholder: string;
|
|
227
|
+
empty: string;
|
|
228
|
+
loading: string;
|
|
229
|
+
};
|
|
230
|
+
organization: {
|
|
231
|
+
placeholder: string;
|
|
232
|
+
empty: string;
|
|
233
|
+
loading: string;
|
|
234
|
+
};
|
|
235
|
+
};
|
|
236
|
+
createActivityDialog: {
|
|
237
|
+
title: string;
|
|
238
|
+
description: string;
|
|
239
|
+
fields: {
|
|
240
|
+
subject: string;
|
|
241
|
+
type: string;
|
|
242
|
+
status: string;
|
|
243
|
+
description: string;
|
|
244
|
+
linkTo: string;
|
|
245
|
+
entityId: string;
|
|
246
|
+
};
|
|
247
|
+
placeholders: {
|
|
248
|
+
subject: string;
|
|
249
|
+
entityId: string;
|
|
250
|
+
};
|
|
251
|
+
validation: {
|
|
252
|
+
subjectRequired: string;
|
|
253
|
+
createFailed: string;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
createQuoteDialog: {
|
|
257
|
+
title: string;
|
|
258
|
+
fields: {
|
|
259
|
+
title: string;
|
|
260
|
+
stage: string;
|
|
261
|
+
};
|
|
262
|
+
placeholders: {
|
|
263
|
+
title: string;
|
|
264
|
+
stage: string;
|
|
265
|
+
};
|
|
266
|
+
validation: {
|
|
267
|
+
titleRequired: string;
|
|
268
|
+
stageRequired: string;
|
|
269
|
+
createFailed: string;
|
|
270
|
+
};
|
|
271
|
+
};
|
|
272
|
+
quotesBoard: {
|
|
273
|
+
fallbackName: string;
|
|
274
|
+
};
|
|
275
|
+
quoteSummaryCard: {
|
|
276
|
+
unknown: string;
|
|
277
|
+
expectedClose: string;
|
|
278
|
+
};
|
|
279
|
+
inlineEditor: {
|
|
280
|
+
failedToSave: string;
|
|
281
|
+
notSet: string;
|
|
282
|
+
selectPlaceholder: string;
|
|
283
|
+
noneOption: string;
|
|
284
|
+
invalidNumber: string;
|
|
285
|
+
minNumber: string;
|
|
286
|
+
maxNumber: string;
|
|
287
|
+
searchCurrencyPlaceholder: string;
|
|
288
|
+
noCurrenciesFound: string;
|
|
289
|
+
searchLanguagePlaceholder: string;
|
|
290
|
+
noLanguagesFound: string;
|
|
291
|
+
addTemplate: string;
|
|
292
|
+
addTagPlaceholder: string;
|
|
293
|
+
tagAlreadyAdded: string;
|
|
294
|
+
addTagFailed: string;
|
|
295
|
+
removeTagFailed: string;
|
|
296
|
+
};
|
|
297
|
+
organizationDetailPage: {
|
|
298
|
+
notFound: string;
|
|
299
|
+
backToOrganizations: string;
|
|
300
|
+
};
|
|
301
|
+
organizationDetail: {
|
|
302
|
+
topBar: {
|
|
303
|
+
organizations: string;
|
|
304
|
+
merge: string;
|
|
305
|
+
delete: string;
|
|
306
|
+
deleteTitle: string;
|
|
307
|
+
deleteDescription: string;
|
|
308
|
+
};
|
|
309
|
+
mergeDialog: {
|
|
310
|
+
title: string;
|
|
311
|
+
description: string;
|
|
312
|
+
keepLabel: string;
|
|
313
|
+
mergeLabel: string;
|
|
314
|
+
placeholder: string;
|
|
315
|
+
empty: string;
|
|
316
|
+
selfError: string;
|
|
317
|
+
action: string;
|
|
318
|
+
};
|
|
319
|
+
sidebar: {
|
|
320
|
+
about: string;
|
|
321
|
+
tags: string;
|
|
322
|
+
fields: {
|
|
323
|
+
name: string;
|
|
324
|
+
legalName: string;
|
|
325
|
+
website: string;
|
|
326
|
+
industry: string;
|
|
327
|
+
relation: string;
|
|
328
|
+
status: string;
|
|
329
|
+
defaultCurrency: string;
|
|
330
|
+
preferredLanguage: string;
|
|
331
|
+
paymentTerms: string;
|
|
332
|
+
source: string;
|
|
333
|
+
};
|
|
334
|
+
};
|
|
335
|
+
metrics: {
|
|
336
|
+
people: string;
|
|
337
|
+
openQuotes: string;
|
|
338
|
+
pipelineValue: string;
|
|
339
|
+
won: string;
|
|
340
|
+
};
|
|
341
|
+
tabs: {
|
|
342
|
+
overview: string;
|
|
343
|
+
people: string;
|
|
344
|
+
quotes: string;
|
|
345
|
+
activities: string;
|
|
346
|
+
bookings: string;
|
|
347
|
+
invoices: string;
|
|
348
|
+
payments: string;
|
|
349
|
+
contracts: string;
|
|
350
|
+
};
|
|
351
|
+
sections: {
|
|
352
|
+
created: string;
|
|
353
|
+
updated: string;
|
|
354
|
+
notes: string;
|
|
355
|
+
};
|
|
356
|
+
empty: {
|
|
357
|
+
noPeople: string;
|
|
358
|
+
unnamed: string;
|
|
359
|
+
noQuotes: string;
|
|
360
|
+
noActivities: string;
|
|
361
|
+
};
|
|
362
|
+
hint: string;
|
|
363
|
+
};
|
|
364
|
+
personDetailPage: {
|
|
365
|
+
notFound: string;
|
|
366
|
+
backToPeople: string;
|
|
367
|
+
};
|
|
368
|
+
personDetail: {
|
|
369
|
+
topBar: {
|
|
370
|
+
people: string;
|
|
371
|
+
edit: string;
|
|
372
|
+
merge: string;
|
|
373
|
+
delete: string;
|
|
374
|
+
deleteTitle: string;
|
|
375
|
+
deleteDescription: string;
|
|
376
|
+
};
|
|
377
|
+
mergeDialog: {
|
|
378
|
+
title: string;
|
|
379
|
+
description: string;
|
|
380
|
+
keepLabel: string;
|
|
381
|
+
mergeLabel: string;
|
|
382
|
+
placeholder: string;
|
|
383
|
+
empty: string;
|
|
384
|
+
selfError: string;
|
|
385
|
+
action: string;
|
|
386
|
+
};
|
|
387
|
+
sidebar: {
|
|
388
|
+
about: string;
|
|
389
|
+
tags: string;
|
|
390
|
+
openWebsite: string;
|
|
391
|
+
fields: {
|
|
392
|
+
firstName: string;
|
|
393
|
+
lastName: string;
|
|
394
|
+
jobTitle: string;
|
|
395
|
+
email: string;
|
|
396
|
+
phone: string;
|
|
397
|
+
website: string;
|
|
398
|
+
relation: string;
|
|
399
|
+
status: string;
|
|
400
|
+
preferredCurrency: string;
|
|
401
|
+
preferredLanguage: string;
|
|
402
|
+
dateOfBirth: string;
|
|
403
|
+
source: string;
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
metrics: {
|
|
407
|
+
openQuotes: string;
|
|
408
|
+
pipelineValue: string;
|
|
409
|
+
documents: string;
|
|
410
|
+
activities: string;
|
|
411
|
+
};
|
|
412
|
+
tabs: {
|
|
413
|
+
overview: string;
|
|
414
|
+
quotes: string;
|
|
415
|
+
activities: string;
|
|
416
|
+
relationships: string;
|
|
417
|
+
documents: string;
|
|
418
|
+
addresses: string;
|
|
419
|
+
bookings: string;
|
|
420
|
+
invoices: string;
|
|
421
|
+
payments: string;
|
|
422
|
+
contracts: string;
|
|
423
|
+
};
|
|
424
|
+
sections: {
|
|
425
|
+
created: string;
|
|
426
|
+
updated: string;
|
|
427
|
+
organization: string;
|
|
428
|
+
notes: string;
|
|
429
|
+
travelProfile: string;
|
|
430
|
+
dateOfBirth: string;
|
|
431
|
+
dietaryRequirements: string;
|
|
432
|
+
accessibilityNeeds: string;
|
|
433
|
+
passportExpiry: string;
|
|
434
|
+
passportIssuingCountry: string;
|
|
435
|
+
passportIssuingAuthority: string;
|
|
436
|
+
primary: string;
|
|
437
|
+
};
|
|
438
|
+
relationshipKindLabels: {
|
|
439
|
+
spouse: string;
|
|
440
|
+
partner: string;
|
|
441
|
+
parent: string;
|
|
442
|
+
child: string;
|
|
443
|
+
sibling: string;
|
|
444
|
+
guardian: string;
|
|
445
|
+
ward: string;
|
|
446
|
+
emergency_contact: string;
|
|
447
|
+
friend: string;
|
|
448
|
+
travel_companion: string;
|
|
449
|
+
other: string;
|
|
450
|
+
};
|
|
451
|
+
documentTypeLabels: {
|
|
452
|
+
passport: string;
|
|
453
|
+
id_card: string;
|
|
454
|
+
driver_license: string;
|
|
455
|
+
visa: string;
|
|
456
|
+
other: string;
|
|
457
|
+
};
|
|
458
|
+
empty: {
|
|
459
|
+
noQuotes: string;
|
|
460
|
+
noActivities: string;
|
|
461
|
+
noRelationships: string;
|
|
462
|
+
noDocuments: string;
|
|
463
|
+
noTravelProfile: string;
|
|
464
|
+
};
|
|
465
|
+
hint: string;
|
|
466
|
+
};
|
|
467
|
+
personDocument: {
|
|
468
|
+
/** Row-level inline reveal panel + per-row action icons. */
|
|
469
|
+
row: {
|
|
470
|
+
decrypting: string;
|
|
471
|
+
noNumberOnFile: string;
|
|
472
|
+
revealFailed: string;
|
|
473
|
+
revealAria: string;
|
|
474
|
+
hideAria: string;
|
|
475
|
+
editAria: string;
|
|
476
|
+
deleteButton: string;
|
|
477
|
+
deleteTitle: string;
|
|
478
|
+
deleteDescription: string;
|
|
479
|
+
deleteConfirm: string;
|
|
480
|
+
};
|
|
481
|
+
/** Edit dialog (opens when the operator clicks the pencil). */
|
|
482
|
+
dialog: {
|
|
483
|
+
title: string;
|
|
484
|
+
description: string;
|
|
485
|
+
revealFailed: string;
|
|
486
|
+
fields: {
|
|
487
|
+
type: string;
|
|
488
|
+
number: string;
|
|
489
|
+
issuingCountry: string;
|
|
490
|
+
issuingAuthority: string;
|
|
491
|
+
issueDate: string;
|
|
492
|
+
expiryDate: string;
|
|
493
|
+
primary: string;
|
|
494
|
+
notes: string;
|
|
495
|
+
};
|
|
496
|
+
placeholders: {
|
|
497
|
+
number: string;
|
|
498
|
+
issuingCountry: string;
|
|
499
|
+
};
|
|
500
|
+
loading: string;
|
|
501
|
+
saveFailed: string;
|
|
502
|
+
cancel: string;
|
|
503
|
+
save: string;
|
|
504
|
+
saving: string;
|
|
505
|
+
};
|
|
506
|
+
};
|
|
507
|
+
createQuoteVersionDialog: {
|
|
508
|
+
title: string;
|
|
509
|
+
fields: {
|
|
510
|
+
quote: string;
|
|
511
|
+
currency: string;
|
|
512
|
+
validUntil: string;
|
|
513
|
+
};
|
|
514
|
+
placeholders: {
|
|
515
|
+
searchQuotes: string;
|
|
516
|
+
selectCurrency: string;
|
|
517
|
+
pickDate: string;
|
|
518
|
+
};
|
|
519
|
+
empty: {
|
|
520
|
+
loading: string;
|
|
521
|
+
noQuotes: string;
|
|
522
|
+
};
|
|
523
|
+
validation: {
|
|
524
|
+
selectQuote: string;
|
|
525
|
+
selectCurrency: string;
|
|
526
|
+
createFailed: string;
|
|
527
|
+
};
|
|
528
|
+
actions: {
|
|
529
|
+
create: string;
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
quoteVersionLinesCard: {
|
|
533
|
+
title: string;
|
|
534
|
+
empty: string;
|
|
535
|
+
fields: {
|
|
536
|
+
description: string;
|
|
537
|
+
quantity: string;
|
|
538
|
+
priceCents: string;
|
|
539
|
+
};
|
|
540
|
+
validation: {
|
|
541
|
+
descriptionRequired: string;
|
|
542
|
+
addFailed: string;
|
|
543
|
+
};
|
|
544
|
+
subtotal: string;
|
|
545
|
+
};
|
|
546
|
+
activitiesPage: {
|
|
547
|
+
title: string;
|
|
548
|
+
description: string;
|
|
549
|
+
create: string;
|
|
550
|
+
filters: {
|
|
551
|
+
type: string;
|
|
552
|
+
status: string;
|
|
553
|
+
allTypes: string;
|
|
554
|
+
allStatuses: string;
|
|
555
|
+
};
|
|
556
|
+
empty: string;
|
|
557
|
+
};
|
|
558
|
+
quoteVersionsPage: {
|
|
559
|
+
title: string;
|
|
560
|
+
description: string;
|
|
561
|
+
create: string;
|
|
562
|
+
filters: {
|
|
563
|
+
status: string;
|
|
564
|
+
allStatuses: string;
|
|
565
|
+
};
|
|
566
|
+
columns: {
|
|
567
|
+
quoteVersion: string;
|
|
568
|
+
status: string;
|
|
569
|
+
total: string;
|
|
570
|
+
validUntil: string;
|
|
571
|
+
updated: string;
|
|
572
|
+
};
|
|
573
|
+
loadFailed: string;
|
|
574
|
+
empty: string;
|
|
575
|
+
};
|
|
576
|
+
};
|
|
577
|
+
//# sourceMappingURL=messages.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// agent-quality: file-size exception -- owner: quotes-react; existing locale dictionary stays co-located until a dedicated split preserves behavior and tests.
|
|
2
|
+
export const crmRelationTypes = ["client", "partner", "supplier", "other"];
|
|
3
|
+
export const crmRecordStatuses = ["active", "inactive", "archived"];
|
|
4
|
+
export const crmActivityTypes = ["note", "call", "email", "meeting", "task", "follow_up"];
|
|
5
|
+
export const crmActivityStatuses = ["planned", "done", "cancelled"];
|
|
6
|
+
export const crmEntityTypes = ["none", "person", "organization", "quote", "activity"];
|
|
7
|
+
export const crmQuoteStatuses = ["open", "won", "lost", "archived"];
|
|
8
|
+
export const crmQuoteVersionStatuses = [
|
|
9
|
+
"draft",
|
|
10
|
+
"sent",
|
|
11
|
+
"accepted",
|
|
12
|
+
"declined",
|
|
13
|
+
"superseded",
|
|
14
|
+
"expired",
|
|
15
|
+
];
|