@opencrvs/toolkit 1.9.6-rc.26c4057 → 1.9.6-rc.2e5e207
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.
|
@@ -31023,7 +31023,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
31023
31023
|
}[];
|
|
31024
31024
|
};
|
|
31025
31025
|
actions: {
|
|
31026
|
-
type: "DELETE" | "READ" | "DECLARE" | "REJECT" | "REGISTER" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "EDIT" | "ARCHIVE" | "MARK_AS_DUPLICATE" | "ASSIGN" | "UNASSIGN"
|
|
31026
|
+
type: "DELETE" | "READ" | "DECLARE" | "REJECT" | "REGISTER" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "EDIT" | "ARCHIVE" | "MARK_AS_DUPLICATE" | "ASSIGN" | "UNASSIGN";
|
|
31027
31027
|
}[];
|
|
31028
31028
|
columns: {
|
|
31029
31029
|
label: {
|
|
@@ -9,7 +9,8 @@ export declare const mandatoryColumns: {
|
|
|
9
9
|
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "placeOfEvent" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
10
10
|
};
|
|
11
11
|
}[];
|
|
12
|
-
|
|
12
|
+
/** Workqueue Call-to-action -button action type */
|
|
13
|
+
export declare const CtaActionType: z.ZodEnum<{
|
|
13
14
|
DELETE: "DELETE";
|
|
14
15
|
DECLARE: "DECLARE";
|
|
15
16
|
REGISTER: "REGISTER";
|
|
@@ -22,9 +23,8 @@ export declare const WorkqueueActionsWithDefault: z.ZodEnum<{
|
|
|
22
23
|
READ: "READ";
|
|
23
24
|
ASSIGN: "ASSIGN";
|
|
24
25
|
UNASSIGN: "UNASSIGN";
|
|
25
|
-
DEFAULT: "DEFAULT";
|
|
26
26
|
}>;
|
|
27
|
-
export type
|
|
27
|
+
export type CtaActionType = z.infer<typeof CtaActionType>;
|
|
28
28
|
/**
|
|
29
29
|
* Configuration for workqueue. Workqueues are used to display a list of events.
|
|
30
30
|
*/
|
|
@@ -534,7 +534,6 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
|
534
534
|
READ: "READ";
|
|
535
535
|
ASSIGN: "ASSIGN";
|
|
536
536
|
UNASSIGN: "UNASSIGN";
|
|
537
|
-
DEFAULT: "DEFAULT";
|
|
538
537
|
}>;
|
|
539
538
|
}, z.core.$strip>>;
|
|
540
539
|
columns: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -791,7 +790,6 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<{
|
|
|
791
790
|
READ: "READ";
|
|
792
791
|
ASSIGN: "ASSIGN";
|
|
793
792
|
UNASSIGN: "UNASSIGN";
|
|
794
|
-
DEFAULT: "DEFAULT";
|
|
795
793
|
}>;
|
|
796
794
|
}, z.core.$strip>>;
|
|
797
795
|
slug: z.ZodString;
|
|
@@ -1544,7 +1542,6 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
|
1544
1542
|
READ: "READ";
|
|
1545
1543
|
ASSIGN: "ASSIGN";
|
|
1546
1544
|
UNASSIGN: "UNASSIGN";
|
|
1547
|
-
DEFAULT: "DEFAULT";
|
|
1548
1545
|
}>;
|
|
1549
1546
|
}, z.core.$strip>>;
|
|
1550
1547
|
columns: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -1914,7 +1911,7 @@ export declare function defineWorkqueue(workqueueInput: WorkqueueConfigInput): {
|
|
|
1914
1911
|
}[];
|
|
1915
1912
|
};
|
|
1916
1913
|
actions: {
|
|
1917
|
-
type: "DELETE" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "MARK_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN"
|
|
1914
|
+
type: "DELETE" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "MARK_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
|
1918
1915
|
}[];
|
|
1919
1916
|
columns: {
|
|
1920
1917
|
label: {
|
|
@@ -2164,7 +2161,7 @@ export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
|
|
2164
2161
|
}[];
|
|
2165
2162
|
};
|
|
2166
2163
|
actions: {
|
|
2167
|
-
type: "DELETE" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "MARK_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN"
|
|
2164
|
+
type: "DELETE" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "MARK_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
|
2168
2165
|
}[];
|
|
2169
2166
|
columns: {
|
|
2170
2167
|
label: {
|
package/dist/events/index.js
CHANGED
|
@@ -75,6 +75,7 @@ __export(events_exports, {
|
|
|
75
75
|
ConditionalType: () => ConditionalType,
|
|
76
76
|
ConfirmableActions: () => ConfirmableActions,
|
|
77
77
|
ContainsFlags: () => ContainsFlags,
|
|
78
|
+
CtaActionType: () => CtaActionType,
|
|
78
79
|
CustomActionInput: () => CustomActionInput,
|
|
79
80
|
CustomFieldValue: () => CustomFieldValue,
|
|
80
81
|
CustomFlag: () => CustomFlag,
|
|
@@ -210,7 +211,6 @@ __export(events_exports, {
|
|
|
210
211
|
VerificationPageConfig: () => VerificationPageConfig,
|
|
211
212
|
VerificationStatusValue: () => VerificationStatusValue,
|
|
212
213
|
Within: () => Within,
|
|
213
|
-
WorkqueueActionsWithDefault: () => WorkqueueActionsWithDefault,
|
|
214
214
|
WorkqueueColumn: () => WorkqueueColumn,
|
|
215
215
|
WorkqueueColumnKeys: () => WorkqueueColumnKeys,
|
|
216
216
|
WorkqueueColumnKeysArray: () => WorkqueueColumnKeysArray,
|
|
@@ -5345,11 +5345,7 @@ var mandatoryColumns = defineWorkqueuesColumns([
|
|
|
5345
5345
|
value: event.field("updatedAt")
|
|
5346
5346
|
}
|
|
5347
5347
|
]);
|
|
5348
|
-
var
|
|
5349
|
-
...workqueueActions.options,
|
|
5350
|
-
"DEFAULT",
|
|
5351
|
-
ActionType.READ
|
|
5352
|
-
]);
|
|
5348
|
+
var CtaActionType = z33.enum([...workqueueActions.options, ActionType.READ]);
|
|
5353
5349
|
var WorkqueueConfig = z33.object({
|
|
5354
5350
|
slug: z33.string().describe("Determines the url of the workqueue."),
|
|
5355
5351
|
name: TranslationConfig.describe(
|
|
@@ -5358,7 +5354,7 @@ var WorkqueueConfig = z33.object({
|
|
|
5358
5354
|
query: CountryConfigQueryType,
|
|
5359
5355
|
/** This action object used to contain a conditionals option, but it was not used anywhere.
|
|
5360
5356
|
* It's also debatable whether it should be an array, or just a single action. */
|
|
5361
|
-
actions: z33.array(z33.object({ type:
|
|
5357
|
+
actions: z33.array(z33.object({ type: CtaActionType })).describe("Workqueue call-to-action button configuration."),
|
|
5362
5358
|
columns: z33.array(WorkqueueColumn).default(mandatoryColumns),
|
|
5363
5359
|
icon: AvailableIcons,
|
|
5364
5360
|
emptyMessage: TranslationConfig.optional()
|
|
@@ -5373,7 +5369,7 @@ var WorkqueueConfigInput = z33.object({
|
|
|
5373
5369
|
"Title of the workflow (both in navigation and on the page)"
|
|
5374
5370
|
),
|
|
5375
5371
|
query: CountryConfigQueryInputType,
|
|
5376
|
-
actions: z33.array(z33.object({ type:
|
|
5372
|
+
actions: z33.array(z33.object({ type: CtaActionType })).describe("Workqueue call-to-action button configuration."),
|
|
5377
5373
|
columns: z33.array(WorkqueueColumn).default(mandatoryColumns),
|
|
5378
5374
|
icon: AvailableIcons,
|
|
5379
5375
|
emptyMessage: TranslationConfig.optional()
|
|
@@ -9163,7 +9159,7 @@ var generateWorkqueues = (slug = "all-events") => defineWorkqueues([
|
|
|
9163
9159
|
type: "and",
|
|
9164
9160
|
clauses: [{ eventType: tennisClubMembershipEvent.id }]
|
|
9165
9161
|
},
|
|
9166
|
-
actions: [{ type:
|
|
9162
|
+
actions: [{ type: ActionType.READ }],
|
|
9167
9163
|
icon: "Draft"
|
|
9168
9164
|
}
|
|
9169
9165
|
]);
|
|
@@ -3819,11 +3819,7 @@ var mandatoryColumns = defineWorkqueuesColumns([
|
|
|
3819
3819
|
value: event.field("updatedAt")
|
|
3820
3820
|
}
|
|
3821
3821
|
]);
|
|
3822
|
-
var
|
|
3823
|
-
...workqueueActions.options,
|
|
3824
|
-
"DEFAULT",
|
|
3825
|
-
ActionType.READ
|
|
3826
|
-
]);
|
|
3822
|
+
var CtaActionType = z33.enum([...workqueueActions.options, ActionType.READ]);
|
|
3827
3823
|
var WorkqueueConfig = z33.object({
|
|
3828
3824
|
slug: z33.string().describe("Determines the url of the workqueue."),
|
|
3829
3825
|
name: TranslationConfig.describe(
|
|
@@ -3832,7 +3828,7 @@ var WorkqueueConfig = z33.object({
|
|
|
3832
3828
|
query: CountryConfigQueryType,
|
|
3833
3829
|
/** This action object used to contain a conditionals option, but it was not used anywhere.
|
|
3834
3830
|
* It's also debatable whether it should be an array, or just a single action. */
|
|
3835
|
-
actions: z33.array(z33.object({ type:
|
|
3831
|
+
actions: z33.array(z33.object({ type: CtaActionType })).describe("Workqueue call-to-action button configuration."),
|
|
3836
3832
|
columns: z33.array(WorkqueueColumn).default(mandatoryColumns),
|
|
3837
3833
|
icon: AvailableIcons,
|
|
3838
3834
|
emptyMessage: TranslationConfig.optional()
|
|
@@ -3847,7 +3843,7 @@ var WorkqueueConfigInput = z33.object({
|
|
|
3847
3843
|
"Title of the workflow (both in navigation and on the page)"
|
|
3848
3844
|
),
|
|
3849
3845
|
query: CountryConfigQueryInputType,
|
|
3850
|
-
actions: z33.array(z33.object({ type:
|
|
3846
|
+
actions: z33.array(z33.object({ type: CtaActionType })).describe("Workqueue call-to-action button configuration."),
|
|
3851
3847
|
columns: z33.array(WorkqueueColumn).default(mandatoryColumns),
|
|
3852
3848
|
icon: AvailableIcons,
|
|
3853
3849
|
emptyMessage: TranslationConfig.optional()
|