@learncard/types 5.8.11 → 5.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lcn.d.ts +6678 -997
- package/dist/lcn.d.ts.map +1 -1
- package/dist/queries.d.ts +27 -1
- package/dist/queries.d.ts.map +1 -1
- package/dist/types.cjs.development.js +303 -19
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +3 -3
- package/dist/types.esm.js +304 -19
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/types.esm.js
CHANGED
|
@@ -452,6 +452,7 @@ var PaginatedEncryptedCredentialRecordsValidator = PaginationResponseValidator.e
|
|
|
452
452
|
});
|
|
453
453
|
|
|
454
454
|
// src/lcn.ts
|
|
455
|
+
import { extendZodWithOpenApi } from "zod-openapi";
|
|
455
456
|
import { z as z9 } from "zod";
|
|
456
457
|
|
|
457
458
|
// src/queries.ts
|
|
@@ -484,9 +485,16 @@ var RegExpValidator = z8.instanceof(RegExp).or(
|
|
|
484
485
|
}
|
|
485
486
|
})
|
|
486
487
|
);
|
|
487
|
-
var
|
|
488
|
+
var BaseStringQuery = z8.string().or(z8.object({ $in: z8.string().array() })).or(z8.object({ $regex: RegExpValidator }));
|
|
489
|
+
var StringQuery = z8.union([
|
|
490
|
+
BaseStringQuery,
|
|
491
|
+
z8.object({
|
|
492
|
+
$or: BaseStringQuery.array()
|
|
493
|
+
})
|
|
494
|
+
]);
|
|
488
495
|
|
|
489
496
|
// src/lcn.ts
|
|
497
|
+
extendZodWithOpenApi(z9);
|
|
490
498
|
var LCNProfileDisplayValidator = z9.object({
|
|
491
499
|
backgroundColor: z9.string().optional(),
|
|
492
500
|
backgroundImage: z9.string().optional(),
|
|
@@ -571,7 +579,8 @@ var SentCredentialInfoValidator = z9.object({
|
|
|
571
579
|
to: z9.string(),
|
|
572
580
|
from: z9.string(),
|
|
573
581
|
sent: z9.string().datetime(),
|
|
574
|
-
received: z9.string().datetime().optional()
|
|
582
|
+
received: z9.string().datetime().optional(),
|
|
583
|
+
metadata: z9.record(z9.unknown()).optional()
|
|
575
584
|
});
|
|
576
585
|
var BoostPermissionsValidator = z9.object({
|
|
577
586
|
role: z9.string(),
|
|
@@ -644,7 +653,7 @@ var BoostValidator = z9.object({
|
|
|
644
653
|
claimPermissions: BoostPermissionsValidator.optional(),
|
|
645
654
|
allowAnyoneToCreateChildren: z9.boolean().optional()
|
|
646
655
|
});
|
|
647
|
-
var
|
|
656
|
+
var BaseBoostQueryValidator = z9.object({
|
|
648
657
|
uri: StringQuery,
|
|
649
658
|
name: StringQuery,
|
|
650
659
|
type: StringQuery,
|
|
@@ -653,6 +662,12 @@ var BoostQueryValidator = z9.object({
|
|
|
653
662
|
status: LCNBoostStatus.or(z9.object({ $in: LCNBoostStatus.array() })),
|
|
654
663
|
autoConnectRecipients: z9.boolean()
|
|
655
664
|
}).partial();
|
|
665
|
+
var BoostQueryValidator = z9.union([
|
|
666
|
+
z9.object({
|
|
667
|
+
$or: BaseBoostQueryValidator.array()
|
|
668
|
+
}),
|
|
669
|
+
BaseBoostQueryValidator
|
|
670
|
+
]);
|
|
656
671
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
657
672
|
records: BoostValidator.array()
|
|
658
673
|
});
|
|
@@ -708,11 +723,25 @@ var ConsentFlowTermsStatusValidator = z9.enum(["live", "stale", "withdrawn"]);
|
|
|
708
723
|
var ConsentFlowContractValidator = z9.object({
|
|
709
724
|
read: z9.object({
|
|
710
725
|
anonymize: z9.boolean().optional(),
|
|
711
|
-
credentials: z9.object({
|
|
726
|
+
credentials: z9.object({
|
|
727
|
+
categories: z9.record(
|
|
728
|
+
z9.object({
|
|
729
|
+
required: z9.boolean(),
|
|
730
|
+
defaultEnabled: z9.boolean().optional()
|
|
731
|
+
})
|
|
732
|
+
).default({})
|
|
733
|
+
}).default({}),
|
|
712
734
|
personal: z9.record(z9.object({ required: z9.boolean(), defaultEnabled: z9.boolean().optional() })).default({})
|
|
713
735
|
}).default({}),
|
|
714
736
|
write: z9.object({
|
|
715
|
-
credentials: z9.object({
|
|
737
|
+
credentials: z9.object({
|
|
738
|
+
categories: z9.record(
|
|
739
|
+
z9.object({
|
|
740
|
+
required: z9.boolean(),
|
|
741
|
+
defaultEnabled: z9.boolean().optional()
|
|
742
|
+
})
|
|
743
|
+
).default({})
|
|
744
|
+
}).default({}),
|
|
716
745
|
personal: z9.record(z9.object({ required: z9.boolean(), defaultEnabled: z9.boolean().optional() })).default({})
|
|
717
746
|
}).default({})
|
|
718
747
|
});
|
|
@@ -855,6 +884,17 @@ var ConsentFlowTransactionValidator = z9.object({
|
|
|
855
884
|
var PaginatedConsentFlowTransactionsValidator = PaginationResponseValidator.extend({
|
|
856
885
|
records: ConsentFlowTransactionValidator.array()
|
|
857
886
|
});
|
|
887
|
+
var BaseSkillFrameworkQueryValidator = z9.object({
|
|
888
|
+
id: StringQuery,
|
|
889
|
+
name: StringQuery,
|
|
890
|
+
description: StringQuery,
|
|
891
|
+
sourceURI: StringQuery,
|
|
892
|
+
status: StringQuery
|
|
893
|
+
}).partial();
|
|
894
|
+
var SkillFrameworkQueryValidator = z9.union([
|
|
895
|
+
z9.object({ $or: BaseSkillFrameworkQueryValidator.array() }),
|
|
896
|
+
BaseSkillFrameworkQueryValidator
|
|
897
|
+
]);
|
|
858
898
|
var ContractCredentialValidator = z9.object({
|
|
859
899
|
credentialUri: z9.string(),
|
|
860
900
|
termsUri: z9.string(),
|
|
@@ -911,8 +951,9 @@ var LCNNotificationDataValidator = z9.object({
|
|
|
911
951
|
vcUris: z9.array(z9.string()).optional(),
|
|
912
952
|
vpUris: z9.array(z9.string()).optional(),
|
|
913
953
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
914
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
915
|
-
|
|
954
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
955
|
+
metadata: z9.record(z9.unknown()).optional()
|
|
956
|
+
}).passthrough();
|
|
916
957
|
var LCNNotificationValidator = z9.object({
|
|
917
958
|
type: LCNNotificationTypeEnumValidator,
|
|
918
959
|
to: LCNProfileValidator.partial().and(z9.object({ did: z9.string() })),
|
|
@@ -1038,37 +1079,61 @@ var IssueInboxCredentialValidator = z9.object({
|
|
|
1038
1079
|
// === CORE DATA (Required) ===
|
|
1039
1080
|
// WHAT is being sent and WHO is it for?
|
|
1040
1081
|
recipient: ContactMethodQueryValidator.describe("The recipient of the credential"),
|
|
1041
|
-
credential: VCValidator.passthrough().or(VPValidator.passthrough()).or(UnsignedVCValidator.passthrough()).describe(
|
|
1082
|
+
credential: VCValidator.passthrough().or(VPValidator.passthrough()).or(UnsignedVCValidator.passthrough()).describe(
|
|
1083
|
+
"The credential to issue. If not signed, the users default signing authority will be used, or the specified signing authority in the configuration."
|
|
1084
|
+
),
|
|
1042
1085
|
// === OPTIONAL FEATURES ===
|
|
1043
1086
|
// Add major, distinct features at the top level.
|
|
1044
1087
|
//consentRequest: ConsentRequestValidator.optional(),
|
|
1045
1088
|
// === PROCESS CONFIGURATION (Optional) ===
|
|
1046
1089
|
// HOW should this issuance be handled?
|
|
1047
1090
|
configuration: z9.object({
|
|
1048
|
-
signingAuthority: IssueInboxSigningAuthorityValidator.optional().describe(
|
|
1091
|
+
signingAuthority: IssueInboxSigningAuthorityValidator.optional().describe(
|
|
1092
|
+
"The signing authority to use for the credential. If not provided, the users default signing authority will be used if the credential is not signed."
|
|
1093
|
+
),
|
|
1049
1094
|
webhookUrl: z9.string().url().optional().describe("The webhook URL to receive credential issuance events."),
|
|
1050
1095
|
expiresInDays: z9.number().min(1).max(365).optional().describe("The number of days the credential will be valid for."),
|
|
1051
1096
|
// --- For User-Facing Delivery (Email/SMS) ---
|
|
1052
1097
|
delivery: z9.object({
|
|
1053
|
-
suppress: z9.boolean().optional().default(false).describe(
|
|
1098
|
+
suppress: z9.boolean().optional().default(false).describe(
|
|
1099
|
+
"Whether to suppress delivery of the credential to the recipient. If true, the email/sms will not be sent to the recipient. Useful if you would like to manually send claim link to your users."
|
|
1100
|
+
),
|
|
1054
1101
|
template: z9.object({
|
|
1055
|
-
id: z9.enum(["universal-inbox-claim"]).optional().describe(
|
|
1102
|
+
id: z9.enum(["universal-inbox-claim"]).optional().describe(
|
|
1103
|
+
"The template ID to use for the credential delivery. If not provided, the default template will be used."
|
|
1104
|
+
),
|
|
1056
1105
|
model: z9.object({
|
|
1057
1106
|
issuer: z9.object({
|
|
1058
|
-
name: z9.string().optional().describe(
|
|
1107
|
+
name: z9.string().optional().describe(
|
|
1108
|
+
'The name of the organization (e.g., "State University").'
|
|
1109
|
+
),
|
|
1059
1110
|
logoUrl: z9.string().url().optional().describe("The URL of the organization's logo.")
|
|
1060
1111
|
}).optional(),
|
|
1061
1112
|
credential: z9.object({
|
|
1062
|
-
name: z9.string().optional().describe(
|
|
1063
|
-
|
|
1113
|
+
name: z9.string().optional().describe(
|
|
1114
|
+
'The name of the credential (e.g., "Bachelor of Science").'
|
|
1115
|
+
),
|
|
1116
|
+
type: z9.string().optional().describe(
|
|
1117
|
+
'The type of the credential (e.g., "degree", "certificate").'
|
|
1118
|
+
)
|
|
1064
1119
|
}).optional(),
|
|
1065
1120
|
recipient: z9.object({
|
|
1066
|
-
name: z9.string().optional().describe(
|
|
1121
|
+
name: z9.string().optional().describe(
|
|
1122
|
+
'The name of the recipient (e.g., "John Doe").'
|
|
1123
|
+
)
|
|
1067
1124
|
}).optional()
|
|
1068
|
-
}).describe(
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1125
|
+
}).describe(
|
|
1126
|
+
"The template model to use for the credential delivery. Injects via template variables into email/sms templates. If not provided, the default template will be used."
|
|
1127
|
+
)
|
|
1128
|
+
}).optional().describe(
|
|
1129
|
+
"The template to use for the credential delivery. If not provided, the default template will be used."
|
|
1130
|
+
)
|
|
1131
|
+
}).optional().describe(
|
|
1132
|
+
"Configuration for the credential delivery i.e. email or SMS. When credentials are sent to a user who has a verified email or phone associated with their account, delivery is skipped, and the credential will be sent using in-app notifications. If not provided, the default configuration will be used."
|
|
1133
|
+
)
|
|
1134
|
+
}).optional().describe(
|
|
1135
|
+
"Configuration for the credential issuance. If not provided, the default configuration will be used."
|
|
1136
|
+
)
|
|
1072
1137
|
});
|
|
1073
1138
|
var IssueInboxCredentialResponseValidator = z9.object({
|
|
1074
1139
|
issuanceId: z9.string(),
|
|
@@ -1130,6 +1195,191 @@ var ClaimTokenValidator = z9.object({
|
|
|
1130
1195
|
expiresAt: z9.string(),
|
|
1131
1196
|
used: z9.boolean()
|
|
1132
1197
|
});
|
|
1198
|
+
var TagValidator = z9.object({
|
|
1199
|
+
id: z9.string(),
|
|
1200
|
+
name: z9.string().min(1),
|
|
1201
|
+
slug: z9.string().min(1),
|
|
1202
|
+
createdAt: z9.string().optional(),
|
|
1203
|
+
updatedAt: z9.string().optional()
|
|
1204
|
+
});
|
|
1205
|
+
var SkillStatusEnum = z9.enum(["active", "archived"]);
|
|
1206
|
+
var SkillValidator = z9.object({
|
|
1207
|
+
id: z9.string(),
|
|
1208
|
+
statement: z9.string(),
|
|
1209
|
+
description: z9.string().optional(),
|
|
1210
|
+
code: z9.string().optional(),
|
|
1211
|
+
icon: z9.string().optional(),
|
|
1212
|
+
type: z9.string().default("skill"),
|
|
1213
|
+
status: SkillStatusEnum.default("active"),
|
|
1214
|
+
frameworkId: z9.string().optional(),
|
|
1215
|
+
createdAt: z9.string().optional(),
|
|
1216
|
+
updatedAt: z9.string().optional()
|
|
1217
|
+
});
|
|
1218
|
+
var BaseSkillQueryValidator = z9.object({
|
|
1219
|
+
id: StringQuery,
|
|
1220
|
+
statement: StringQuery,
|
|
1221
|
+
description: StringQuery,
|
|
1222
|
+
code: StringQuery,
|
|
1223
|
+
type: StringQuery,
|
|
1224
|
+
status: SkillStatusEnum.or(z9.object({ $in: SkillStatusEnum.array() }))
|
|
1225
|
+
}).partial();
|
|
1226
|
+
var SkillQueryValidator = z9.union([
|
|
1227
|
+
z9.object({
|
|
1228
|
+
$or: BaseSkillQueryValidator.array()
|
|
1229
|
+
}),
|
|
1230
|
+
BaseSkillQueryValidator
|
|
1231
|
+
]);
|
|
1232
|
+
var SkillFrameworkStatusEnum = z9.enum(["active", "archived"]);
|
|
1233
|
+
var SkillFrameworkValidator = z9.object({
|
|
1234
|
+
id: z9.string(),
|
|
1235
|
+
name: z9.string(),
|
|
1236
|
+
description: z9.string().optional(),
|
|
1237
|
+
image: z9.string().optional(),
|
|
1238
|
+
sourceURI: z9.string().url().optional(),
|
|
1239
|
+
status: SkillFrameworkStatusEnum.default("active"),
|
|
1240
|
+
createdAt: z9.string().optional(),
|
|
1241
|
+
updatedAt: z9.string().optional()
|
|
1242
|
+
});
|
|
1243
|
+
var PaginatedSkillFrameworksValidator = PaginationResponseValidator.extend({
|
|
1244
|
+
records: SkillFrameworkValidator.array()
|
|
1245
|
+
});
|
|
1246
|
+
var SkillTreeNodeValidator = SkillValidator.extend({
|
|
1247
|
+
children: z9.array(z9.lazy(() => SkillTreeNodeValidator)),
|
|
1248
|
+
hasChildren: z9.boolean(),
|
|
1249
|
+
childrenCursor: z9.string().nullable().optional()
|
|
1250
|
+
}).openapi({ ref: "SkillTreeNode" });
|
|
1251
|
+
var PaginatedSkillTreeValidator = z9.object({
|
|
1252
|
+
hasMore: z9.boolean(),
|
|
1253
|
+
cursor: z9.string().nullable(),
|
|
1254
|
+
records: z9.array(SkillTreeNodeValidator)
|
|
1255
|
+
});
|
|
1256
|
+
var SkillTreeNodeInputValidator = z9.lazy(
|
|
1257
|
+
() => z9.object({
|
|
1258
|
+
id: z9.string().optional(),
|
|
1259
|
+
statement: z9.string(),
|
|
1260
|
+
description: z9.string().optional(),
|
|
1261
|
+
code: z9.string().optional(),
|
|
1262
|
+
icon: z9.string().optional(),
|
|
1263
|
+
type: z9.string().optional(),
|
|
1264
|
+
status: SkillStatusEnum.optional(),
|
|
1265
|
+
children: z9.array(SkillTreeNodeInputValidator).optional()
|
|
1266
|
+
})
|
|
1267
|
+
).openapi({ ref: "SkillTreeNodeInput" });
|
|
1268
|
+
var LinkProviderFrameworkInputValidator = z9.object({
|
|
1269
|
+
frameworkId: z9.string()
|
|
1270
|
+
});
|
|
1271
|
+
var CreateManagedFrameworkInputValidator = z9.object({
|
|
1272
|
+
id: z9.string().optional(),
|
|
1273
|
+
name: z9.string().min(1),
|
|
1274
|
+
description: z9.string().optional(),
|
|
1275
|
+
image: z9.string().optional(),
|
|
1276
|
+
sourceURI: z9.string().url().optional(),
|
|
1277
|
+
status: SkillFrameworkStatusEnum.optional(),
|
|
1278
|
+
skills: z9.array(SkillTreeNodeInputValidator).optional(),
|
|
1279
|
+
boostUris: z9.array(z9.string()).optional()
|
|
1280
|
+
});
|
|
1281
|
+
var UpdateFrameworkInputValidator = z9.object({
|
|
1282
|
+
id: z9.string(),
|
|
1283
|
+
name: z9.string().min(1).optional(),
|
|
1284
|
+
description: z9.string().optional(),
|
|
1285
|
+
image: z9.string().optional(),
|
|
1286
|
+
sourceURI: z9.string().url().optional(),
|
|
1287
|
+
status: SkillFrameworkStatusEnum.optional()
|
|
1288
|
+
}).refine(
|
|
1289
|
+
(data) => data.name !== void 0 || data.description !== void 0 || data.image !== void 0 || data.sourceURI !== void 0 || data.status !== void 0,
|
|
1290
|
+
{
|
|
1291
|
+
message: "At least one field must be provided to update",
|
|
1292
|
+
path: ["name"]
|
|
1293
|
+
}
|
|
1294
|
+
);
|
|
1295
|
+
var DeleteFrameworkInputValidator = z9.object({ id: z9.string() });
|
|
1296
|
+
var CreateManagedFrameworkBatchInputValidator = z9.object({
|
|
1297
|
+
frameworks: z9.array(
|
|
1298
|
+
CreateManagedFrameworkInputValidator.extend({
|
|
1299
|
+
skills: z9.array(SkillTreeNodeInputValidator).optional()
|
|
1300
|
+
})
|
|
1301
|
+
).min(1)
|
|
1302
|
+
});
|
|
1303
|
+
var SkillFrameworkAdminInputValidator = z9.object({
|
|
1304
|
+
frameworkId: z9.string(),
|
|
1305
|
+
profileId: z9.string()
|
|
1306
|
+
});
|
|
1307
|
+
var SkillFrameworkIdInputValidator = z9.object({ frameworkId: z9.string() });
|
|
1308
|
+
var SkillFrameworkAdminsValidator = LCNProfileValidator.array();
|
|
1309
|
+
var SyncFrameworkInputValidator = z9.object({ id: z9.string() });
|
|
1310
|
+
var AddTagInputValidator = z9.object({
|
|
1311
|
+
slug: z9.string().min(1),
|
|
1312
|
+
name: z9.string().min(1)
|
|
1313
|
+
});
|
|
1314
|
+
var CreateSkillInputValidator = z9.object({
|
|
1315
|
+
frameworkId: z9.string(),
|
|
1316
|
+
skill: SkillTreeNodeInputValidator,
|
|
1317
|
+
parentId: z9.string().nullable().optional()
|
|
1318
|
+
});
|
|
1319
|
+
var UpdateSkillInputValidator = z9.object({
|
|
1320
|
+
frameworkId: z9.string(),
|
|
1321
|
+
id: z9.string(),
|
|
1322
|
+
statement: z9.string().optional(),
|
|
1323
|
+
description: z9.string().optional(),
|
|
1324
|
+
code: z9.string().optional(),
|
|
1325
|
+
icon: z9.string().optional(),
|
|
1326
|
+
type: z9.string().optional(),
|
|
1327
|
+
status: SkillStatusEnum.optional()
|
|
1328
|
+
}).refine(
|
|
1329
|
+
(data) => data.statement !== void 0 || data.description !== void 0 || data.code !== void 0 || data.icon !== void 0 || data.type !== void 0 || data.status !== void 0,
|
|
1330
|
+
{
|
|
1331
|
+
message: "At least one field must be provided to update a skill",
|
|
1332
|
+
path: ["statement"]
|
|
1333
|
+
}
|
|
1334
|
+
);
|
|
1335
|
+
var SkillDeletionStrategyValidator = z9.enum(["recursive", "reparent"]);
|
|
1336
|
+
var DeleteSkillInputValidator = z9.object({
|
|
1337
|
+
frameworkId: z9.string(),
|
|
1338
|
+
id: z9.string(),
|
|
1339
|
+
strategy: SkillDeletionStrategyValidator.optional().default("reparent")
|
|
1340
|
+
});
|
|
1341
|
+
var CreateSkillsBatchInputValidator = z9.object({
|
|
1342
|
+
frameworkId: z9.string(),
|
|
1343
|
+
skills: z9.array(SkillTreeNodeInputValidator).min(1),
|
|
1344
|
+
parentId: z9.string().nullable().optional()
|
|
1345
|
+
});
|
|
1346
|
+
var ReplaceSkillFrameworkSkillsInputValidator = z9.object({
|
|
1347
|
+
frameworkId: z9.string(),
|
|
1348
|
+
skills: z9.array(SkillTreeNodeInputValidator).min(0)
|
|
1349
|
+
});
|
|
1350
|
+
var ReplaceSkillFrameworkSkillsResultValidator = z9.object({
|
|
1351
|
+
created: z9.number().int().min(0),
|
|
1352
|
+
updated: z9.number().int().min(0),
|
|
1353
|
+
deleted: z9.number().int().min(0),
|
|
1354
|
+
unchanged: z9.number().int().min(0),
|
|
1355
|
+
total: z9.number().int().min(0)
|
|
1356
|
+
});
|
|
1357
|
+
var CountSkillsInputValidator = z9.object({
|
|
1358
|
+
frameworkId: z9.string(),
|
|
1359
|
+
skillId: z9.string().optional(),
|
|
1360
|
+
recursive: z9.boolean().optional().default(false),
|
|
1361
|
+
onlyCountCompetencies: z9.boolean().optional().default(false)
|
|
1362
|
+
});
|
|
1363
|
+
var CountSkillsResultValidator = z9.object({
|
|
1364
|
+
count: z9.number().int().min(0)
|
|
1365
|
+
});
|
|
1366
|
+
var GetFullSkillTreeInputValidator = z9.object({
|
|
1367
|
+
frameworkId: z9.string()
|
|
1368
|
+
});
|
|
1369
|
+
var GetFullSkillTreeResultValidator = z9.object({
|
|
1370
|
+
skills: z9.array(SkillTreeNodeValidator)
|
|
1371
|
+
});
|
|
1372
|
+
var GetSkillPathInputValidator = z9.object({
|
|
1373
|
+
frameworkId: z9.string(),
|
|
1374
|
+
skillId: z9.string()
|
|
1375
|
+
});
|
|
1376
|
+
var GetSkillPathResultValidator = z9.object({
|
|
1377
|
+
path: z9.array(SkillValidator)
|
|
1378
|
+
});
|
|
1379
|
+
var FrameworkWithSkillsValidator = z9.object({
|
|
1380
|
+
framework: SkillFrameworkValidator,
|
|
1381
|
+
skills: PaginatedSkillTreeValidator
|
|
1382
|
+
});
|
|
1133
1383
|
export {
|
|
1134
1384
|
AUTH_GRANT_AUDIENCE_DOMAIN_PREFIX,
|
|
1135
1385
|
AchievementCredentialValidator,
|
|
@@ -1137,6 +1387,7 @@ export {
|
|
|
1137
1387
|
AchievementSubjectValidator,
|
|
1138
1388
|
AchievementTypeValidator,
|
|
1139
1389
|
AchievementValidator,
|
|
1390
|
+
AddTagInputValidator,
|
|
1140
1391
|
AddressValidator,
|
|
1141
1392
|
AlignmentTargetTypeValidator,
|
|
1142
1393
|
AlignmentValidator,
|
|
@@ -1176,14 +1427,22 @@ export {
|
|
|
1176
1427
|
ContactMethodVerificationValidator,
|
|
1177
1428
|
ContextValidator,
|
|
1178
1429
|
ContractCredentialValidator,
|
|
1430
|
+
CountSkillsInputValidator,
|
|
1431
|
+
CountSkillsResultValidator,
|
|
1179
1432
|
CreateContactMethodSessionResponseValidator,
|
|
1180
1433
|
CreateContactMethodSessionValidator,
|
|
1434
|
+
CreateManagedFrameworkBatchInputValidator,
|
|
1435
|
+
CreateManagedFrameworkInputValidator,
|
|
1436
|
+
CreateSkillInputValidator,
|
|
1437
|
+
CreateSkillsBatchInputValidator,
|
|
1181
1438
|
CredentialInfoValidator,
|
|
1182
1439
|
CredentialRecordValidator,
|
|
1183
1440
|
CredentialSchemaValidator,
|
|
1184
1441
|
CredentialStatusValidator,
|
|
1185
1442
|
CredentialSubjectValidator,
|
|
1186
1443
|
CriteriaValidator,
|
|
1444
|
+
DeleteFrameworkInputValidator,
|
|
1445
|
+
DeleteSkillInputValidator,
|
|
1187
1446
|
DidDocumentValidator,
|
|
1188
1447
|
EncryptedCredentialRecordValidator,
|
|
1189
1448
|
EncryptedRecordValidator,
|
|
@@ -1191,8 +1450,13 @@ export {
|
|
|
1191
1450
|
EndorsementSubjectValidator,
|
|
1192
1451
|
EvidenceValidator,
|
|
1193
1452
|
FlatAuthGrantValidator,
|
|
1453
|
+
FrameworkWithSkillsValidator,
|
|
1194
1454
|
FullClaimHookValidator,
|
|
1195
1455
|
GeoCoordinatesValidator,
|
|
1456
|
+
GetFullSkillTreeInputValidator,
|
|
1457
|
+
GetFullSkillTreeResultValidator,
|
|
1458
|
+
GetSkillPathInputValidator,
|
|
1459
|
+
GetSkillPathResultValidator,
|
|
1196
1460
|
IdentifierEntryValidator,
|
|
1197
1461
|
IdentifierTypeValidator,
|
|
1198
1462
|
IdentityObjectValidator,
|
|
@@ -1231,6 +1495,7 @@ export {
|
|
|
1231
1495
|
LCNProfileValidator,
|
|
1232
1496
|
LCNSigningAuthorityForUserValidator,
|
|
1233
1497
|
LCNSigningAuthorityValidator,
|
|
1498
|
+
LinkProviderFrameworkInputValidator,
|
|
1234
1499
|
PaginatedBoostRecipientsValidator,
|
|
1235
1500
|
PaginatedBoostRecipientsWithChildrenValidator,
|
|
1236
1501
|
PaginatedBoostsValidator,
|
|
@@ -1248,6 +1513,8 @@ export {
|
|
|
1248
1513
|
PaginatedLCNProfileManagersValidator,
|
|
1249
1514
|
PaginatedLCNProfilesAndManagersValidator,
|
|
1250
1515
|
PaginatedLCNProfilesValidator,
|
|
1516
|
+
PaginatedSkillFrameworksValidator,
|
|
1517
|
+
PaginatedSkillTreeValidator,
|
|
1251
1518
|
PaginationOptionsValidator,
|
|
1252
1519
|
PaginationResponseValidator,
|
|
1253
1520
|
ProfileValidator,
|
|
@@ -1255,6 +1522,8 @@ export {
|
|
|
1255
1522
|
RefreshServiceValidator,
|
|
1256
1523
|
RegExpValidator,
|
|
1257
1524
|
RelatedValidator,
|
|
1525
|
+
ReplaceSkillFrameworkSkillsInputValidator,
|
|
1526
|
+
ReplaceSkillFrameworkSkillsResultValidator,
|
|
1258
1527
|
ResultDescriptionValidator,
|
|
1259
1528
|
ResultStatusTypeValidator,
|
|
1260
1529
|
ResultTypeValidator,
|
|
@@ -1263,11 +1532,27 @@ export {
|
|
|
1263
1532
|
SentCredentialInfoValidator,
|
|
1264
1533
|
ServiceValidator,
|
|
1265
1534
|
SetPrimaryContactMethodValidator,
|
|
1535
|
+
SkillDeletionStrategyValidator,
|
|
1536
|
+
SkillFrameworkAdminInputValidator,
|
|
1537
|
+
SkillFrameworkAdminsValidator,
|
|
1538
|
+
SkillFrameworkIdInputValidator,
|
|
1539
|
+
SkillFrameworkQueryValidator,
|
|
1540
|
+
SkillFrameworkStatusEnum,
|
|
1541
|
+
SkillFrameworkValidator,
|
|
1542
|
+
SkillQueryValidator,
|
|
1543
|
+
SkillStatusEnum,
|
|
1544
|
+
SkillTreeNodeInputValidator,
|
|
1545
|
+
SkillTreeNodeValidator,
|
|
1546
|
+
SkillValidator,
|
|
1266
1547
|
StringQuery,
|
|
1548
|
+
SyncFrameworkInputValidator,
|
|
1549
|
+
TagValidator,
|
|
1267
1550
|
TermsOfUseValidator,
|
|
1268
1551
|
UnsignedAchievementCredentialValidator,
|
|
1269
1552
|
UnsignedVCValidator,
|
|
1270
1553
|
UnsignedVPValidator,
|
|
1554
|
+
UpdateFrameworkInputValidator,
|
|
1555
|
+
UpdateSkillInputValidator,
|
|
1271
1556
|
VC2EvidenceValidator,
|
|
1272
1557
|
VCValidator,
|
|
1273
1558
|
VPValidator,
|