@learncard/learn-cloud-plugin 1.1.24 → 1.1.25
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/helpers.d.ts +1 -0
- package/dist/helpers.d.ts.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/learn-cloud-plugin.cjs.development.js +7 -0
- package/dist/learn-cloud-plugin.cjs.development.js.map +2 -2
- package/dist/learn-cloud-plugin.cjs.production.min.js +8 -8
- package/dist/learn-cloud-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-cloud-plugin.esm.js +7 -0
- package/dist/learn-cloud-plugin.esm.js.map +2 -2
- package/dist/plugin.d.ts +1 -0
- package/dist/plugin.d.ts.map +1 -0
- package/dist/test/index.test.d.ts +1 -0
- package/dist/test/index.test.d.ts.map +1 -0
- package/dist/test/mocks/sample-vcs.d.ts +1 -0
- package/dist/test/mocks/sample-vcs.d.ts.map +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +7 -7
|
@@ -6953,6 +6953,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
6953
6953
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator2,
|
|
6954
6954
|
PaginatedEncryptedCredentialRecordsValidator: () => PaginatedEncryptedCredentialRecordsValidator2,
|
|
6955
6955
|
PaginatedEncryptedRecordsValidator: () => PaginatedEncryptedRecordsValidator2,
|
|
6956
|
+
PaginatedLCNProfilesValidator: () => PaginatedLCNProfilesValidator2,
|
|
6956
6957
|
PaginationOptionsValidator: () => PaginationOptionsValidator2,
|
|
6957
6958
|
PaginationResponseValidator: () => PaginationResponseValidator2,
|
|
6958
6959
|
ProfileValidator: () => ProfileValidator2,
|
|
@@ -10695,6 +10696,9 @@ var require_types_cjs_development = __commonJS2({
|
|
|
10695
10696
|
isServiceProfile: mod2.boolean().default(false).optional(),
|
|
10696
10697
|
notificationsWebhook: mod2.string().url().startsWith("https://").optional()
|
|
10697
10698
|
});
|
|
10699
|
+
var PaginatedLCNProfilesValidator2 = PaginationResponseValidator2.extend({
|
|
10700
|
+
records: LCNProfileValidator2.array()
|
|
10701
|
+
});
|
|
10698
10702
|
var LCNProfileConnectionStatusEnum2 = mod2.enum([
|
|
10699
10703
|
"CONNECTED",
|
|
10700
10704
|
"PENDING_REQUEST_SENT",
|
|
@@ -14477,6 +14481,9 @@ var LCNProfileValidator = mod.object({
|
|
|
14477
14481
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
14478
14482
|
notificationsWebhook: mod.string().url().startsWith("https://").optional()
|
|
14479
14483
|
});
|
|
14484
|
+
var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
|
|
14485
|
+
records: LCNProfileValidator.array()
|
|
14486
|
+
});
|
|
14480
14487
|
var LCNProfileConnectionStatusEnum = mod.enum([
|
|
14481
14488
|
"CONNECTED",
|
|
14482
14489
|
"PENDING_REQUEST_SENT",
|