@learncard/types 5.8.3 → 5.8.5
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/lcn.d.ts +230 -21
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +13 -4
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +2 -2
- package/dist/types.esm.js +13 -4
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
@@ -88,6 +88,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
88
88
|
idBackgroundColor?: string | undefined;
|
89
89
|
repeatIdBackgroundImage?: boolean | undefined;
|
90
90
|
}>>;
|
91
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
91
92
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
92
93
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
93
94
|
}, "strip", z.ZodTypeAny, {
|
@@ -118,6 +119,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
118
119
|
idBackgroundColor?: string | undefined;
|
119
120
|
repeatIdBackgroundImage?: boolean | undefined;
|
120
121
|
} | undefined;
|
122
|
+
highlightedCredentials?: string[] | undefined;
|
121
123
|
dob?: string | undefined;
|
122
124
|
}, {
|
123
125
|
profileId: string;
|
@@ -147,6 +149,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
147
149
|
idBackgroundColor?: string | undefined;
|
148
150
|
repeatIdBackgroundImage?: boolean | undefined;
|
149
151
|
} | undefined;
|
152
|
+
highlightedCredentials?: string[] | undefined;
|
150
153
|
dob?: string | undefined;
|
151
154
|
}>;
|
152
155
|
export type LCNProfile = z.infer<typeof LCNProfileValidator>;
|
@@ -374,6 +377,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
374
377
|
idBackgroundColor?: string | undefined;
|
375
378
|
repeatIdBackgroundImage?: boolean | undefined;
|
376
379
|
}>>;
|
380
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
377
381
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
378
382
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
379
383
|
}, "strip", z.ZodTypeAny, {
|
@@ -404,6 +408,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
404
408
|
idBackgroundColor?: string | undefined;
|
405
409
|
repeatIdBackgroundImage?: boolean | undefined;
|
406
410
|
} | undefined;
|
411
|
+
highlightedCredentials?: string[] | undefined;
|
407
412
|
dob?: string | undefined;
|
408
413
|
}, {
|
409
414
|
profileId: string;
|
@@ -433,6 +438,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
433
438
|
idBackgroundColor?: string | undefined;
|
434
439
|
repeatIdBackgroundImage?: boolean | undefined;
|
435
440
|
} | undefined;
|
441
|
+
highlightedCredentials?: string[] | undefined;
|
436
442
|
dob?: string | undefined;
|
437
443
|
}>, "many">;
|
438
444
|
}>, "strip", z.ZodTypeAny, {
|
@@ -465,6 +471,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
465
471
|
idBackgroundColor?: string | undefined;
|
466
472
|
repeatIdBackgroundImage?: boolean | undefined;
|
467
473
|
} | undefined;
|
474
|
+
highlightedCredentials?: string[] | undefined;
|
468
475
|
dob?: string | undefined;
|
469
476
|
}[];
|
470
477
|
cursor?: string | undefined;
|
@@ -498,6 +505,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
498
505
|
idBackgroundColor?: string | undefined;
|
499
506
|
repeatIdBackgroundImage?: boolean | undefined;
|
500
507
|
} | undefined;
|
508
|
+
highlightedCredentials?: string[] | undefined;
|
501
509
|
dob?: string | undefined;
|
502
510
|
}[];
|
503
511
|
cursor?: string | undefined;
|
@@ -776,6 +784,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
776
784
|
idBackgroundColor?: string | undefined;
|
777
785
|
repeatIdBackgroundImage?: boolean | undefined;
|
778
786
|
}>>;
|
787
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
779
788
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
780
789
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
781
790
|
}, "strip", z.ZodTypeAny, {
|
@@ -806,6 +815,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
806
815
|
idBackgroundColor?: string | undefined;
|
807
816
|
repeatIdBackgroundImage?: boolean | undefined;
|
808
817
|
} | undefined;
|
818
|
+
highlightedCredentials?: string[] | undefined;
|
809
819
|
dob?: string | undefined;
|
810
820
|
}, {
|
811
821
|
profileId: string;
|
@@ -835,6 +845,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
835
845
|
idBackgroundColor?: string | undefined;
|
836
846
|
repeatIdBackgroundImage?: boolean | undefined;
|
837
847
|
} | undefined;
|
848
|
+
highlightedCredentials?: string[] | undefined;
|
838
849
|
dob?: string | undefined;
|
839
850
|
}>;
|
840
851
|
manager: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
@@ -898,6 +909,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
898
909
|
idBackgroundColor?: string | undefined;
|
899
910
|
repeatIdBackgroundImage?: boolean | undefined;
|
900
911
|
} | undefined;
|
912
|
+
highlightedCredentials?: string[] | undefined;
|
901
913
|
dob?: string | undefined;
|
902
914
|
};
|
903
915
|
manager?: {
|
@@ -940,6 +952,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
940
952
|
idBackgroundColor?: string | undefined;
|
941
953
|
repeatIdBackgroundImage?: boolean | undefined;
|
942
954
|
} | undefined;
|
955
|
+
highlightedCredentials?: string[] | undefined;
|
943
956
|
dob?: string | undefined;
|
944
957
|
};
|
945
958
|
manager?: {
|
@@ -985,6 +998,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
985
998
|
idBackgroundColor?: string | undefined;
|
986
999
|
repeatIdBackgroundImage?: boolean | undefined;
|
987
1000
|
} | undefined;
|
1001
|
+
highlightedCredentials?: string[] | undefined;
|
988
1002
|
dob?: string | undefined;
|
989
1003
|
};
|
990
1004
|
manager?: {
|
@@ -1031,6 +1045,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
1031
1045
|
idBackgroundColor?: string | undefined;
|
1032
1046
|
repeatIdBackgroundImage?: boolean | undefined;
|
1033
1047
|
} | undefined;
|
1048
|
+
highlightedCredentials?: string[] | undefined;
|
1034
1049
|
dob?: string | undefined;
|
1035
1050
|
};
|
1036
1051
|
manager?: {
|
@@ -1270,7 +1285,7 @@ export declare const BoostPermissionsQueryValidator: z.ZodObject<{
|
|
1270
1285
|
canViewAnalytics?: boolean | undefined;
|
1271
1286
|
}>;
|
1272
1287
|
export type BoostPermissionsQuery = z.infer<typeof BoostPermissionsQueryValidator>;
|
1273
|
-
export declare const ClaimHookTypeValidator: z.ZodEnum<["GRANT_PERMISSIONS", "ADD_ADMIN"]>;
|
1288
|
+
export declare const ClaimHookTypeValidator: z.ZodEnum<["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]>;
|
1274
1289
|
export type ClaimHookType = z.infer<typeof ClaimHookTypeValidator>;
|
1275
1290
|
export declare const ClaimHookValidator: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
1276
1291
|
type: z.ZodLiteral<"GRANT_PERMISSIONS">;
|
@@ -1416,6 +1431,30 @@ export declare const ClaimHookValidator: z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
1416
1431
|
claimUri: string;
|
1417
1432
|
targetUri: string;
|
1418
1433
|
};
|
1434
|
+
}>, z.ZodObject<{
|
1435
|
+
type: z.ZodLiteral<"AUTO_CONNECT">;
|
1436
|
+
data: z.ZodObject<{
|
1437
|
+
claimUri: z.ZodString;
|
1438
|
+
targetUri: z.ZodString;
|
1439
|
+
}, "strip", z.ZodTypeAny, {
|
1440
|
+
claimUri: string;
|
1441
|
+
targetUri: string;
|
1442
|
+
}, {
|
1443
|
+
claimUri: string;
|
1444
|
+
targetUri: string;
|
1445
|
+
}>;
|
1446
|
+
}, "strip", z.ZodTypeAny, {
|
1447
|
+
type: "AUTO_CONNECT";
|
1448
|
+
data: {
|
1449
|
+
claimUri: string;
|
1450
|
+
targetUri: string;
|
1451
|
+
};
|
1452
|
+
}, {
|
1453
|
+
type: "AUTO_CONNECT";
|
1454
|
+
data: {
|
1455
|
+
claimUri: string;
|
1456
|
+
targetUri: string;
|
1457
|
+
};
|
1419
1458
|
}>]>;
|
1420
1459
|
export type ClaimHook = z.infer<typeof ClaimHookValidator>;
|
1421
1460
|
export declare const ClaimHookQueryValidator: z.ZodObject<{
|
@@ -1988,6 +2027,30 @@ export declare const FullClaimHookValidator: z.ZodIntersection<z.ZodObject<{
|
|
1988
2027
|
claimUri: string;
|
1989
2028
|
targetUri: string;
|
1990
2029
|
};
|
2030
|
+
}>, z.ZodObject<{
|
2031
|
+
type: z.ZodLiteral<"AUTO_CONNECT">;
|
2032
|
+
data: z.ZodObject<{
|
2033
|
+
claimUri: z.ZodString;
|
2034
|
+
targetUri: z.ZodString;
|
2035
|
+
}, "strip", z.ZodTypeAny, {
|
2036
|
+
claimUri: string;
|
2037
|
+
targetUri: string;
|
2038
|
+
}, {
|
2039
|
+
claimUri: string;
|
2040
|
+
targetUri: string;
|
2041
|
+
}>;
|
2042
|
+
}, "strip", z.ZodTypeAny, {
|
2043
|
+
type: "AUTO_CONNECT";
|
2044
|
+
data: {
|
2045
|
+
claimUri: string;
|
2046
|
+
targetUri: string;
|
2047
|
+
};
|
2048
|
+
}, {
|
2049
|
+
type: "AUTO_CONNECT";
|
2050
|
+
data: {
|
2051
|
+
claimUri: string;
|
2052
|
+
targetUri: string;
|
2053
|
+
};
|
1991
2054
|
}>]>>;
|
1992
2055
|
export type FullClaimHook = z.infer<typeof FullClaimHookValidator>;
|
1993
2056
|
export declare const PaginatedClaimHooksValidator: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2150,6 +2213,30 @@ export declare const PaginatedClaimHooksValidator: z.ZodObject<z.objectUtil.exte
|
|
2150
2213
|
claimUri: string;
|
2151
2214
|
targetUri: string;
|
2152
2215
|
};
|
2216
|
+
}>, z.ZodObject<{
|
2217
|
+
type: z.ZodLiteral<"AUTO_CONNECT">;
|
2218
|
+
data: z.ZodObject<{
|
2219
|
+
claimUri: z.ZodString;
|
2220
|
+
targetUri: z.ZodString;
|
2221
|
+
}, "strip", z.ZodTypeAny, {
|
2222
|
+
claimUri: string;
|
2223
|
+
targetUri: string;
|
2224
|
+
}, {
|
2225
|
+
claimUri: string;
|
2226
|
+
targetUri: string;
|
2227
|
+
}>;
|
2228
|
+
}, "strip", z.ZodTypeAny, {
|
2229
|
+
type: "AUTO_CONNECT";
|
2230
|
+
data: {
|
2231
|
+
claimUri: string;
|
2232
|
+
targetUri: string;
|
2233
|
+
};
|
2234
|
+
}, {
|
2235
|
+
type: "AUTO_CONNECT";
|
2236
|
+
data: {
|
2237
|
+
claimUri: string;
|
2238
|
+
targetUri: string;
|
2239
|
+
};
|
2153
2240
|
}>]>>, "many">;
|
2154
2241
|
}>, "strip", z.ZodTypeAny, {
|
2155
2242
|
hasMore: boolean;
|
@@ -2183,6 +2270,12 @@ export declare const PaginatedClaimHooksValidator: z.ZodObject<z.objectUtil.exte
|
|
2183
2270
|
claimUri: string;
|
2184
2271
|
targetUri: string;
|
2185
2272
|
};
|
2273
|
+
} | {
|
2274
|
+
type: "AUTO_CONNECT";
|
2275
|
+
data: {
|
2276
|
+
claimUri: string;
|
2277
|
+
targetUri: string;
|
2278
|
+
};
|
2186
2279
|
}))[];
|
2187
2280
|
cursor?: string | undefined;
|
2188
2281
|
}, {
|
@@ -2217,6 +2310,12 @@ export declare const PaginatedClaimHooksValidator: z.ZodObject<z.objectUtil.exte
|
|
2217
2310
|
claimUri: string;
|
2218
2311
|
targetUri: string;
|
2219
2312
|
};
|
2313
|
+
} | {
|
2314
|
+
type: "AUTO_CONNECT";
|
2315
|
+
data: {
|
2316
|
+
claimUri: string;
|
2317
|
+
targetUri: string;
|
2318
|
+
};
|
2220
2319
|
}))[];
|
2221
2320
|
cursor?: string | undefined;
|
2222
2321
|
}>;
|
@@ -2664,6 +2763,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2664
2763
|
idBackgroundColor?: string | undefined;
|
2665
2764
|
repeatIdBackgroundImage?: boolean | undefined;
|
2666
2765
|
}>>;
|
2766
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2667
2767
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2668
2768
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2669
2769
|
}, "strip", z.ZodTypeAny, {
|
@@ -2694,6 +2794,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2694
2794
|
idBackgroundColor?: string | undefined;
|
2695
2795
|
repeatIdBackgroundImage?: boolean | undefined;
|
2696
2796
|
} | undefined;
|
2797
|
+
highlightedCredentials?: string[] | undefined;
|
2697
2798
|
dob?: string | undefined;
|
2698
2799
|
}, {
|
2699
2800
|
profileId: string;
|
@@ -2723,6 +2824,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2723
2824
|
idBackgroundColor?: string | undefined;
|
2724
2825
|
repeatIdBackgroundImage?: boolean | undefined;
|
2725
2826
|
} | undefined;
|
2827
|
+
highlightedCredentials?: string[] | undefined;
|
2726
2828
|
dob?: string | undefined;
|
2727
2829
|
}>;
|
2728
2830
|
from: z.ZodString;
|
@@ -2757,6 +2859,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2757
2859
|
idBackgroundColor?: string | undefined;
|
2758
2860
|
repeatIdBackgroundImage?: boolean | undefined;
|
2759
2861
|
} | undefined;
|
2862
|
+
highlightedCredentials?: string[] | undefined;
|
2760
2863
|
dob?: string | undefined;
|
2761
2864
|
};
|
2762
2865
|
from: string;
|
@@ -2791,6 +2894,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2791
2894
|
idBackgroundColor?: string | undefined;
|
2792
2895
|
repeatIdBackgroundImage?: boolean | undefined;
|
2793
2896
|
} | undefined;
|
2897
|
+
highlightedCredentials?: string[] | undefined;
|
2794
2898
|
dob?: string | undefined;
|
2795
2899
|
};
|
2796
2900
|
from: string;
|
@@ -2854,6 +2958,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2854
2958
|
idBackgroundColor?: string | undefined;
|
2855
2959
|
repeatIdBackgroundImage?: boolean | undefined;
|
2856
2960
|
}>>;
|
2961
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2857
2962
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2858
2963
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2859
2964
|
}, "strip", z.ZodTypeAny, {
|
@@ -2884,6 +2989,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2884
2989
|
idBackgroundColor?: string | undefined;
|
2885
2990
|
repeatIdBackgroundImage?: boolean | undefined;
|
2886
2991
|
} | undefined;
|
2992
|
+
highlightedCredentials?: string[] | undefined;
|
2887
2993
|
dob?: string | undefined;
|
2888
2994
|
}, {
|
2889
2995
|
profileId: string;
|
@@ -2913,6 +3019,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2913
3019
|
idBackgroundColor?: string | undefined;
|
2914
3020
|
repeatIdBackgroundImage?: boolean | undefined;
|
2915
3021
|
} | undefined;
|
3022
|
+
highlightedCredentials?: string[] | undefined;
|
2916
3023
|
dob?: string | undefined;
|
2917
3024
|
}>;
|
2918
3025
|
from: z.ZodString;
|
@@ -2947,6 +3054,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2947
3054
|
idBackgroundColor?: string | undefined;
|
2948
3055
|
repeatIdBackgroundImage?: boolean | undefined;
|
2949
3056
|
} | undefined;
|
3057
|
+
highlightedCredentials?: string[] | undefined;
|
2950
3058
|
dob?: string | undefined;
|
2951
3059
|
};
|
2952
3060
|
from: string;
|
@@ -2981,6 +3089,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2981
3089
|
idBackgroundColor?: string | undefined;
|
2982
3090
|
repeatIdBackgroundImage?: boolean | undefined;
|
2983
3091
|
} | undefined;
|
3092
|
+
highlightedCredentials?: string[] | undefined;
|
2984
3093
|
dob?: string | undefined;
|
2985
3094
|
};
|
2986
3095
|
from: string;
|
@@ -3018,6 +3127,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3018
3127
|
idBackgroundColor?: string | undefined;
|
3019
3128
|
repeatIdBackgroundImage?: boolean | undefined;
|
3020
3129
|
} | undefined;
|
3130
|
+
highlightedCredentials?: string[] | undefined;
|
3021
3131
|
dob?: string | undefined;
|
3022
3132
|
};
|
3023
3133
|
from: string;
|
@@ -3056,6 +3166,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3056
3166
|
idBackgroundColor?: string | undefined;
|
3057
3167
|
repeatIdBackgroundImage?: boolean | undefined;
|
3058
3168
|
} | undefined;
|
3169
|
+
highlightedCredentials?: string[] | undefined;
|
3059
3170
|
dob?: string | undefined;
|
3060
3171
|
};
|
3061
3172
|
from: string;
|
@@ -3117,6 +3228,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3117
3228
|
idBackgroundColor?: string | undefined;
|
3118
3229
|
repeatIdBackgroundImage?: boolean | undefined;
|
3119
3230
|
}>>;
|
3231
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3120
3232
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3121
3233
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3122
3234
|
}, "strip", z.ZodTypeAny, {
|
@@ -3147,6 +3259,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3147
3259
|
idBackgroundColor?: string | undefined;
|
3148
3260
|
repeatIdBackgroundImage?: boolean | undefined;
|
3149
3261
|
} | undefined;
|
3262
|
+
highlightedCredentials?: string[] | undefined;
|
3150
3263
|
dob?: string | undefined;
|
3151
3264
|
}, {
|
3152
3265
|
profileId: string;
|
@@ -3176,6 +3289,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3176
3289
|
idBackgroundColor?: string | undefined;
|
3177
3290
|
repeatIdBackgroundImage?: boolean | undefined;
|
3178
3291
|
} | undefined;
|
3292
|
+
highlightedCredentials?: string[] | undefined;
|
3179
3293
|
dob?: string | undefined;
|
3180
3294
|
}>;
|
3181
3295
|
from: z.ZodString;
|
@@ -3211,6 +3325,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3211
3325
|
idBackgroundColor?: string | undefined;
|
3212
3326
|
repeatIdBackgroundImage?: boolean | undefined;
|
3213
3327
|
} | undefined;
|
3328
|
+
highlightedCredentials?: string[] | undefined;
|
3214
3329
|
dob?: string | undefined;
|
3215
3330
|
};
|
3216
3331
|
from: string;
|
@@ -3246,6 +3361,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3246
3361
|
idBackgroundColor?: string | undefined;
|
3247
3362
|
repeatIdBackgroundImage?: boolean | undefined;
|
3248
3363
|
} | undefined;
|
3364
|
+
highlightedCredentials?: string[] | undefined;
|
3249
3365
|
dob?: string | undefined;
|
3250
3366
|
};
|
3251
3367
|
from: string;
|
@@ -3310,6 +3426,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3310
3426
|
idBackgroundColor?: string | undefined;
|
3311
3427
|
repeatIdBackgroundImage?: boolean | undefined;
|
3312
3428
|
}>>;
|
3429
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3313
3430
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3314
3431
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3315
3432
|
}, "strip", z.ZodTypeAny, {
|
@@ -3340,6 +3457,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3340
3457
|
idBackgroundColor?: string | undefined;
|
3341
3458
|
repeatIdBackgroundImage?: boolean | undefined;
|
3342
3459
|
} | undefined;
|
3460
|
+
highlightedCredentials?: string[] | undefined;
|
3343
3461
|
dob?: string | undefined;
|
3344
3462
|
}, {
|
3345
3463
|
profileId: string;
|
@@ -3369,6 +3487,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3369
3487
|
idBackgroundColor?: string | undefined;
|
3370
3488
|
repeatIdBackgroundImage?: boolean | undefined;
|
3371
3489
|
} | undefined;
|
3490
|
+
highlightedCredentials?: string[] | undefined;
|
3372
3491
|
dob?: string | undefined;
|
3373
3492
|
}>;
|
3374
3493
|
from: z.ZodString;
|
@@ -3404,6 +3523,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3404
3523
|
idBackgroundColor?: string | undefined;
|
3405
3524
|
repeatIdBackgroundImage?: boolean | undefined;
|
3406
3525
|
} | undefined;
|
3526
|
+
highlightedCredentials?: string[] | undefined;
|
3407
3527
|
dob?: string | undefined;
|
3408
3528
|
};
|
3409
3529
|
from: string;
|
@@ -3439,6 +3559,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3439
3559
|
idBackgroundColor?: string | undefined;
|
3440
3560
|
repeatIdBackgroundImage?: boolean | undefined;
|
3441
3561
|
} | undefined;
|
3562
|
+
highlightedCredentials?: string[] | undefined;
|
3442
3563
|
dob?: string | undefined;
|
3443
3564
|
};
|
3444
3565
|
from: string;
|
@@ -3477,6 +3598,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3477
3598
|
idBackgroundColor?: string | undefined;
|
3478
3599
|
repeatIdBackgroundImage?: boolean | undefined;
|
3479
3600
|
} | undefined;
|
3601
|
+
highlightedCredentials?: string[] | undefined;
|
3480
3602
|
dob?: string | undefined;
|
3481
3603
|
};
|
3482
3604
|
from: string;
|
@@ -3516,6 +3638,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3516
3638
|
idBackgroundColor?: string | undefined;
|
3517
3639
|
repeatIdBackgroundImage?: boolean | undefined;
|
3518
3640
|
} | undefined;
|
3641
|
+
highlightedCredentials?: string[] | undefined;
|
3519
3642
|
dob?: string | undefined;
|
3520
3643
|
};
|
3521
3644
|
from: string;
|
@@ -4020,6 +4143,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4020
4143
|
idBackgroundColor?: string | undefined;
|
4021
4144
|
repeatIdBackgroundImage?: boolean | undefined;
|
4022
4145
|
}>>;
|
4146
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4023
4147
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4024
4148
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4025
4149
|
}, "strip", z.ZodTypeAny, {
|
@@ -4050,6 +4174,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4050
4174
|
idBackgroundColor?: string | undefined;
|
4051
4175
|
repeatIdBackgroundImage?: boolean | undefined;
|
4052
4176
|
} | undefined;
|
4177
|
+
highlightedCredentials?: string[] | undefined;
|
4053
4178
|
dob?: string | undefined;
|
4054
4179
|
}, {
|
4055
4180
|
profileId: string;
|
@@ -4079,6 +4204,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4079
4204
|
idBackgroundColor?: string | undefined;
|
4080
4205
|
repeatIdBackgroundImage?: boolean | undefined;
|
4081
4206
|
} | undefined;
|
4207
|
+
highlightedCredentials?: string[] | undefined;
|
4082
4208
|
dob?: string | undefined;
|
4083
4209
|
}>;
|
4084
4210
|
name: z.ZodString;
|
@@ -4145,6 +4271,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4145
4271
|
idBackgroundColor?: string | undefined;
|
4146
4272
|
repeatIdBackgroundImage?: boolean | undefined;
|
4147
4273
|
}>>;
|
4274
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4148
4275
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4149
4276
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4150
4277
|
}, "strip", z.ZodTypeAny, {
|
@@ -4175,6 +4302,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4175
4302
|
idBackgroundColor?: string | undefined;
|
4176
4303
|
repeatIdBackgroundImage?: boolean | undefined;
|
4177
4304
|
} | undefined;
|
4305
|
+
highlightedCredentials?: string[] | undefined;
|
4178
4306
|
dob?: string | undefined;
|
4179
4307
|
}, {
|
4180
4308
|
profileId: string;
|
@@ -4204,6 +4332,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4204
4332
|
idBackgroundColor?: string | undefined;
|
4205
4333
|
repeatIdBackgroundImage?: boolean | undefined;
|
4206
4334
|
} | undefined;
|
4335
|
+
highlightedCredentials?: string[] | undefined;
|
4207
4336
|
dob?: string | undefined;
|
4208
4337
|
}>, "many">>;
|
4209
4338
|
}, "strip", z.ZodTypeAny, {
|
@@ -4266,6 +4395,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4266
4395
|
idBackgroundColor?: string | undefined;
|
4267
4396
|
repeatIdBackgroundImage?: boolean | undefined;
|
4268
4397
|
} | undefined;
|
4398
|
+
highlightedCredentials?: string[] | undefined;
|
4269
4399
|
dob?: string | undefined;
|
4270
4400
|
};
|
4271
4401
|
description?: string | undefined;
|
@@ -4305,6 +4435,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4305
4435
|
idBackgroundColor?: string | undefined;
|
4306
4436
|
repeatIdBackgroundImage?: boolean | undefined;
|
4307
4437
|
} | undefined;
|
4438
|
+
highlightedCredentials?: string[] | undefined;
|
4308
4439
|
dob?: string | undefined;
|
4309
4440
|
}[] | undefined;
|
4310
4441
|
}, {
|
@@ -4367,6 +4498,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4367
4498
|
idBackgroundColor?: string | undefined;
|
4368
4499
|
repeatIdBackgroundImage?: boolean | undefined;
|
4369
4500
|
} | undefined;
|
4501
|
+
highlightedCredentials?: string[] | undefined;
|
4370
4502
|
dob?: string | undefined;
|
4371
4503
|
};
|
4372
4504
|
description?: string | undefined;
|
@@ -4406,6 +4538,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4406
4538
|
idBackgroundColor?: string | undefined;
|
4407
4539
|
repeatIdBackgroundImage?: boolean | undefined;
|
4408
4540
|
} | undefined;
|
4541
|
+
highlightedCredentials?: string[] | undefined;
|
4409
4542
|
dob?: string | undefined;
|
4410
4543
|
}[] | undefined;
|
4411
4544
|
}>;
|
@@ -4636,6 +4769,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4636
4769
|
idBackgroundColor?: string | undefined;
|
4637
4770
|
repeatIdBackgroundImage?: boolean | undefined;
|
4638
4771
|
}>>;
|
4772
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4639
4773
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4640
4774
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4641
4775
|
}, "strip", z.ZodTypeAny, {
|
@@ -4666,6 +4800,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4666
4800
|
idBackgroundColor?: string | undefined;
|
4667
4801
|
repeatIdBackgroundImage?: boolean | undefined;
|
4668
4802
|
} | undefined;
|
4803
|
+
highlightedCredentials?: string[] | undefined;
|
4669
4804
|
dob?: string | undefined;
|
4670
4805
|
}, {
|
4671
4806
|
profileId: string;
|
@@ -4695,6 +4830,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4695
4830
|
idBackgroundColor?: string | undefined;
|
4696
4831
|
repeatIdBackgroundImage?: boolean | undefined;
|
4697
4832
|
} | undefined;
|
4833
|
+
highlightedCredentials?: string[] | undefined;
|
4698
4834
|
dob?: string | undefined;
|
4699
4835
|
}>;
|
4700
4836
|
name: z.ZodString;
|
@@ -4761,6 +4897,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4761
4897
|
idBackgroundColor?: string | undefined;
|
4762
4898
|
repeatIdBackgroundImage?: boolean | undefined;
|
4763
4899
|
}>>;
|
4900
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4764
4901
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4765
4902
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4766
4903
|
}, "strip", z.ZodTypeAny, {
|
@@ -4791,6 +4928,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4791
4928
|
idBackgroundColor?: string | undefined;
|
4792
4929
|
repeatIdBackgroundImage?: boolean | undefined;
|
4793
4930
|
} | undefined;
|
4931
|
+
highlightedCredentials?: string[] | undefined;
|
4794
4932
|
dob?: string | undefined;
|
4795
4933
|
}, {
|
4796
4934
|
profileId: string;
|
@@ -4820,6 +4958,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4820
4958
|
idBackgroundColor?: string | undefined;
|
4821
4959
|
repeatIdBackgroundImage?: boolean | undefined;
|
4822
4960
|
} | undefined;
|
4961
|
+
highlightedCredentials?: string[] | undefined;
|
4823
4962
|
dob?: string | undefined;
|
4824
4963
|
}>, "many">>;
|
4825
4964
|
}, "owner">, "strip", z.ZodTypeAny, {
|
@@ -4891,6 +5030,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4891
5030
|
idBackgroundColor?: string | undefined;
|
4892
5031
|
repeatIdBackgroundImage?: boolean | undefined;
|
4893
5032
|
} | undefined;
|
5033
|
+
highlightedCredentials?: string[] | undefined;
|
4894
5034
|
dob?: string | undefined;
|
4895
5035
|
}[] | undefined;
|
4896
5036
|
}, {
|
@@ -4962,6 +5102,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4962
5102
|
idBackgroundColor?: string | undefined;
|
4963
5103
|
repeatIdBackgroundImage?: boolean | undefined;
|
4964
5104
|
} | undefined;
|
5105
|
+
highlightedCredentials?: string[] | undefined;
|
4965
5106
|
dob?: string | undefined;
|
4966
5107
|
}[] | undefined;
|
4967
5108
|
}>, "many">;
|
@@ -5036,6 +5177,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5036
5177
|
idBackgroundColor?: string | undefined;
|
5037
5178
|
repeatIdBackgroundImage?: boolean | undefined;
|
5038
5179
|
} | undefined;
|
5180
|
+
highlightedCredentials?: string[] | undefined;
|
5039
5181
|
dob?: string | undefined;
|
5040
5182
|
}[] | undefined;
|
5041
5183
|
}[];
|
@@ -5111,6 +5253,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5111
5253
|
idBackgroundColor?: string | undefined;
|
5112
5254
|
repeatIdBackgroundImage?: boolean | undefined;
|
5113
5255
|
} | undefined;
|
5256
|
+
highlightedCredentials?: string[] | undefined;
|
5114
5257
|
dob?: string | undefined;
|
5115
5258
|
}[] | undefined;
|
5116
5259
|
}[];
|
@@ -5800,6 +5943,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5800
5943
|
idBackgroundColor?: string | undefined;
|
5801
5944
|
repeatIdBackgroundImage?: boolean | undefined;
|
5802
5945
|
}>>;
|
5946
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5803
5947
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5804
5948
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5805
5949
|
}, "strip", z.ZodTypeAny, {
|
@@ -5830,6 +5974,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5830
5974
|
idBackgroundColor?: string | undefined;
|
5831
5975
|
repeatIdBackgroundImage?: boolean | undefined;
|
5832
5976
|
} | undefined;
|
5977
|
+
highlightedCredentials?: string[] | undefined;
|
5833
5978
|
dob?: string | undefined;
|
5834
5979
|
}, {
|
5835
5980
|
profileId: string;
|
@@ -5859,6 +6004,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5859
6004
|
idBackgroundColor?: string | undefined;
|
5860
6005
|
repeatIdBackgroundImage?: boolean | undefined;
|
5861
6006
|
} | undefined;
|
6007
|
+
highlightedCredentials?: string[] | undefined;
|
5862
6008
|
dob?: string | undefined;
|
5863
6009
|
}>;
|
5864
6010
|
name: z.ZodString;
|
@@ -5925,6 +6071,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5925
6071
|
idBackgroundColor?: string | undefined;
|
5926
6072
|
repeatIdBackgroundImage?: boolean | undefined;
|
5927
6073
|
}>>;
|
6074
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5928
6075
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5929
6076
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5930
6077
|
}, "strip", z.ZodTypeAny, {
|
@@ -5955,6 +6102,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5955
6102
|
idBackgroundColor?: string | undefined;
|
5956
6103
|
repeatIdBackgroundImage?: boolean | undefined;
|
5957
6104
|
} | undefined;
|
6105
|
+
highlightedCredentials?: string[] | undefined;
|
5958
6106
|
dob?: string | undefined;
|
5959
6107
|
}, {
|
5960
6108
|
profileId: string;
|
@@ -5984,6 +6132,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5984
6132
|
idBackgroundColor?: string | undefined;
|
5985
6133
|
repeatIdBackgroundImage?: boolean | undefined;
|
5986
6134
|
} | undefined;
|
6135
|
+
highlightedCredentials?: string[] | undefined;
|
5987
6136
|
dob?: string | undefined;
|
5988
6137
|
}>, "many">>;
|
5989
6138
|
}, "strip", z.ZodTypeAny, {
|
@@ -6046,6 +6195,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6046
6195
|
idBackgroundColor?: string | undefined;
|
6047
6196
|
repeatIdBackgroundImage?: boolean | undefined;
|
6048
6197
|
} | undefined;
|
6198
|
+
highlightedCredentials?: string[] | undefined;
|
6049
6199
|
dob?: string | undefined;
|
6050
6200
|
};
|
6051
6201
|
description?: string | undefined;
|
@@ -6085,6 +6235,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6085
6235
|
idBackgroundColor?: string | undefined;
|
6086
6236
|
repeatIdBackgroundImage?: boolean | undefined;
|
6087
6237
|
} | undefined;
|
6238
|
+
highlightedCredentials?: string[] | undefined;
|
6088
6239
|
dob?: string | undefined;
|
6089
6240
|
}[] | undefined;
|
6090
6241
|
}, {
|
@@ -6147,6 +6298,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6147
6298
|
idBackgroundColor?: string | undefined;
|
6148
6299
|
repeatIdBackgroundImage?: boolean | undefined;
|
6149
6300
|
} | undefined;
|
6301
|
+
highlightedCredentials?: string[] | undefined;
|
6150
6302
|
dob?: string | undefined;
|
6151
6303
|
};
|
6152
6304
|
description?: string | undefined;
|
@@ -6186,6 +6338,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6186
6338
|
idBackgroundColor?: string | undefined;
|
6187
6339
|
repeatIdBackgroundImage?: boolean | undefined;
|
6188
6340
|
} | undefined;
|
6341
|
+
highlightedCredentials?: string[] | undefined;
|
6189
6342
|
dob?: string | undefined;
|
6190
6343
|
}[] | undefined;
|
6191
6344
|
}>;
|
@@ -6241,6 +6394,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6241
6394
|
idBackgroundColor?: string | undefined;
|
6242
6395
|
repeatIdBackgroundImage?: boolean | undefined;
|
6243
6396
|
}>>;
|
6397
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6244
6398
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6245
6399
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6246
6400
|
}, "strip", z.ZodTypeAny, {
|
@@ -6271,6 +6425,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6271
6425
|
idBackgroundColor?: string | undefined;
|
6272
6426
|
repeatIdBackgroundImage?: boolean | undefined;
|
6273
6427
|
} | undefined;
|
6428
|
+
highlightedCredentials?: string[] | undefined;
|
6274
6429
|
dob?: string | undefined;
|
6275
6430
|
}, {
|
6276
6431
|
profileId: string;
|
@@ -6300,6 +6455,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6300
6455
|
idBackgroundColor?: string | undefined;
|
6301
6456
|
repeatIdBackgroundImage?: boolean | undefined;
|
6302
6457
|
} | undefined;
|
6458
|
+
highlightedCredentials?: string[] | undefined;
|
6303
6459
|
dob?: string | undefined;
|
6304
6460
|
}>;
|
6305
6461
|
status: z.ZodEnum<["live", "stale", "withdrawn"]>;
|
@@ -6366,6 +6522,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6366
6522
|
idBackgroundColor?: string | undefined;
|
6367
6523
|
repeatIdBackgroundImage?: boolean | undefined;
|
6368
6524
|
} | undefined;
|
6525
|
+
highlightedCredentials?: string[] | undefined;
|
6369
6526
|
dob?: string | undefined;
|
6370
6527
|
};
|
6371
6528
|
description?: string | undefined;
|
@@ -6405,6 +6562,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6405
6562
|
idBackgroundColor?: string | undefined;
|
6406
6563
|
repeatIdBackgroundImage?: boolean | undefined;
|
6407
6564
|
} | undefined;
|
6565
|
+
highlightedCredentials?: string[] | undefined;
|
6408
6566
|
dob?: string | undefined;
|
6409
6567
|
}[] | undefined;
|
6410
6568
|
};
|
@@ -6459,6 +6617,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6459
6617
|
idBackgroundColor?: string | undefined;
|
6460
6618
|
repeatIdBackgroundImage?: boolean | undefined;
|
6461
6619
|
} | undefined;
|
6620
|
+
highlightedCredentials?: string[] | undefined;
|
6462
6621
|
dob?: string | undefined;
|
6463
6622
|
};
|
6464
6623
|
expiresAt?: string | undefined;
|
@@ -6526,6 +6685,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6526
6685
|
idBackgroundColor?: string | undefined;
|
6527
6686
|
repeatIdBackgroundImage?: boolean | undefined;
|
6528
6687
|
} | undefined;
|
6688
|
+
highlightedCredentials?: string[] | undefined;
|
6529
6689
|
dob?: string | undefined;
|
6530
6690
|
};
|
6531
6691
|
description?: string | undefined;
|
@@ -6565,6 +6725,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6565
6725
|
idBackgroundColor?: string | undefined;
|
6566
6726
|
repeatIdBackgroundImage?: boolean | undefined;
|
6567
6727
|
} | undefined;
|
6728
|
+
highlightedCredentials?: string[] | undefined;
|
6568
6729
|
dob?: string | undefined;
|
6569
6730
|
}[] | undefined;
|
6570
6731
|
};
|
@@ -6619,6 +6780,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6619
6780
|
idBackgroundColor?: string | undefined;
|
6620
6781
|
repeatIdBackgroundImage?: boolean | undefined;
|
6621
6782
|
} | undefined;
|
6783
|
+
highlightedCredentials?: string[] | undefined;
|
6622
6784
|
dob?: string | undefined;
|
6623
6785
|
};
|
6624
6786
|
expiresAt?: string | undefined;
|
@@ -6689,6 +6851,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6689
6851
|
idBackgroundColor?: string | undefined;
|
6690
6852
|
repeatIdBackgroundImage?: boolean | undefined;
|
6691
6853
|
} | undefined;
|
6854
|
+
highlightedCredentials?: string[] | undefined;
|
6692
6855
|
dob?: string | undefined;
|
6693
6856
|
};
|
6694
6857
|
description?: string | undefined;
|
@@ -6728,6 +6891,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6728
6891
|
idBackgroundColor?: string | undefined;
|
6729
6892
|
repeatIdBackgroundImage?: boolean | undefined;
|
6730
6893
|
} | undefined;
|
6894
|
+
highlightedCredentials?: string[] | undefined;
|
6731
6895
|
dob?: string | undefined;
|
6732
6896
|
}[] | undefined;
|
6733
6897
|
};
|
@@ -6782,6 +6946,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6782
6946
|
idBackgroundColor?: string | undefined;
|
6783
6947
|
repeatIdBackgroundImage?: boolean | undefined;
|
6784
6948
|
} | undefined;
|
6949
|
+
highlightedCredentials?: string[] | undefined;
|
6785
6950
|
dob?: string | undefined;
|
6786
6951
|
};
|
6787
6952
|
expiresAt?: string | undefined;
|
@@ -6853,6 +7018,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6853
7018
|
idBackgroundColor?: string | undefined;
|
6854
7019
|
repeatIdBackgroundImage?: boolean | undefined;
|
6855
7020
|
} | undefined;
|
7021
|
+
highlightedCredentials?: string[] | undefined;
|
6856
7022
|
dob?: string | undefined;
|
6857
7023
|
};
|
6858
7024
|
description?: string | undefined;
|
@@ -6892,6 +7058,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6892
7058
|
idBackgroundColor?: string | undefined;
|
6893
7059
|
repeatIdBackgroundImage?: boolean | undefined;
|
6894
7060
|
} | undefined;
|
7061
|
+
highlightedCredentials?: string[] | undefined;
|
6895
7062
|
dob?: string | undefined;
|
6896
7063
|
}[] | undefined;
|
6897
7064
|
};
|
@@ -6946,6 +7113,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6946
7113
|
idBackgroundColor?: string | undefined;
|
6947
7114
|
repeatIdBackgroundImage?: boolean | undefined;
|
6948
7115
|
} | undefined;
|
7116
|
+
highlightedCredentials?: string[] | undefined;
|
6949
7117
|
dob?: string | undefined;
|
6950
7118
|
};
|
6951
7119
|
expiresAt?: string | undefined;
|
@@ -8107,7 +8275,7 @@ export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.object
|
|
8107
8275
|
cursor?: string | undefined;
|
8108
8276
|
}>;
|
8109
8277
|
export type PaginatedContractCredentials = z.infer<typeof PaginatedContractCredentialsValidator>;
|
8110
|
-
export declare const LCNNotificationTypeEnumValidator: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION", "ISSUANCE_CLAIMED", "ISSUANCE_DELIVERED"]>;
|
8278
|
+
export declare const LCNNotificationTypeEnumValidator: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION", "ISSUANCE_CLAIMED", "ISSUANCE_DELIVERED", "ISSUANCE_ERROR"]>;
|
8111
8279
|
export type LCNNotificationTypeEnum = z.infer<typeof LCNNotificationTypeEnumValidator>;
|
8112
8280
|
export declare const LCNNotificationMessageValidator: z.ZodObject<{
|
8113
8281
|
title: z.ZodOptional<z.ZodString>;
|
@@ -8539,7 +8707,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
8539
8707
|
}>;
|
8540
8708
|
export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
|
8541
8709
|
export declare const LCNNotificationValidator: z.ZodObject<{
|
8542
|
-
type: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION", "ISSUANCE_CLAIMED", "ISSUANCE_DELIVERED"]>;
|
8710
|
+
type: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION", "ISSUANCE_CLAIMED", "ISSUANCE_DELIVERED", "ISSUANCE_ERROR"]>;
|
8543
8711
|
to: z.ZodIntersection<z.ZodObject<{
|
8544
8712
|
profileId: z.ZodOptional<z.ZodString>;
|
8545
8713
|
displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
@@ -8591,6 +8759,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8591
8759
|
idBackgroundColor?: string | undefined;
|
8592
8760
|
repeatIdBackgroundImage?: boolean | undefined;
|
8593
8761
|
}>>>;
|
8762
|
+
highlightedCredentials: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
8594
8763
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8595
8764
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8596
8765
|
}, "strip", z.ZodTypeAny, {
|
@@ -8621,6 +8790,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8621
8790
|
idBackgroundColor?: string | undefined;
|
8622
8791
|
repeatIdBackgroundImage?: boolean | undefined;
|
8623
8792
|
} | undefined;
|
8793
|
+
highlightedCredentials?: string[] | undefined;
|
8624
8794
|
dob?: string | undefined;
|
8625
8795
|
}, {
|
8626
8796
|
type?: string | undefined;
|
@@ -8650,6 +8820,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8650
8820
|
idBackgroundColor?: string | undefined;
|
8651
8821
|
repeatIdBackgroundImage?: boolean | undefined;
|
8652
8822
|
} | undefined;
|
8823
|
+
highlightedCredentials?: string[] | undefined;
|
8653
8824
|
dob?: string | undefined;
|
8654
8825
|
}>, z.ZodObject<{
|
8655
8826
|
did: z.ZodString;
|
@@ -8709,6 +8880,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8709
8880
|
idBackgroundColor?: string | undefined;
|
8710
8881
|
repeatIdBackgroundImage?: boolean | undefined;
|
8711
8882
|
}>>>;
|
8883
|
+
highlightedCredentials: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
8712
8884
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8713
8885
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8714
8886
|
}, "strip", z.ZodTypeAny, {
|
@@ -8739,6 +8911,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8739
8911
|
idBackgroundColor?: string | undefined;
|
8740
8912
|
repeatIdBackgroundImage?: boolean | undefined;
|
8741
8913
|
} | undefined;
|
8914
|
+
highlightedCredentials?: string[] | undefined;
|
8742
8915
|
dob?: string | undefined;
|
8743
8916
|
}, {
|
8744
8917
|
type?: string | undefined;
|
@@ -8768,6 +8941,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8768
8941
|
idBackgroundColor?: string | undefined;
|
8769
8942
|
repeatIdBackgroundImage?: boolean | undefined;
|
8770
8943
|
} | undefined;
|
8944
|
+
highlightedCredentials?: string[] | undefined;
|
8771
8945
|
dob?: string | undefined;
|
8772
8946
|
}>, z.ZodObject<{
|
8773
8947
|
did: z.ZodString;
|
@@ -9140,7 +9314,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9140
9314
|
sent: z.ZodOptional<z.ZodString>;
|
9141
9315
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9142
9316
|
}, "strip", z.ZodTypeAny, {
|
9143
|
-
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION" | "ISSUANCE_CLAIMED" | "ISSUANCE_DELIVERED";
|
9317
|
+
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION" | "ISSUANCE_CLAIMED" | "ISSUANCE_DELIVERED" | "ISSUANCE_ERROR";
|
9144
9318
|
to: {
|
9145
9319
|
type?: string | undefined;
|
9146
9320
|
image?: string | undefined;
|
@@ -9169,6 +9343,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9169
9343
|
idBackgroundColor?: string | undefined;
|
9170
9344
|
repeatIdBackgroundImage?: boolean | undefined;
|
9171
9345
|
} | undefined;
|
9346
|
+
highlightedCredentials?: string[] | undefined;
|
9172
9347
|
dob?: string | undefined;
|
9173
9348
|
} & {
|
9174
9349
|
did: string;
|
@@ -9201,6 +9376,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9201
9376
|
idBackgroundColor?: string | undefined;
|
9202
9377
|
repeatIdBackgroundImage?: boolean | undefined;
|
9203
9378
|
} | undefined;
|
9379
|
+
highlightedCredentials?: string[] | undefined;
|
9204
9380
|
dob?: string | undefined;
|
9205
9381
|
} & {
|
9206
9382
|
did: string;
|
@@ -9259,7 +9435,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9259
9435
|
} | undefined;
|
9260
9436
|
webhookUrl?: string | undefined;
|
9261
9437
|
}, {
|
9262
|
-
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION" | "ISSUANCE_CLAIMED" | "ISSUANCE_DELIVERED";
|
9438
|
+
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION" | "ISSUANCE_CLAIMED" | "ISSUANCE_DELIVERED" | "ISSUANCE_ERROR";
|
9263
9439
|
to: {
|
9264
9440
|
type?: string | undefined;
|
9265
9441
|
image?: string | undefined;
|
@@ -9288,6 +9464,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9288
9464
|
idBackgroundColor?: string | undefined;
|
9289
9465
|
repeatIdBackgroundImage?: boolean | undefined;
|
9290
9466
|
} | undefined;
|
9467
|
+
highlightedCredentials?: string[] | undefined;
|
9291
9468
|
dob?: string | undefined;
|
9292
9469
|
} & {
|
9293
9470
|
did: string;
|
@@ -9320,6 +9497,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9320
9497
|
idBackgroundColor?: string | undefined;
|
9321
9498
|
repeatIdBackgroundImage?: boolean | undefined;
|
9322
9499
|
} | undefined;
|
9500
|
+
highlightedCredentials?: string[] | undefined;
|
9323
9501
|
dob?: string | undefined;
|
9324
9502
|
} & {
|
9325
9503
|
did: string;
|
@@ -9638,8 +9816,16 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9638
9816
|
createdAt: z.ZodString;
|
9639
9817
|
issuerDid: z.ZodString;
|
9640
9818
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9641
|
-
|
9642
|
-
|
9819
|
+
signingAuthority: z.ZodOptional<z.ZodObject<{
|
9820
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
9821
|
+
name: z.ZodOptional<z.ZodString>;
|
9822
|
+
}, "strip", z.ZodTypeAny, {
|
9823
|
+
name?: string | undefined;
|
9824
|
+
endpoint?: string | undefined;
|
9825
|
+
}, {
|
9826
|
+
name?: string | undefined;
|
9827
|
+
endpoint?: string | undefined;
|
9828
|
+
}>>;
|
9643
9829
|
}, "strip", z.ZodTypeAny, {
|
9644
9830
|
id: string;
|
9645
9831
|
createdAt: string;
|
@@ -9648,9 +9834,11 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9648
9834
|
isSigned: boolean;
|
9649
9835
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9650
9836
|
issuerDid: string;
|
9837
|
+
signingAuthority?: {
|
9838
|
+
name?: string | undefined;
|
9839
|
+
endpoint?: string | undefined;
|
9840
|
+
} | undefined;
|
9651
9841
|
webhookUrl?: string | undefined;
|
9652
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9653
|
-
'signingAuthority.name'?: string | undefined;
|
9654
9842
|
}, {
|
9655
9843
|
id: string;
|
9656
9844
|
createdAt: string;
|
@@ -9659,9 +9847,11 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9659
9847
|
isSigned: boolean;
|
9660
9848
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9661
9849
|
issuerDid: string;
|
9850
|
+
signingAuthority?: {
|
9851
|
+
name?: string | undefined;
|
9852
|
+
endpoint?: string | undefined;
|
9853
|
+
} | undefined;
|
9662
9854
|
webhookUrl?: string | undefined;
|
9663
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9664
|
-
'signingAuthority.name'?: string | undefined;
|
9665
9855
|
}>;
|
9666
9856
|
export type InboxCredentialType = z.infer<typeof InboxCredentialValidator>;
|
9667
9857
|
export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
@@ -9675,8 +9865,16 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9675
9865
|
createdAt: z.ZodString;
|
9676
9866
|
issuerDid: z.ZodString;
|
9677
9867
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9678
|
-
|
9679
|
-
|
9868
|
+
signingAuthority: z.ZodOptional<z.ZodObject<{
|
9869
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
9870
|
+
name: z.ZodOptional<z.ZodString>;
|
9871
|
+
}, "strip", z.ZodTypeAny, {
|
9872
|
+
name?: string | undefined;
|
9873
|
+
endpoint?: string | undefined;
|
9874
|
+
}, {
|
9875
|
+
name?: string | undefined;
|
9876
|
+
endpoint?: string | undefined;
|
9877
|
+
}>>;
|
9680
9878
|
}, "strip", z.ZodTypeAny, {
|
9681
9879
|
id: string;
|
9682
9880
|
createdAt: string;
|
@@ -9685,9 +9883,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9685
9883
|
isSigned: boolean;
|
9686
9884
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9687
9885
|
issuerDid: string;
|
9886
|
+
signingAuthority?: {
|
9887
|
+
name?: string | undefined;
|
9888
|
+
endpoint?: string | undefined;
|
9889
|
+
} | undefined;
|
9688
9890
|
webhookUrl?: string | undefined;
|
9689
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9690
|
-
'signingAuthority.name'?: string | undefined;
|
9691
9891
|
}, {
|
9692
9892
|
id: string;
|
9693
9893
|
createdAt: string;
|
@@ -9696,9 +9896,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9696
9896
|
isSigned: boolean;
|
9697
9897
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9698
9898
|
issuerDid: string;
|
9899
|
+
signingAuthority?: {
|
9900
|
+
name?: string | undefined;
|
9901
|
+
endpoint?: string | undefined;
|
9902
|
+
} | undefined;
|
9699
9903
|
webhookUrl?: string | undefined;
|
9700
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9701
|
-
'signingAuthority.name'?: string | undefined;
|
9702
9904
|
}>, "many">;
|
9703
9905
|
cursor: z.ZodOptional<z.ZodString>;
|
9704
9906
|
}, "strip", z.ZodTypeAny, {
|
@@ -9711,9 +9913,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9711
9913
|
isSigned: boolean;
|
9712
9914
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9713
9915
|
issuerDid: string;
|
9916
|
+
signingAuthority?: {
|
9917
|
+
name?: string | undefined;
|
9918
|
+
endpoint?: string | undefined;
|
9919
|
+
} | undefined;
|
9714
9920
|
webhookUrl?: string | undefined;
|
9715
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9716
|
-
'signingAuthority.name'?: string | undefined;
|
9717
9921
|
}[];
|
9718
9922
|
cursor?: string | undefined;
|
9719
9923
|
}, {
|
@@ -9726,9 +9930,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9726
9930
|
isSigned: boolean;
|
9727
9931
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9728
9932
|
issuerDid: string;
|
9933
|
+
signingAuthority?: {
|
9934
|
+
name?: string | undefined;
|
9935
|
+
endpoint?: string | undefined;
|
9936
|
+
} | undefined;
|
9729
9937
|
webhookUrl?: string | undefined;
|
9730
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9731
|
-
'signingAuthority.name'?: string | undefined;
|
9732
9938
|
}[];
|
9733
9939
|
cursor?: string | undefined;
|
9734
9940
|
}>;
|
@@ -29410,6 +29616,7 @@ export type IssueInboxCredentialResponseType = z.infer<typeof IssueInboxCredenti
|
|
29410
29616
|
export declare const ClaimTokenValidator: z.ZodObject<{
|
29411
29617
|
token: z.ZodString;
|
29412
29618
|
contactMethodId: z.ZodString;
|
29619
|
+
autoVerifyContactMethod: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
29413
29620
|
createdAt: z.ZodString;
|
29414
29621
|
expiresAt: z.ZodString;
|
29415
29622
|
used: z.ZodBoolean;
|
@@ -29418,6 +29625,7 @@ export declare const ClaimTokenValidator: z.ZodObject<{
|
|
29418
29625
|
expiresAt: string;
|
29419
29626
|
token: string;
|
29420
29627
|
contactMethodId: string;
|
29628
|
+
autoVerifyContactMethod: boolean;
|
29421
29629
|
used: boolean;
|
29422
29630
|
}, {
|
29423
29631
|
createdAt: string;
|
@@ -29425,6 +29633,7 @@ export declare const ClaimTokenValidator: z.ZodObject<{
|
|
29425
29633
|
token: string;
|
29426
29634
|
contactMethodId: string;
|
29427
29635
|
used: boolean;
|
29636
|
+
autoVerifyContactMethod?: boolean | undefined;
|
29428
29637
|
}>;
|
29429
29638
|
export type ClaimTokenType = z.infer<typeof ClaimTokenValidator>;
|
29430
29639
|
//# sourceMappingURL=lcn.d.ts.map
|