@pagopa/io-react-native-wallet 1.1.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/commonjs/credential/presentation/01-start-flow.js +7 -5
- package/lib/commonjs/credential/presentation/01-start-flow.js.map +1 -1
- package/lib/commonjs/credential/presentation/03-get-request-object.js +47 -0
- package/lib/commonjs/credential/presentation/03-get-request-object.js.map +1 -0
- package/lib/commonjs/credential/presentation/04-retrieve-rp-jwks.js +82 -0
- package/lib/commonjs/credential/presentation/04-retrieve-rp-jwks.js.map +1 -0
- package/lib/commonjs/credential/presentation/05-verify-request-object.js +35 -0
- package/lib/commonjs/credential/presentation/05-verify-request-object.js.map +1 -0
- package/lib/commonjs/credential/presentation/06-fetch-presentation-definition.js +63 -0
- package/lib/commonjs/credential/presentation/06-fetch-presentation-definition.js.map +1 -0
- package/lib/commonjs/credential/presentation/07-evaluate-input-descriptor.js +169 -0
- package/lib/commonjs/credential/presentation/07-evaluate-input-descriptor.js.map +1 -0
- package/lib/commonjs/credential/presentation/08-send-authorization-response.js +202 -0
- package/lib/commonjs/credential/presentation/08-send-authorization-response.js.map +1 -0
- package/lib/commonjs/credential/presentation/README.md +43 -4
- package/lib/commonjs/credential/presentation/errors.js +52 -1
- package/lib/commonjs/credential/presentation/errors.js.map +1 -1
- package/lib/commonjs/credential/presentation/index.js +27 -6
- package/lib/commonjs/credential/presentation/index.js.map +1 -1
- package/lib/commonjs/credential/presentation/types.js +69 -4
- package/lib/commonjs/credential/presentation/types.js.map +1 -1
- package/lib/commonjs/entity/trust/types.js +4 -1
- package/lib/commonjs/entity/trust/types.js.map +1 -1
- package/lib/module/credential/presentation/01-start-flow.js +8 -6
- package/lib/module/credential/presentation/01-start-flow.js.map +1 -1
- package/lib/module/credential/presentation/03-get-request-object.js +39 -0
- package/lib/module/credential/presentation/03-get-request-object.js.map +1 -0
- package/lib/module/credential/presentation/04-retrieve-rp-jwks.js +75 -0
- package/lib/module/credential/presentation/04-retrieve-rp-jwks.js.map +1 -0
- package/lib/module/credential/presentation/05-verify-request-object.js +28 -0
- package/lib/module/credential/presentation/05-verify-request-object.js.map +1 -0
- package/lib/module/credential/presentation/06-fetch-presentation-definition.js +56 -0
- package/lib/module/credential/presentation/06-fetch-presentation-definition.js.map +1 -0
- package/lib/module/credential/presentation/07-evaluate-input-descriptor.js +161 -0
- package/lib/module/credential/presentation/07-evaluate-input-descriptor.js.map +1 -0
- package/lib/module/credential/presentation/08-send-authorization-response.js +188 -0
- package/lib/module/credential/presentation/08-send-authorization-response.js.map +1 -0
- package/lib/module/credential/presentation/README.md +43 -4
- package/lib/module/credential/presentation/errors.js +48 -0
- package/lib/module/credential/presentation/errors.js.map +1 -1
- package/lib/module/credential/presentation/index.js +7 -4
- package/lib/module/credential/presentation/index.js.map +1 -1
- package/lib/module/credential/presentation/types.js +67 -3
- package/lib/module/credential/presentation/types.js.map +1 -1
- package/lib/module/entity/trust/types.js +4 -1
- package/lib/module/entity/trust/types.js.map +1 -1
- package/lib/typescript/credential/presentation/01-start-flow.d.ts.map +1 -1
- package/lib/typescript/credential/presentation/{04-get-request-object.d.ts → 03-get-request-object.d.ts} +3 -5
- package/lib/typescript/credential/presentation/03-get-request-object.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/{03-retrieve-jwks.d.ts → 04-retrieve-rp-jwks.d.ts} +6 -5
- package/lib/typescript/credential/presentation/04-retrieve-rp-jwks.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/05-verify-request-object.d.ts +8 -0
- package/lib/typescript/credential/presentation/05-verify-request-object.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/06-fetch-presentation-definition.d.ts +26 -0
- package/lib/typescript/credential/presentation/06-fetch-presentation-definition.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/07-evaluate-input-descriptor.d.ts +27 -0
- package/lib/typescript/credential/presentation/07-evaluate-input-descriptor.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/08-send-authorization-response.d.ts +99 -0
- package/lib/typescript/credential/presentation/08-send-authorization-response.d.ts.map +1 -0
- package/lib/typescript/credential/presentation/errors.d.ts +33 -0
- package/lib/typescript/credential/presentation/errors.d.ts.map +1 -1
- package/lib/typescript/credential/presentation/index.d.ts +8 -5
- package/lib/typescript/credential/presentation/index.d.ts.map +1 -1
- package/lib/typescript/credential/presentation/types.d.ts +612 -9
- package/lib/typescript/credential/presentation/types.d.ts.map +1 -1
- package/lib/typescript/entity/trust/index.d.ts +152 -0
- package/lib/typescript/entity/trust/index.d.ts.map +1 -1
- package/lib/typescript/entity/trust/types.d.ts +2088 -0
- package/lib/typescript/entity/trust/types.d.ts.map +1 -1
- package/package.json +5 -1
- package/src/credential/presentation/01-start-flow.ts +10 -6
- package/src/credential/presentation/{04-get-request-object.ts → 03-get-request-object.ts} +6 -51
- package/src/credential/presentation/04-retrieve-rp-jwks.ts +88 -0
- package/src/credential/presentation/05-verify-request-object.ts +35 -0
- package/src/credential/presentation/06-fetch-presentation-definition.ts +78 -0
- package/src/credential/presentation/07-evaluate-input-descriptor.ts +204 -0
- package/src/credential/presentation/08-send-authorization-response.ts +251 -0
- package/src/credential/presentation/README.md +43 -4
- package/src/credential/presentation/errors.ts +48 -0
- package/src/credential/presentation/index.ts +27 -9
- package/src/credential/presentation/types.ts +59 -3
- package/src/entity/trust/types.ts +3 -0
- package/lib/commonjs/credential/presentation/03-retrieve-jwks.js +0 -68
- package/lib/commonjs/credential/presentation/03-retrieve-jwks.js.map +0 -1
- package/lib/commonjs/credential/presentation/04-get-request-object.js +0 -82
- package/lib/commonjs/credential/presentation/04-get-request-object.js.map +0 -1
- package/lib/commonjs/credential/presentation/05-send-authorization-response.js +0 -139
- package/lib/commonjs/credential/presentation/05-send-authorization-response.js.map +0 -1
- package/lib/module/credential/presentation/03-retrieve-jwks.js +0 -61
- package/lib/module/credential/presentation/03-retrieve-jwks.js.map +0 -1
- package/lib/module/credential/presentation/04-get-request-object.js +0 -74
- package/lib/module/credential/presentation/04-get-request-object.js.map +0 -1
- package/lib/module/credential/presentation/05-send-authorization-response.js +0 -128
- package/lib/module/credential/presentation/05-send-authorization-response.js.map +0 -1
- package/lib/typescript/credential/presentation/03-retrieve-jwks.d.ts.map +0 -1
- package/lib/typescript/credential/presentation/04-get-request-object.d.ts.map +0 -1
- package/lib/typescript/credential/presentation/05-send-authorization-response.d.ts +0 -34
- package/lib/typescript/credential/presentation/05-send-authorization-response.d.ts.map +0 -1
- package/src/credential/presentation/03-retrieve-jwks.ts +0 -73
- package/src/credential/presentation/05-send-authorization-response.ts +0 -168
@@ -2947,6 +2947,224 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2947
2947
|
}[];
|
2948
2948
|
}>;
|
2949
2949
|
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2950
|
+
presentation_definition: z.ZodOptional<z.ZodObject<{
|
2951
|
+
id: z.ZodString;
|
2952
|
+
name: z.ZodOptional<z.ZodString>;
|
2953
|
+
purpose: z.ZodOptional<z.ZodString>;
|
2954
|
+
input_descriptors: z.ZodArray<z.ZodObject<{
|
2955
|
+
id: z.ZodString;
|
2956
|
+
name: z.ZodOptional<z.ZodString>;
|
2957
|
+
purpose: z.ZodOptional<z.ZodString>;
|
2958
|
+
format: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
2959
|
+
constraints: z.ZodObject<{
|
2960
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2961
|
+
path: z.ZodArray<z.ZodString, "many">;
|
2962
|
+
id: z.ZodOptional<z.ZodString>;
|
2963
|
+
purpose: z.ZodOptional<z.ZodString>;
|
2964
|
+
name: z.ZodOptional<z.ZodString>;
|
2965
|
+
filter: z.ZodOptional<z.ZodAny>;
|
2966
|
+
optional: z.ZodOptional<z.ZodBoolean>;
|
2967
|
+
intent_to_retain: z.ZodOptional<z.ZodBoolean>;
|
2968
|
+
}, "strip", z.ZodTypeAny, {
|
2969
|
+
path: string[];
|
2970
|
+
id?: string | undefined;
|
2971
|
+
purpose?: string | undefined;
|
2972
|
+
name?: string | undefined;
|
2973
|
+
filter?: any;
|
2974
|
+
optional?: boolean | undefined;
|
2975
|
+
intent_to_retain?: boolean | undefined;
|
2976
|
+
}, {
|
2977
|
+
path: string[];
|
2978
|
+
id?: string | undefined;
|
2979
|
+
purpose?: string | undefined;
|
2980
|
+
name?: string | undefined;
|
2981
|
+
filter?: any;
|
2982
|
+
optional?: boolean | undefined;
|
2983
|
+
intent_to_retain?: boolean | undefined;
|
2984
|
+
}>, "many">>;
|
2985
|
+
limit_disclosure: z.ZodOptional<z.ZodEnum<["required", "preferred"]>>;
|
2986
|
+
}, "strip", z.ZodTypeAny, {
|
2987
|
+
fields?: {
|
2988
|
+
path: string[];
|
2989
|
+
id?: string | undefined;
|
2990
|
+
purpose?: string | undefined;
|
2991
|
+
name?: string | undefined;
|
2992
|
+
filter?: any;
|
2993
|
+
optional?: boolean | undefined;
|
2994
|
+
intent_to_retain?: boolean | undefined;
|
2995
|
+
}[] | undefined;
|
2996
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
2997
|
+
}, {
|
2998
|
+
fields?: {
|
2999
|
+
path: string[];
|
3000
|
+
id?: string | undefined;
|
3001
|
+
purpose?: string | undefined;
|
3002
|
+
name?: string | undefined;
|
3003
|
+
filter?: any;
|
3004
|
+
optional?: boolean | undefined;
|
3005
|
+
intent_to_retain?: boolean | undefined;
|
3006
|
+
}[] | undefined;
|
3007
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3008
|
+
}>;
|
3009
|
+
group: z.ZodOptional<z.ZodString>;
|
3010
|
+
}, "strip", z.ZodTypeAny, {
|
3011
|
+
id: string;
|
3012
|
+
constraints: {
|
3013
|
+
fields?: {
|
3014
|
+
path: string[];
|
3015
|
+
id?: string | undefined;
|
3016
|
+
purpose?: string | undefined;
|
3017
|
+
name?: string | undefined;
|
3018
|
+
filter?: any;
|
3019
|
+
optional?: boolean | undefined;
|
3020
|
+
intent_to_retain?: boolean | undefined;
|
3021
|
+
}[] | undefined;
|
3022
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3023
|
+
};
|
3024
|
+
name?: string | undefined;
|
3025
|
+
purpose?: string | undefined;
|
3026
|
+
format?: Record<string, any> | undefined;
|
3027
|
+
group?: string | undefined;
|
3028
|
+
}, {
|
3029
|
+
id: string;
|
3030
|
+
constraints: {
|
3031
|
+
fields?: {
|
3032
|
+
path: string[];
|
3033
|
+
id?: string | undefined;
|
3034
|
+
purpose?: string | undefined;
|
3035
|
+
name?: string | undefined;
|
3036
|
+
filter?: any;
|
3037
|
+
optional?: boolean | undefined;
|
3038
|
+
intent_to_retain?: boolean | undefined;
|
3039
|
+
}[] | undefined;
|
3040
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3041
|
+
};
|
3042
|
+
name?: string | undefined;
|
3043
|
+
purpose?: string | undefined;
|
3044
|
+
format?: Record<string, any> | undefined;
|
3045
|
+
group?: string | undefined;
|
3046
|
+
}>, "many">;
|
3047
|
+
submission_requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3048
|
+
name: z.ZodOptional<z.ZodString>;
|
3049
|
+
purpose: z.ZodOptional<z.ZodString>;
|
3050
|
+
rule: z.ZodString;
|
3051
|
+
from: z.ZodOptional<z.ZodString>;
|
3052
|
+
from_nested: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3053
|
+
name: z.ZodOptional<z.ZodString>;
|
3054
|
+
purpose: z.ZodOptional<z.ZodString>;
|
3055
|
+
rule: z.ZodString;
|
3056
|
+
from: z.ZodString;
|
3057
|
+
}, "strip", z.ZodTypeAny, {
|
3058
|
+
rule: string;
|
3059
|
+
from: string;
|
3060
|
+
name?: string | undefined;
|
3061
|
+
purpose?: string | undefined;
|
3062
|
+
}, {
|
3063
|
+
rule: string;
|
3064
|
+
from: string;
|
3065
|
+
name?: string | undefined;
|
3066
|
+
purpose?: string | undefined;
|
3067
|
+
}>, "many">>;
|
3068
|
+
count: z.ZodOptional<z.ZodNumber>;
|
3069
|
+
}, "strip", z.ZodTypeAny, {
|
3070
|
+
rule: string;
|
3071
|
+
name?: string | undefined;
|
3072
|
+
purpose?: string | undefined;
|
3073
|
+
from?: string | undefined;
|
3074
|
+
from_nested?: {
|
3075
|
+
rule: string;
|
3076
|
+
from: string;
|
3077
|
+
name?: string | undefined;
|
3078
|
+
purpose?: string | undefined;
|
3079
|
+
}[] | undefined;
|
3080
|
+
count?: number | undefined;
|
3081
|
+
}, {
|
3082
|
+
rule: string;
|
3083
|
+
name?: string | undefined;
|
3084
|
+
purpose?: string | undefined;
|
3085
|
+
from?: string | undefined;
|
3086
|
+
from_nested?: {
|
3087
|
+
rule: string;
|
3088
|
+
from: string;
|
3089
|
+
name?: string | undefined;
|
3090
|
+
purpose?: string | undefined;
|
3091
|
+
}[] | undefined;
|
3092
|
+
count?: number | undefined;
|
3093
|
+
}>, "many">>;
|
3094
|
+
}, "strip", z.ZodTypeAny, {
|
3095
|
+
id: string;
|
3096
|
+
input_descriptors: {
|
3097
|
+
id: string;
|
3098
|
+
constraints: {
|
3099
|
+
fields?: {
|
3100
|
+
path: string[];
|
3101
|
+
id?: string | undefined;
|
3102
|
+
purpose?: string | undefined;
|
3103
|
+
name?: string | undefined;
|
3104
|
+
filter?: any;
|
3105
|
+
optional?: boolean | undefined;
|
3106
|
+
intent_to_retain?: boolean | undefined;
|
3107
|
+
}[] | undefined;
|
3108
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3109
|
+
};
|
3110
|
+
name?: string | undefined;
|
3111
|
+
purpose?: string | undefined;
|
3112
|
+
format?: Record<string, any> | undefined;
|
3113
|
+
group?: string | undefined;
|
3114
|
+
}[];
|
3115
|
+
name?: string | undefined;
|
3116
|
+
purpose?: string | undefined;
|
3117
|
+
submission_requirements?: {
|
3118
|
+
rule: string;
|
3119
|
+
name?: string | undefined;
|
3120
|
+
purpose?: string | undefined;
|
3121
|
+
from?: string | undefined;
|
3122
|
+
from_nested?: {
|
3123
|
+
rule: string;
|
3124
|
+
from: string;
|
3125
|
+
name?: string | undefined;
|
3126
|
+
purpose?: string | undefined;
|
3127
|
+
}[] | undefined;
|
3128
|
+
count?: number | undefined;
|
3129
|
+
}[] | undefined;
|
3130
|
+
}, {
|
3131
|
+
id: string;
|
3132
|
+
input_descriptors: {
|
3133
|
+
id: string;
|
3134
|
+
constraints: {
|
3135
|
+
fields?: {
|
3136
|
+
path: string[];
|
3137
|
+
id?: string | undefined;
|
3138
|
+
purpose?: string | undefined;
|
3139
|
+
name?: string | undefined;
|
3140
|
+
filter?: any;
|
3141
|
+
optional?: boolean | undefined;
|
3142
|
+
intent_to_retain?: boolean | undefined;
|
3143
|
+
}[] | undefined;
|
3144
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3145
|
+
};
|
3146
|
+
name?: string | undefined;
|
3147
|
+
purpose?: string | undefined;
|
3148
|
+
format?: Record<string, any> | undefined;
|
3149
|
+
group?: string | undefined;
|
3150
|
+
}[];
|
3151
|
+
name?: string | undefined;
|
3152
|
+
purpose?: string | undefined;
|
3153
|
+
submission_requirements?: {
|
3154
|
+
rule: string;
|
3155
|
+
name?: string | undefined;
|
3156
|
+
purpose?: string | undefined;
|
3157
|
+
from?: string | undefined;
|
3158
|
+
from_nested?: {
|
3159
|
+
rule: string;
|
3160
|
+
from: string;
|
3161
|
+
name?: string | undefined;
|
3162
|
+
purpose?: string | undefined;
|
3163
|
+
}[] | undefined;
|
3164
|
+
count?: number | undefined;
|
3165
|
+
}[] | undefined;
|
3166
|
+
}>>;
|
3167
|
+
presentation_definition_uri: z.ZodOptional<z.ZodString>;
|
2950
3168
|
}, "strip", z.ZodTypeAny, {
|
2951
3169
|
jwks: {
|
2952
3170
|
keys: {
|
@@ -2978,6 +3196,44 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2978
3196
|
client_id?: string | undefined;
|
2979
3197
|
client_name?: string | undefined;
|
2980
3198
|
contacts?: string[] | undefined;
|
3199
|
+
presentation_definition?: {
|
3200
|
+
id: string;
|
3201
|
+
input_descriptors: {
|
3202
|
+
id: string;
|
3203
|
+
constraints: {
|
3204
|
+
fields?: {
|
3205
|
+
path: string[];
|
3206
|
+
id?: string | undefined;
|
3207
|
+
purpose?: string | undefined;
|
3208
|
+
name?: string | undefined;
|
3209
|
+
filter?: any;
|
3210
|
+
optional?: boolean | undefined;
|
3211
|
+
intent_to_retain?: boolean | undefined;
|
3212
|
+
}[] | undefined;
|
3213
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3214
|
+
};
|
3215
|
+
name?: string | undefined;
|
3216
|
+
purpose?: string | undefined;
|
3217
|
+
format?: Record<string, any> | undefined;
|
3218
|
+
group?: string | undefined;
|
3219
|
+
}[];
|
3220
|
+
name?: string | undefined;
|
3221
|
+
purpose?: string | undefined;
|
3222
|
+
submission_requirements?: {
|
3223
|
+
rule: string;
|
3224
|
+
name?: string | undefined;
|
3225
|
+
purpose?: string | undefined;
|
3226
|
+
from?: string | undefined;
|
3227
|
+
from_nested?: {
|
3228
|
+
rule: string;
|
3229
|
+
from: string;
|
3230
|
+
name?: string | undefined;
|
3231
|
+
purpose?: string | undefined;
|
3232
|
+
}[] | undefined;
|
3233
|
+
count?: number | undefined;
|
3234
|
+
}[] | undefined;
|
3235
|
+
} | undefined;
|
3236
|
+
presentation_definition_uri?: string | undefined;
|
2981
3237
|
}, {
|
2982
3238
|
jwks: {
|
2983
3239
|
keys: {
|
@@ -3009,6 +3265,44 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3009
3265
|
client_id?: string | undefined;
|
3010
3266
|
client_name?: string | undefined;
|
3011
3267
|
contacts?: string[] | undefined;
|
3268
|
+
presentation_definition?: {
|
3269
|
+
id: string;
|
3270
|
+
input_descriptors: {
|
3271
|
+
id: string;
|
3272
|
+
constraints: {
|
3273
|
+
fields?: {
|
3274
|
+
path: string[];
|
3275
|
+
id?: string | undefined;
|
3276
|
+
purpose?: string | undefined;
|
3277
|
+
name?: string | undefined;
|
3278
|
+
filter?: any;
|
3279
|
+
optional?: boolean | undefined;
|
3280
|
+
intent_to_retain?: boolean | undefined;
|
3281
|
+
}[] | undefined;
|
3282
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3283
|
+
};
|
3284
|
+
name?: string | undefined;
|
3285
|
+
purpose?: string | undefined;
|
3286
|
+
format?: Record<string, any> | undefined;
|
3287
|
+
group?: string | undefined;
|
3288
|
+
}[];
|
3289
|
+
name?: string | undefined;
|
3290
|
+
purpose?: string | undefined;
|
3291
|
+
submission_requirements?: {
|
3292
|
+
rule: string;
|
3293
|
+
name?: string | undefined;
|
3294
|
+
purpose?: string | undefined;
|
3295
|
+
from?: string | undefined;
|
3296
|
+
from_nested?: {
|
3297
|
+
rule: string;
|
3298
|
+
from: string;
|
3299
|
+
name?: string | undefined;
|
3300
|
+
purpose?: string | undefined;
|
3301
|
+
}[] | undefined;
|
3302
|
+
count?: number | undefined;
|
3303
|
+
}[] | undefined;
|
3304
|
+
} | undefined;
|
3305
|
+
presentation_definition_uri?: string | undefined;
|
3012
3306
|
}>>;
|
3013
3307
|
}, "strip", z.ZodTypeAny, {
|
3014
3308
|
openid_credential_issuer: {
|
@@ -3161,6 +3455,44 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3161
3455
|
client_id?: string | undefined;
|
3162
3456
|
client_name?: string | undefined;
|
3163
3457
|
contacts?: string[] | undefined;
|
3458
|
+
presentation_definition?: {
|
3459
|
+
id: string;
|
3460
|
+
input_descriptors: {
|
3461
|
+
id: string;
|
3462
|
+
constraints: {
|
3463
|
+
fields?: {
|
3464
|
+
path: string[];
|
3465
|
+
id?: string | undefined;
|
3466
|
+
purpose?: string | undefined;
|
3467
|
+
name?: string | undefined;
|
3468
|
+
filter?: any;
|
3469
|
+
optional?: boolean | undefined;
|
3470
|
+
intent_to_retain?: boolean | undefined;
|
3471
|
+
}[] | undefined;
|
3472
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3473
|
+
};
|
3474
|
+
name?: string | undefined;
|
3475
|
+
purpose?: string | undefined;
|
3476
|
+
format?: Record<string, any> | undefined;
|
3477
|
+
group?: string | undefined;
|
3478
|
+
}[];
|
3479
|
+
name?: string | undefined;
|
3480
|
+
purpose?: string | undefined;
|
3481
|
+
submission_requirements?: {
|
3482
|
+
rule: string;
|
3483
|
+
name?: string | undefined;
|
3484
|
+
purpose?: string | undefined;
|
3485
|
+
from?: string | undefined;
|
3486
|
+
from_nested?: {
|
3487
|
+
rule: string;
|
3488
|
+
from: string;
|
3489
|
+
name?: string | undefined;
|
3490
|
+
purpose?: string | undefined;
|
3491
|
+
}[] | undefined;
|
3492
|
+
count?: number | undefined;
|
3493
|
+
}[] | undefined;
|
3494
|
+
} | undefined;
|
3495
|
+
presentation_definition_uri?: string | undefined;
|
3164
3496
|
} | undefined;
|
3165
3497
|
}, {
|
3166
3498
|
openid_credential_issuer: {
|
@@ -3313,6 +3645,44 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3313
3645
|
client_id?: string | undefined;
|
3314
3646
|
client_name?: string | undefined;
|
3315
3647
|
contacts?: string[] | undefined;
|
3648
|
+
presentation_definition?: {
|
3649
|
+
id: string;
|
3650
|
+
input_descriptors: {
|
3651
|
+
id: string;
|
3652
|
+
constraints: {
|
3653
|
+
fields?: {
|
3654
|
+
path: string[];
|
3655
|
+
id?: string | undefined;
|
3656
|
+
purpose?: string | undefined;
|
3657
|
+
name?: string | undefined;
|
3658
|
+
filter?: any;
|
3659
|
+
optional?: boolean | undefined;
|
3660
|
+
intent_to_retain?: boolean | undefined;
|
3661
|
+
}[] | undefined;
|
3662
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3663
|
+
};
|
3664
|
+
name?: string | undefined;
|
3665
|
+
purpose?: string | undefined;
|
3666
|
+
format?: Record<string, any> | undefined;
|
3667
|
+
group?: string | undefined;
|
3668
|
+
}[];
|
3669
|
+
name?: string | undefined;
|
3670
|
+
purpose?: string | undefined;
|
3671
|
+
submission_requirements?: {
|
3672
|
+
rule: string;
|
3673
|
+
name?: string | undefined;
|
3674
|
+
purpose?: string | undefined;
|
3675
|
+
from?: string | undefined;
|
3676
|
+
from_nested?: {
|
3677
|
+
rule: string;
|
3678
|
+
from: string;
|
3679
|
+
name?: string | undefined;
|
3680
|
+
purpose?: string | undefined;
|
3681
|
+
}[] | undefined;
|
3682
|
+
count?: number | undefined;
|
3683
|
+
}[] | undefined;
|
3684
|
+
} | undefined;
|
3685
|
+
presentation_definition_uri?: string | undefined;
|
3316
3686
|
} | undefined;
|
3317
3687
|
}>;
|
3318
3688
|
}, "strip", z.ZodTypeAny, {
|
@@ -3493,6 +3863,44 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3493
3863
|
client_id?: string | undefined;
|
3494
3864
|
client_name?: string | undefined;
|
3495
3865
|
contacts?: string[] | undefined;
|
3866
|
+
presentation_definition?: {
|
3867
|
+
id: string;
|
3868
|
+
input_descriptors: {
|
3869
|
+
id: string;
|
3870
|
+
constraints: {
|
3871
|
+
fields?: {
|
3872
|
+
path: string[];
|
3873
|
+
id?: string | undefined;
|
3874
|
+
purpose?: string | undefined;
|
3875
|
+
name?: string | undefined;
|
3876
|
+
filter?: any;
|
3877
|
+
optional?: boolean | undefined;
|
3878
|
+
intent_to_retain?: boolean | undefined;
|
3879
|
+
}[] | undefined;
|
3880
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
3881
|
+
};
|
3882
|
+
name?: string | undefined;
|
3883
|
+
purpose?: string | undefined;
|
3884
|
+
format?: Record<string, any> | undefined;
|
3885
|
+
group?: string | undefined;
|
3886
|
+
}[];
|
3887
|
+
name?: string | undefined;
|
3888
|
+
purpose?: string | undefined;
|
3889
|
+
submission_requirements?: {
|
3890
|
+
rule: string;
|
3891
|
+
name?: string | undefined;
|
3892
|
+
purpose?: string | undefined;
|
3893
|
+
from?: string | undefined;
|
3894
|
+
from_nested?: {
|
3895
|
+
rule: string;
|
3896
|
+
from: string;
|
3897
|
+
name?: string | undefined;
|
3898
|
+
purpose?: string | undefined;
|
3899
|
+
}[] | undefined;
|
3900
|
+
count?: number | undefined;
|
3901
|
+
}[] | undefined;
|
3902
|
+
} | undefined;
|
3903
|
+
presentation_definition_uri?: string | undefined;
|
3496
3904
|
} | undefined;
|
3497
3905
|
};
|
3498
3906
|
}, {
|
@@ -3673,6 +4081,44 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3673
4081
|
client_id?: string | undefined;
|
3674
4082
|
client_name?: string | undefined;
|
3675
4083
|
contacts?: string[] | undefined;
|
4084
|
+
presentation_definition?: {
|
4085
|
+
id: string;
|
4086
|
+
input_descriptors: {
|
4087
|
+
id: string;
|
4088
|
+
constraints: {
|
4089
|
+
fields?: {
|
4090
|
+
path: string[];
|
4091
|
+
id?: string | undefined;
|
4092
|
+
purpose?: string | undefined;
|
4093
|
+
name?: string | undefined;
|
4094
|
+
filter?: any;
|
4095
|
+
optional?: boolean | undefined;
|
4096
|
+
intent_to_retain?: boolean | undefined;
|
4097
|
+
}[] | undefined;
|
4098
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
4099
|
+
};
|
4100
|
+
name?: string | undefined;
|
4101
|
+
purpose?: string | undefined;
|
4102
|
+
format?: Record<string, any> | undefined;
|
4103
|
+
group?: string | undefined;
|
4104
|
+
}[];
|
4105
|
+
name?: string | undefined;
|
4106
|
+
purpose?: string | undefined;
|
4107
|
+
submission_requirements?: {
|
4108
|
+
rule: string;
|
4109
|
+
name?: string | undefined;
|
4110
|
+
purpose?: string | undefined;
|
4111
|
+
from?: string | undefined;
|
4112
|
+
from_nested?: {
|
4113
|
+
rule: string;
|
4114
|
+
from: string;
|
4115
|
+
name?: string | undefined;
|
4116
|
+
purpose?: string | undefined;
|
4117
|
+
}[] | undefined;
|
4118
|
+
count?: number | undefined;
|
4119
|
+
}[] | undefined;
|
4120
|
+
} | undefined;
|
4121
|
+
presentation_definition_uri?: string | undefined;
|
3676
4122
|
} | undefined;
|
3677
4123
|
};
|
3678
4124
|
}>;
|
@@ -3855,6 +4301,44 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3855
4301
|
client_id?: string | undefined;
|
3856
4302
|
client_name?: string | undefined;
|
3857
4303
|
contacts?: string[] | undefined;
|
4304
|
+
presentation_definition?: {
|
4305
|
+
id: string;
|
4306
|
+
input_descriptors: {
|
4307
|
+
id: string;
|
4308
|
+
constraints: {
|
4309
|
+
fields?: {
|
4310
|
+
path: string[];
|
4311
|
+
id?: string | undefined;
|
4312
|
+
purpose?: string | undefined;
|
4313
|
+
name?: string | undefined;
|
4314
|
+
filter?: any;
|
4315
|
+
optional?: boolean | undefined;
|
4316
|
+
intent_to_retain?: boolean | undefined;
|
4317
|
+
}[] | undefined;
|
4318
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
4319
|
+
};
|
4320
|
+
name?: string | undefined;
|
4321
|
+
purpose?: string | undefined;
|
4322
|
+
format?: Record<string, any> | undefined;
|
4323
|
+
group?: string | undefined;
|
4324
|
+
}[];
|
4325
|
+
name?: string | undefined;
|
4326
|
+
purpose?: string | undefined;
|
4327
|
+
submission_requirements?: {
|
4328
|
+
rule: string;
|
4329
|
+
name?: string | undefined;
|
4330
|
+
purpose?: string | undefined;
|
4331
|
+
from?: string | undefined;
|
4332
|
+
from_nested?: {
|
4333
|
+
rule: string;
|
4334
|
+
from: string;
|
4335
|
+
name?: string | undefined;
|
4336
|
+
purpose?: string | undefined;
|
4337
|
+
}[] | undefined;
|
4338
|
+
count?: number | undefined;
|
4339
|
+
}[] | undefined;
|
4340
|
+
} | undefined;
|
4341
|
+
presentation_definition_uri?: string | undefined;
|
3858
4342
|
} | undefined;
|
3859
4343
|
};
|
3860
4344
|
};
|
@@ -4037,6 +4521,44 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
4037
4521
|
client_id?: string | undefined;
|
4038
4522
|
client_name?: string | undefined;
|
4039
4523
|
contacts?: string[] | undefined;
|
4524
|
+
presentation_definition?: {
|
4525
|
+
id: string;
|
4526
|
+
input_descriptors: {
|
4527
|
+
id: string;
|
4528
|
+
constraints: {
|
4529
|
+
fields?: {
|
4530
|
+
path: string[];
|
4531
|
+
id?: string | undefined;
|
4532
|
+
purpose?: string | undefined;
|
4533
|
+
name?: string | undefined;
|
4534
|
+
filter?: any;
|
4535
|
+
optional?: boolean | undefined;
|
4536
|
+
intent_to_retain?: boolean | undefined;
|
4537
|
+
}[] | undefined;
|
4538
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
4539
|
+
};
|
4540
|
+
name?: string | undefined;
|
4541
|
+
purpose?: string | undefined;
|
4542
|
+
format?: Record<string, any> | undefined;
|
4543
|
+
group?: string | undefined;
|
4544
|
+
}[];
|
4545
|
+
name?: string | undefined;
|
4546
|
+
purpose?: string | undefined;
|
4547
|
+
submission_requirements?: {
|
4548
|
+
rule: string;
|
4549
|
+
name?: string | undefined;
|
4550
|
+
purpose?: string | undefined;
|
4551
|
+
from?: string | undefined;
|
4552
|
+
from_nested?: {
|
4553
|
+
rule: string;
|
4554
|
+
from: string;
|
4555
|
+
name?: string | undefined;
|
4556
|
+
purpose?: string | undefined;
|
4557
|
+
}[] | undefined;
|
4558
|
+
count?: number | undefined;
|
4559
|
+
}[] | undefined;
|
4560
|
+
} | undefined;
|
4561
|
+
presentation_definition_uri?: string | undefined;
|
4040
4562
|
} | undefined;
|
4041
4563
|
};
|
4042
4564
|
};
|
@@ -5007,6 +5529,224 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5007
5529
|
}[];
|
5008
5530
|
}>;
|
5009
5531
|
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5532
|
+
presentation_definition: z.ZodOptional<z.ZodObject<{
|
5533
|
+
id: z.ZodString;
|
5534
|
+
name: z.ZodOptional<z.ZodString>;
|
5535
|
+
purpose: z.ZodOptional<z.ZodString>;
|
5536
|
+
input_descriptors: z.ZodArray<z.ZodObject<{
|
5537
|
+
id: z.ZodString;
|
5538
|
+
name: z.ZodOptional<z.ZodString>;
|
5539
|
+
purpose: z.ZodOptional<z.ZodString>;
|
5540
|
+
format: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
5541
|
+
constraints: z.ZodObject<{
|
5542
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5543
|
+
path: z.ZodArray<z.ZodString, "many">;
|
5544
|
+
id: z.ZodOptional<z.ZodString>;
|
5545
|
+
purpose: z.ZodOptional<z.ZodString>;
|
5546
|
+
name: z.ZodOptional<z.ZodString>;
|
5547
|
+
filter: z.ZodOptional<z.ZodAny>;
|
5548
|
+
optional: z.ZodOptional<z.ZodBoolean>;
|
5549
|
+
intent_to_retain: z.ZodOptional<z.ZodBoolean>;
|
5550
|
+
}, "strip", z.ZodTypeAny, {
|
5551
|
+
path: string[];
|
5552
|
+
id?: string | undefined;
|
5553
|
+
purpose?: string | undefined;
|
5554
|
+
name?: string | undefined;
|
5555
|
+
filter?: any;
|
5556
|
+
optional?: boolean | undefined;
|
5557
|
+
intent_to_retain?: boolean | undefined;
|
5558
|
+
}, {
|
5559
|
+
path: string[];
|
5560
|
+
id?: string | undefined;
|
5561
|
+
purpose?: string | undefined;
|
5562
|
+
name?: string | undefined;
|
5563
|
+
filter?: any;
|
5564
|
+
optional?: boolean | undefined;
|
5565
|
+
intent_to_retain?: boolean | undefined;
|
5566
|
+
}>, "many">>;
|
5567
|
+
limit_disclosure: z.ZodOptional<z.ZodEnum<["required", "preferred"]>>;
|
5568
|
+
}, "strip", z.ZodTypeAny, {
|
5569
|
+
fields?: {
|
5570
|
+
path: string[];
|
5571
|
+
id?: string | undefined;
|
5572
|
+
purpose?: string | undefined;
|
5573
|
+
name?: string | undefined;
|
5574
|
+
filter?: any;
|
5575
|
+
optional?: boolean | undefined;
|
5576
|
+
intent_to_retain?: boolean | undefined;
|
5577
|
+
}[] | undefined;
|
5578
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5579
|
+
}, {
|
5580
|
+
fields?: {
|
5581
|
+
path: string[];
|
5582
|
+
id?: string | undefined;
|
5583
|
+
purpose?: string | undefined;
|
5584
|
+
name?: string | undefined;
|
5585
|
+
filter?: any;
|
5586
|
+
optional?: boolean | undefined;
|
5587
|
+
intent_to_retain?: boolean | undefined;
|
5588
|
+
}[] | undefined;
|
5589
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5590
|
+
}>;
|
5591
|
+
group: z.ZodOptional<z.ZodString>;
|
5592
|
+
}, "strip", z.ZodTypeAny, {
|
5593
|
+
id: string;
|
5594
|
+
constraints: {
|
5595
|
+
fields?: {
|
5596
|
+
path: string[];
|
5597
|
+
id?: string | undefined;
|
5598
|
+
purpose?: string | undefined;
|
5599
|
+
name?: string | undefined;
|
5600
|
+
filter?: any;
|
5601
|
+
optional?: boolean | undefined;
|
5602
|
+
intent_to_retain?: boolean | undefined;
|
5603
|
+
}[] | undefined;
|
5604
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5605
|
+
};
|
5606
|
+
name?: string | undefined;
|
5607
|
+
purpose?: string | undefined;
|
5608
|
+
format?: Record<string, any> | undefined;
|
5609
|
+
group?: string | undefined;
|
5610
|
+
}, {
|
5611
|
+
id: string;
|
5612
|
+
constraints: {
|
5613
|
+
fields?: {
|
5614
|
+
path: string[];
|
5615
|
+
id?: string | undefined;
|
5616
|
+
purpose?: string | undefined;
|
5617
|
+
name?: string | undefined;
|
5618
|
+
filter?: any;
|
5619
|
+
optional?: boolean | undefined;
|
5620
|
+
intent_to_retain?: boolean | undefined;
|
5621
|
+
}[] | undefined;
|
5622
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5623
|
+
};
|
5624
|
+
name?: string | undefined;
|
5625
|
+
purpose?: string | undefined;
|
5626
|
+
format?: Record<string, any> | undefined;
|
5627
|
+
group?: string | undefined;
|
5628
|
+
}>, "many">;
|
5629
|
+
submission_requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5630
|
+
name: z.ZodOptional<z.ZodString>;
|
5631
|
+
purpose: z.ZodOptional<z.ZodString>;
|
5632
|
+
rule: z.ZodString;
|
5633
|
+
from: z.ZodOptional<z.ZodString>;
|
5634
|
+
from_nested: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5635
|
+
name: z.ZodOptional<z.ZodString>;
|
5636
|
+
purpose: z.ZodOptional<z.ZodString>;
|
5637
|
+
rule: z.ZodString;
|
5638
|
+
from: z.ZodString;
|
5639
|
+
}, "strip", z.ZodTypeAny, {
|
5640
|
+
rule: string;
|
5641
|
+
from: string;
|
5642
|
+
name?: string | undefined;
|
5643
|
+
purpose?: string | undefined;
|
5644
|
+
}, {
|
5645
|
+
rule: string;
|
5646
|
+
from: string;
|
5647
|
+
name?: string | undefined;
|
5648
|
+
purpose?: string | undefined;
|
5649
|
+
}>, "many">>;
|
5650
|
+
count: z.ZodOptional<z.ZodNumber>;
|
5651
|
+
}, "strip", z.ZodTypeAny, {
|
5652
|
+
rule: string;
|
5653
|
+
name?: string | undefined;
|
5654
|
+
purpose?: string | undefined;
|
5655
|
+
from?: string | undefined;
|
5656
|
+
from_nested?: {
|
5657
|
+
rule: string;
|
5658
|
+
from: string;
|
5659
|
+
name?: string | undefined;
|
5660
|
+
purpose?: string | undefined;
|
5661
|
+
}[] | undefined;
|
5662
|
+
count?: number | undefined;
|
5663
|
+
}, {
|
5664
|
+
rule: string;
|
5665
|
+
name?: string | undefined;
|
5666
|
+
purpose?: string | undefined;
|
5667
|
+
from?: string | undefined;
|
5668
|
+
from_nested?: {
|
5669
|
+
rule: string;
|
5670
|
+
from: string;
|
5671
|
+
name?: string | undefined;
|
5672
|
+
purpose?: string | undefined;
|
5673
|
+
}[] | undefined;
|
5674
|
+
count?: number | undefined;
|
5675
|
+
}>, "many">>;
|
5676
|
+
}, "strip", z.ZodTypeAny, {
|
5677
|
+
id: string;
|
5678
|
+
input_descriptors: {
|
5679
|
+
id: string;
|
5680
|
+
constraints: {
|
5681
|
+
fields?: {
|
5682
|
+
path: string[];
|
5683
|
+
id?: string | undefined;
|
5684
|
+
purpose?: string | undefined;
|
5685
|
+
name?: string | undefined;
|
5686
|
+
filter?: any;
|
5687
|
+
optional?: boolean | undefined;
|
5688
|
+
intent_to_retain?: boolean | undefined;
|
5689
|
+
}[] | undefined;
|
5690
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5691
|
+
};
|
5692
|
+
name?: string | undefined;
|
5693
|
+
purpose?: string | undefined;
|
5694
|
+
format?: Record<string, any> | undefined;
|
5695
|
+
group?: string | undefined;
|
5696
|
+
}[];
|
5697
|
+
name?: string | undefined;
|
5698
|
+
purpose?: string | undefined;
|
5699
|
+
submission_requirements?: {
|
5700
|
+
rule: string;
|
5701
|
+
name?: string | undefined;
|
5702
|
+
purpose?: string | undefined;
|
5703
|
+
from?: string | undefined;
|
5704
|
+
from_nested?: {
|
5705
|
+
rule: string;
|
5706
|
+
from: string;
|
5707
|
+
name?: string | undefined;
|
5708
|
+
purpose?: string | undefined;
|
5709
|
+
}[] | undefined;
|
5710
|
+
count?: number | undefined;
|
5711
|
+
}[] | undefined;
|
5712
|
+
}, {
|
5713
|
+
id: string;
|
5714
|
+
input_descriptors: {
|
5715
|
+
id: string;
|
5716
|
+
constraints: {
|
5717
|
+
fields?: {
|
5718
|
+
path: string[];
|
5719
|
+
id?: string | undefined;
|
5720
|
+
purpose?: string | undefined;
|
5721
|
+
name?: string | undefined;
|
5722
|
+
filter?: any;
|
5723
|
+
optional?: boolean | undefined;
|
5724
|
+
intent_to_retain?: boolean | undefined;
|
5725
|
+
}[] | undefined;
|
5726
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5727
|
+
};
|
5728
|
+
name?: string | undefined;
|
5729
|
+
purpose?: string | undefined;
|
5730
|
+
format?: Record<string, any> | undefined;
|
5731
|
+
group?: string | undefined;
|
5732
|
+
}[];
|
5733
|
+
name?: string | undefined;
|
5734
|
+
purpose?: string | undefined;
|
5735
|
+
submission_requirements?: {
|
5736
|
+
rule: string;
|
5737
|
+
name?: string | undefined;
|
5738
|
+
purpose?: string | undefined;
|
5739
|
+
from?: string | undefined;
|
5740
|
+
from_nested?: {
|
5741
|
+
rule: string;
|
5742
|
+
from: string;
|
5743
|
+
name?: string | undefined;
|
5744
|
+
purpose?: string | undefined;
|
5745
|
+
}[] | undefined;
|
5746
|
+
count?: number | undefined;
|
5747
|
+
}[] | undefined;
|
5748
|
+
}>>;
|
5749
|
+
presentation_definition_uri: z.ZodOptional<z.ZodString>;
|
5010
5750
|
}, "strip", z.ZodTypeAny, {
|
5011
5751
|
jwks: {
|
5012
5752
|
keys: {
|
@@ -5038,6 +5778,44 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5038
5778
|
client_id?: string | undefined;
|
5039
5779
|
client_name?: string | undefined;
|
5040
5780
|
contacts?: string[] | undefined;
|
5781
|
+
presentation_definition?: {
|
5782
|
+
id: string;
|
5783
|
+
input_descriptors: {
|
5784
|
+
id: string;
|
5785
|
+
constraints: {
|
5786
|
+
fields?: {
|
5787
|
+
path: string[];
|
5788
|
+
id?: string | undefined;
|
5789
|
+
purpose?: string | undefined;
|
5790
|
+
name?: string | undefined;
|
5791
|
+
filter?: any;
|
5792
|
+
optional?: boolean | undefined;
|
5793
|
+
intent_to_retain?: boolean | undefined;
|
5794
|
+
}[] | undefined;
|
5795
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5796
|
+
};
|
5797
|
+
name?: string | undefined;
|
5798
|
+
purpose?: string | undefined;
|
5799
|
+
format?: Record<string, any> | undefined;
|
5800
|
+
group?: string | undefined;
|
5801
|
+
}[];
|
5802
|
+
name?: string | undefined;
|
5803
|
+
purpose?: string | undefined;
|
5804
|
+
submission_requirements?: {
|
5805
|
+
rule: string;
|
5806
|
+
name?: string | undefined;
|
5807
|
+
purpose?: string | undefined;
|
5808
|
+
from?: string | undefined;
|
5809
|
+
from_nested?: {
|
5810
|
+
rule: string;
|
5811
|
+
from: string;
|
5812
|
+
name?: string | undefined;
|
5813
|
+
purpose?: string | undefined;
|
5814
|
+
}[] | undefined;
|
5815
|
+
count?: number | undefined;
|
5816
|
+
}[] | undefined;
|
5817
|
+
} | undefined;
|
5818
|
+
presentation_definition_uri?: string | undefined;
|
5041
5819
|
}, {
|
5042
5820
|
jwks: {
|
5043
5821
|
keys: {
|
@@ -5069,6 +5847,44 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5069
5847
|
client_id?: string | undefined;
|
5070
5848
|
client_name?: string | undefined;
|
5071
5849
|
contacts?: string[] | undefined;
|
5850
|
+
presentation_definition?: {
|
5851
|
+
id: string;
|
5852
|
+
input_descriptors: {
|
5853
|
+
id: string;
|
5854
|
+
constraints: {
|
5855
|
+
fields?: {
|
5856
|
+
path: string[];
|
5857
|
+
id?: string | undefined;
|
5858
|
+
purpose?: string | undefined;
|
5859
|
+
name?: string | undefined;
|
5860
|
+
filter?: any;
|
5861
|
+
optional?: boolean | undefined;
|
5862
|
+
intent_to_retain?: boolean | undefined;
|
5863
|
+
}[] | undefined;
|
5864
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5865
|
+
};
|
5866
|
+
name?: string | undefined;
|
5867
|
+
purpose?: string | undefined;
|
5868
|
+
format?: Record<string, any> | undefined;
|
5869
|
+
group?: string | undefined;
|
5870
|
+
}[];
|
5871
|
+
name?: string | undefined;
|
5872
|
+
purpose?: string | undefined;
|
5873
|
+
submission_requirements?: {
|
5874
|
+
rule: string;
|
5875
|
+
name?: string | undefined;
|
5876
|
+
purpose?: string | undefined;
|
5877
|
+
from?: string | undefined;
|
5878
|
+
from_nested?: {
|
5879
|
+
rule: string;
|
5880
|
+
from: string;
|
5881
|
+
name?: string | undefined;
|
5882
|
+
purpose?: string | undefined;
|
5883
|
+
}[] | undefined;
|
5884
|
+
count?: number | undefined;
|
5885
|
+
}[] | undefined;
|
5886
|
+
} | undefined;
|
5887
|
+
presentation_definition_uri?: string | undefined;
|
5072
5888
|
}>;
|
5073
5889
|
}, "strip", z.ZodTypeAny, {
|
5074
5890
|
wallet_relying_party: {
|
@@ -5102,6 +5918,44 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5102
5918
|
client_id?: string | undefined;
|
5103
5919
|
client_name?: string | undefined;
|
5104
5920
|
contacts?: string[] | undefined;
|
5921
|
+
presentation_definition?: {
|
5922
|
+
id: string;
|
5923
|
+
input_descriptors: {
|
5924
|
+
id: string;
|
5925
|
+
constraints: {
|
5926
|
+
fields?: {
|
5927
|
+
path: string[];
|
5928
|
+
id?: string | undefined;
|
5929
|
+
purpose?: string | undefined;
|
5930
|
+
name?: string | undefined;
|
5931
|
+
filter?: any;
|
5932
|
+
optional?: boolean | undefined;
|
5933
|
+
intent_to_retain?: boolean | undefined;
|
5934
|
+
}[] | undefined;
|
5935
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
5936
|
+
};
|
5937
|
+
name?: string | undefined;
|
5938
|
+
purpose?: string | undefined;
|
5939
|
+
format?: Record<string, any> | undefined;
|
5940
|
+
group?: string | undefined;
|
5941
|
+
}[];
|
5942
|
+
name?: string | undefined;
|
5943
|
+
purpose?: string | undefined;
|
5944
|
+
submission_requirements?: {
|
5945
|
+
rule: string;
|
5946
|
+
name?: string | undefined;
|
5947
|
+
purpose?: string | undefined;
|
5948
|
+
from?: string | undefined;
|
5949
|
+
from_nested?: {
|
5950
|
+
rule: string;
|
5951
|
+
from: string;
|
5952
|
+
name?: string | undefined;
|
5953
|
+
purpose?: string | undefined;
|
5954
|
+
}[] | undefined;
|
5955
|
+
count?: number | undefined;
|
5956
|
+
}[] | undefined;
|
5957
|
+
} | undefined;
|
5958
|
+
presentation_definition_uri?: string | undefined;
|
5105
5959
|
};
|
5106
5960
|
}, {
|
5107
5961
|
wallet_relying_party: {
|
@@ -5135,6 +5989,44 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5135
5989
|
client_id?: string | undefined;
|
5136
5990
|
client_name?: string | undefined;
|
5137
5991
|
contacts?: string[] | undefined;
|
5992
|
+
presentation_definition?: {
|
5993
|
+
id: string;
|
5994
|
+
input_descriptors: {
|
5995
|
+
id: string;
|
5996
|
+
constraints: {
|
5997
|
+
fields?: {
|
5998
|
+
path: string[];
|
5999
|
+
id?: string | undefined;
|
6000
|
+
purpose?: string | undefined;
|
6001
|
+
name?: string | undefined;
|
6002
|
+
filter?: any;
|
6003
|
+
optional?: boolean | undefined;
|
6004
|
+
intent_to_retain?: boolean | undefined;
|
6005
|
+
}[] | undefined;
|
6006
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
6007
|
+
};
|
6008
|
+
name?: string | undefined;
|
6009
|
+
purpose?: string | undefined;
|
6010
|
+
format?: Record<string, any> | undefined;
|
6011
|
+
group?: string | undefined;
|
6012
|
+
}[];
|
6013
|
+
name?: string | undefined;
|
6014
|
+
purpose?: string | undefined;
|
6015
|
+
submission_requirements?: {
|
6016
|
+
rule: string;
|
6017
|
+
name?: string | undefined;
|
6018
|
+
purpose?: string | undefined;
|
6019
|
+
from?: string | undefined;
|
6020
|
+
from_nested?: {
|
6021
|
+
rule: string;
|
6022
|
+
from: string;
|
6023
|
+
name?: string | undefined;
|
6024
|
+
purpose?: string | undefined;
|
6025
|
+
}[] | undefined;
|
6026
|
+
count?: number | undefined;
|
6027
|
+
}[] | undefined;
|
6028
|
+
} | undefined;
|
6029
|
+
presentation_definition_uri?: string | undefined;
|
5138
6030
|
};
|
5139
6031
|
}>;
|
5140
6032
|
}, "strip", z.ZodTypeAny, {
|
@@ -5170,6 +6062,44 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5170
6062
|
client_id?: string | undefined;
|
5171
6063
|
client_name?: string | undefined;
|
5172
6064
|
contacts?: string[] | undefined;
|
6065
|
+
presentation_definition?: {
|
6066
|
+
id: string;
|
6067
|
+
input_descriptors: {
|
6068
|
+
id: string;
|
6069
|
+
constraints: {
|
6070
|
+
fields?: {
|
6071
|
+
path: string[];
|
6072
|
+
id?: string | undefined;
|
6073
|
+
purpose?: string | undefined;
|
6074
|
+
name?: string | undefined;
|
6075
|
+
filter?: any;
|
6076
|
+
optional?: boolean | undefined;
|
6077
|
+
intent_to_retain?: boolean | undefined;
|
6078
|
+
}[] | undefined;
|
6079
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
6080
|
+
};
|
6081
|
+
name?: string | undefined;
|
6082
|
+
purpose?: string | undefined;
|
6083
|
+
format?: Record<string, any> | undefined;
|
6084
|
+
group?: string | undefined;
|
6085
|
+
}[];
|
6086
|
+
name?: string | undefined;
|
6087
|
+
purpose?: string | undefined;
|
6088
|
+
submission_requirements?: {
|
6089
|
+
rule: string;
|
6090
|
+
name?: string | undefined;
|
6091
|
+
purpose?: string | undefined;
|
6092
|
+
from?: string | undefined;
|
6093
|
+
from_nested?: {
|
6094
|
+
rule: string;
|
6095
|
+
from: string;
|
6096
|
+
name?: string | undefined;
|
6097
|
+
purpose?: string | undefined;
|
6098
|
+
}[] | undefined;
|
6099
|
+
count?: number | undefined;
|
6100
|
+
}[] | undefined;
|
6101
|
+
} | undefined;
|
6102
|
+
presentation_definition_uri?: string | undefined;
|
5173
6103
|
};
|
5174
6104
|
};
|
5175
6105
|
}, {
|
@@ -5205,6 +6135,44 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5205
6135
|
client_id?: string | undefined;
|
5206
6136
|
client_name?: string | undefined;
|
5207
6137
|
contacts?: string[] | undefined;
|
6138
|
+
presentation_definition?: {
|
6139
|
+
id: string;
|
6140
|
+
input_descriptors: {
|
6141
|
+
id: string;
|
6142
|
+
constraints: {
|
6143
|
+
fields?: {
|
6144
|
+
path: string[];
|
6145
|
+
id?: string | undefined;
|
6146
|
+
purpose?: string | undefined;
|
6147
|
+
name?: string | undefined;
|
6148
|
+
filter?: any;
|
6149
|
+
optional?: boolean | undefined;
|
6150
|
+
intent_to_retain?: boolean | undefined;
|
6151
|
+
}[] | undefined;
|
6152
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
6153
|
+
};
|
6154
|
+
name?: string | undefined;
|
6155
|
+
purpose?: string | undefined;
|
6156
|
+
format?: Record<string, any> | undefined;
|
6157
|
+
group?: string | undefined;
|
6158
|
+
}[];
|
6159
|
+
name?: string | undefined;
|
6160
|
+
purpose?: string | undefined;
|
6161
|
+
submission_requirements?: {
|
6162
|
+
rule: string;
|
6163
|
+
name?: string | undefined;
|
6164
|
+
purpose?: string | undefined;
|
6165
|
+
from?: string | undefined;
|
6166
|
+
from_nested?: {
|
6167
|
+
rule: string;
|
6168
|
+
from: string;
|
6169
|
+
name?: string | undefined;
|
6170
|
+
purpose?: string | undefined;
|
6171
|
+
}[] | undefined;
|
6172
|
+
count?: number | undefined;
|
6173
|
+
}[] | undefined;
|
6174
|
+
} | undefined;
|
6175
|
+
presentation_definition_uri?: string | undefined;
|
5208
6176
|
};
|
5209
6177
|
};
|
5210
6178
|
}>;
|
@@ -5242,6 +6210,44 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5242
6210
|
client_id?: string | undefined;
|
5243
6211
|
client_name?: string | undefined;
|
5244
6212
|
contacts?: string[] | undefined;
|
6213
|
+
presentation_definition?: {
|
6214
|
+
id: string;
|
6215
|
+
input_descriptors: {
|
6216
|
+
id: string;
|
6217
|
+
constraints: {
|
6218
|
+
fields?: {
|
6219
|
+
path: string[];
|
6220
|
+
id?: string | undefined;
|
6221
|
+
purpose?: string | undefined;
|
6222
|
+
name?: string | undefined;
|
6223
|
+
filter?: any;
|
6224
|
+
optional?: boolean | undefined;
|
6225
|
+
intent_to_retain?: boolean | undefined;
|
6226
|
+
}[] | undefined;
|
6227
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
6228
|
+
};
|
6229
|
+
name?: string | undefined;
|
6230
|
+
purpose?: string | undefined;
|
6231
|
+
format?: Record<string, any> | undefined;
|
6232
|
+
group?: string | undefined;
|
6233
|
+
}[];
|
6234
|
+
name?: string | undefined;
|
6235
|
+
purpose?: string | undefined;
|
6236
|
+
submission_requirements?: {
|
6237
|
+
rule: string;
|
6238
|
+
name?: string | undefined;
|
6239
|
+
purpose?: string | undefined;
|
6240
|
+
from?: string | undefined;
|
6241
|
+
from_nested?: {
|
6242
|
+
rule: string;
|
6243
|
+
from: string;
|
6244
|
+
name?: string | undefined;
|
6245
|
+
purpose?: string | undefined;
|
6246
|
+
}[] | undefined;
|
6247
|
+
count?: number | undefined;
|
6248
|
+
}[] | undefined;
|
6249
|
+
} | undefined;
|
6250
|
+
presentation_definition_uri?: string | undefined;
|
5245
6251
|
};
|
5246
6252
|
};
|
5247
6253
|
};
|
@@ -5279,6 +6285,44 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
5279
6285
|
client_id?: string | undefined;
|
5280
6286
|
client_name?: string | undefined;
|
5281
6287
|
contacts?: string[] | undefined;
|
6288
|
+
presentation_definition?: {
|
6289
|
+
id: string;
|
6290
|
+
input_descriptors: {
|
6291
|
+
id: string;
|
6292
|
+
constraints: {
|
6293
|
+
fields?: {
|
6294
|
+
path: string[];
|
6295
|
+
id?: string | undefined;
|
6296
|
+
purpose?: string | undefined;
|
6297
|
+
name?: string | undefined;
|
6298
|
+
filter?: any;
|
6299
|
+
optional?: boolean | undefined;
|
6300
|
+
intent_to_retain?: boolean | undefined;
|
6301
|
+
}[] | undefined;
|
6302
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
6303
|
+
};
|
6304
|
+
name?: string | undefined;
|
6305
|
+
purpose?: string | undefined;
|
6306
|
+
format?: Record<string, any> | undefined;
|
6307
|
+
group?: string | undefined;
|
6308
|
+
}[];
|
6309
|
+
name?: string | undefined;
|
6310
|
+
purpose?: string | undefined;
|
6311
|
+
submission_requirements?: {
|
6312
|
+
rule: string;
|
6313
|
+
name?: string | undefined;
|
6314
|
+
purpose?: string | undefined;
|
6315
|
+
from?: string | undefined;
|
6316
|
+
from_nested?: {
|
6317
|
+
rule: string;
|
6318
|
+
from: string;
|
6319
|
+
name?: string | undefined;
|
6320
|
+
purpose?: string | undefined;
|
6321
|
+
}[] | undefined;
|
6322
|
+
count?: number | undefined;
|
6323
|
+
}[] | undefined;
|
6324
|
+
} | undefined;
|
6325
|
+
presentation_definition_uri?: string | undefined;
|
5282
6326
|
};
|
5283
6327
|
};
|
5284
6328
|
};
|
@@ -9969,6 +11013,224 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9969
11013
|
}[];
|
9970
11014
|
}>;
|
9971
11015
|
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
11016
|
+
presentation_definition: z.ZodOptional<z.ZodObject<{
|
11017
|
+
id: z.ZodString;
|
11018
|
+
name: z.ZodOptional<z.ZodString>;
|
11019
|
+
purpose: z.ZodOptional<z.ZodString>;
|
11020
|
+
input_descriptors: z.ZodArray<z.ZodObject<{
|
11021
|
+
id: z.ZodString;
|
11022
|
+
name: z.ZodOptional<z.ZodString>;
|
11023
|
+
purpose: z.ZodOptional<z.ZodString>;
|
11024
|
+
format: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
11025
|
+
constraints: z.ZodObject<{
|
11026
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11027
|
+
path: z.ZodArray<z.ZodString, "many">;
|
11028
|
+
id: z.ZodOptional<z.ZodString>;
|
11029
|
+
purpose: z.ZodOptional<z.ZodString>;
|
11030
|
+
name: z.ZodOptional<z.ZodString>;
|
11031
|
+
filter: z.ZodOptional<z.ZodAny>;
|
11032
|
+
optional: z.ZodOptional<z.ZodBoolean>;
|
11033
|
+
intent_to_retain: z.ZodOptional<z.ZodBoolean>;
|
11034
|
+
}, "strip", z.ZodTypeAny, {
|
11035
|
+
path: string[];
|
11036
|
+
id?: string | undefined;
|
11037
|
+
purpose?: string | undefined;
|
11038
|
+
name?: string | undefined;
|
11039
|
+
filter?: any;
|
11040
|
+
optional?: boolean | undefined;
|
11041
|
+
intent_to_retain?: boolean | undefined;
|
11042
|
+
}, {
|
11043
|
+
path: string[];
|
11044
|
+
id?: string | undefined;
|
11045
|
+
purpose?: string | undefined;
|
11046
|
+
name?: string | undefined;
|
11047
|
+
filter?: any;
|
11048
|
+
optional?: boolean | undefined;
|
11049
|
+
intent_to_retain?: boolean | undefined;
|
11050
|
+
}>, "many">>;
|
11051
|
+
limit_disclosure: z.ZodOptional<z.ZodEnum<["required", "preferred"]>>;
|
11052
|
+
}, "strip", z.ZodTypeAny, {
|
11053
|
+
fields?: {
|
11054
|
+
path: string[];
|
11055
|
+
id?: string | undefined;
|
11056
|
+
purpose?: string | undefined;
|
11057
|
+
name?: string | undefined;
|
11058
|
+
filter?: any;
|
11059
|
+
optional?: boolean | undefined;
|
11060
|
+
intent_to_retain?: boolean | undefined;
|
11061
|
+
}[] | undefined;
|
11062
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11063
|
+
}, {
|
11064
|
+
fields?: {
|
11065
|
+
path: string[];
|
11066
|
+
id?: string | undefined;
|
11067
|
+
purpose?: string | undefined;
|
11068
|
+
name?: string | undefined;
|
11069
|
+
filter?: any;
|
11070
|
+
optional?: boolean | undefined;
|
11071
|
+
intent_to_retain?: boolean | undefined;
|
11072
|
+
}[] | undefined;
|
11073
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11074
|
+
}>;
|
11075
|
+
group: z.ZodOptional<z.ZodString>;
|
11076
|
+
}, "strip", z.ZodTypeAny, {
|
11077
|
+
id: string;
|
11078
|
+
constraints: {
|
11079
|
+
fields?: {
|
11080
|
+
path: string[];
|
11081
|
+
id?: string | undefined;
|
11082
|
+
purpose?: string | undefined;
|
11083
|
+
name?: string | undefined;
|
11084
|
+
filter?: any;
|
11085
|
+
optional?: boolean | undefined;
|
11086
|
+
intent_to_retain?: boolean | undefined;
|
11087
|
+
}[] | undefined;
|
11088
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11089
|
+
};
|
11090
|
+
name?: string | undefined;
|
11091
|
+
purpose?: string | undefined;
|
11092
|
+
format?: Record<string, any> | undefined;
|
11093
|
+
group?: string | undefined;
|
11094
|
+
}, {
|
11095
|
+
id: string;
|
11096
|
+
constraints: {
|
11097
|
+
fields?: {
|
11098
|
+
path: string[];
|
11099
|
+
id?: string | undefined;
|
11100
|
+
purpose?: string | undefined;
|
11101
|
+
name?: string | undefined;
|
11102
|
+
filter?: any;
|
11103
|
+
optional?: boolean | undefined;
|
11104
|
+
intent_to_retain?: boolean | undefined;
|
11105
|
+
}[] | undefined;
|
11106
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11107
|
+
};
|
11108
|
+
name?: string | undefined;
|
11109
|
+
purpose?: string | undefined;
|
11110
|
+
format?: Record<string, any> | undefined;
|
11111
|
+
group?: string | undefined;
|
11112
|
+
}>, "many">;
|
11113
|
+
submission_requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11114
|
+
name: z.ZodOptional<z.ZodString>;
|
11115
|
+
purpose: z.ZodOptional<z.ZodString>;
|
11116
|
+
rule: z.ZodString;
|
11117
|
+
from: z.ZodOptional<z.ZodString>;
|
11118
|
+
from_nested: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11119
|
+
name: z.ZodOptional<z.ZodString>;
|
11120
|
+
purpose: z.ZodOptional<z.ZodString>;
|
11121
|
+
rule: z.ZodString;
|
11122
|
+
from: z.ZodString;
|
11123
|
+
}, "strip", z.ZodTypeAny, {
|
11124
|
+
rule: string;
|
11125
|
+
from: string;
|
11126
|
+
name?: string | undefined;
|
11127
|
+
purpose?: string | undefined;
|
11128
|
+
}, {
|
11129
|
+
rule: string;
|
11130
|
+
from: string;
|
11131
|
+
name?: string | undefined;
|
11132
|
+
purpose?: string | undefined;
|
11133
|
+
}>, "many">>;
|
11134
|
+
count: z.ZodOptional<z.ZodNumber>;
|
11135
|
+
}, "strip", z.ZodTypeAny, {
|
11136
|
+
rule: string;
|
11137
|
+
name?: string | undefined;
|
11138
|
+
purpose?: string | undefined;
|
11139
|
+
from?: string | undefined;
|
11140
|
+
from_nested?: {
|
11141
|
+
rule: string;
|
11142
|
+
from: string;
|
11143
|
+
name?: string | undefined;
|
11144
|
+
purpose?: string | undefined;
|
11145
|
+
}[] | undefined;
|
11146
|
+
count?: number | undefined;
|
11147
|
+
}, {
|
11148
|
+
rule: string;
|
11149
|
+
name?: string | undefined;
|
11150
|
+
purpose?: string | undefined;
|
11151
|
+
from?: string | undefined;
|
11152
|
+
from_nested?: {
|
11153
|
+
rule: string;
|
11154
|
+
from: string;
|
11155
|
+
name?: string | undefined;
|
11156
|
+
purpose?: string | undefined;
|
11157
|
+
}[] | undefined;
|
11158
|
+
count?: number | undefined;
|
11159
|
+
}>, "many">>;
|
11160
|
+
}, "strip", z.ZodTypeAny, {
|
11161
|
+
id: string;
|
11162
|
+
input_descriptors: {
|
11163
|
+
id: string;
|
11164
|
+
constraints: {
|
11165
|
+
fields?: {
|
11166
|
+
path: string[];
|
11167
|
+
id?: string | undefined;
|
11168
|
+
purpose?: string | undefined;
|
11169
|
+
name?: string | undefined;
|
11170
|
+
filter?: any;
|
11171
|
+
optional?: boolean | undefined;
|
11172
|
+
intent_to_retain?: boolean | undefined;
|
11173
|
+
}[] | undefined;
|
11174
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11175
|
+
};
|
11176
|
+
name?: string | undefined;
|
11177
|
+
purpose?: string | undefined;
|
11178
|
+
format?: Record<string, any> | undefined;
|
11179
|
+
group?: string | undefined;
|
11180
|
+
}[];
|
11181
|
+
name?: string | undefined;
|
11182
|
+
purpose?: string | undefined;
|
11183
|
+
submission_requirements?: {
|
11184
|
+
rule: string;
|
11185
|
+
name?: string | undefined;
|
11186
|
+
purpose?: string | undefined;
|
11187
|
+
from?: string | undefined;
|
11188
|
+
from_nested?: {
|
11189
|
+
rule: string;
|
11190
|
+
from: string;
|
11191
|
+
name?: string | undefined;
|
11192
|
+
purpose?: string | undefined;
|
11193
|
+
}[] | undefined;
|
11194
|
+
count?: number | undefined;
|
11195
|
+
}[] | undefined;
|
11196
|
+
}, {
|
11197
|
+
id: string;
|
11198
|
+
input_descriptors: {
|
11199
|
+
id: string;
|
11200
|
+
constraints: {
|
11201
|
+
fields?: {
|
11202
|
+
path: string[];
|
11203
|
+
id?: string | undefined;
|
11204
|
+
purpose?: string | undefined;
|
11205
|
+
name?: string | undefined;
|
11206
|
+
filter?: any;
|
11207
|
+
optional?: boolean | undefined;
|
11208
|
+
intent_to_retain?: boolean | undefined;
|
11209
|
+
}[] | undefined;
|
11210
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11211
|
+
};
|
11212
|
+
name?: string | undefined;
|
11213
|
+
purpose?: string | undefined;
|
11214
|
+
format?: Record<string, any> | undefined;
|
11215
|
+
group?: string | undefined;
|
11216
|
+
}[];
|
11217
|
+
name?: string | undefined;
|
11218
|
+
purpose?: string | undefined;
|
11219
|
+
submission_requirements?: {
|
11220
|
+
rule: string;
|
11221
|
+
name?: string | undefined;
|
11222
|
+
purpose?: string | undefined;
|
11223
|
+
from?: string | undefined;
|
11224
|
+
from_nested?: {
|
11225
|
+
rule: string;
|
11226
|
+
from: string;
|
11227
|
+
name?: string | undefined;
|
11228
|
+
purpose?: string | undefined;
|
11229
|
+
}[] | undefined;
|
11230
|
+
count?: number | undefined;
|
11231
|
+
}[] | undefined;
|
11232
|
+
}>>;
|
11233
|
+
presentation_definition_uri: z.ZodOptional<z.ZodString>;
|
9972
11234
|
}, "strip", z.ZodTypeAny, {
|
9973
11235
|
jwks: {
|
9974
11236
|
keys: {
|
@@ -10000,6 +11262,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10000
11262
|
client_id?: string | undefined;
|
10001
11263
|
client_name?: string | undefined;
|
10002
11264
|
contacts?: string[] | undefined;
|
11265
|
+
presentation_definition?: {
|
11266
|
+
id: string;
|
11267
|
+
input_descriptors: {
|
11268
|
+
id: string;
|
11269
|
+
constraints: {
|
11270
|
+
fields?: {
|
11271
|
+
path: string[];
|
11272
|
+
id?: string | undefined;
|
11273
|
+
purpose?: string | undefined;
|
11274
|
+
name?: string | undefined;
|
11275
|
+
filter?: any;
|
11276
|
+
optional?: boolean | undefined;
|
11277
|
+
intent_to_retain?: boolean | undefined;
|
11278
|
+
}[] | undefined;
|
11279
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11280
|
+
};
|
11281
|
+
name?: string | undefined;
|
11282
|
+
purpose?: string | undefined;
|
11283
|
+
format?: Record<string, any> | undefined;
|
11284
|
+
group?: string | undefined;
|
11285
|
+
}[];
|
11286
|
+
name?: string | undefined;
|
11287
|
+
purpose?: string | undefined;
|
11288
|
+
submission_requirements?: {
|
11289
|
+
rule: string;
|
11290
|
+
name?: string | undefined;
|
11291
|
+
purpose?: string | undefined;
|
11292
|
+
from?: string | undefined;
|
11293
|
+
from_nested?: {
|
11294
|
+
rule: string;
|
11295
|
+
from: string;
|
11296
|
+
name?: string | undefined;
|
11297
|
+
purpose?: string | undefined;
|
11298
|
+
}[] | undefined;
|
11299
|
+
count?: number | undefined;
|
11300
|
+
}[] | undefined;
|
11301
|
+
} | undefined;
|
11302
|
+
presentation_definition_uri?: string | undefined;
|
10003
11303
|
}, {
|
10004
11304
|
jwks: {
|
10005
11305
|
keys: {
|
@@ -10031,6 +11331,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10031
11331
|
client_id?: string | undefined;
|
10032
11332
|
client_name?: string | undefined;
|
10033
11333
|
contacts?: string[] | undefined;
|
11334
|
+
presentation_definition?: {
|
11335
|
+
id: string;
|
11336
|
+
input_descriptors: {
|
11337
|
+
id: string;
|
11338
|
+
constraints: {
|
11339
|
+
fields?: {
|
11340
|
+
path: string[];
|
11341
|
+
id?: string | undefined;
|
11342
|
+
purpose?: string | undefined;
|
11343
|
+
name?: string | undefined;
|
11344
|
+
filter?: any;
|
11345
|
+
optional?: boolean | undefined;
|
11346
|
+
intent_to_retain?: boolean | undefined;
|
11347
|
+
}[] | undefined;
|
11348
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11349
|
+
};
|
11350
|
+
name?: string | undefined;
|
11351
|
+
purpose?: string | undefined;
|
11352
|
+
format?: Record<string, any> | undefined;
|
11353
|
+
group?: string | undefined;
|
11354
|
+
}[];
|
11355
|
+
name?: string | undefined;
|
11356
|
+
purpose?: string | undefined;
|
11357
|
+
submission_requirements?: {
|
11358
|
+
rule: string;
|
11359
|
+
name?: string | undefined;
|
11360
|
+
purpose?: string | undefined;
|
11361
|
+
from?: string | undefined;
|
11362
|
+
from_nested?: {
|
11363
|
+
rule: string;
|
11364
|
+
from: string;
|
11365
|
+
name?: string | undefined;
|
11366
|
+
purpose?: string | undefined;
|
11367
|
+
}[] | undefined;
|
11368
|
+
count?: number | undefined;
|
11369
|
+
}[] | undefined;
|
11370
|
+
} | undefined;
|
11371
|
+
presentation_definition_uri?: string | undefined;
|
10034
11372
|
}>>;
|
10035
11373
|
}, "strip", z.ZodTypeAny, {
|
10036
11374
|
openid_credential_issuer: {
|
@@ -10183,6 +11521,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10183
11521
|
client_id?: string | undefined;
|
10184
11522
|
client_name?: string | undefined;
|
10185
11523
|
contacts?: string[] | undefined;
|
11524
|
+
presentation_definition?: {
|
11525
|
+
id: string;
|
11526
|
+
input_descriptors: {
|
11527
|
+
id: string;
|
11528
|
+
constraints: {
|
11529
|
+
fields?: {
|
11530
|
+
path: string[];
|
11531
|
+
id?: string | undefined;
|
11532
|
+
purpose?: string | undefined;
|
11533
|
+
name?: string | undefined;
|
11534
|
+
filter?: any;
|
11535
|
+
optional?: boolean | undefined;
|
11536
|
+
intent_to_retain?: boolean | undefined;
|
11537
|
+
}[] | undefined;
|
11538
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11539
|
+
};
|
11540
|
+
name?: string | undefined;
|
11541
|
+
purpose?: string | undefined;
|
11542
|
+
format?: Record<string, any> | undefined;
|
11543
|
+
group?: string | undefined;
|
11544
|
+
}[];
|
11545
|
+
name?: string | undefined;
|
11546
|
+
purpose?: string | undefined;
|
11547
|
+
submission_requirements?: {
|
11548
|
+
rule: string;
|
11549
|
+
name?: string | undefined;
|
11550
|
+
purpose?: string | undefined;
|
11551
|
+
from?: string | undefined;
|
11552
|
+
from_nested?: {
|
11553
|
+
rule: string;
|
11554
|
+
from: string;
|
11555
|
+
name?: string | undefined;
|
11556
|
+
purpose?: string | undefined;
|
11557
|
+
}[] | undefined;
|
11558
|
+
count?: number | undefined;
|
11559
|
+
}[] | undefined;
|
11560
|
+
} | undefined;
|
11561
|
+
presentation_definition_uri?: string | undefined;
|
10186
11562
|
} | undefined;
|
10187
11563
|
}, {
|
10188
11564
|
openid_credential_issuer: {
|
@@ -10335,6 +11711,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10335
11711
|
client_id?: string | undefined;
|
10336
11712
|
client_name?: string | undefined;
|
10337
11713
|
contacts?: string[] | undefined;
|
11714
|
+
presentation_definition?: {
|
11715
|
+
id: string;
|
11716
|
+
input_descriptors: {
|
11717
|
+
id: string;
|
11718
|
+
constraints: {
|
11719
|
+
fields?: {
|
11720
|
+
path: string[];
|
11721
|
+
id?: string | undefined;
|
11722
|
+
purpose?: string | undefined;
|
11723
|
+
name?: string | undefined;
|
11724
|
+
filter?: any;
|
11725
|
+
optional?: boolean | undefined;
|
11726
|
+
intent_to_retain?: boolean | undefined;
|
11727
|
+
}[] | undefined;
|
11728
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11729
|
+
};
|
11730
|
+
name?: string | undefined;
|
11731
|
+
purpose?: string | undefined;
|
11732
|
+
format?: Record<string, any> | undefined;
|
11733
|
+
group?: string | undefined;
|
11734
|
+
}[];
|
11735
|
+
name?: string | undefined;
|
11736
|
+
purpose?: string | undefined;
|
11737
|
+
submission_requirements?: {
|
11738
|
+
rule: string;
|
11739
|
+
name?: string | undefined;
|
11740
|
+
purpose?: string | undefined;
|
11741
|
+
from?: string | undefined;
|
11742
|
+
from_nested?: {
|
11743
|
+
rule: string;
|
11744
|
+
from: string;
|
11745
|
+
name?: string | undefined;
|
11746
|
+
purpose?: string | undefined;
|
11747
|
+
}[] | undefined;
|
11748
|
+
count?: number | undefined;
|
11749
|
+
}[] | undefined;
|
11750
|
+
} | undefined;
|
11751
|
+
presentation_definition_uri?: string | undefined;
|
10338
11752
|
} | undefined;
|
10339
11753
|
}>;
|
10340
11754
|
}, "strip", z.ZodTypeAny, {
|
@@ -10515,6 +11929,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10515
11929
|
client_id?: string | undefined;
|
10516
11930
|
client_name?: string | undefined;
|
10517
11931
|
contacts?: string[] | undefined;
|
11932
|
+
presentation_definition?: {
|
11933
|
+
id: string;
|
11934
|
+
input_descriptors: {
|
11935
|
+
id: string;
|
11936
|
+
constraints: {
|
11937
|
+
fields?: {
|
11938
|
+
path: string[];
|
11939
|
+
id?: string | undefined;
|
11940
|
+
purpose?: string | undefined;
|
11941
|
+
name?: string | undefined;
|
11942
|
+
filter?: any;
|
11943
|
+
optional?: boolean | undefined;
|
11944
|
+
intent_to_retain?: boolean | undefined;
|
11945
|
+
}[] | undefined;
|
11946
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
11947
|
+
};
|
11948
|
+
name?: string | undefined;
|
11949
|
+
purpose?: string | undefined;
|
11950
|
+
format?: Record<string, any> | undefined;
|
11951
|
+
group?: string | undefined;
|
11952
|
+
}[];
|
11953
|
+
name?: string | undefined;
|
11954
|
+
purpose?: string | undefined;
|
11955
|
+
submission_requirements?: {
|
11956
|
+
rule: string;
|
11957
|
+
name?: string | undefined;
|
11958
|
+
purpose?: string | undefined;
|
11959
|
+
from?: string | undefined;
|
11960
|
+
from_nested?: {
|
11961
|
+
rule: string;
|
11962
|
+
from: string;
|
11963
|
+
name?: string | undefined;
|
11964
|
+
purpose?: string | undefined;
|
11965
|
+
}[] | undefined;
|
11966
|
+
count?: number | undefined;
|
11967
|
+
}[] | undefined;
|
11968
|
+
} | undefined;
|
11969
|
+
presentation_definition_uri?: string | undefined;
|
10518
11970
|
} | undefined;
|
10519
11971
|
};
|
10520
11972
|
}, {
|
@@ -10695,6 +12147,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10695
12147
|
client_id?: string | undefined;
|
10696
12148
|
client_name?: string | undefined;
|
10697
12149
|
contacts?: string[] | undefined;
|
12150
|
+
presentation_definition?: {
|
12151
|
+
id: string;
|
12152
|
+
input_descriptors: {
|
12153
|
+
id: string;
|
12154
|
+
constraints: {
|
12155
|
+
fields?: {
|
12156
|
+
path: string[];
|
12157
|
+
id?: string | undefined;
|
12158
|
+
purpose?: string | undefined;
|
12159
|
+
name?: string | undefined;
|
12160
|
+
filter?: any;
|
12161
|
+
optional?: boolean | undefined;
|
12162
|
+
intent_to_retain?: boolean | undefined;
|
12163
|
+
}[] | undefined;
|
12164
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
12165
|
+
};
|
12166
|
+
name?: string | undefined;
|
12167
|
+
purpose?: string | undefined;
|
12168
|
+
format?: Record<string, any> | undefined;
|
12169
|
+
group?: string | undefined;
|
12170
|
+
}[];
|
12171
|
+
name?: string | undefined;
|
12172
|
+
purpose?: string | undefined;
|
12173
|
+
submission_requirements?: {
|
12174
|
+
rule: string;
|
12175
|
+
name?: string | undefined;
|
12176
|
+
purpose?: string | undefined;
|
12177
|
+
from?: string | undefined;
|
12178
|
+
from_nested?: {
|
12179
|
+
rule: string;
|
12180
|
+
from: string;
|
12181
|
+
name?: string | undefined;
|
12182
|
+
purpose?: string | undefined;
|
12183
|
+
}[] | undefined;
|
12184
|
+
count?: number | undefined;
|
12185
|
+
}[] | undefined;
|
12186
|
+
} | undefined;
|
12187
|
+
presentation_definition_uri?: string | undefined;
|
10698
12188
|
} | undefined;
|
10699
12189
|
};
|
10700
12190
|
}>;
|
@@ -10877,6 +12367,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10877
12367
|
client_id?: string | undefined;
|
10878
12368
|
client_name?: string | undefined;
|
10879
12369
|
contacts?: string[] | undefined;
|
12370
|
+
presentation_definition?: {
|
12371
|
+
id: string;
|
12372
|
+
input_descriptors: {
|
12373
|
+
id: string;
|
12374
|
+
constraints: {
|
12375
|
+
fields?: {
|
12376
|
+
path: string[];
|
12377
|
+
id?: string | undefined;
|
12378
|
+
purpose?: string | undefined;
|
12379
|
+
name?: string | undefined;
|
12380
|
+
filter?: any;
|
12381
|
+
optional?: boolean | undefined;
|
12382
|
+
intent_to_retain?: boolean | undefined;
|
12383
|
+
}[] | undefined;
|
12384
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
12385
|
+
};
|
12386
|
+
name?: string | undefined;
|
12387
|
+
purpose?: string | undefined;
|
12388
|
+
format?: Record<string, any> | undefined;
|
12389
|
+
group?: string | undefined;
|
12390
|
+
}[];
|
12391
|
+
name?: string | undefined;
|
12392
|
+
purpose?: string | undefined;
|
12393
|
+
submission_requirements?: {
|
12394
|
+
rule: string;
|
12395
|
+
name?: string | undefined;
|
12396
|
+
purpose?: string | undefined;
|
12397
|
+
from?: string | undefined;
|
12398
|
+
from_nested?: {
|
12399
|
+
rule: string;
|
12400
|
+
from: string;
|
12401
|
+
name?: string | undefined;
|
12402
|
+
purpose?: string | undefined;
|
12403
|
+
}[] | undefined;
|
12404
|
+
count?: number | undefined;
|
12405
|
+
}[] | undefined;
|
12406
|
+
} | undefined;
|
12407
|
+
presentation_definition_uri?: string | undefined;
|
10880
12408
|
} | undefined;
|
10881
12409
|
};
|
10882
12410
|
};
|
@@ -11059,6 +12587,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11059
12587
|
client_id?: string | undefined;
|
11060
12588
|
client_name?: string | undefined;
|
11061
12589
|
contacts?: string[] | undefined;
|
12590
|
+
presentation_definition?: {
|
12591
|
+
id: string;
|
12592
|
+
input_descriptors: {
|
12593
|
+
id: string;
|
12594
|
+
constraints: {
|
12595
|
+
fields?: {
|
12596
|
+
path: string[];
|
12597
|
+
id?: string | undefined;
|
12598
|
+
purpose?: string | undefined;
|
12599
|
+
name?: string | undefined;
|
12600
|
+
filter?: any;
|
12601
|
+
optional?: boolean | undefined;
|
12602
|
+
intent_to_retain?: boolean | undefined;
|
12603
|
+
}[] | undefined;
|
12604
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
12605
|
+
};
|
12606
|
+
name?: string | undefined;
|
12607
|
+
purpose?: string | undefined;
|
12608
|
+
format?: Record<string, any> | undefined;
|
12609
|
+
group?: string | undefined;
|
12610
|
+
}[];
|
12611
|
+
name?: string | undefined;
|
12612
|
+
purpose?: string | undefined;
|
12613
|
+
submission_requirements?: {
|
12614
|
+
rule: string;
|
12615
|
+
name?: string | undefined;
|
12616
|
+
purpose?: string | undefined;
|
12617
|
+
from?: string | undefined;
|
12618
|
+
from_nested?: {
|
12619
|
+
rule: string;
|
12620
|
+
from: string;
|
12621
|
+
name?: string | undefined;
|
12622
|
+
purpose?: string | undefined;
|
12623
|
+
}[] | undefined;
|
12624
|
+
count?: number | undefined;
|
12625
|
+
}[] | undefined;
|
12626
|
+
} | undefined;
|
12627
|
+
presentation_definition_uri?: string | undefined;
|
11062
12628
|
} | undefined;
|
11063
12629
|
};
|
11064
12630
|
};
|
@@ -12862,6 +14428,224 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12862
14428
|
}[];
|
12863
14429
|
}>;
|
12864
14430
|
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
14431
|
+
presentation_definition: z.ZodOptional<z.ZodObject<{
|
14432
|
+
id: z.ZodString;
|
14433
|
+
name: z.ZodOptional<z.ZodString>;
|
14434
|
+
purpose: z.ZodOptional<z.ZodString>;
|
14435
|
+
input_descriptors: z.ZodArray<z.ZodObject<{
|
14436
|
+
id: z.ZodString;
|
14437
|
+
name: z.ZodOptional<z.ZodString>;
|
14438
|
+
purpose: z.ZodOptional<z.ZodString>;
|
14439
|
+
format: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
14440
|
+
constraints: z.ZodObject<{
|
14441
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
14442
|
+
path: z.ZodArray<z.ZodString, "many">;
|
14443
|
+
id: z.ZodOptional<z.ZodString>;
|
14444
|
+
purpose: z.ZodOptional<z.ZodString>;
|
14445
|
+
name: z.ZodOptional<z.ZodString>;
|
14446
|
+
filter: z.ZodOptional<z.ZodAny>;
|
14447
|
+
optional: z.ZodOptional<z.ZodBoolean>;
|
14448
|
+
intent_to_retain: z.ZodOptional<z.ZodBoolean>;
|
14449
|
+
}, "strip", z.ZodTypeAny, {
|
14450
|
+
path: string[];
|
14451
|
+
id?: string | undefined;
|
14452
|
+
purpose?: string | undefined;
|
14453
|
+
name?: string | undefined;
|
14454
|
+
filter?: any;
|
14455
|
+
optional?: boolean | undefined;
|
14456
|
+
intent_to_retain?: boolean | undefined;
|
14457
|
+
}, {
|
14458
|
+
path: string[];
|
14459
|
+
id?: string | undefined;
|
14460
|
+
purpose?: string | undefined;
|
14461
|
+
name?: string | undefined;
|
14462
|
+
filter?: any;
|
14463
|
+
optional?: boolean | undefined;
|
14464
|
+
intent_to_retain?: boolean | undefined;
|
14465
|
+
}>, "many">>;
|
14466
|
+
limit_disclosure: z.ZodOptional<z.ZodEnum<["required", "preferred"]>>;
|
14467
|
+
}, "strip", z.ZodTypeAny, {
|
14468
|
+
fields?: {
|
14469
|
+
path: string[];
|
14470
|
+
id?: string | undefined;
|
14471
|
+
purpose?: string | undefined;
|
14472
|
+
name?: string | undefined;
|
14473
|
+
filter?: any;
|
14474
|
+
optional?: boolean | undefined;
|
14475
|
+
intent_to_retain?: boolean | undefined;
|
14476
|
+
}[] | undefined;
|
14477
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14478
|
+
}, {
|
14479
|
+
fields?: {
|
14480
|
+
path: string[];
|
14481
|
+
id?: string | undefined;
|
14482
|
+
purpose?: string | undefined;
|
14483
|
+
name?: string | undefined;
|
14484
|
+
filter?: any;
|
14485
|
+
optional?: boolean | undefined;
|
14486
|
+
intent_to_retain?: boolean | undefined;
|
14487
|
+
}[] | undefined;
|
14488
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14489
|
+
}>;
|
14490
|
+
group: z.ZodOptional<z.ZodString>;
|
14491
|
+
}, "strip", z.ZodTypeAny, {
|
14492
|
+
id: string;
|
14493
|
+
constraints: {
|
14494
|
+
fields?: {
|
14495
|
+
path: string[];
|
14496
|
+
id?: string | undefined;
|
14497
|
+
purpose?: string | undefined;
|
14498
|
+
name?: string | undefined;
|
14499
|
+
filter?: any;
|
14500
|
+
optional?: boolean | undefined;
|
14501
|
+
intent_to_retain?: boolean | undefined;
|
14502
|
+
}[] | undefined;
|
14503
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14504
|
+
};
|
14505
|
+
name?: string | undefined;
|
14506
|
+
purpose?: string | undefined;
|
14507
|
+
format?: Record<string, any> | undefined;
|
14508
|
+
group?: string | undefined;
|
14509
|
+
}, {
|
14510
|
+
id: string;
|
14511
|
+
constraints: {
|
14512
|
+
fields?: {
|
14513
|
+
path: string[];
|
14514
|
+
id?: string | undefined;
|
14515
|
+
purpose?: string | undefined;
|
14516
|
+
name?: string | undefined;
|
14517
|
+
filter?: any;
|
14518
|
+
optional?: boolean | undefined;
|
14519
|
+
intent_to_retain?: boolean | undefined;
|
14520
|
+
}[] | undefined;
|
14521
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14522
|
+
};
|
14523
|
+
name?: string | undefined;
|
14524
|
+
purpose?: string | undefined;
|
14525
|
+
format?: Record<string, any> | undefined;
|
14526
|
+
group?: string | undefined;
|
14527
|
+
}>, "many">;
|
14528
|
+
submission_requirements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
14529
|
+
name: z.ZodOptional<z.ZodString>;
|
14530
|
+
purpose: z.ZodOptional<z.ZodString>;
|
14531
|
+
rule: z.ZodString;
|
14532
|
+
from: z.ZodOptional<z.ZodString>;
|
14533
|
+
from_nested: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
14534
|
+
name: z.ZodOptional<z.ZodString>;
|
14535
|
+
purpose: z.ZodOptional<z.ZodString>;
|
14536
|
+
rule: z.ZodString;
|
14537
|
+
from: z.ZodString;
|
14538
|
+
}, "strip", z.ZodTypeAny, {
|
14539
|
+
rule: string;
|
14540
|
+
from: string;
|
14541
|
+
name?: string | undefined;
|
14542
|
+
purpose?: string | undefined;
|
14543
|
+
}, {
|
14544
|
+
rule: string;
|
14545
|
+
from: string;
|
14546
|
+
name?: string | undefined;
|
14547
|
+
purpose?: string | undefined;
|
14548
|
+
}>, "many">>;
|
14549
|
+
count: z.ZodOptional<z.ZodNumber>;
|
14550
|
+
}, "strip", z.ZodTypeAny, {
|
14551
|
+
rule: string;
|
14552
|
+
name?: string | undefined;
|
14553
|
+
purpose?: string | undefined;
|
14554
|
+
from?: string | undefined;
|
14555
|
+
from_nested?: {
|
14556
|
+
rule: string;
|
14557
|
+
from: string;
|
14558
|
+
name?: string | undefined;
|
14559
|
+
purpose?: string | undefined;
|
14560
|
+
}[] | undefined;
|
14561
|
+
count?: number | undefined;
|
14562
|
+
}, {
|
14563
|
+
rule: string;
|
14564
|
+
name?: string | undefined;
|
14565
|
+
purpose?: string | undefined;
|
14566
|
+
from?: string | undefined;
|
14567
|
+
from_nested?: {
|
14568
|
+
rule: string;
|
14569
|
+
from: string;
|
14570
|
+
name?: string | undefined;
|
14571
|
+
purpose?: string | undefined;
|
14572
|
+
}[] | undefined;
|
14573
|
+
count?: number | undefined;
|
14574
|
+
}>, "many">>;
|
14575
|
+
}, "strip", z.ZodTypeAny, {
|
14576
|
+
id: string;
|
14577
|
+
input_descriptors: {
|
14578
|
+
id: string;
|
14579
|
+
constraints: {
|
14580
|
+
fields?: {
|
14581
|
+
path: string[];
|
14582
|
+
id?: string | undefined;
|
14583
|
+
purpose?: string | undefined;
|
14584
|
+
name?: string | undefined;
|
14585
|
+
filter?: any;
|
14586
|
+
optional?: boolean | undefined;
|
14587
|
+
intent_to_retain?: boolean | undefined;
|
14588
|
+
}[] | undefined;
|
14589
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14590
|
+
};
|
14591
|
+
name?: string | undefined;
|
14592
|
+
purpose?: string | undefined;
|
14593
|
+
format?: Record<string, any> | undefined;
|
14594
|
+
group?: string | undefined;
|
14595
|
+
}[];
|
14596
|
+
name?: string | undefined;
|
14597
|
+
purpose?: string | undefined;
|
14598
|
+
submission_requirements?: {
|
14599
|
+
rule: string;
|
14600
|
+
name?: string | undefined;
|
14601
|
+
purpose?: string | undefined;
|
14602
|
+
from?: string | undefined;
|
14603
|
+
from_nested?: {
|
14604
|
+
rule: string;
|
14605
|
+
from: string;
|
14606
|
+
name?: string | undefined;
|
14607
|
+
purpose?: string | undefined;
|
14608
|
+
}[] | undefined;
|
14609
|
+
count?: number | undefined;
|
14610
|
+
}[] | undefined;
|
14611
|
+
}, {
|
14612
|
+
id: string;
|
14613
|
+
input_descriptors: {
|
14614
|
+
id: string;
|
14615
|
+
constraints: {
|
14616
|
+
fields?: {
|
14617
|
+
path: string[];
|
14618
|
+
id?: string | undefined;
|
14619
|
+
purpose?: string | undefined;
|
14620
|
+
name?: string | undefined;
|
14621
|
+
filter?: any;
|
14622
|
+
optional?: boolean | undefined;
|
14623
|
+
intent_to_retain?: boolean | undefined;
|
14624
|
+
}[] | undefined;
|
14625
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14626
|
+
};
|
14627
|
+
name?: string | undefined;
|
14628
|
+
purpose?: string | undefined;
|
14629
|
+
format?: Record<string, any> | undefined;
|
14630
|
+
group?: string | undefined;
|
14631
|
+
}[];
|
14632
|
+
name?: string | undefined;
|
14633
|
+
purpose?: string | undefined;
|
14634
|
+
submission_requirements?: {
|
14635
|
+
rule: string;
|
14636
|
+
name?: string | undefined;
|
14637
|
+
purpose?: string | undefined;
|
14638
|
+
from?: string | undefined;
|
14639
|
+
from_nested?: {
|
14640
|
+
rule: string;
|
14641
|
+
from: string;
|
14642
|
+
name?: string | undefined;
|
14643
|
+
purpose?: string | undefined;
|
14644
|
+
}[] | undefined;
|
14645
|
+
count?: number | undefined;
|
14646
|
+
}[] | undefined;
|
14647
|
+
}>>;
|
14648
|
+
presentation_definition_uri: z.ZodOptional<z.ZodString>;
|
12865
14649
|
}, "strip", z.ZodTypeAny, {
|
12866
14650
|
jwks: {
|
12867
14651
|
keys: {
|
@@ -12893,6 +14677,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12893
14677
|
client_id?: string | undefined;
|
12894
14678
|
client_name?: string | undefined;
|
12895
14679
|
contacts?: string[] | undefined;
|
14680
|
+
presentation_definition?: {
|
14681
|
+
id: string;
|
14682
|
+
input_descriptors: {
|
14683
|
+
id: string;
|
14684
|
+
constraints: {
|
14685
|
+
fields?: {
|
14686
|
+
path: string[];
|
14687
|
+
id?: string | undefined;
|
14688
|
+
purpose?: string | undefined;
|
14689
|
+
name?: string | undefined;
|
14690
|
+
filter?: any;
|
14691
|
+
optional?: boolean | undefined;
|
14692
|
+
intent_to_retain?: boolean | undefined;
|
14693
|
+
}[] | undefined;
|
14694
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14695
|
+
};
|
14696
|
+
name?: string | undefined;
|
14697
|
+
purpose?: string | undefined;
|
14698
|
+
format?: Record<string, any> | undefined;
|
14699
|
+
group?: string | undefined;
|
14700
|
+
}[];
|
14701
|
+
name?: string | undefined;
|
14702
|
+
purpose?: string | undefined;
|
14703
|
+
submission_requirements?: {
|
14704
|
+
rule: string;
|
14705
|
+
name?: string | undefined;
|
14706
|
+
purpose?: string | undefined;
|
14707
|
+
from?: string | undefined;
|
14708
|
+
from_nested?: {
|
14709
|
+
rule: string;
|
14710
|
+
from: string;
|
14711
|
+
name?: string | undefined;
|
14712
|
+
purpose?: string | undefined;
|
14713
|
+
}[] | undefined;
|
14714
|
+
count?: number | undefined;
|
14715
|
+
}[] | undefined;
|
14716
|
+
} | undefined;
|
14717
|
+
presentation_definition_uri?: string | undefined;
|
12896
14718
|
}, {
|
12897
14719
|
jwks: {
|
12898
14720
|
keys: {
|
@@ -12924,6 +14746,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12924
14746
|
client_id?: string | undefined;
|
12925
14747
|
client_name?: string | undefined;
|
12926
14748
|
contacts?: string[] | undefined;
|
14749
|
+
presentation_definition?: {
|
14750
|
+
id: string;
|
14751
|
+
input_descriptors: {
|
14752
|
+
id: string;
|
14753
|
+
constraints: {
|
14754
|
+
fields?: {
|
14755
|
+
path: string[];
|
14756
|
+
id?: string | undefined;
|
14757
|
+
purpose?: string | undefined;
|
14758
|
+
name?: string | undefined;
|
14759
|
+
filter?: any;
|
14760
|
+
optional?: boolean | undefined;
|
14761
|
+
intent_to_retain?: boolean | undefined;
|
14762
|
+
}[] | undefined;
|
14763
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14764
|
+
};
|
14765
|
+
name?: string | undefined;
|
14766
|
+
purpose?: string | undefined;
|
14767
|
+
format?: Record<string, any> | undefined;
|
14768
|
+
group?: string | undefined;
|
14769
|
+
}[];
|
14770
|
+
name?: string | undefined;
|
14771
|
+
purpose?: string | undefined;
|
14772
|
+
submission_requirements?: {
|
14773
|
+
rule: string;
|
14774
|
+
name?: string | undefined;
|
14775
|
+
purpose?: string | undefined;
|
14776
|
+
from?: string | undefined;
|
14777
|
+
from_nested?: {
|
14778
|
+
rule: string;
|
14779
|
+
from: string;
|
14780
|
+
name?: string | undefined;
|
14781
|
+
purpose?: string | undefined;
|
14782
|
+
}[] | undefined;
|
14783
|
+
count?: number | undefined;
|
14784
|
+
}[] | undefined;
|
14785
|
+
} | undefined;
|
14786
|
+
presentation_definition_uri?: string | undefined;
|
12927
14787
|
}>;
|
12928
14788
|
}, "strip", z.ZodTypeAny, {
|
12929
14789
|
wallet_relying_party: {
|
@@ -12957,6 +14817,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12957
14817
|
client_id?: string | undefined;
|
12958
14818
|
client_name?: string | undefined;
|
12959
14819
|
contacts?: string[] | undefined;
|
14820
|
+
presentation_definition?: {
|
14821
|
+
id: string;
|
14822
|
+
input_descriptors: {
|
14823
|
+
id: string;
|
14824
|
+
constraints: {
|
14825
|
+
fields?: {
|
14826
|
+
path: string[];
|
14827
|
+
id?: string | undefined;
|
14828
|
+
purpose?: string | undefined;
|
14829
|
+
name?: string | undefined;
|
14830
|
+
filter?: any;
|
14831
|
+
optional?: boolean | undefined;
|
14832
|
+
intent_to_retain?: boolean | undefined;
|
14833
|
+
}[] | undefined;
|
14834
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14835
|
+
};
|
14836
|
+
name?: string | undefined;
|
14837
|
+
purpose?: string | undefined;
|
14838
|
+
format?: Record<string, any> | undefined;
|
14839
|
+
group?: string | undefined;
|
14840
|
+
}[];
|
14841
|
+
name?: string | undefined;
|
14842
|
+
purpose?: string | undefined;
|
14843
|
+
submission_requirements?: {
|
14844
|
+
rule: string;
|
14845
|
+
name?: string | undefined;
|
14846
|
+
purpose?: string | undefined;
|
14847
|
+
from?: string | undefined;
|
14848
|
+
from_nested?: {
|
14849
|
+
rule: string;
|
14850
|
+
from: string;
|
14851
|
+
name?: string | undefined;
|
14852
|
+
purpose?: string | undefined;
|
14853
|
+
}[] | undefined;
|
14854
|
+
count?: number | undefined;
|
14855
|
+
}[] | undefined;
|
14856
|
+
} | undefined;
|
14857
|
+
presentation_definition_uri?: string | undefined;
|
12960
14858
|
};
|
12961
14859
|
}, {
|
12962
14860
|
wallet_relying_party: {
|
@@ -12990,6 +14888,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12990
14888
|
client_id?: string | undefined;
|
12991
14889
|
client_name?: string | undefined;
|
12992
14890
|
contacts?: string[] | undefined;
|
14891
|
+
presentation_definition?: {
|
14892
|
+
id: string;
|
14893
|
+
input_descriptors: {
|
14894
|
+
id: string;
|
14895
|
+
constraints: {
|
14896
|
+
fields?: {
|
14897
|
+
path: string[];
|
14898
|
+
id?: string | undefined;
|
14899
|
+
purpose?: string | undefined;
|
14900
|
+
name?: string | undefined;
|
14901
|
+
filter?: any;
|
14902
|
+
optional?: boolean | undefined;
|
14903
|
+
intent_to_retain?: boolean | undefined;
|
14904
|
+
}[] | undefined;
|
14905
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14906
|
+
};
|
14907
|
+
name?: string | undefined;
|
14908
|
+
purpose?: string | undefined;
|
14909
|
+
format?: Record<string, any> | undefined;
|
14910
|
+
group?: string | undefined;
|
14911
|
+
}[];
|
14912
|
+
name?: string | undefined;
|
14913
|
+
purpose?: string | undefined;
|
14914
|
+
submission_requirements?: {
|
14915
|
+
rule: string;
|
14916
|
+
name?: string | undefined;
|
14917
|
+
purpose?: string | undefined;
|
14918
|
+
from?: string | undefined;
|
14919
|
+
from_nested?: {
|
14920
|
+
rule: string;
|
14921
|
+
from: string;
|
14922
|
+
name?: string | undefined;
|
14923
|
+
purpose?: string | undefined;
|
14924
|
+
}[] | undefined;
|
14925
|
+
count?: number | undefined;
|
14926
|
+
}[] | undefined;
|
14927
|
+
} | undefined;
|
14928
|
+
presentation_definition_uri?: string | undefined;
|
12993
14929
|
};
|
12994
14930
|
}>;
|
12995
14931
|
}, "strip", z.ZodTypeAny, {
|
@@ -13025,6 +14961,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
13025
14961
|
client_id?: string | undefined;
|
13026
14962
|
client_name?: string | undefined;
|
13027
14963
|
contacts?: string[] | undefined;
|
14964
|
+
presentation_definition?: {
|
14965
|
+
id: string;
|
14966
|
+
input_descriptors: {
|
14967
|
+
id: string;
|
14968
|
+
constraints: {
|
14969
|
+
fields?: {
|
14970
|
+
path: string[];
|
14971
|
+
id?: string | undefined;
|
14972
|
+
purpose?: string | undefined;
|
14973
|
+
name?: string | undefined;
|
14974
|
+
filter?: any;
|
14975
|
+
optional?: boolean | undefined;
|
14976
|
+
intent_to_retain?: boolean | undefined;
|
14977
|
+
}[] | undefined;
|
14978
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
14979
|
+
};
|
14980
|
+
name?: string | undefined;
|
14981
|
+
purpose?: string | undefined;
|
14982
|
+
format?: Record<string, any> | undefined;
|
14983
|
+
group?: string | undefined;
|
14984
|
+
}[];
|
14985
|
+
name?: string | undefined;
|
14986
|
+
purpose?: string | undefined;
|
14987
|
+
submission_requirements?: {
|
14988
|
+
rule: string;
|
14989
|
+
name?: string | undefined;
|
14990
|
+
purpose?: string | undefined;
|
14991
|
+
from?: string | undefined;
|
14992
|
+
from_nested?: {
|
14993
|
+
rule: string;
|
14994
|
+
from: string;
|
14995
|
+
name?: string | undefined;
|
14996
|
+
purpose?: string | undefined;
|
14997
|
+
}[] | undefined;
|
14998
|
+
count?: number | undefined;
|
14999
|
+
}[] | undefined;
|
15000
|
+
} | undefined;
|
15001
|
+
presentation_definition_uri?: string | undefined;
|
13028
15002
|
};
|
13029
15003
|
};
|
13030
15004
|
}, {
|
@@ -13060,6 +15034,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
13060
15034
|
client_id?: string | undefined;
|
13061
15035
|
client_name?: string | undefined;
|
13062
15036
|
contacts?: string[] | undefined;
|
15037
|
+
presentation_definition?: {
|
15038
|
+
id: string;
|
15039
|
+
input_descriptors: {
|
15040
|
+
id: string;
|
15041
|
+
constraints: {
|
15042
|
+
fields?: {
|
15043
|
+
path: string[];
|
15044
|
+
id?: string | undefined;
|
15045
|
+
purpose?: string | undefined;
|
15046
|
+
name?: string | undefined;
|
15047
|
+
filter?: any;
|
15048
|
+
optional?: boolean | undefined;
|
15049
|
+
intent_to_retain?: boolean | undefined;
|
15050
|
+
}[] | undefined;
|
15051
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
15052
|
+
};
|
15053
|
+
name?: string | undefined;
|
15054
|
+
purpose?: string | undefined;
|
15055
|
+
format?: Record<string, any> | undefined;
|
15056
|
+
group?: string | undefined;
|
15057
|
+
}[];
|
15058
|
+
name?: string | undefined;
|
15059
|
+
purpose?: string | undefined;
|
15060
|
+
submission_requirements?: {
|
15061
|
+
rule: string;
|
15062
|
+
name?: string | undefined;
|
15063
|
+
purpose?: string | undefined;
|
15064
|
+
from?: string | undefined;
|
15065
|
+
from_nested?: {
|
15066
|
+
rule: string;
|
15067
|
+
from: string;
|
15068
|
+
name?: string | undefined;
|
15069
|
+
purpose?: string | undefined;
|
15070
|
+
}[] | undefined;
|
15071
|
+
count?: number | undefined;
|
15072
|
+
}[] | undefined;
|
15073
|
+
} | undefined;
|
15074
|
+
presentation_definition_uri?: string | undefined;
|
13063
15075
|
};
|
13064
15076
|
};
|
13065
15077
|
}>;
|
@@ -13097,6 +15109,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
13097
15109
|
client_id?: string | undefined;
|
13098
15110
|
client_name?: string | undefined;
|
13099
15111
|
contacts?: string[] | undefined;
|
15112
|
+
presentation_definition?: {
|
15113
|
+
id: string;
|
15114
|
+
input_descriptors: {
|
15115
|
+
id: string;
|
15116
|
+
constraints: {
|
15117
|
+
fields?: {
|
15118
|
+
path: string[];
|
15119
|
+
id?: string | undefined;
|
15120
|
+
purpose?: string | undefined;
|
15121
|
+
name?: string | undefined;
|
15122
|
+
filter?: any;
|
15123
|
+
optional?: boolean | undefined;
|
15124
|
+
intent_to_retain?: boolean | undefined;
|
15125
|
+
}[] | undefined;
|
15126
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
15127
|
+
};
|
15128
|
+
name?: string | undefined;
|
15129
|
+
purpose?: string | undefined;
|
15130
|
+
format?: Record<string, any> | undefined;
|
15131
|
+
group?: string | undefined;
|
15132
|
+
}[];
|
15133
|
+
name?: string | undefined;
|
15134
|
+
purpose?: string | undefined;
|
15135
|
+
submission_requirements?: {
|
15136
|
+
rule: string;
|
15137
|
+
name?: string | undefined;
|
15138
|
+
purpose?: string | undefined;
|
15139
|
+
from?: string | undefined;
|
15140
|
+
from_nested?: {
|
15141
|
+
rule: string;
|
15142
|
+
from: string;
|
15143
|
+
name?: string | undefined;
|
15144
|
+
purpose?: string | undefined;
|
15145
|
+
}[] | undefined;
|
15146
|
+
count?: number | undefined;
|
15147
|
+
}[] | undefined;
|
15148
|
+
} | undefined;
|
15149
|
+
presentation_definition_uri?: string | undefined;
|
13100
15150
|
};
|
13101
15151
|
};
|
13102
15152
|
};
|
@@ -13134,6 +15184,44 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
13134
15184
|
client_id?: string | undefined;
|
13135
15185
|
client_name?: string | undefined;
|
13136
15186
|
contacts?: string[] | undefined;
|
15187
|
+
presentation_definition?: {
|
15188
|
+
id: string;
|
15189
|
+
input_descriptors: {
|
15190
|
+
id: string;
|
15191
|
+
constraints: {
|
15192
|
+
fields?: {
|
15193
|
+
path: string[];
|
15194
|
+
id?: string | undefined;
|
15195
|
+
purpose?: string | undefined;
|
15196
|
+
name?: string | undefined;
|
15197
|
+
filter?: any;
|
15198
|
+
optional?: boolean | undefined;
|
15199
|
+
intent_to_retain?: boolean | undefined;
|
15200
|
+
}[] | undefined;
|
15201
|
+
limit_disclosure?: "required" | "preferred" | undefined;
|
15202
|
+
};
|
15203
|
+
name?: string | undefined;
|
15204
|
+
purpose?: string | undefined;
|
15205
|
+
format?: Record<string, any> | undefined;
|
15206
|
+
group?: string | undefined;
|
15207
|
+
}[];
|
15208
|
+
name?: string | undefined;
|
15209
|
+
purpose?: string | undefined;
|
15210
|
+
submission_requirements?: {
|
15211
|
+
rule: string;
|
15212
|
+
name?: string | undefined;
|
15213
|
+
purpose?: string | undefined;
|
15214
|
+
from?: string | undefined;
|
15215
|
+
from_nested?: {
|
15216
|
+
rule: string;
|
15217
|
+
from: string;
|
15218
|
+
name?: string | undefined;
|
15219
|
+
purpose?: string | undefined;
|
15220
|
+
}[] | undefined;
|
15221
|
+
count?: number | undefined;
|
15222
|
+
}[] | undefined;
|
15223
|
+
} | undefined;
|
15224
|
+
presentation_definition_uri?: string | undefined;
|
13137
15225
|
};
|
13138
15226
|
};
|
13139
15227
|
};
|