@opencrvs/toolkit 1.9.5-rc.4c04dcd → 1.9.5-rc.575d90f
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/commons/api/router.d.ts +24 -26
- package/dist/commons/events/CountryConfigQueryInput.d.ts +350 -350
- package/dist/commons/events/FieldConfig.d.ts +30 -108
- package/dist/commons/events/FieldType.d.ts +1 -1
- package/dist/commons/events/TemplateConfig.d.ts +3 -15
- package/dist/commons/events/WorkqueueConfig.d.ts +525 -525
- package/dist/conditionals/index.js +2 -7
- package/dist/events/index.js +7 -13
- package/dist/notification/index.js +6 -12
- package/package.json +1 -1
|
@@ -3620,24 +3620,23 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3620
3620
|
id: string;
|
|
3621
3621
|
name: {
|
|
3622
3622
|
use: string;
|
|
3623
|
-
family: string;
|
|
3624
3623
|
given: string[];
|
|
3624
|
+
family: string;
|
|
3625
3625
|
}[];
|
|
3626
3626
|
role: string;
|
|
3627
3627
|
primaryOfficeId: string & import("zod").BRAND<"UUID">;
|
|
3628
3628
|
signature?: string | undefined;
|
|
3629
|
-
device?: string | undefined;
|
|
3630
|
-
fullHonorificName?: string | undefined;
|
|
3631
3629
|
avatar?: string | undefined;
|
|
3630
|
+
fullHonorificName?: string | undefined;
|
|
3632
3631
|
} | {
|
|
3633
3632
|
type: "system";
|
|
3634
3633
|
id: string;
|
|
3635
3634
|
name: string;
|
|
3636
|
-
role: "
|
|
3635
|
+
role: "HEALTH" | "NATIONAL_ID" | "RECORD_SEARCH" | "REINDEX" | "WEBHOOK" | "IMPORT_EXPORT";
|
|
3637
3636
|
signature?: undefined;
|
|
3638
|
-
fullHonorificName?: string | undefined;
|
|
3639
|
-
primaryOfficeId?: undefined;
|
|
3640
3637
|
avatar?: undefined;
|
|
3638
|
+
primaryOfficeId?: undefined;
|
|
3639
|
+
fullHonorificName?: string | undefined;
|
|
3641
3640
|
};
|
|
3642
3641
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
3643
3642
|
}>;
|
|
@@ -3648,24 +3647,23 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3648
3647
|
id: string;
|
|
3649
3648
|
name: {
|
|
3650
3649
|
use: string;
|
|
3651
|
-
family: string;
|
|
3652
3650
|
given: string[];
|
|
3651
|
+
family: string;
|
|
3653
3652
|
}[];
|
|
3654
3653
|
role: string;
|
|
3655
3654
|
primaryOfficeId: string & import("zod").BRAND<"UUID">;
|
|
3656
3655
|
signature?: string | undefined;
|
|
3657
|
-
device?: string | undefined;
|
|
3658
|
-
fullHonorificName?: string | undefined;
|
|
3659
3656
|
avatar?: string | undefined;
|
|
3657
|
+
fullHonorificName?: string | undefined;
|
|
3660
3658
|
} | {
|
|
3661
3659
|
type: "system";
|
|
3662
3660
|
id: string;
|
|
3663
3661
|
name: string;
|
|
3664
|
-
role: "
|
|
3662
|
+
role: "HEALTH" | "NATIONAL_ID" | "RECORD_SEARCH" | "REINDEX" | "WEBHOOK" | "IMPORT_EXPORT";
|
|
3665
3663
|
signature?: undefined;
|
|
3666
|
-
fullHonorificName?: string | undefined;
|
|
3667
|
-
primaryOfficeId?: undefined;
|
|
3668
3664
|
avatar?: undefined;
|
|
3665
|
+
primaryOfficeId?: undefined;
|
|
3666
|
+
fullHonorificName?: string | undefined;
|
|
3669
3667
|
})[];
|
|
3670
3668
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
3671
3669
|
}>;
|
|
@@ -3839,27 +3837,27 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3839
3837
|
createdBy?: {
|
|
3840
3838
|
type: "exact";
|
|
3841
3839
|
term: string | {
|
|
3842
|
-
$userField: "
|
|
3840
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3843
3841
|
$location?: string | undefined;
|
|
3844
3842
|
};
|
|
3845
3843
|
} | undefined;
|
|
3846
3844
|
createdAtLocation?: {
|
|
3847
3845
|
type: "exact";
|
|
3848
3846
|
term: string | {
|
|
3849
|
-
$userField: "
|
|
3847
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3850
3848
|
$location?: string | undefined;
|
|
3851
3849
|
};
|
|
3852
3850
|
} | {
|
|
3853
3851
|
type: "within";
|
|
3854
3852
|
location: string | {
|
|
3855
|
-
$userField: "
|
|
3853
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3856
3854
|
$location?: string | undefined;
|
|
3857
3855
|
};
|
|
3858
3856
|
} | undefined;
|
|
3859
3857
|
assignedTo?: {
|
|
3860
3858
|
type: "exact";
|
|
3861
3859
|
term: string | {
|
|
3862
|
-
$userField: "
|
|
3860
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3863
3861
|
$location?: string | undefined;
|
|
3864
3862
|
};
|
|
3865
3863
|
} | undefined;
|
|
@@ -3881,20 +3879,20 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3881
3879
|
updatedAtLocation?: {
|
|
3882
3880
|
type: "exact";
|
|
3883
3881
|
term: string | {
|
|
3884
|
-
$userField: "
|
|
3882
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3885
3883
|
$location?: string | undefined;
|
|
3886
3884
|
};
|
|
3887
3885
|
} | {
|
|
3888
3886
|
type: "within";
|
|
3889
3887
|
location: string | {
|
|
3890
|
-
$userField: "
|
|
3888
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3891
3889
|
$location?: string | undefined;
|
|
3892
3890
|
};
|
|
3893
3891
|
} | undefined;
|
|
3894
3892
|
updatedBy?: {
|
|
3895
3893
|
type: "exact";
|
|
3896
3894
|
term: string | {
|
|
3897
|
-
$userField: "
|
|
3895
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3898
3896
|
$location?: string | undefined;
|
|
3899
3897
|
};
|
|
3900
3898
|
} | undefined;
|
|
@@ -3955,27 +3953,27 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3955
3953
|
createdBy?: {
|
|
3956
3954
|
type: "exact";
|
|
3957
3955
|
term: string | {
|
|
3958
|
-
$userField: "
|
|
3956
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3959
3957
|
$location?: string | undefined;
|
|
3960
3958
|
};
|
|
3961
3959
|
} | undefined;
|
|
3962
3960
|
createdAtLocation?: {
|
|
3963
3961
|
type: "exact";
|
|
3964
3962
|
term: string | {
|
|
3965
|
-
$userField: "
|
|
3963
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3966
3964
|
$location?: string | undefined;
|
|
3967
3965
|
};
|
|
3968
3966
|
} | {
|
|
3969
3967
|
type: "within";
|
|
3970
3968
|
location: string | {
|
|
3971
|
-
$userField: "
|
|
3969
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3972
3970
|
$location?: string | undefined;
|
|
3973
3971
|
};
|
|
3974
3972
|
} | undefined;
|
|
3975
3973
|
assignedTo?: {
|
|
3976
3974
|
type: "exact";
|
|
3977
3975
|
term: string | {
|
|
3978
|
-
$userField: "
|
|
3976
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
3979
3977
|
$location?: string | undefined;
|
|
3980
3978
|
};
|
|
3981
3979
|
} | undefined;
|
|
@@ -3997,20 +3995,20 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3997
3995
|
updatedAtLocation?: {
|
|
3998
3996
|
type: "exact";
|
|
3999
3997
|
term: string | {
|
|
4000
|
-
$userField: "
|
|
3998
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
4001
3999
|
$location?: string | undefined;
|
|
4002
4000
|
};
|
|
4003
4001
|
} | {
|
|
4004
4002
|
type: "within";
|
|
4005
4003
|
location: string | {
|
|
4006
|
-
$userField: "
|
|
4004
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
4007
4005
|
$location?: string | undefined;
|
|
4008
4006
|
};
|
|
4009
4007
|
} | undefined;
|
|
4010
4008
|
updatedBy?: {
|
|
4011
4009
|
type: "exact";
|
|
4012
4010
|
term: string | {
|
|
4013
|
-
$userField: "
|
|
4011
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
|
4014
4012
|
$location?: string | undefined;
|
|
4015
4013
|
};
|
|
4016
4014
|
} | undefined;
|