@gelabs/ovr 0.4.2 → 0.4.4
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/accounts.d.ts +52 -0
- package/dist/accounts.js +13 -0
- package/dist/audit.d.ts +13 -0
- package/dist/audit.js +11 -0
- package/dist/auth-auth.d.ts +1 -1
- package/dist/auth-rate-limit.d.ts +11 -2
- package/dist/auth-rate-limit.js +1 -1
- package/dist/auth.d.ts +2 -2
- package/dist/auth.js +1 -1
- package/dist/chunk-4EDMZRGS.js +98 -0
- package/dist/chunk-4JMHQKMK.js +268 -0
- package/dist/chunk-6662IONX.js +69 -0
- package/dist/chunk-6WMPBAUH.js +18 -0
- package/dist/{chunk-77ULDXQX.js → chunk-6ZJSEM4Y.js} +6 -1
- package/dist/chunk-7GVZZWK3.js +74 -0
- package/dist/chunk-ACXED4UH.js +403 -0
- package/dist/chunk-BBTAG3FD.js +165 -0
- package/dist/chunk-HX7QT2FE.js +452 -0
- package/dist/chunk-LC3S47FM.js +468 -0
- package/dist/chunk-NPTR7GFZ.js +432 -0
- package/dist/chunk-SLQRZBMR.js +66 -0
- package/dist/chunk-UBUXPJLN.js +29 -0
- package/dist/chunk-UN6Z4WGF.js +31 -0
- package/dist/chunk-YE3D2DYY.js +83 -0
- package/dist/citizen.d.ts +5 -0
- package/dist/citizen.js +12 -0
- package/dist/config.d.ts +2 -2
- package/dist/core-i18n.d.ts +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/dashboard.d.ts +10 -0
- package/dist/dashboard.js +3 -0
- package/dist/data-mock-store.d.ts +1 -1
- package/dist/{format-C7MSwUHK.d.ts → format-VyCUfF8R.d.ts} +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/notifications.d.ts +6 -0
- package/dist/notifications.js +11 -0
- package/dist/officers.d.ts +27 -0
- package/dist/officers.js +11 -0
- package/dist/offline.d.ts +1 -1
- package/dist/payments.d.ts +15 -0
- package/dist/payments.js +11 -0
- package/dist/roles.d.ts +37 -0
- package/dist/roles.js +12 -0
- package/dist/runtime.d.ts +1 -1
- package/dist/tickets.d.ts +6 -0
- package/dist/tickets.js +24 -0
- package/dist/ui-components-admin/accounts-manager.d.ts +3 -52
- package/dist/ui-components-admin/accounts-manager.js +11 -472
- package/dist/ui-components-admin/admin-nav.js +11 -83
- package/dist/ui-components-admin/issuance-form.js +15 -432
- package/dist/ui-components-admin/logs-viewer.d.ts +3 -13
- package/dist/ui-components-admin/logs-viewer.js +8 -98
- package/dist/ui-components-admin/notifications-list.js +6 -66
- package/dist/ui-components-admin/officers-manager.d.ts +3 -27
- package/dist/ui-components-admin/officers-manager.js +9 -268
- package/dist/ui-components-admin/roles-manager.d.ts +3 -37
- package/dist/ui-components-admin/roles-manager.js +10 -403
- package/dist/ui-components-admin/stat-card.d.ts +2 -10
- package/dist/ui-components-admin/stat-card.js +3 -29
- package/dist/ui-components-admin/ticket-preview.js +2 -2
- package/dist/ui-components-admin/tickets-table.js +7 -69
- package/dist/ui-components-admin/violations-manager.js +13 -452
- package/dist/ui-components-citizen/citizen-nav.js +3 -31
- package/dist/ui-components-citizen/payment-form.d.ts +3 -14
- package/dist/ui-components-citizen/payment-form.js +9 -165
- package/dist/ui-components-citizen/payment-qr-dialog.js +2 -2
- package/dist/ui-components-citizen/ticket-not-found.js +4 -18
- package/dist/ui-components-citizen/violation-history-table.js +6 -74
- package/dist/ui-config.d.ts +2 -2
- package/dist/ui-server.d.ts +2 -2
- package/dist/violations.d.ts +3 -0
- package/dist/violations.js +14 -0
- package/package.json +46 -6
- package/dist/{chunk-ZUMEOZ22.js → chunk-JTSTNZAB.js} +1 -1
- package/dist/{chunk-TLG4C2XI.js → chunk-QCAURREW.js} +1 -1
- package/dist/{schema-CdsFQxIg.d.ts → schema-BUhh_mKX.d.ts} +108 -108
|
@@ -18,22 +18,22 @@ declare const municipalityConfigSchema: z.ZodObject<{
|
|
|
18
18
|
region: z.ZodString;
|
|
19
19
|
}, "strip", z.ZodTypeAny, {
|
|
20
20
|
name: string;
|
|
21
|
+
country: string;
|
|
22
|
+
region: string;
|
|
21
23
|
province: string;
|
|
22
24
|
fullName: string;
|
|
23
25
|
shortName: string;
|
|
24
26
|
sealSrc: string;
|
|
25
27
|
tagline: string;
|
|
26
|
-
country: string;
|
|
27
|
-
region: string;
|
|
28
28
|
}, {
|
|
29
29
|
name: string;
|
|
30
|
+
country: string;
|
|
31
|
+
region: string;
|
|
30
32
|
province: string;
|
|
31
33
|
fullName: string;
|
|
32
34
|
shortName: string;
|
|
33
35
|
sealSrc: string;
|
|
34
36
|
tagline: string;
|
|
35
|
-
country: string;
|
|
36
|
-
region: string;
|
|
37
37
|
}>;
|
|
38
38
|
declare const officeConfigSchema: z.ZodObject<{
|
|
39
39
|
name: z.ZodString;
|
|
@@ -43,19 +43,19 @@ declare const officeConfigSchema: z.ZodObject<{
|
|
|
43
43
|
hours: z.ZodOptional<z.ZodString>;
|
|
44
44
|
email: z.ZodOptional<z.ZodString>;
|
|
45
45
|
}, "strip", z.ZodTypeAny, {
|
|
46
|
-
name: string;
|
|
47
46
|
abbr: string;
|
|
48
|
-
|
|
47
|
+
name: string;
|
|
49
48
|
address?: string | undefined;
|
|
50
|
-
hours?: string | undefined;
|
|
51
49
|
email?: string | undefined;
|
|
50
|
+
redemptionCenter?: string | undefined;
|
|
51
|
+
hours?: string | undefined;
|
|
52
52
|
}, {
|
|
53
|
-
name: string;
|
|
54
53
|
abbr: string;
|
|
55
|
-
|
|
54
|
+
name: string;
|
|
56
55
|
address?: string | undefined;
|
|
57
|
-
hours?: string | undefined;
|
|
58
56
|
email?: string | undefined;
|
|
57
|
+
redemptionCenter?: string | undefined;
|
|
58
|
+
hours?: string | undefined;
|
|
59
59
|
}>;
|
|
60
60
|
declare const officesConfigSchema: z.ZodObject<{
|
|
61
61
|
/** Issues/enforces violations (e.g. POSO). */
|
|
@@ -67,19 +67,19 @@ declare const officesConfigSchema: z.ZodObject<{
|
|
|
67
67
|
hours: z.ZodOptional<z.ZodString>;
|
|
68
68
|
email: z.ZodOptional<z.ZodString>;
|
|
69
69
|
}, "strip", z.ZodTypeAny, {
|
|
70
|
-
name: string;
|
|
71
70
|
abbr: string;
|
|
72
|
-
|
|
71
|
+
name: string;
|
|
73
72
|
address?: string | undefined;
|
|
74
|
-
hours?: string | undefined;
|
|
75
73
|
email?: string | undefined;
|
|
74
|
+
redemptionCenter?: string | undefined;
|
|
75
|
+
hours?: string | undefined;
|
|
76
76
|
}, {
|
|
77
|
-
name: string;
|
|
78
77
|
abbr: string;
|
|
79
|
-
|
|
78
|
+
name: string;
|
|
80
79
|
address?: string | undefined;
|
|
81
|
-
hours?: string | undefined;
|
|
82
80
|
email?: string | undefined;
|
|
81
|
+
redemptionCenter?: string | undefined;
|
|
82
|
+
hours?: string | undefined;
|
|
83
83
|
}>;
|
|
84
84
|
/** Collects payments / redemption center (e.g. MTO). */
|
|
85
85
|
treasury: z.ZodObject<{
|
|
@@ -90,53 +90,53 @@ declare const officesConfigSchema: z.ZodObject<{
|
|
|
90
90
|
hours: z.ZodOptional<z.ZodString>;
|
|
91
91
|
email: z.ZodOptional<z.ZodString>;
|
|
92
92
|
}, "strip", z.ZodTypeAny, {
|
|
93
|
-
name: string;
|
|
94
93
|
abbr: string;
|
|
95
|
-
|
|
94
|
+
name: string;
|
|
96
95
|
address?: string | undefined;
|
|
97
|
-
hours?: string | undefined;
|
|
98
96
|
email?: string | undefined;
|
|
97
|
+
redemptionCenter?: string | undefined;
|
|
98
|
+
hours?: string | undefined;
|
|
99
99
|
}, {
|
|
100
|
-
name: string;
|
|
101
100
|
abbr: string;
|
|
102
|
-
|
|
101
|
+
name: string;
|
|
103
102
|
address?: string | undefined;
|
|
104
|
-
hours?: string | undefined;
|
|
105
103
|
email?: string | undefined;
|
|
104
|
+
redemptionCenter?: string | undefined;
|
|
105
|
+
hours?: string | undefined;
|
|
106
106
|
}>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
108
|
enforcement: {
|
|
109
|
-
name: string;
|
|
110
109
|
abbr: string;
|
|
111
|
-
|
|
110
|
+
name: string;
|
|
112
111
|
address?: string | undefined;
|
|
113
|
-
hours?: string | undefined;
|
|
114
112
|
email?: string | undefined;
|
|
113
|
+
redemptionCenter?: string | undefined;
|
|
114
|
+
hours?: string | undefined;
|
|
115
115
|
};
|
|
116
116
|
treasury: {
|
|
117
|
-
name: string;
|
|
118
117
|
abbr: string;
|
|
119
|
-
|
|
118
|
+
name: string;
|
|
120
119
|
address?: string | undefined;
|
|
121
|
-
hours?: string | undefined;
|
|
122
120
|
email?: string | undefined;
|
|
121
|
+
redemptionCenter?: string | undefined;
|
|
122
|
+
hours?: string | undefined;
|
|
123
123
|
};
|
|
124
124
|
}, {
|
|
125
125
|
enforcement: {
|
|
126
|
-
name: string;
|
|
127
126
|
abbr: string;
|
|
128
|
-
|
|
127
|
+
name: string;
|
|
129
128
|
address?: string | undefined;
|
|
130
|
-
hours?: string | undefined;
|
|
131
129
|
email?: string | undefined;
|
|
130
|
+
redemptionCenter?: string | undefined;
|
|
131
|
+
hours?: string | undefined;
|
|
132
132
|
};
|
|
133
133
|
treasury: {
|
|
134
|
-
name: string;
|
|
135
134
|
abbr: string;
|
|
136
|
-
|
|
135
|
+
name: string;
|
|
137
136
|
address?: string | undefined;
|
|
138
|
-
hours?: string | undefined;
|
|
139
137
|
email?: string | undefined;
|
|
138
|
+
redemptionCenter?: string | undefined;
|
|
139
|
+
hours?: string | undefined;
|
|
140
140
|
};
|
|
141
141
|
}>;
|
|
142
142
|
declare const rulesConfigSchema: z.ZodObject<{
|
|
@@ -173,12 +173,12 @@ declare const paymentMethodConfigSchema: z.ZodObject<{
|
|
|
173
173
|
label: z.ZodString;
|
|
174
174
|
blurb: z.ZodOptional<z.ZodString>;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
id: string;
|
|
177
176
|
label: string;
|
|
177
|
+
id: string;
|
|
178
178
|
blurb?: string | undefined;
|
|
179
179
|
}, {
|
|
180
|
-
id: string;
|
|
181
180
|
label: string;
|
|
181
|
+
id: string;
|
|
182
182
|
blurb?: string | undefined;
|
|
183
183
|
}>;
|
|
184
184
|
/** Dev-only mock enforcer credentials. Must never be set in production. */
|
|
@@ -187,12 +187,12 @@ declare const demoAdminConfigSchema: z.ZodObject<{
|
|
|
187
187
|
password: z.ZodString;
|
|
188
188
|
hint: z.ZodOptional<z.ZodString>;
|
|
189
189
|
}, "strip", z.ZodTypeAny, {
|
|
190
|
-
username: string;
|
|
191
190
|
password: string;
|
|
191
|
+
username: string;
|
|
192
192
|
hint?: string | undefined;
|
|
193
193
|
}, {
|
|
194
|
-
username: string;
|
|
195
194
|
password: string;
|
|
195
|
+
username: string;
|
|
196
196
|
hint?: string | undefined;
|
|
197
197
|
}>;
|
|
198
198
|
declare const ovrConfigSchema: z.ZodObject<{
|
|
@@ -208,22 +208,22 @@ declare const ovrConfigSchema: z.ZodObject<{
|
|
|
208
208
|
region: z.ZodString;
|
|
209
209
|
}, "strip", z.ZodTypeAny, {
|
|
210
210
|
name: string;
|
|
211
|
+
country: string;
|
|
212
|
+
region: string;
|
|
211
213
|
province: string;
|
|
212
214
|
fullName: string;
|
|
213
215
|
shortName: string;
|
|
214
216
|
sealSrc: string;
|
|
215
217
|
tagline: string;
|
|
216
|
-
country: string;
|
|
217
|
-
region: string;
|
|
218
218
|
}, {
|
|
219
219
|
name: string;
|
|
220
|
+
country: string;
|
|
221
|
+
region: string;
|
|
220
222
|
province: string;
|
|
221
223
|
fullName: string;
|
|
222
224
|
shortName: string;
|
|
223
225
|
sealSrc: string;
|
|
224
226
|
tagline: string;
|
|
225
|
-
country: string;
|
|
226
|
-
region: string;
|
|
227
227
|
}>;
|
|
228
228
|
offices: z.ZodObject<{
|
|
229
229
|
/** Issues/enforces violations (e.g. POSO). */
|
|
@@ -235,19 +235,19 @@ declare const ovrConfigSchema: z.ZodObject<{
|
|
|
235
235
|
hours: z.ZodOptional<z.ZodString>;
|
|
236
236
|
email: z.ZodOptional<z.ZodString>;
|
|
237
237
|
}, "strip", z.ZodTypeAny, {
|
|
238
|
-
name: string;
|
|
239
238
|
abbr: string;
|
|
240
|
-
|
|
239
|
+
name: string;
|
|
241
240
|
address?: string | undefined;
|
|
242
|
-
hours?: string | undefined;
|
|
243
241
|
email?: string | undefined;
|
|
242
|
+
redemptionCenter?: string | undefined;
|
|
243
|
+
hours?: string | undefined;
|
|
244
244
|
}, {
|
|
245
|
-
name: string;
|
|
246
245
|
abbr: string;
|
|
247
|
-
|
|
246
|
+
name: string;
|
|
248
247
|
address?: string | undefined;
|
|
249
|
-
hours?: string | undefined;
|
|
250
248
|
email?: string | undefined;
|
|
249
|
+
redemptionCenter?: string | undefined;
|
|
250
|
+
hours?: string | undefined;
|
|
251
251
|
}>;
|
|
252
252
|
/** Collects payments / redemption center (e.g. MTO). */
|
|
253
253
|
treasury: z.ZodObject<{
|
|
@@ -258,53 +258,53 @@ declare const ovrConfigSchema: z.ZodObject<{
|
|
|
258
258
|
hours: z.ZodOptional<z.ZodString>;
|
|
259
259
|
email: z.ZodOptional<z.ZodString>;
|
|
260
260
|
}, "strip", z.ZodTypeAny, {
|
|
261
|
-
name: string;
|
|
262
261
|
abbr: string;
|
|
263
|
-
|
|
262
|
+
name: string;
|
|
264
263
|
address?: string | undefined;
|
|
265
|
-
hours?: string | undefined;
|
|
266
264
|
email?: string | undefined;
|
|
265
|
+
redemptionCenter?: string | undefined;
|
|
266
|
+
hours?: string | undefined;
|
|
267
267
|
}, {
|
|
268
|
-
name: string;
|
|
269
268
|
abbr: string;
|
|
270
|
-
|
|
269
|
+
name: string;
|
|
271
270
|
address?: string | undefined;
|
|
272
|
-
hours?: string | undefined;
|
|
273
271
|
email?: string | undefined;
|
|
272
|
+
redemptionCenter?: string | undefined;
|
|
273
|
+
hours?: string | undefined;
|
|
274
274
|
}>;
|
|
275
275
|
}, "strip", z.ZodTypeAny, {
|
|
276
276
|
enforcement: {
|
|
277
|
-
name: string;
|
|
278
277
|
abbr: string;
|
|
279
|
-
|
|
278
|
+
name: string;
|
|
280
279
|
address?: string | undefined;
|
|
281
|
-
hours?: string | undefined;
|
|
282
280
|
email?: string | undefined;
|
|
281
|
+
redemptionCenter?: string | undefined;
|
|
282
|
+
hours?: string | undefined;
|
|
283
283
|
};
|
|
284
284
|
treasury: {
|
|
285
|
-
name: string;
|
|
286
285
|
abbr: string;
|
|
287
|
-
|
|
286
|
+
name: string;
|
|
288
287
|
address?: string | undefined;
|
|
289
|
-
hours?: string | undefined;
|
|
290
288
|
email?: string | undefined;
|
|
289
|
+
redemptionCenter?: string | undefined;
|
|
290
|
+
hours?: string | undefined;
|
|
291
291
|
};
|
|
292
292
|
}, {
|
|
293
293
|
enforcement: {
|
|
294
|
-
name: string;
|
|
295
294
|
abbr: string;
|
|
296
|
-
|
|
295
|
+
name: string;
|
|
297
296
|
address?: string | undefined;
|
|
298
|
-
hours?: string | undefined;
|
|
299
297
|
email?: string | undefined;
|
|
298
|
+
redemptionCenter?: string | undefined;
|
|
299
|
+
hours?: string | undefined;
|
|
300
300
|
};
|
|
301
301
|
treasury: {
|
|
302
|
-
name: string;
|
|
303
302
|
abbr: string;
|
|
304
|
-
|
|
303
|
+
name: string;
|
|
305
304
|
address?: string | undefined;
|
|
306
|
-
hours?: string | undefined;
|
|
307
305
|
email?: string | undefined;
|
|
306
|
+
redemptionCenter?: string | undefined;
|
|
307
|
+
hours?: string | undefined;
|
|
308
308
|
};
|
|
309
309
|
}>;
|
|
310
310
|
rules: z.ZodObject<{
|
|
@@ -341,12 +341,12 @@ declare const ovrConfigSchema: z.ZodObject<{
|
|
|
341
341
|
label: z.ZodString;
|
|
342
342
|
blurb: z.ZodOptional<z.ZodString>;
|
|
343
343
|
}, "strip", z.ZodTypeAny, {
|
|
344
|
-
id: string;
|
|
345
344
|
label: string;
|
|
345
|
+
id: string;
|
|
346
346
|
blurb?: string | undefined;
|
|
347
347
|
}, {
|
|
348
|
-
id: string;
|
|
349
348
|
label: string;
|
|
349
|
+
id: string;
|
|
350
350
|
blurb?: string | undefined;
|
|
351
351
|
}>, "many">;
|
|
352
352
|
demoAdmin: z.ZodOptional<z.ZodObject<{
|
|
@@ -354,108 +354,108 @@ declare const ovrConfigSchema: z.ZodObject<{
|
|
|
354
354
|
password: z.ZodString;
|
|
355
355
|
hint: z.ZodOptional<z.ZodString>;
|
|
356
356
|
}, "strip", z.ZodTypeAny, {
|
|
357
|
-
username: string;
|
|
358
357
|
password: string;
|
|
358
|
+
username: string;
|
|
359
359
|
hint?: string | undefined;
|
|
360
360
|
}, {
|
|
361
|
-
username: string;
|
|
362
361
|
password: string;
|
|
362
|
+
username: string;
|
|
363
363
|
hint?: string | undefined;
|
|
364
364
|
}>>;
|
|
365
365
|
}, "strip", z.ZodTypeAny, {
|
|
366
|
+
rules: {
|
|
367
|
+
idPrefix: string;
|
|
368
|
+
dueWindowDays: number;
|
|
369
|
+
surchargeRatePerMonth: number;
|
|
370
|
+
currency: string;
|
|
371
|
+
currencySymbol: string;
|
|
372
|
+
locale: string;
|
|
373
|
+
timeZone: string;
|
|
374
|
+
};
|
|
366
375
|
municipality: {
|
|
367
376
|
name: string;
|
|
377
|
+
country: string;
|
|
378
|
+
region: string;
|
|
368
379
|
province: string;
|
|
369
380
|
fullName: string;
|
|
370
381
|
shortName: string;
|
|
371
382
|
sealSrc: string;
|
|
372
383
|
tagline: string;
|
|
373
|
-
country: string;
|
|
374
|
-
region: string;
|
|
375
384
|
};
|
|
376
385
|
offices: {
|
|
377
386
|
enforcement: {
|
|
378
|
-
name: string;
|
|
379
387
|
abbr: string;
|
|
380
|
-
|
|
388
|
+
name: string;
|
|
381
389
|
address?: string | undefined;
|
|
382
|
-
hours?: string | undefined;
|
|
383
390
|
email?: string | undefined;
|
|
391
|
+
redemptionCenter?: string | undefined;
|
|
392
|
+
hours?: string | undefined;
|
|
384
393
|
};
|
|
385
394
|
treasury: {
|
|
386
|
-
name: string;
|
|
387
395
|
abbr: string;
|
|
388
|
-
|
|
396
|
+
name: string;
|
|
389
397
|
address?: string | undefined;
|
|
390
|
-
hours?: string | undefined;
|
|
391
398
|
email?: string | undefined;
|
|
399
|
+
redemptionCenter?: string | undefined;
|
|
400
|
+
hours?: string | undefined;
|
|
392
401
|
};
|
|
393
402
|
};
|
|
394
|
-
rules: {
|
|
395
|
-
idPrefix: string;
|
|
396
|
-
dueWindowDays: number;
|
|
397
|
-
surchargeRatePerMonth: number;
|
|
398
|
-
currency: string;
|
|
399
|
-
currencySymbol: string;
|
|
400
|
-
locale: string;
|
|
401
|
-
timeZone: string;
|
|
402
|
-
};
|
|
403
403
|
paymentMethods: {
|
|
404
|
-
id: string;
|
|
405
404
|
label: string;
|
|
405
|
+
id: string;
|
|
406
406
|
blurb?: string | undefined;
|
|
407
407
|
}[];
|
|
408
408
|
demoAdmin?: {
|
|
409
|
-
username: string;
|
|
410
409
|
password: string;
|
|
410
|
+
username: string;
|
|
411
411
|
hint?: string | undefined;
|
|
412
412
|
} | undefined;
|
|
413
413
|
}, {
|
|
414
|
+
rules: {
|
|
415
|
+
idPrefix: string;
|
|
416
|
+
dueWindowDays: number;
|
|
417
|
+
surchargeRatePerMonth: number;
|
|
418
|
+
currency: string;
|
|
419
|
+
currencySymbol: string;
|
|
420
|
+
locale: string;
|
|
421
|
+
timeZone: string;
|
|
422
|
+
};
|
|
414
423
|
municipality: {
|
|
415
424
|
name: string;
|
|
425
|
+
country: string;
|
|
426
|
+
region: string;
|
|
416
427
|
province: string;
|
|
417
428
|
fullName: string;
|
|
418
429
|
shortName: string;
|
|
419
430
|
sealSrc: string;
|
|
420
431
|
tagline: string;
|
|
421
|
-
country: string;
|
|
422
|
-
region: string;
|
|
423
432
|
};
|
|
424
433
|
offices: {
|
|
425
434
|
enforcement: {
|
|
426
|
-
name: string;
|
|
427
435
|
abbr: string;
|
|
428
|
-
|
|
436
|
+
name: string;
|
|
429
437
|
address?: string | undefined;
|
|
430
|
-
hours?: string | undefined;
|
|
431
438
|
email?: string | undefined;
|
|
439
|
+
redemptionCenter?: string | undefined;
|
|
440
|
+
hours?: string | undefined;
|
|
432
441
|
};
|
|
433
442
|
treasury: {
|
|
434
|
-
name: string;
|
|
435
443
|
abbr: string;
|
|
436
|
-
|
|
444
|
+
name: string;
|
|
437
445
|
address?: string | undefined;
|
|
438
|
-
hours?: string | undefined;
|
|
439
446
|
email?: string | undefined;
|
|
447
|
+
redemptionCenter?: string | undefined;
|
|
448
|
+
hours?: string | undefined;
|
|
440
449
|
};
|
|
441
450
|
};
|
|
442
|
-
rules: {
|
|
443
|
-
idPrefix: string;
|
|
444
|
-
dueWindowDays: number;
|
|
445
|
-
surchargeRatePerMonth: number;
|
|
446
|
-
currency: string;
|
|
447
|
-
currencySymbol: string;
|
|
448
|
-
locale: string;
|
|
449
|
-
timeZone: string;
|
|
450
|
-
};
|
|
451
451
|
paymentMethods: {
|
|
452
|
-
id: string;
|
|
453
452
|
label: string;
|
|
453
|
+
id: string;
|
|
454
454
|
blurb?: string | undefined;
|
|
455
455
|
}[];
|
|
456
456
|
demoAdmin?: {
|
|
457
|
-
username: string;
|
|
458
457
|
password: string;
|
|
458
|
+
username: string;
|
|
459
459
|
hint?: string | undefined;
|
|
460
460
|
} | undefined;
|
|
461
461
|
}>;
|