@logto/schemas 1.23.0 → 1.23.1
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/alterations/1.23.1-1735274337-add-encryption-config-to-saml-apps.ts +35 -0
- package/alterations/1.23.1-1735292380-make-saml-app-first-party-app.ts +28 -0
- package/alterations-js/1.23.1-1735274337-add-encryption-config-to-saml-apps.js +31 -0
- package/alterations-js/1.23.1-1735292380-make-saml-app-first-party-app.js +24 -0
- package/lib/db-entries/saml-application-config.d.ts +6 -2
- package/lib/db-entries/saml-application-config.js +9 -1
- package/lib/foundations/jsonb-types/saml-application-configs.d.ts +43 -2
- package/lib/foundations/jsonb-types/saml-application-configs.js +32 -1
- package/lib/foundations/jsonb-types/saml-application-configs.test.d.ts +1 -0
- package/lib/foundations/jsonb-types/saml-application-configs.test.js +49 -0
- package/lib/types/log/index.d.ts +5 -1
- package/lib/types/log/index.js +1 -0
- package/lib/types/log/saml.d.ts +7 -0
- package/lib/types/log/saml.js +6 -0
- package/lib/types/logto-config/index.d.ts +67 -67
- package/lib/types/logto-config/jwt-customizer.d.ts +117 -117
- package/lib/types/saml-application.d.ts +112 -47
- package/lib/types/saml-application.js +9 -3
- package/lib/types/system.d.ts +3 -0
- package/lib/types/system.js +1 -0
- package/lib/types/user.d.ts +7 -7
- package/package.json +1 -1
- package/tables/applications.sql +1 -4
- package/tables/saml_application_configs.sql +2 -0
|
@@ -151,7 +151,7 @@ export declare const jwtCustomizerUserContextGuard: z.ZodObject<z.objectUtil.ext
|
|
|
151
151
|
lastSignInAt: ZodType<number | null, z.ZodTypeDef, number | null>;
|
|
152
152
|
createdAt: ZodType<number, z.ZodTypeDef, number>;
|
|
153
153
|
updatedAt: ZodType<number, z.ZodTypeDef, number>;
|
|
154
|
-
}, "name" | "id" | "applicationId" | "username" | "createdAt" | "profile" | "avatar" | "customData" | "
|
|
154
|
+
}, "name" | "id" | "applicationId" | "username" | "createdAt" | "profile" | "avatar" | "customData" | "identities" | "updatedAt" | "primaryEmail" | "primaryPhone" | "isSuspended" | "lastSignInAt">, {
|
|
155
155
|
hasPassword: z.ZodBoolean;
|
|
156
156
|
ssoIdentities: z.ZodArray<z.ZodObject<Pick<{
|
|
157
157
|
tenantId: ZodType<string, z.ZodTypeDef, string>;
|
|
@@ -275,12 +275,6 @@ export declare const jwtCustomizerUserContextGuard: z.ZodObject<z.objectUtil.ext
|
|
|
275
275
|
profile: import("../../foundations/index.js").UserProfile;
|
|
276
276
|
avatar: string | null;
|
|
277
277
|
customData: import("@withtyped/server/lib/types.js").JsonObject;
|
|
278
|
-
updatedAt: number;
|
|
279
|
-
organizations: {
|
|
280
|
-
name: string;
|
|
281
|
-
id: string;
|
|
282
|
-
description: string | null;
|
|
283
|
-
}[];
|
|
284
278
|
roles: {
|
|
285
279
|
name: string;
|
|
286
280
|
id: string;
|
|
@@ -293,9 +287,15 @@ export declare const jwtCustomizerUserContextGuard: z.ZodObject<z.objectUtil.ext
|
|
|
293
287
|
resourceId: string;
|
|
294
288
|
}[];
|
|
295
289
|
}[];
|
|
290
|
+
organizations: {
|
|
291
|
+
name: string;
|
|
292
|
+
id: string;
|
|
293
|
+
description: string | null;
|
|
294
|
+
}[];
|
|
295
|
+
identities: import("../../foundations/index.js").Identities;
|
|
296
|
+
updatedAt: number;
|
|
296
297
|
primaryEmail: string | null;
|
|
297
298
|
primaryPhone: string | null;
|
|
298
|
-
identities: import("../../foundations/index.js").Identities;
|
|
299
299
|
isSuspended: boolean;
|
|
300
300
|
lastSignInAt: number | null;
|
|
301
301
|
hasPassword: boolean;
|
|
@@ -319,12 +319,6 @@ export declare const jwtCustomizerUserContextGuard: z.ZodObject<z.objectUtil.ext
|
|
|
319
319
|
profile: import("../../foundations/index.js").UserProfile;
|
|
320
320
|
avatar: string | null;
|
|
321
321
|
customData: import("@withtyped/server/lib/types.js").JsonObject;
|
|
322
|
-
updatedAt: number;
|
|
323
|
-
organizations: {
|
|
324
|
-
name: string;
|
|
325
|
-
id: string;
|
|
326
|
-
description: string | null;
|
|
327
|
-
}[];
|
|
328
322
|
roles: {
|
|
329
323
|
name: string;
|
|
330
324
|
id: string;
|
|
@@ -337,9 +331,15 @@ export declare const jwtCustomizerUserContextGuard: z.ZodObject<z.objectUtil.ext
|
|
|
337
331
|
resourceId: string;
|
|
338
332
|
}[];
|
|
339
333
|
}[];
|
|
334
|
+
organizations: {
|
|
335
|
+
name: string;
|
|
336
|
+
id: string;
|
|
337
|
+
description: string | null;
|
|
338
|
+
}[];
|
|
339
|
+
identities: import("../../foundations/index.js").Identities;
|
|
340
|
+
updatedAt: number;
|
|
340
341
|
primaryEmail: string | null;
|
|
341
342
|
primaryPhone: string | null;
|
|
342
|
-
identities: import("../../foundations/index.js").Identities;
|
|
343
343
|
isSuspended: boolean;
|
|
344
344
|
lastSignInAt: number | null;
|
|
345
345
|
hasPassword: boolean;
|
|
@@ -458,9 +458,6 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
458
458
|
}>>>;
|
|
459
459
|
avatar: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
460
460
|
customData: z.ZodOptional<ZodType<import("@withtyped/server/lib/types.js").JsonObject, z.ZodTypeDef, import("@withtyped/server/lib/types.js").JsonObject>>;
|
|
461
|
-
updatedAt: z.ZodOptional<ZodType<number, z.ZodTypeDef, number>>;
|
|
462
|
-
primaryEmail: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
463
|
-
primaryPhone: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
464
461
|
identities: z.ZodOptional<ZodType<Record<string, {
|
|
465
462
|
userId: string;
|
|
466
463
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
@@ -468,6 +465,9 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
468
465
|
userId: string;
|
|
469
466
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
470
467
|
}>>>;
|
|
468
|
+
updatedAt: z.ZodOptional<ZodType<number, z.ZodTypeDef, number>>;
|
|
469
|
+
primaryEmail: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
470
|
+
primaryPhone: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
471
471
|
isSuspended: z.ZodOptional<ZodType<boolean, z.ZodTypeDef, boolean>>;
|
|
472
472
|
lastSignInAt: z.ZodOptional<ZodType<number | null, z.ZodTypeDef, number | null>>;
|
|
473
473
|
hasPassword: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -613,12 +613,6 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
613
613
|
}> | undefined;
|
|
614
614
|
avatar?: string | null | undefined;
|
|
615
615
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
616
|
-
updatedAt?: number | undefined;
|
|
617
|
-
organizations?: {
|
|
618
|
-
name: string;
|
|
619
|
-
id: string;
|
|
620
|
-
description: string | null;
|
|
621
|
-
}[] | undefined;
|
|
622
616
|
roles?: {
|
|
623
617
|
name: string;
|
|
624
618
|
id: string;
|
|
@@ -631,12 +625,18 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
631
625
|
resourceId: string;
|
|
632
626
|
}[];
|
|
633
627
|
}[] | undefined;
|
|
634
|
-
|
|
635
|
-
|
|
628
|
+
organizations?: {
|
|
629
|
+
name: string;
|
|
630
|
+
id: string;
|
|
631
|
+
description: string | null;
|
|
632
|
+
}[] | undefined;
|
|
636
633
|
identities?: Record<string, {
|
|
637
634
|
userId: string;
|
|
638
635
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
639
636
|
}> | undefined;
|
|
637
|
+
updatedAt?: number | undefined;
|
|
638
|
+
primaryEmail?: string | null | undefined;
|
|
639
|
+
primaryPhone?: string | null | undefined;
|
|
640
640
|
isSuspended?: boolean | undefined;
|
|
641
641
|
lastSignInAt?: number | null | undefined;
|
|
642
642
|
hasPassword?: boolean | undefined;
|
|
@@ -680,12 +680,6 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
680
680
|
}> | undefined;
|
|
681
681
|
avatar?: string | null | undefined;
|
|
682
682
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
683
|
-
updatedAt?: number | undefined;
|
|
684
|
-
organizations?: {
|
|
685
|
-
name: string;
|
|
686
|
-
id: string;
|
|
687
|
-
description: string | null;
|
|
688
|
-
}[] | undefined;
|
|
689
683
|
roles?: {
|
|
690
684
|
name: string;
|
|
691
685
|
id: string;
|
|
@@ -698,12 +692,18 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
698
692
|
resourceId: string;
|
|
699
693
|
}[];
|
|
700
694
|
}[] | undefined;
|
|
701
|
-
|
|
702
|
-
|
|
695
|
+
organizations?: {
|
|
696
|
+
name: string;
|
|
697
|
+
id: string;
|
|
698
|
+
description: string | null;
|
|
699
|
+
}[] | undefined;
|
|
703
700
|
identities?: Record<string, {
|
|
704
701
|
userId: string;
|
|
705
702
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
706
703
|
}> | undefined;
|
|
704
|
+
updatedAt?: number | undefined;
|
|
705
|
+
primaryEmail?: string | null | undefined;
|
|
706
|
+
primaryPhone?: string | null | undefined;
|
|
707
707
|
isSuspended?: boolean | undefined;
|
|
708
708
|
lastSignInAt?: number | null | undefined;
|
|
709
709
|
hasPassword?: boolean | undefined;
|
|
@@ -759,12 +759,6 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
759
759
|
}> | undefined;
|
|
760
760
|
avatar?: string | null | undefined;
|
|
761
761
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
762
|
-
updatedAt?: number | undefined;
|
|
763
|
-
organizations?: {
|
|
764
|
-
name: string;
|
|
765
|
-
id: string;
|
|
766
|
-
description: string | null;
|
|
767
|
-
}[] | undefined;
|
|
768
762
|
roles?: {
|
|
769
763
|
name: string;
|
|
770
764
|
id: string;
|
|
@@ -777,12 +771,18 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
777
771
|
resourceId: string;
|
|
778
772
|
}[];
|
|
779
773
|
}[] | undefined;
|
|
780
|
-
|
|
781
|
-
|
|
774
|
+
organizations?: {
|
|
775
|
+
name: string;
|
|
776
|
+
id: string;
|
|
777
|
+
description: string | null;
|
|
778
|
+
}[] | undefined;
|
|
782
779
|
identities?: Record<string, {
|
|
783
780
|
userId: string;
|
|
784
781
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
785
782
|
}> | undefined;
|
|
783
|
+
updatedAt?: number | undefined;
|
|
784
|
+
primaryEmail?: string | null | undefined;
|
|
785
|
+
primaryPhone?: string | null | undefined;
|
|
786
786
|
isSuspended?: boolean | undefined;
|
|
787
787
|
lastSignInAt?: number | null | undefined;
|
|
788
788
|
hasPassword?: boolean | undefined;
|
|
@@ -832,12 +832,6 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
832
832
|
}> | undefined;
|
|
833
833
|
avatar?: string | null | undefined;
|
|
834
834
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
835
|
-
updatedAt?: number | undefined;
|
|
836
|
-
organizations?: {
|
|
837
|
-
name: string;
|
|
838
|
-
id: string;
|
|
839
|
-
description: string | null;
|
|
840
|
-
}[] | undefined;
|
|
841
835
|
roles?: {
|
|
842
836
|
name: string;
|
|
843
837
|
id: string;
|
|
@@ -850,12 +844,18 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
850
844
|
resourceId: string;
|
|
851
845
|
}[];
|
|
852
846
|
}[] | undefined;
|
|
853
|
-
|
|
854
|
-
|
|
847
|
+
organizations?: {
|
|
848
|
+
name: string;
|
|
849
|
+
id: string;
|
|
850
|
+
description: string | null;
|
|
851
|
+
}[] | undefined;
|
|
855
852
|
identities?: Record<string, {
|
|
856
853
|
userId: string;
|
|
857
854
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
858
855
|
}> | undefined;
|
|
856
|
+
updatedAt?: number | undefined;
|
|
857
|
+
primaryEmail?: string | null | undefined;
|
|
858
|
+
primaryPhone?: string | null | undefined;
|
|
859
859
|
isSuspended?: boolean | undefined;
|
|
860
860
|
lastSignInAt?: number | null | undefined;
|
|
861
861
|
hasPassword?: boolean | undefined;
|
|
@@ -909,12 +909,6 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
909
909
|
}> | undefined;
|
|
910
910
|
avatar?: string | null | undefined;
|
|
911
911
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
912
|
-
updatedAt?: number | undefined;
|
|
913
|
-
organizations?: {
|
|
914
|
-
name: string;
|
|
915
|
-
id: string;
|
|
916
|
-
description: string | null;
|
|
917
|
-
}[] | undefined;
|
|
918
912
|
roles?: {
|
|
919
913
|
name: string;
|
|
920
914
|
id: string;
|
|
@@ -927,12 +921,18 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
927
921
|
resourceId: string;
|
|
928
922
|
}[];
|
|
929
923
|
}[] | undefined;
|
|
930
|
-
|
|
931
|
-
|
|
924
|
+
organizations?: {
|
|
925
|
+
name: string;
|
|
926
|
+
id: string;
|
|
927
|
+
description: string | null;
|
|
928
|
+
}[] | undefined;
|
|
932
929
|
identities?: Record<string, {
|
|
933
930
|
userId: string;
|
|
934
931
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
935
932
|
}> | undefined;
|
|
933
|
+
updatedAt?: number | undefined;
|
|
934
|
+
primaryEmail?: string | null | undefined;
|
|
935
|
+
primaryPhone?: string | null | undefined;
|
|
936
936
|
isSuspended?: boolean | undefined;
|
|
937
937
|
lastSignInAt?: number | null | undefined;
|
|
938
938
|
hasPassword?: boolean | undefined;
|
|
@@ -999,12 +999,6 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
999
999
|
}> | undefined;
|
|
1000
1000
|
avatar?: string | null | undefined;
|
|
1001
1001
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
1002
|
-
updatedAt?: number | undefined;
|
|
1003
|
-
organizations?: {
|
|
1004
|
-
name: string;
|
|
1005
|
-
id: string;
|
|
1006
|
-
description: string | null;
|
|
1007
|
-
}[] | undefined;
|
|
1008
1002
|
roles?: {
|
|
1009
1003
|
name: string;
|
|
1010
1004
|
id: string;
|
|
@@ -1017,12 +1011,18 @@ export declare const accessTokenJwtCustomizerGuard: z.ZodObject<z.objectUtil.ext
|
|
|
1017
1011
|
resourceId: string;
|
|
1018
1012
|
}[];
|
|
1019
1013
|
}[] | undefined;
|
|
1020
|
-
|
|
1021
|
-
|
|
1014
|
+
organizations?: {
|
|
1015
|
+
name: string;
|
|
1016
|
+
id: string;
|
|
1017
|
+
description: string | null;
|
|
1018
|
+
}[] | undefined;
|
|
1022
1019
|
identities?: Record<string, {
|
|
1023
1020
|
userId: string;
|
|
1024
1021
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
1025
1022
|
}> | undefined;
|
|
1023
|
+
updatedAt?: number | undefined;
|
|
1024
|
+
primaryEmail?: string | null | undefined;
|
|
1025
|
+
primaryPhone?: string | null | undefined;
|
|
1026
1026
|
isSuspended?: boolean | undefined;
|
|
1027
1027
|
lastSignInAt?: number | null | undefined;
|
|
1028
1028
|
hasPassword?: boolean | undefined;
|
|
@@ -1201,9 +1201,6 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1201
1201
|
}>>>;
|
|
1202
1202
|
avatar: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
1203
1203
|
customData: z.ZodOptional<ZodType<import("@withtyped/server/lib/types.js").JsonObject, z.ZodTypeDef, import("@withtyped/server/lib/types.js").JsonObject>>;
|
|
1204
|
-
updatedAt: z.ZodOptional<ZodType<number, z.ZodTypeDef, number>>;
|
|
1205
|
-
primaryEmail: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
1206
|
-
primaryPhone: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
1207
1204
|
identities: z.ZodOptional<ZodType<Record<string, {
|
|
1208
1205
|
userId: string;
|
|
1209
1206
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
@@ -1211,6 +1208,9 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1211
1208
|
userId: string;
|
|
1212
1209
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
1213
1210
|
}>>>;
|
|
1211
|
+
updatedAt: z.ZodOptional<ZodType<number, z.ZodTypeDef, number>>;
|
|
1212
|
+
primaryEmail: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
1213
|
+
primaryPhone: z.ZodOptional<ZodType<string | null, z.ZodTypeDef, string | null>>;
|
|
1214
1214
|
isSuspended: z.ZodOptional<ZodType<boolean, z.ZodTypeDef, boolean>>;
|
|
1215
1215
|
lastSignInAt: z.ZodOptional<ZodType<number | null, z.ZodTypeDef, number | null>>;
|
|
1216
1216
|
hasPassword: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1356,12 +1356,6 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1356
1356
|
}> | undefined;
|
|
1357
1357
|
avatar?: string | null | undefined;
|
|
1358
1358
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
1359
|
-
updatedAt?: number | undefined;
|
|
1360
|
-
organizations?: {
|
|
1361
|
-
name: string;
|
|
1362
|
-
id: string;
|
|
1363
|
-
description: string | null;
|
|
1364
|
-
}[] | undefined;
|
|
1365
1359
|
roles?: {
|
|
1366
1360
|
name: string;
|
|
1367
1361
|
id: string;
|
|
@@ -1374,12 +1368,18 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1374
1368
|
resourceId: string;
|
|
1375
1369
|
}[];
|
|
1376
1370
|
}[] | undefined;
|
|
1377
|
-
|
|
1378
|
-
|
|
1371
|
+
organizations?: {
|
|
1372
|
+
name: string;
|
|
1373
|
+
id: string;
|
|
1374
|
+
description: string | null;
|
|
1375
|
+
}[] | undefined;
|
|
1379
1376
|
identities?: Record<string, {
|
|
1380
1377
|
userId: string;
|
|
1381
1378
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
1382
1379
|
}> | undefined;
|
|
1380
|
+
updatedAt?: number | undefined;
|
|
1381
|
+
primaryEmail?: string | null | undefined;
|
|
1382
|
+
primaryPhone?: string | null | undefined;
|
|
1383
1383
|
isSuspended?: boolean | undefined;
|
|
1384
1384
|
lastSignInAt?: number | null | undefined;
|
|
1385
1385
|
hasPassword?: boolean | undefined;
|
|
@@ -1423,12 +1423,6 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1423
1423
|
}> | undefined;
|
|
1424
1424
|
avatar?: string | null | undefined;
|
|
1425
1425
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
1426
|
-
updatedAt?: number | undefined;
|
|
1427
|
-
organizations?: {
|
|
1428
|
-
name: string;
|
|
1429
|
-
id: string;
|
|
1430
|
-
description: string | null;
|
|
1431
|
-
}[] | undefined;
|
|
1432
1426
|
roles?: {
|
|
1433
1427
|
name: string;
|
|
1434
1428
|
id: string;
|
|
@@ -1441,12 +1435,18 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1441
1435
|
resourceId: string;
|
|
1442
1436
|
}[];
|
|
1443
1437
|
}[] | undefined;
|
|
1444
|
-
|
|
1445
|
-
|
|
1438
|
+
organizations?: {
|
|
1439
|
+
name: string;
|
|
1440
|
+
id: string;
|
|
1441
|
+
description: string | null;
|
|
1442
|
+
}[] | undefined;
|
|
1446
1443
|
identities?: Record<string, {
|
|
1447
1444
|
userId: string;
|
|
1448
1445
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
1449
1446
|
}> | undefined;
|
|
1447
|
+
updatedAt?: number | undefined;
|
|
1448
|
+
primaryEmail?: string | null | undefined;
|
|
1449
|
+
primaryPhone?: string | null | undefined;
|
|
1450
1450
|
isSuspended?: boolean | undefined;
|
|
1451
1451
|
lastSignInAt?: number | null | undefined;
|
|
1452
1452
|
hasPassword?: boolean | undefined;
|
|
@@ -1502,12 +1502,6 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1502
1502
|
}> | undefined;
|
|
1503
1503
|
avatar?: string | null | undefined;
|
|
1504
1504
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
1505
|
-
updatedAt?: number | undefined;
|
|
1506
|
-
organizations?: {
|
|
1507
|
-
name: string;
|
|
1508
|
-
id: string;
|
|
1509
|
-
description: string | null;
|
|
1510
|
-
}[] | undefined;
|
|
1511
1505
|
roles?: {
|
|
1512
1506
|
name: string;
|
|
1513
1507
|
id: string;
|
|
@@ -1520,12 +1514,18 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1520
1514
|
resourceId: string;
|
|
1521
1515
|
}[];
|
|
1522
1516
|
}[] | undefined;
|
|
1523
|
-
|
|
1524
|
-
|
|
1517
|
+
organizations?: {
|
|
1518
|
+
name: string;
|
|
1519
|
+
id: string;
|
|
1520
|
+
description: string | null;
|
|
1521
|
+
}[] | undefined;
|
|
1525
1522
|
identities?: Record<string, {
|
|
1526
1523
|
userId: string;
|
|
1527
1524
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
1528
1525
|
}> | undefined;
|
|
1526
|
+
updatedAt?: number | undefined;
|
|
1527
|
+
primaryEmail?: string | null | undefined;
|
|
1528
|
+
primaryPhone?: string | null | undefined;
|
|
1529
1529
|
isSuspended?: boolean | undefined;
|
|
1530
1530
|
lastSignInAt?: number | null | undefined;
|
|
1531
1531
|
hasPassword?: boolean | undefined;
|
|
@@ -1575,12 +1575,6 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1575
1575
|
}> | undefined;
|
|
1576
1576
|
avatar?: string | null | undefined;
|
|
1577
1577
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
1578
|
-
updatedAt?: number | undefined;
|
|
1579
|
-
organizations?: {
|
|
1580
|
-
name: string;
|
|
1581
|
-
id: string;
|
|
1582
|
-
description: string | null;
|
|
1583
|
-
}[] | undefined;
|
|
1584
1578
|
roles?: {
|
|
1585
1579
|
name: string;
|
|
1586
1580
|
id: string;
|
|
@@ -1593,12 +1587,18 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1593
1587
|
resourceId: string;
|
|
1594
1588
|
}[];
|
|
1595
1589
|
}[] | undefined;
|
|
1596
|
-
|
|
1597
|
-
|
|
1590
|
+
organizations?: {
|
|
1591
|
+
name: string;
|
|
1592
|
+
id: string;
|
|
1593
|
+
description: string | null;
|
|
1594
|
+
}[] | undefined;
|
|
1598
1595
|
identities?: Record<string, {
|
|
1599
1596
|
userId: string;
|
|
1600
1597
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
1601
1598
|
}> | undefined;
|
|
1599
|
+
updatedAt?: number | undefined;
|
|
1600
|
+
primaryEmail?: string | null | undefined;
|
|
1601
|
+
primaryPhone?: string | null | undefined;
|
|
1602
1602
|
isSuspended?: boolean | undefined;
|
|
1603
1603
|
lastSignInAt?: number | null | undefined;
|
|
1604
1604
|
hasPassword?: boolean | undefined;
|
|
@@ -1653,12 +1653,6 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1653
1653
|
}> | undefined;
|
|
1654
1654
|
avatar?: string | null | undefined;
|
|
1655
1655
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
1656
|
-
updatedAt?: number | undefined;
|
|
1657
|
-
organizations?: {
|
|
1658
|
-
name: string;
|
|
1659
|
-
id: string;
|
|
1660
|
-
description: string | null;
|
|
1661
|
-
}[] | undefined;
|
|
1662
1656
|
roles?: {
|
|
1663
1657
|
name: string;
|
|
1664
1658
|
id: string;
|
|
@@ -1671,12 +1665,18 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1671
1665
|
resourceId: string;
|
|
1672
1666
|
}[];
|
|
1673
1667
|
}[] | undefined;
|
|
1674
|
-
|
|
1675
|
-
|
|
1668
|
+
organizations?: {
|
|
1669
|
+
name: string;
|
|
1670
|
+
id: string;
|
|
1671
|
+
description: string | null;
|
|
1672
|
+
}[] | undefined;
|
|
1676
1673
|
identities?: Record<string, {
|
|
1677
1674
|
userId: string;
|
|
1678
1675
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
1679
1676
|
}> | undefined;
|
|
1677
|
+
updatedAt?: number | undefined;
|
|
1678
|
+
primaryEmail?: string | null | undefined;
|
|
1679
|
+
primaryPhone?: string | null | undefined;
|
|
1680
1680
|
isSuspended?: boolean | undefined;
|
|
1681
1681
|
lastSignInAt?: number | null | undefined;
|
|
1682
1682
|
hasPassword?: boolean | undefined;
|
|
@@ -1744,12 +1744,6 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1744
1744
|
}> | undefined;
|
|
1745
1745
|
avatar?: string | null | undefined;
|
|
1746
1746
|
customData?: import("@withtyped/server/lib/types.js").JsonObject | undefined;
|
|
1747
|
-
updatedAt?: number | undefined;
|
|
1748
|
-
organizations?: {
|
|
1749
|
-
name: string;
|
|
1750
|
-
id: string;
|
|
1751
|
-
description: string | null;
|
|
1752
|
-
}[] | undefined;
|
|
1753
1747
|
roles?: {
|
|
1754
1748
|
name: string;
|
|
1755
1749
|
id: string;
|
|
@@ -1762,12 +1756,18 @@ export declare const jwtCustomizerTestRequestBodyGuard: z.ZodDiscriminatedUnion<
|
|
|
1762
1756
|
resourceId: string;
|
|
1763
1757
|
}[];
|
|
1764
1758
|
}[] | undefined;
|
|
1765
|
-
|
|
1766
|
-
|
|
1759
|
+
organizations?: {
|
|
1760
|
+
name: string;
|
|
1761
|
+
id: string;
|
|
1762
|
+
description: string | null;
|
|
1763
|
+
}[] | undefined;
|
|
1767
1764
|
identities?: Record<string, {
|
|
1768
1765
|
userId: string;
|
|
1769
1766
|
details?: Record<string, import("@withtyped/server/lib/types.js").Json> | undefined;
|
|
1770
1767
|
}> | undefined;
|
|
1768
|
+
updatedAt?: number | undefined;
|
|
1769
|
+
primaryEmail?: string | null | undefined;
|
|
1770
|
+
primaryPhone?: string | null | undefined;
|
|
1771
1771
|
isSuspended?: boolean | undefined;
|
|
1772
1772
|
lastSignInAt?: number | null | undefined;
|
|
1773
1773
|
hasPassword?: boolean | undefined;
|