@opencrvs/toolkit 2.0.0-rc.fe577a4 → 2.0.0-rc.fedb8b0
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/application-config/index.js +1 -1
- package/dist/cli.js +5 -5
- package/dist/commons/api/router.d.ts +15 -15
- package/dist/commons/events/AdvancedSearchConfig.d.ts +342 -0
- package/dist/commons/events/field.d.ts +6 -0
- package/dist/commons/events/state/utils.d.ts +12 -290
- package/dist/events/index.js +10 -7
- package/dist/migrations/v2.0/index.js +5 -5
- package/dist/notification/index.js +4 -1
- package/dist/scopes/index.d.ts +4 -6
- package/dist/scopes/index.js +5 -5
- package/opencrvs-toolkit-2.0.0-rc.fedb8b0.tgz +0 -0
- package/package.json +1 -1
- package/opencrvs-toolkit-2.0.0-rc.fe577a4.tgz +0 -0
|
@@ -324,7 +324,7 @@ var PlainDate = import_zod.z.string().date().brand("PlainDate").describe("Date i
|
|
|
324
324
|
// ../commons/src/events/FieldValue.ts
|
|
325
325
|
var TextValue = z7.string();
|
|
326
326
|
var HiddenFieldValue = z7.string();
|
|
327
|
-
var NonEmptyTextValue =
|
|
327
|
+
var NonEmptyTextValue = z7.string().trim().min(1);
|
|
328
328
|
var DateValue = z7.iso.date().describe("Date in the format YYYY-MM-DD");
|
|
329
329
|
var AgeValue = z7.object({
|
|
330
330
|
age: z7.number(),
|
package/dist/cli.js
CHANGED
|
@@ -2383,18 +2383,18 @@ var encodeScope = (scope) => {
|
|
|
2383
2383
|
});
|
|
2384
2384
|
};
|
|
2385
2385
|
var decodedScopeCache = /* @__PURE__ */ new Map();
|
|
2386
|
-
var decodeScope = (
|
|
2387
|
-
if (decodedScopeCache.has(
|
|
2388
|
-
return decodedScopeCache.get(
|
|
2386
|
+
var decodeScope = (encodedScope) => {
|
|
2387
|
+
if (decodedScopeCache.has(encodedScope)) {
|
|
2388
|
+
return decodedScopeCache.get(encodedScope);
|
|
2389
2389
|
}
|
|
2390
|
-
const scope = qs.parse(
|
|
2390
|
+
const scope = qs.parse(encodedScope, {
|
|
2391
2391
|
ignoreQueryPrefix: true,
|
|
2392
2392
|
comma: true,
|
|
2393
2393
|
allowDots: true
|
|
2394
2394
|
});
|
|
2395
2395
|
const unflattenedScope = unflattenScope(scope);
|
|
2396
2396
|
const result = Scope2.safeParse(unflattenedScope)?.data;
|
|
2397
|
-
decodedScopeCache.set(
|
|
2397
|
+
decodedScopeCache.set(encodedScope, result);
|
|
2398
2398
|
return result;
|
|
2399
2399
|
};
|
|
2400
2400
|
var DEFAULT_SCOPE_OPTIONS = {
|
|
@@ -417,7 +417,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
417
417
|
createdByUserType: "system" | "user";
|
|
418
418
|
createdAt: string;
|
|
419
419
|
createdBy: string;
|
|
420
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
420
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
421
421
|
status: "Rejected";
|
|
422
422
|
createdByRole?: string | undefined;
|
|
423
423
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -729,7 +729,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
729
729
|
createdByUserType: "system" | "user";
|
|
730
730
|
createdAt: string;
|
|
731
731
|
createdBy: string;
|
|
732
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
732
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
733
733
|
status: "Rejected";
|
|
734
734
|
createdByRole?: string | undefined;
|
|
735
735
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -1040,7 +1040,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1040
1040
|
createdByUserType: "system" | "user";
|
|
1041
1041
|
createdAt: string;
|
|
1042
1042
|
createdBy: string;
|
|
1043
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
1043
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
1044
1044
|
status: "Rejected";
|
|
1045
1045
|
createdByRole?: string | undefined;
|
|
1046
1046
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -1090,7 +1090,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1090
1090
|
transactionId: string;
|
|
1091
1091
|
createdAt: string;
|
|
1092
1092
|
action: {
|
|
1093
|
-
type: "
|
|
1093
|
+
type: "CREATE" | "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "DUPLICATE_DETECTED" | "REJECT" | "MARK_AS_DUPLICATE" | "MARK_AS_NOT_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN" | "CUSTOM";
|
|
1094
1094
|
transactionId: string;
|
|
1095
1095
|
createdByUserType: "system" | "user";
|
|
1096
1096
|
createdAt: string;
|
|
@@ -1109,7 +1109,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1109
1109
|
input: {
|
|
1110
1110
|
transactionId: string;
|
|
1111
1111
|
eventId: string;
|
|
1112
|
-
type: "
|
|
1112
|
+
type: "CREATE" | "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "DUPLICATE_DETECTED" | "REJECT" | "MARK_AS_DUPLICATE" | "MARK_AS_NOT_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN" | "CUSTOM";
|
|
1113
1113
|
status: "Requested" | "Accepted" | "Rejected";
|
|
1114
1114
|
createdAtLocation?: string | null | undefined;
|
|
1115
1115
|
declaration?: Record<string, unknown> | undefined;
|
|
@@ -1125,7 +1125,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1125
1125
|
transactionId: string;
|
|
1126
1126
|
createdAt: string;
|
|
1127
1127
|
action: {
|
|
1128
|
-
type: "
|
|
1128
|
+
type: "CREATE" | "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "DUPLICATE_DETECTED" | "REJECT" | "MARK_AS_DUPLICATE" | "MARK_AS_NOT_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN" | "CUSTOM";
|
|
1129
1129
|
transactionId: string;
|
|
1130
1130
|
createdByUserType: "system" | "user";
|
|
1131
1131
|
createdAt: string;
|
|
@@ -1788,7 +1788,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1788
1788
|
createdByUserType: "system" | "user";
|
|
1789
1789
|
createdAt: string;
|
|
1790
1790
|
createdBy: string;
|
|
1791
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
1791
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
1792
1792
|
status: "Rejected";
|
|
1793
1793
|
createdByRole?: string | undefined;
|
|
1794
1794
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -2131,7 +2131,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2131
2131
|
createdByUserType: "system" | "user";
|
|
2132
2132
|
createdAt: string;
|
|
2133
2133
|
createdBy: string;
|
|
2134
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
2134
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
2135
2135
|
status: "Rejected";
|
|
2136
2136
|
createdByRole?: string | undefined;
|
|
2137
2137
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -4217,7 +4217,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
4217
4217
|
createdByUserType: "system" | "user";
|
|
4218
4218
|
createdAt: string;
|
|
4219
4219
|
createdBy: string;
|
|
4220
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
4220
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
4221
4221
|
status: "Rejected";
|
|
4222
4222
|
createdByRole?: string | undefined;
|
|
4223
4223
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -4828,7 +4828,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
4828
4828
|
createdByUserType: "system" | "user";
|
|
4829
4829
|
createdAt: string;
|
|
4830
4830
|
createdBy: string;
|
|
4831
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
4831
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
4832
4832
|
status: "Rejected";
|
|
4833
4833
|
createdByRole?: string | undefined;
|
|
4834
4834
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -5149,7 +5149,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
5149
5149
|
createdByUserType: "system" | "user";
|
|
5150
5150
|
createdAt: string;
|
|
5151
5151
|
createdBy: string;
|
|
5152
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
5152
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
5153
5153
|
status: "Rejected";
|
|
5154
5154
|
createdByRole?: string | undefined;
|
|
5155
5155
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -6403,7 +6403,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6403
6403
|
createdByUserType: "system" | "user";
|
|
6404
6404
|
createdAt: string;
|
|
6405
6405
|
createdBy: string;
|
|
6406
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
6406
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
6407
6407
|
status: "Rejected";
|
|
6408
6408
|
createdByRole?: string | undefined;
|
|
6409
6409
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -6723,7 +6723,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6723
6723
|
createdByUserType: "system" | "user";
|
|
6724
6724
|
createdAt: string;
|
|
6725
6725
|
createdBy: string;
|
|
6726
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
6726
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
6727
6727
|
status: "Rejected";
|
|
6728
6728
|
createdByRole?: string | undefined;
|
|
6729
6729
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
@@ -7086,7 +7086,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
7086
7086
|
createdByUserType: "system" | "user";
|
|
7087
7087
|
createdAt: string;
|
|
7088
7088
|
createdBy: string;
|
|
7089
|
-
type: "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "
|
|
7089
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
7090
7090
|
status: "Rejected";
|
|
7091
7091
|
createdByRole?: string | undefined;
|
|
7092
7092
|
createdBySignature?: string | null | undefined;
|
|
@@ -7304,7 +7304,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
7304
7304
|
count?: number | undefined;
|
|
7305
7305
|
timeStart?: string | undefined;
|
|
7306
7306
|
timeEnd?: string | undefined;
|
|
7307
|
-
actionTypes?: ("
|
|
7307
|
+
actionTypes?: ("CREATE" | "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "DUPLICATE_DETECTED" | "REJECT" | "MARK_AS_DUPLICATE" | "MARK_AS_NOT_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN" | "CUSTOM")[] | undefined;
|
|
7308
7308
|
};
|
|
7309
7309
|
output: {
|
|
7310
7310
|
results: {
|
|
@@ -91,6 +91,63 @@ export declare const FieldConfigSchema: z.ZodObject<{
|
|
|
91
91
|
validator: z.ZodAny;
|
|
92
92
|
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
93
93
|
}, z.core.$strip>>>;
|
|
94
|
+
allowedLocations: z.ZodOptional<z.ZodObject<{
|
|
95
|
+
$jurisdiction: z.ZodUnion<[z.ZodEnum<{
|
|
96
|
+
administrativeArea: "administrativeArea";
|
|
97
|
+
location: "location";
|
|
98
|
+
all: "all";
|
|
99
|
+
}>, z.ZodObject<{
|
|
100
|
+
$scope: z.ZodEnum<{
|
|
101
|
+
"record.search": "record.search";
|
|
102
|
+
"record.create": "record.create";
|
|
103
|
+
"record.read": "record.read";
|
|
104
|
+
"record.declare": "record.declare";
|
|
105
|
+
"record.notify": "record.notify";
|
|
106
|
+
"record.edit": "record.edit";
|
|
107
|
+
"record.reject": "record.reject";
|
|
108
|
+
"record.archive": "record.archive";
|
|
109
|
+
"record.review-duplicates": "record.review-duplicates";
|
|
110
|
+
"record.register": "record.register";
|
|
111
|
+
"record.print-certified-copies": "record.print-certified-copies";
|
|
112
|
+
"record.request-correction": "record.request-correction";
|
|
113
|
+
"record.correct": "record.correct";
|
|
114
|
+
"record.unassign-others": "record.unassign-others";
|
|
115
|
+
"record.custom-action": "record.custom-action";
|
|
116
|
+
bypassratelimit: "bypassratelimit";
|
|
117
|
+
"record.reindex": "record.reindex";
|
|
118
|
+
"user.data-seeding": "user.data-seeding";
|
|
119
|
+
"integration.create": "integration.create";
|
|
120
|
+
"record.import": "record.import";
|
|
121
|
+
"config.update-all": "config.update-all";
|
|
122
|
+
"attachment.upload": "attachment.upload";
|
|
123
|
+
"profile.electronic-signature": "profile.electronic-signature";
|
|
124
|
+
"user.read-only-my-audit": "user.read-only-my-audit";
|
|
125
|
+
"performance.read": "performance.read";
|
|
126
|
+
"performance.read-dashboards": "performance.read-dashboards";
|
|
127
|
+
"performance.vital-statistics-export": "performance.vital-statistics-export";
|
|
128
|
+
"record.confirm-registration": "record.confirm-registration";
|
|
129
|
+
"record.reject-registration": "record.reject-registration";
|
|
130
|
+
"organisation.read-locations": "organisation.read-locations";
|
|
131
|
+
"user.read": "user.read";
|
|
132
|
+
"user.create": "user.create";
|
|
133
|
+
"user.edit": "user.edit";
|
|
134
|
+
"user.search": "user.search";
|
|
135
|
+
workqueue: "workqueue";
|
|
136
|
+
"dashboard.view": "dashboard.view";
|
|
137
|
+
}>;
|
|
138
|
+
$option: z.ZodEnum<{
|
|
139
|
+
role: "role";
|
|
140
|
+
event: "event";
|
|
141
|
+
placeOfEvent: "placeOfEvent";
|
|
142
|
+
declaredIn: "declaredIn";
|
|
143
|
+
declaredBy: "declaredBy";
|
|
144
|
+
registeredIn: "registeredIn";
|
|
145
|
+
registeredBy: "registeredBy";
|
|
146
|
+
accessLevel: "accessLevel";
|
|
147
|
+
ids: "ids";
|
|
148
|
+
}>;
|
|
149
|
+
}, z.core.$strip>]>;
|
|
150
|
+
}, z.core.$strip>>;
|
|
94
151
|
fieldId: z.ZodString;
|
|
95
152
|
fieldType: z.ZodLiteral<"field">;
|
|
96
153
|
}, z.core.$strip>;
|
|
@@ -211,6 +268,63 @@ export declare const EventFieldConfigSchema: z.ZodObject<{
|
|
|
211
268
|
validator: z.ZodAny;
|
|
212
269
|
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
213
270
|
}, z.core.$strip>>>;
|
|
271
|
+
allowedLocations: z.ZodOptional<z.ZodObject<{
|
|
272
|
+
$jurisdiction: z.ZodUnion<[z.ZodEnum<{
|
|
273
|
+
administrativeArea: "administrativeArea";
|
|
274
|
+
location: "location";
|
|
275
|
+
all: "all";
|
|
276
|
+
}>, z.ZodObject<{
|
|
277
|
+
$scope: z.ZodEnum<{
|
|
278
|
+
"record.search": "record.search";
|
|
279
|
+
"record.create": "record.create";
|
|
280
|
+
"record.read": "record.read";
|
|
281
|
+
"record.declare": "record.declare";
|
|
282
|
+
"record.notify": "record.notify";
|
|
283
|
+
"record.edit": "record.edit";
|
|
284
|
+
"record.reject": "record.reject";
|
|
285
|
+
"record.archive": "record.archive";
|
|
286
|
+
"record.review-duplicates": "record.review-duplicates";
|
|
287
|
+
"record.register": "record.register";
|
|
288
|
+
"record.print-certified-copies": "record.print-certified-copies";
|
|
289
|
+
"record.request-correction": "record.request-correction";
|
|
290
|
+
"record.correct": "record.correct";
|
|
291
|
+
"record.unassign-others": "record.unassign-others";
|
|
292
|
+
"record.custom-action": "record.custom-action";
|
|
293
|
+
bypassratelimit: "bypassratelimit";
|
|
294
|
+
"record.reindex": "record.reindex";
|
|
295
|
+
"user.data-seeding": "user.data-seeding";
|
|
296
|
+
"integration.create": "integration.create";
|
|
297
|
+
"record.import": "record.import";
|
|
298
|
+
"config.update-all": "config.update-all";
|
|
299
|
+
"attachment.upload": "attachment.upload";
|
|
300
|
+
"profile.electronic-signature": "profile.electronic-signature";
|
|
301
|
+
"user.read-only-my-audit": "user.read-only-my-audit";
|
|
302
|
+
"performance.read": "performance.read";
|
|
303
|
+
"performance.read-dashboards": "performance.read-dashboards";
|
|
304
|
+
"performance.vital-statistics-export": "performance.vital-statistics-export";
|
|
305
|
+
"record.confirm-registration": "record.confirm-registration";
|
|
306
|
+
"record.reject-registration": "record.reject-registration";
|
|
307
|
+
"organisation.read-locations": "organisation.read-locations";
|
|
308
|
+
"user.read": "user.read";
|
|
309
|
+
"user.create": "user.create";
|
|
310
|
+
"user.edit": "user.edit";
|
|
311
|
+
"user.search": "user.search";
|
|
312
|
+
workqueue: "workqueue";
|
|
313
|
+
"dashboard.view": "dashboard.view";
|
|
314
|
+
}>;
|
|
315
|
+
$option: z.ZodEnum<{
|
|
316
|
+
role: "role";
|
|
317
|
+
event: "event";
|
|
318
|
+
placeOfEvent: "placeOfEvent";
|
|
319
|
+
declaredIn: "declaredIn";
|
|
320
|
+
declaredBy: "declaredBy";
|
|
321
|
+
registeredIn: "registeredIn";
|
|
322
|
+
registeredBy: "registeredBy";
|
|
323
|
+
accessLevel: "accessLevel";
|
|
324
|
+
ids: "ids";
|
|
325
|
+
}>;
|
|
326
|
+
}, z.core.$strip>]>;
|
|
327
|
+
}, z.core.$strip>>;
|
|
214
328
|
fieldId: z.ZodEnum<{
|
|
215
329
|
"event.updatedAt": "event.updatedAt";
|
|
216
330
|
"event.status": "event.status";
|
|
@@ -307,6 +421,63 @@ export declare const AdvancedSearchField: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
307
421
|
validator: z.ZodAny;
|
|
308
422
|
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
309
423
|
}, z.core.$strip>>>;
|
|
424
|
+
allowedLocations: z.ZodOptional<z.ZodObject<{
|
|
425
|
+
$jurisdiction: z.ZodUnion<[z.ZodEnum<{
|
|
426
|
+
administrativeArea: "administrativeArea";
|
|
427
|
+
location: "location";
|
|
428
|
+
all: "all";
|
|
429
|
+
}>, z.ZodObject<{
|
|
430
|
+
$scope: z.ZodEnum<{
|
|
431
|
+
"record.search": "record.search";
|
|
432
|
+
"record.create": "record.create";
|
|
433
|
+
"record.read": "record.read";
|
|
434
|
+
"record.declare": "record.declare";
|
|
435
|
+
"record.notify": "record.notify";
|
|
436
|
+
"record.edit": "record.edit";
|
|
437
|
+
"record.reject": "record.reject";
|
|
438
|
+
"record.archive": "record.archive";
|
|
439
|
+
"record.review-duplicates": "record.review-duplicates";
|
|
440
|
+
"record.register": "record.register";
|
|
441
|
+
"record.print-certified-copies": "record.print-certified-copies";
|
|
442
|
+
"record.request-correction": "record.request-correction";
|
|
443
|
+
"record.correct": "record.correct";
|
|
444
|
+
"record.unassign-others": "record.unassign-others";
|
|
445
|
+
"record.custom-action": "record.custom-action";
|
|
446
|
+
bypassratelimit: "bypassratelimit";
|
|
447
|
+
"record.reindex": "record.reindex";
|
|
448
|
+
"user.data-seeding": "user.data-seeding";
|
|
449
|
+
"integration.create": "integration.create";
|
|
450
|
+
"record.import": "record.import";
|
|
451
|
+
"config.update-all": "config.update-all";
|
|
452
|
+
"attachment.upload": "attachment.upload";
|
|
453
|
+
"profile.electronic-signature": "profile.electronic-signature";
|
|
454
|
+
"user.read-only-my-audit": "user.read-only-my-audit";
|
|
455
|
+
"performance.read": "performance.read";
|
|
456
|
+
"performance.read-dashboards": "performance.read-dashboards";
|
|
457
|
+
"performance.vital-statistics-export": "performance.vital-statistics-export";
|
|
458
|
+
"record.confirm-registration": "record.confirm-registration";
|
|
459
|
+
"record.reject-registration": "record.reject-registration";
|
|
460
|
+
"organisation.read-locations": "organisation.read-locations";
|
|
461
|
+
"user.read": "user.read";
|
|
462
|
+
"user.create": "user.create";
|
|
463
|
+
"user.edit": "user.edit";
|
|
464
|
+
"user.search": "user.search";
|
|
465
|
+
workqueue: "workqueue";
|
|
466
|
+
"dashboard.view": "dashboard.view";
|
|
467
|
+
}>;
|
|
468
|
+
$option: z.ZodEnum<{
|
|
469
|
+
role: "role";
|
|
470
|
+
event: "event";
|
|
471
|
+
placeOfEvent: "placeOfEvent";
|
|
472
|
+
declaredIn: "declaredIn";
|
|
473
|
+
declaredBy: "declaredBy";
|
|
474
|
+
registeredIn: "registeredIn";
|
|
475
|
+
registeredBy: "registeredBy";
|
|
476
|
+
accessLevel: "accessLevel";
|
|
477
|
+
ids: "ids";
|
|
478
|
+
}>;
|
|
479
|
+
}, z.core.$strip>]>;
|
|
480
|
+
}, z.core.$strip>>;
|
|
310
481
|
fieldId: z.ZodString;
|
|
311
482
|
fieldType: z.ZodLiteral<"field">;
|
|
312
483
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -395,6 +566,63 @@ export declare const AdvancedSearchField: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
395
566
|
validator: z.ZodAny;
|
|
396
567
|
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
397
568
|
}, z.core.$strip>>>;
|
|
569
|
+
allowedLocations: z.ZodOptional<z.ZodObject<{
|
|
570
|
+
$jurisdiction: z.ZodUnion<[z.ZodEnum<{
|
|
571
|
+
administrativeArea: "administrativeArea";
|
|
572
|
+
location: "location";
|
|
573
|
+
all: "all";
|
|
574
|
+
}>, z.ZodObject<{
|
|
575
|
+
$scope: z.ZodEnum<{
|
|
576
|
+
"record.search": "record.search";
|
|
577
|
+
"record.create": "record.create";
|
|
578
|
+
"record.read": "record.read";
|
|
579
|
+
"record.declare": "record.declare";
|
|
580
|
+
"record.notify": "record.notify";
|
|
581
|
+
"record.edit": "record.edit";
|
|
582
|
+
"record.reject": "record.reject";
|
|
583
|
+
"record.archive": "record.archive";
|
|
584
|
+
"record.review-duplicates": "record.review-duplicates";
|
|
585
|
+
"record.register": "record.register";
|
|
586
|
+
"record.print-certified-copies": "record.print-certified-copies";
|
|
587
|
+
"record.request-correction": "record.request-correction";
|
|
588
|
+
"record.correct": "record.correct";
|
|
589
|
+
"record.unassign-others": "record.unassign-others";
|
|
590
|
+
"record.custom-action": "record.custom-action";
|
|
591
|
+
bypassratelimit: "bypassratelimit";
|
|
592
|
+
"record.reindex": "record.reindex";
|
|
593
|
+
"user.data-seeding": "user.data-seeding";
|
|
594
|
+
"integration.create": "integration.create";
|
|
595
|
+
"record.import": "record.import";
|
|
596
|
+
"config.update-all": "config.update-all";
|
|
597
|
+
"attachment.upload": "attachment.upload";
|
|
598
|
+
"profile.electronic-signature": "profile.electronic-signature";
|
|
599
|
+
"user.read-only-my-audit": "user.read-only-my-audit";
|
|
600
|
+
"performance.read": "performance.read";
|
|
601
|
+
"performance.read-dashboards": "performance.read-dashboards";
|
|
602
|
+
"performance.vital-statistics-export": "performance.vital-statistics-export";
|
|
603
|
+
"record.confirm-registration": "record.confirm-registration";
|
|
604
|
+
"record.reject-registration": "record.reject-registration";
|
|
605
|
+
"organisation.read-locations": "organisation.read-locations";
|
|
606
|
+
"user.read": "user.read";
|
|
607
|
+
"user.create": "user.create";
|
|
608
|
+
"user.edit": "user.edit";
|
|
609
|
+
"user.search": "user.search";
|
|
610
|
+
workqueue: "workqueue";
|
|
611
|
+
"dashboard.view": "dashboard.view";
|
|
612
|
+
}>;
|
|
613
|
+
$option: z.ZodEnum<{
|
|
614
|
+
role: "role";
|
|
615
|
+
event: "event";
|
|
616
|
+
placeOfEvent: "placeOfEvent";
|
|
617
|
+
declaredIn: "declaredIn";
|
|
618
|
+
declaredBy: "declaredBy";
|
|
619
|
+
registeredIn: "registeredIn";
|
|
620
|
+
registeredBy: "registeredBy";
|
|
621
|
+
accessLevel: "accessLevel";
|
|
622
|
+
ids: "ids";
|
|
623
|
+
}>;
|
|
624
|
+
}, z.core.$strip>]>;
|
|
625
|
+
}, z.core.$strip>>;
|
|
398
626
|
fieldId: z.ZodEnum<{
|
|
399
627
|
"event.updatedAt": "event.updatedAt";
|
|
400
628
|
"event.status": "event.status";
|
|
@@ -494,6 +722,63 @@ export declare const AdvancedSearchConfig: z.ZodObject<{
|
|
|
494
722
|
validator: z.ZodAny;
|
|
495
723
|
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
496
724
|
}, z.core.$strip>>>;
|
|
725
|
+
allowedLocations: z.ZodOptional<z.ZodObject<{
|
|
726
|
+
$jurisdiction: z.ZodUnion<[z.ZodEnum<{
|
|
727
|
+
administrativeArea: "administrativeArea";
|
|
728
|
+
location: "location";
|
|
729
|
+
all: "all";
|
|
730
|
+
}>, z.ZodObject<{
|
|
731
|
+
$scope: z.ZodEnum<{
|
|
732
|
+
"record.search": "record.search";
|
|
733
|
+
"record.create": "record.create";
|
|
734
|
+
"record.read": "record.read";
|
|
735
|
+
"record.declare": "record.declare";
|
|
736
|
+
"record.notify": "record.notify";
|
|
737
|
+
"record.edit": "record.edit";
|
|
738
|
+
"record.reject": "record.reject";
|
|
739
|
+
"record.archive": "record.archive";
|
|
740
|
+
"record.review-duplicates": "record.review-duplicates";
|
|
741
|
+
"record.register": "record.register";
|
|
742
|
+
"record.print-certified-copies": "record.print-certified-copies";
|
|
743
|
+
"record.request-correction": "record.request-correction";
|
|
744
|
+
"record.correct": "record.correct";
|
|
745
|
+
"record.unassign-others": "record.unassign-others";
|
|
746
|
+
"record.custom-action": "record.custom-action";
|
|
747
|
+
bypassratelimit: "bypassratelimit";
|
|
748
|
+
"record.reindex": "record.reindex";
|
|
749
|
+
"user.data-seeding": "user.data-seeding";
|
|
750
|
+
"integration.create": "integration.create";
|
|
751
|
+
"record.import": "record.import";
|
|
752
|
+
"config.update-all": "config.update-all";
|
|
753
|
+
"attachment.upload": "attachment.upload";
|
|
754
|
+
"profile.electronic-signature": "profile.electronic-signature";
|
|
755
|
+
"user.read-only-my-audit": "user.read-only-my-audit";
|
|
756
|
+
"performance.read": "performance.read";
|
|
757
|
+
"performance.read-dashboards": "performance.read-dashboards";
|
|
758
|
+
"performance.vital-statistics-export": "performance.vital-statistics-export";
|
|
759
|
+
"record.confirm-registration": "record.confirm-registration";
|
|
760
|
+
"record.reject-registration": "record.reject-registration";
|
|
761
|
+
"organisation.read-locations": "organisation.read-locations";
|
|
762
|
+
"user.read": "user.read";
|
|
763
|
+
"user.create": "user.create";
|
|
764
|
+
"user.edit": "user.edit";
|
|
765
|
+
"user.search": "user.search";
|
|
766
|
+
workqueue: "workqueue";
|
|
767
|
+
"dashboard.view": "dashboard.view";
|
|
768
|
+
}>;
|
|
769
|
+
$option: z.ZodEnum<{
|
|
770
|
+
role: "role";
|
|
771
|
+
event: "event";
|
|
772
|
+
placeOfEvent: "placeOfEvent";
|
|
773
|
+
declaredIn: "declaredIn";
|
|
774
|
+
declaredBy: "declaredBy";
|
|
775
|
+
registeredIn: "registeredIn";
|
|
776
|
+
registeredBy: "registeredBy";
|
|
777
|
+
accessLevel: "accessLevel";
|
|
778
|
+
ids: "ids";
|
|
779
|
+
}>;
|
|
780
|
+
}, z.core.$strip>]>;
|
|
781
|
+
}, z.core.$strip>>;
|
|
497
782
|
fieldId: z.ZodString;
|
|
498
783
|
fieldType: z.ZodLiteral<"field">;
|
|
499
784
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -582,6 +867,63 @@ export declare const AdvancedSearchConfig: z.ZodObject<{
|
|
|
582
867
|
validator: z.ZodAny;
|
|
583
868
|
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
584
869
|
}, z.core.$strip>>>;
|
|
870
|
+
allowedLocations: z.ZodOptional<z.ZodObject<{
|
|
871
|
+
$jurisdiction: z.ZodUnion<[z.ZodEnum<{
|
|
872
|
+
administrativeArea: "administrativeArea";
|
|
873
|
+
location: "location";
|
|
874
|
+
all: "all";
|
|
875
|
+
}>, z.ZodObject<{
|
|
876
|
+
$scope: z.ZodEnum<{
|
|
877
|
+
"record.search": "record.search";
|
|
878
|
+
"record.create": "record.create";
|
|
879
|
+
"record.read": "record.read";
|
|
880
|
+
"record.declare": "record.declare";
|
|
881
|
+
"record.notify": "record.notify";
|
|
882
|
+
"record.edit": "record.edit";
|
|
883
|
+
"record.reject": "record.reject";
|
|
884
|
+
"record.archive": "record.archive";
|
|
885
|
+
"record.review-duplicates": "record.review-duplicates";
|
|
886
|
+
"record.register": "record.register";
|
|
887
|
+
"record.print-certified-copies": "record.print-certified-copies";
|
|
888
|
+
"record.request-correction": "record.request-correction";
|
|
889
|
+
"record.correct": "record.correct";
|
|
890
|
+
"record.unassign-others": "record.unassign-others";
|
|
891
|
+
"record.custom-action": "record.custom-action";
|
|
892
|
+
bypassratelimit: "bypassratelimit";
|
|
893
|
+
"record.reindex": "record.reindex";
|
|
894
|
+
"user.data-seeding": "user.data-seeding";
|
|
895
|
+
"integration.create": "integration.create";
|
|
896
|
+
"record.import": "record.import";
|
|
897
|
+
"config.update-all": "config.update-all";
|
|
898
|
+
"attachment.upload": "attachment.upload";
|
|
899
|
+
"profile.electronic-signature": "profile.electronic-signature";
|
|
900
|
+
"user.read-only-my-audit": "user.read-only-my-audit";
|
|
901
|
+
"performance.read": "performance.read";
|
|
902
|
+
"performance.read-dashboards": "performance.read-dashboards";
|
|
903
|
+
"performance.vital-statistics-export": "performance.vital-statistics-export";
|
|
904
|
+
"record.confirm-registration": "record.confirm-registration";
|
|
905
|
+
"record.reject-registration": "record.reject-registration";
|
|
906
|
+
"organisation.read-locations": "organisation.read-locations";
|
|
907
|
+
"user.read": "user.read";
|
|
908
|
+
"user.create": "user.create";
|
|
909
|
+
"user.edit": "user.edit";
|
|
910
|
+
"user.search": "user.search";
|
|
911
|
+
workqueue: "workqueue";
|
|
912
|
+
"dashboard.view": "dashboard.view";
|
|
913
|
+
}>;
|
|
914
|
+
$option: z.ZodEnum<{
|
|
915
|
+
role: "role";
|
|
916
|
+
event: "event";
|
|
917
|
+
placeOfEvent: "placeOfEvent";
|
|
918
|
+
declaredIn: "declaredIn";
|
|
919
|
+
declaredBy: "declaredBy";
|
|
920
|
+
registeredIn: "registeredIn";
|
|
921
|
+
registeredBy: "registeredBy";
|
|
922
|
+
accessLevel: "accessLevel";
|
|
923
|
+
ids: "ids";
|
|
924
|
+
}>;
|
|
925
|
+
}, z.core.$strip>]>;
|
|
926
|
+
}, z.core.$strip>>;
|
|
585
927
|
fieldId: z.ZodEnum<{
|
|
586
928
|
"event.updatedAt": "event.updatedAt";
|
|
587
929
|
"event.status": "event.status";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FormConditionalParameters } from '../conditionals/conditionals';
|
|
2
2
|
import { FieldConditional } from './Conditional';
|
|
3
3
|
import { TranslationConfig } from './TranslationConfig';
|
|
4
|
+
import { JurisdictionReference } from '../users/userReferences';
|
|
4
5
|
import { ComputedDefaultValue, SelectOption, ValidationConfig } from './FieldConfig';
|
|
5
6
|
/**
|
|
6
7
|
* Creates a {@link ComputedDefaultValue} descriptor for use in a field's `defaultValue`.
|
|
@@ -35,12 +36,14 @@ export declare function field(fieldId: string, options?: {
|
|
|
35
36
|
conditionals?: FieldConditional[];
|
|
36
37
|
validations?: ValidationConfig[];
|
|
37
38
|
searchCriteriaLabelPrefix?: TranslationConfig;
|
|
39
|
+
allowedLocations?: JurisdictionReference;
|
|
38
40
|
}): {
|
|
39
41
|
range: () => {
|
|
40
42
|
options?: SelectOption[];
|
|
41
43
|
conditionals?: FieldConditional[];
|
|
42
44
|
validations?: ValidationConfig[];
|
|
43
45
|
searchCriteriaLabelPrefix?: TranslationConfig;
|
|
46
|
+
allowedLocations?: JurisdictionReference;
|
|
44
47
|
fieldId: string;
|
|
45
48
|
fieldType: "field";
|
|
46
49
|
} & {
|
|
@@ -53,6 +56,7 @@ export declare function field(fieldId: string, options?: {
|
|
|
53
56
|
conditionals?: FieldConditional[];
|
|
54
57
|
validations?: ValidationConfig[];
|
|
55
58
|
searchCriteriaLabelPrefix?: TranslationConfig;
|
|
59
|
+
allowedLocations?: JurisdictionReference;
|
|
56
60
|
fieldId: string;
|
|
57
61
|
fieldType: "field";
|
|
58
62
|
} & {
|
|
@@ -65,6 +69,7 @@ export declare function field(fieldId: string, options?: {
|
|
|
65
69
|
conditionals?: FieldConditional[];
|
|
66
70
|
validations?: ValidationConfig[];
|
|
67
71
|
searchCriteriaLabelPrefix?: TranslationConfig;
|
|
72
|
+
allowedLocations?: JurisdictionReference;
|
|
68
73
|
fieldId: string;
|
|
69
74
|
fieldType: "field";
|
|
70
75
|
} & {
|
|
@@ -77,6 +82,7 @@ export declare function field(fieldId: string, options?: {
|
|
|
77
82
|
conditionals?: FieldConditional[];
|
|
78
83
|
validations?: ValidationConfig[];
|
|
79
84
|
searchCriteriaLabelPrefix?: TranslationConfig;
|
|
85
|
+
allowedLocations?: JurisdictionReference;
|
|
80
86
|
fieldId: string;
|
|
81
87
|
fieldType: "field";
|
|
82
88
|
} & {
|
|
@@ -1,282 +1,17 @@
|
|
|
1
1
|
import { Action } from '../ActionDocument';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* @see EventIndex for the description of the returned object.
|
|
3
|
+
* Returns the creation metadata of the last update action (Requested or Accepted).
|
|
4
|
+
* Requested actions are included so that async flows (202) correctly reflect the
|
|
5
|
+
* metadata of the user who triggered the action before country config accepts it.
|
|
7
6
|
*
|
|
8
|
-
*
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
17
|
-
type: "REGISTER";
|
|
18
|
-
createdByRole?: string | undefined;
|
|
19
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
20
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
21
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
22
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
23
|
-
registrationNumber?: string | undefined;
|
|
24
|
-
} | {
|
|
25
|
-
id: string & import("zod").$brand<"UUID">;
|
|
26
|
-
transactionId: string;
|
|
27
|
-
createdByUserType: "user" | "system";
|
|
28
|
-
createdAt: string;
|
|
29
|
-
createdBy: string;
|
|
30
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
31
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
32
|
-
type: "DUPLICATE_DETECTED";
|
|
33
|
-
content: {
|
|
34
|
-
duplicates: {
|
|
35
|
-
id: string & import("zod").$brand<"UUID">;
|
|
36
|
-
trackingId: string;
|
|
37
|
-
}[];
|
|
38
|
-
};
|
|
39
|
-
createdByRole?: string | undefined;
|
|
40
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
41
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
42
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
43
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
44
|
-
} | {
|
|
45
|
-
id: string & import("zod").$brand<"UUID">;
|
|
46
|
-
transactionId: string;
|
|
47
|
-
createdByUserType: "user" | "system";
|
|
48
|
-
createdAt: string;
|
|
49
|
-
createdBy: string;
|
|
50
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
51
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
52
|
-
type: "EDIT";
|
|
53
|
-
content: {
|
|
54
|
-
comment?: string | undefined;
|
|
55
|
-
};
|
|
56
|
-
createdByRole?: string | undefined;
|
|
57
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
58
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
59
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
60
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
61
|
-
} | {
|
|
62
|
-
id: string & import("zod").$brand<"UUID">;
|
|
63
|
-
transactionId: string;
|
|
64
|
-
createdByUserType: "user" | "system";
|
|
65
|
-
createdAt: string;
|
|
66
|
-
createdBy: string;
|
|
67
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
68
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
69
|
-
type: "PRINT_CERTIFICATE";
|
|
70
|
-
createdByRole?: string | undefined;
|
|
71
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
72
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
73
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
74
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
75
|
-
content?: {
|
|
76
|
-
templateId?: string | undefined;
|
|
77
|
-
} | null | undefined;
|
|
78
|
-
} | {
|
|
79
|
-
id: string & import("zod").$brand<"UUID">;
|
|
80
|
-
transactionId: string;
|
|
81
|
-
createdByUserType: "user" | "system";
|
|
82
|
-
createdAt: string;
|
|
83
|
-
createdBy: string;
|
|
84
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
85
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
86
|
-
type: "REQUEST_CORRECTION";
|
|
87
|
-
createdByRole?: string | undefined;
|
|
88
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
89
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
90
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
91
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
92
|
-
} | {
|
|
93
|
-
id: string & import("zod").$brand<"UUID">;
|
|
94
|
-
transactionId: string;
|
|
95
|
-
createdByUserType: "user" | "system";
|
|
96
|
-
createdAt: string;
|
|
97
|
-
createdBy: string;
|
|
98
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
99
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
100
|
-
type: "CUSTOM";
|
|
101
|
-
customActionType: string;
|
|
102
|
-
createdByRole?: string | undefined;
|
|
103
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
104
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
105
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
106
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
107
|
-
} | {
|
|
108
|
-
id: string & import("zod").$brand<"UUID">;
|
|
109
|
-
transactionId: string;
|
|
110
|
-
createdByUserType: "user" | "system";
|
|
111
|
-
createdAt: string;
|
|
112
|
-
createdBy: string;
|
|
113
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
114
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
115
|
-
type: "CREATE";
|
|
116
|
-
createdByRole?: string | undefined;
|
|
117
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
118
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
119
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
120
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
121
|
-
} | {
|
|
122
|
-
id: string & import("zod").$brand<"UUID">;
|
|
123
|
-
transactionId: string;
|
|
124
|
-
createdByUserType: "user" | "system";
|
|
125
|
-
createdAt: string;
|
|
126
|
-
createdBy: string;
|
|
127
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
128
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
129
|
-
type: "REJECT";
|
|
130
|
-
content: {
|
|
131
|
-
reason: string;
|
|
132
|
-
};
|
|
133
|
-
createdByRole?: string | undefined;
|
|
134
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
135
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
136
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
137
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
138
|
-
} | {
|
|
139
|
-
id: string & import("zod").$brand<"UUID">;
|
|
140
|
-
transactionId: string;
|
|
141
|
-
createdByUserType: "user" | "system";
|
|
142
|
-
createdAt: string;
|
|
143
|
-
createdBy: string;
|
|
144
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
145
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
146
|
-
type: "MARK_AS_NOT_DUPLICATE";
|
|
147
|
-
createdByRole?: string | undefined;
|
|
148
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
149
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
150
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
151
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
152
|
-
} | {
|
|
153
|
-
id: string & import("zod").$brand<"UUID">;
|
|
154
|
-
transactionId: string;
|
|
155
|
-
createdByUserType: "user" | "system";
|
|
156
|
-
createdAt: string;
|
|
157
|
-
createdBy: string;
|
|
158
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
159
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
160
|
-
type: "MARK_AS_DUPLICATE";
|
|
161
|
-
createdByRole?: string | undefined;
|
|
162
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
163
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
164
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
165
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
166
|
-
content?: {
|
|
167
|
-
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
168
|
-
} | undefined;
|
|
169
|
-
} | {
|
|
170
|
-
id: string & import("zod").$brand<"UUID">;
|
|
171
|
-
transactionId: string;
|
|
172
|
-
createdByUserType: "user" | "system";
|
|
173
|
-
createdAt: string;
|
|
174
|
-
createdBy: string;
|
|
175
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
176
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
177
|
-
type: "ARCHIVE";
|
|
178
|
-
content: {
|
|
179
|
-
reason: string;
|
|
180
|
-
};
|
|
181
|
-
createdByRole?: string | undefined;
|
|
182
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
183
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
184
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
185
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
186
|
-
} | {
|
|
187
|
-
id: string & import("zod").$brand<"UUID">;
|
|
188
|
-
transactionId: string;
|
|
189
|
-
createdByUserType: "user" | "system";
|
|
190
|
-
createdAt: string;
|
|
191
|
-
createdBy: string;
|
|
192
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
193
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
194
|
-
type: "NOTIFY";
|
|
195
|
-
createdByRole?: string | undefined;
|
|
196
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
197
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
198
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
199
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
200
|
-
} | {
|
|
201
|
-
id: string & import("zod").$brand<"UUID">;
|
|
202
|
-
transactionId: string;
|
|
203
|
-
createdByUserType: "user" | "system";
|
|
204
|
-
createdAt: string;
|
|
205
|
-
createdBy: string;
|
|
206
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
207
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
208
|
-
type: "DECLARE";
|
|
209
|
-
createdByRole?: string | undefined;
|
|
210
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
211
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
212
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
213
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
214
|
-
} | {
|
|
215
|
-
id: string & import("zod").$brand<"UUID">;
|
|
216
|
-
transactionId: string;
|
|
217
|
-
createdByUserType: "user" | "system";
|
|
218
|
-
createdAt: string;
|
|
219
|
-
createdBy: string;
|
|
220
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
221
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
222
|
-
type: "ASSIGN";
|
|
223
|
-
assignedTo: string;
|
|
224
|
-
createdByRole?: string | undefined;
|
|
225
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
226
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
227
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
228
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
229
|
-
} | {
|
|
230
|
-
id: string & import("zod").$brand<"UUID">;
|
|
231
|
-
transactionId: string;
|
|
232
|
-
createdByUserType: "user" | "system";
|
|
233
|
-
createdAt: string;
|
|
234
|
-
createdBy: string;
|
|
235
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
236
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
237
|
-
type: "APPROVE_CORRECTION";
|
|
238
|
-
requestId: string;
|
|
239
|
-
createdByRole?: string | undefined;
|
|
240
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
241
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
242
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
243
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
244
|
-
content?: {
|
|
245
|
-
immediateCorrection?: boolean | undefined;
|
|
246
|
-
} | undefined;
|
|
247
|
-
} | {
|
|
248
|
-
id: string & import("zod").$brand<"UUID">;
|
|
249
|
-
transactionId: string;
|
|
250
|
-
createdByUserType: "user" | "system";
|
|
251
|
-
createdAt: string;
|
|
252
|
-
createdBy: string;
|
|
253
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
254
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
255
|
-
type: "REJECT_CORRECTION";
|
|
256
|
-
requestId: string;
|
|
257
|
-
content: {
|
|
258
|
-
reason: string;
|
|
259
|
-
};
|
|
260
|
-
createdByRole?: string | undefined;
|
|
261
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
262
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
263
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
264
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
265
|
-
} | {
|
|
266
|
-
id: string & import("zod").$brand<"UUID">;
|
|
267
|
-
transactionId: string;
|
|
268
|
-
createdByUserType: "user" | "system";
|
|
269
|
-
createdAt: string;
|
|
270
|
-
createdBy: string;
|
|
271
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
272
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
273
|
-
type: "UNASSIGN";
|
|
274
|
-
createdByRole?: string | undefined;
|
|
275
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
276
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
277
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
278
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
279
|
-
} | {
|
|
7
|
+
* When an Accepted action carries an originalActionId, its metadata is sourced from
|
|
8
|
+
* the original Requested action (the human who triggered it), not from the system
|
|
9
|
+
* or 3rd party that accepted it.
|
|
10
|
+
*
|
|
11
|
+
* @returns metadata of the last user who triggered a status-changing action.
|
|
12
|
+
* @see EventIndex for the description of the returned object.
|
|
13
|
+
*/
|
|
14
|
+
export declare function getActionUpdateMetadata(actions: Action[]): Pick<{
|
|
280
15
|
id: string & import("zod").$brand<"UUID">;
|
|
281
16
|
transactionId: string;
|
|
282
17
|
createdByUserType: "user" | "system";
|
|
@@ -284,25 +19,12 @@ export declare function getActionUpdateMetadata(actions: Action[]): Partial<{
|
|
|
284
19
|
createdBy: string;
|
|
285
20
|
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
286
21
|
status: "Requested" | "Accepted" | "Rejected";
|
|
287
|
-
type: "READ";
|
|
288
22
|
createdByRole?: string | undefined;
|
|
289
23
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
290
24
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
291
25
|
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
292
26
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
293
|
-
} |
|
|
294
|
-
id: string & import("zod").$brand<"UUID">;
|
|
295
|
-
transactionId: string;
|
|
296
|
-
createdByUserType: "user" | "system";
|
|
297
|
-
createdAt: string;
|
|
298
|
-
createdBy: string;
|
|
299
|
-
type: "CUSTOM" | "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION";
|
|
300
|
-
status: "Rejected";
|
|
301
|
-
createdByRole?: string | undefined;
|
|
302
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
303
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
304
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
305
|
-
}>;
|
|
27
|
+
}, "createdByUserType" | "createdAt" | "createdBy" | "createdByRole" | "createdAtLocation">;
|
|
306
28
|
/**
|
|
307
29
|
* @returns the legal statuses of the event. Event is considered legal if it has been accepted.
|
|
308
30
|
* @see EventIndex for the description of the returned object.
|
package/dist/events/index.js
CHANGED
|
@@ -712,18 +712,18 @@ var unflattenScope = (input) => {
|
|
|
712
712
|
};
|
|
713
713
|
var EncodedScope = z2.string().brand("EncodedScope");
|
|
714
714
|
var decodedScopeCache = /* @__PURE__ */ new Map();
|
|
715
|
-
var decodeScope = (
|
|
716
|
-
if (decodedScopeCache.has(
|
|
717
|
-
return decodedScopeCache.get(
|
|
715
|
+
var decodeScope = (encodedScope) => {
|
|
716
|
+
if (decodedScopeCache.has(encodedScope)) {
|
|
717
|
+
return decodedScopeCache.get(encodedScope);
|
|
718
718
|
}
|
|
719
|
-
const scope = qs.parse(
|
|
719
|
+
const scope = qs.parse(encodedScope, {
|
|
720
720
|
ignoreQueryPrefix: true,
|
|
721
721
|
comma: true,
|
|
722
722
|
allowDots: true
|
|
723
723
|
});
|
|
724
724
|
const unflattenedScope = unflattenScope(scope);
|
|
725
725
|
const result = Scope.safeParse(unflattenedScope)?.data;
|
|
726
|
-
decodedScopeCache.set(
|
|
726
|
+
decodedScopeCache.set(encodedScope, result);
|
|
727
727
|
return result;
|
|
728
728
|
};
|
|
729
729
|
var DEFAULT_SCOPE_OPTIONS = {
|
|
@@ -1345,7 +1345,7 @@ function plainDateToLocalDate(date) {
|
|
|
1345
1345
|
// ../commons/src/events/FieldValue.ts
|
|
1346
1346
|
var TextValue = z12.string();
|
|
1347
1347
|
var HiddenFieldValue = z12.string();
|
|
1348
|
-
var NonEmptyTextValue =
|
|
1348
|
+
var NonEmptyTextValue = z12.string().trim().min(1);
|
|
1349
1349
|
var DateValue = z12.iso.date().describe("Date in the format YYYY-MM-DD");
|
|
1350
1350
|
var AgeValue = z12.object({
|
|
1351
1351
|
age: z12.number(),
|
|
@@ -3480,6 +3480,9 @@ var BaseField3 = z28.object({
|
|
|
3480
3480
|
),
|
|
3481
3481
|
validations: z28.array(ValidationConfig).optional().describe(
|
|
3482
3482
|
`Option for overriding the field validations specifically for advanced search form.`
|
|
3483
|
+
),
|
|
3484
|
+
allowedLocations: JurisdictionReference.optional().describe(
|
|
3485
|
+
`Override the allowedLocations for a location field in advanced search. Use this when the declaration form's allowedLocations references a scope (e.g. record.create) that search-only users don't have \u2014 specify record.search scope instead.`
|
|
3483
3486
|
)
|
|
3484
3487
|
});
|
|
3485
3488
|
var SearchQueryParams = z28.object({
|
|
@@ -6496,7 +6499,7 @@ function getActionUpdateMetadata(actions) {
|
|
|
6496
6499
|
"createdAtLocation",
|
|
6497
6500
|
"createdByRole"
|
|
6498
6501
|
];
|
|
6499
|
-
return actions.filter(({ type }) => updateActions.safeParse(type).success).
|
|
6502
|
+
return actions.filter(({ type }) => updateActions.safeParse(type).success).reduce(
|
|
6500
6503
|
(_2, action) => {
|
|
6501
6504
|
if (action.originalActionId) {
|
|
6502
6505
|
const originalAction = actions.find(({ id }) => id === action.originalActionId) ?? action;
|
|
@@ -2395,18 +2395,18 @@ var encodeScope = (scope) => {
|
|
|
2395
2395
|
});
|
|
2396
2396
|
};
|
|
2397
2397
|
var decodedScopeCache = /* @__PURE__ */ new Map();
|
|
2398
|
-
var decodeScope = (
|
|
2399
|
-
if (decodedScopeCache.has(
|
|
2400
|
-
return decodedScopeCache.get(
|
|
2398
|
+
var decodeScope = (encodedScope) => {
|
|
2399
|
+
if (decodedScopeCache.has(encodedScope)) {
|
|
2400
|
+
return decodedScopeCache.get(encodedScope);
|
|
2401
2401
|
}
|
|
2402
|
-
const scope = qs.parse(
|
|
2402
|
+
const scope = qs.parse(encodedScope, {
|
|
2403
2403
|
ignoreQueryPrefix: true,
|
|
2404
2404
|
comma: true,
|
|
2405
2405
|
allowDots: true
|
|
2406
2406
|
});
|
|
2407
2407
|
const unflattenedScope = unflattenScope(scope);
|
|
2408
2408
|
const result = Scope2.safeParse(unflattenedScope)?.data;
|
|
2409
|
-
decodedScopeCache.set(
|
|
2409
|
+
decodedScopeCache.set(encodedScope, result);
|
|
2410
2410
|
return result;
|
|
2411
2411
|
};
|
|
2412
2412
|
var DEFAULT_SCOPE_OPTIONS = {
|
|
@@ -888,7 +888,7 @@ var PlainDate = import_zod.z.string().date().brand("PlainDate").describe("Date i
|
|
|
888
888
|
// ../commons/src/events/FieldValue.ts
|
|
889
889
|
var TextValue = z12.string();
|
|
890
890
|
var HiddenFieldValue = z12.string();
|
|
891
|
-
var NonEmptyTextValue =
|
|
891
|
+
var NonEmptyTextValue = z12.string().trim().min(1);
|
|
892
892
|
var DateValue = z12.iso.date().describe("Date in the format YYYY-MM-DD");
|
|
893
893
|
var AgeValue = z12.object({
|
|
894
894
|
age: z12.number(),
|
|
@@ -2938,6 +2938,9 @@ var BaseField3 = z28.object({
|
|
|
2938
2938
|
),
|
|
2939
2939
|
validations: z28.array(ValidationConfig).optional().describe(
|
|
2940
2940
|
`Option for overriding the field validations specifically for advanced search form.`
|
|
2941
|
+
),
|
|
2942
|
+
allowedLocations: JurisdictionReference.optional().describe(
|
|
2943
|
+
`Override the allowedLocations for a location field in advanced search. Use this when the declaration form's allowedLocations references a scope (e.g. record.create) that search-only users don't have \u2014 specify record.search scope instead.`
|
|
2941
2944
|
)
|
|
2942
2945
|
});
|
|
2943
2946
|
var SearchQueryParams = z28.object({
|
package/dist/scopes/index.d.ts
CHANGED
|
@@ -580,14 +580,12 @@ export type EncodedScope = z.infer<typeof EncodedScope>;
|
|
|
580
580
|
*/
|
|
581
581
|
export declare const encodeScope: (scope: Scope) => EncodedScope;
|
|
582
582
|
/**
|
|
583
|
-
* Converts
|
|
583
|
+
* Converts an encoded scope string into a scope object.
|
|
584
584
|
*
|
|
585
|
-
* @
|
|
586
|
-
*
|
|
587
|
-
* @param scope - The scope object to encode.
|
|
588
|
-
* @returns The encoded scope as a branded string (`EncodedScope`).
|
|
585
|
+
* @param scope - The encoded scope string to decode.
|
|
586
|
+
* @returns The decoded scope object.
|
|
589
587
|
*/
|
|
590
|
-
export declare const decodeScope: (
|
|
588
|
+
export declare const decodeScope: (encodedScope: EncodedScope) => {
|
|
591
589
|
type: "record.create" | "record.declare" | "record.notify";
|
|
592
590
|
options?: {
|
|
593
591
|
event?: string[] | undefined;
|
package/dist/scopes/index.js
CHANGED
|
@@ -355,18 +355,18 @@ var encodeScope = (scope) => {
|
|
|
355
355
|
});
|
|
356
356
|
};
|
|
357
357
|
var decodedScopeCache = /* @__PURE__ */ new Map();
|
|
358
|
-
var decodeScope = (
|
|
359
|
-
if (decodedScopeCache.has(
|
|
360
|
-
return decodedScopeCache.get(
|
|
358
|
+
var decodeScope = (encodedScope) => {
|
|
359
|
+
if (decodedScopeCache.has(encodedScope)) {
|
|
360
|
+
return decodedScopeCache.get(encodedScope);
|
|
361
361
|
}
|
|
362
|
-
const scope = qs.parse(
|
|
362
|
+
const scope = qs.parse(encodedScope, {
|
|
363
363
|
ignoreQueryPrefix: true,
|
|
364
364
|
comma: true,
|
|
365
365
|
allowDots: true
|
|
366
366
|
});
|
|
367
367
|
const unflattenedScope = unflattenScope(scope);
|
|
368
368
|
const result = Scope2.safeParse(unflattenedScope)?.data;
|
|
369
|
-
decodedScopeCache.set(
|
|
369
|
+
decodedScopeCache.set(encodedScope, result);
|
|
370
370
|
return result;
|
|
371
371
|
};
|
|
372
372
|
var DEFAULT_SCOPE_OPTIONS = {
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|