@learncard/learn-cloud-plugin 1.1.26 → 1.1.27
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 +11 -2
- 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 +11 -2
- 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 +4 -4
|
@@ -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",
|
|
@@ -10714,7 +10718,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
10714
10718
|
name: mod2.string().optional(),
|
|
10715
10719
|
type: mod2.string().optional(),
|
|
10716
10720
|
category: mod2.string().optional(),
|
|
10717
|
-
status: LCNBoostStatus2.optional()
|
|
10721
|
+
status: LCNBoostStatus2.optional(),
|
|
10722
|
+
autoConnectRecipients: mod2.boolean().optional()
|
|
10718
10723
|
});
|
|
10719
10724
|
var BoostRecipientValidator2 = mod2.object({
|
|
10720
10725
|
to: LCNProfileValidator2,
|
|
@@ -14477,6 +14482,9 @@ var LCNProfileValidator = mod.object({
|
|
|
14477
14482
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
14478
14483
|
notificationsWebhook: mod.string().url().startsWith("https://").optional()
|
|
14479
14484
|
});
|
|
14485
|
+
var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
|
|
14486
|
+
records: LCNProfileValidator.array()
|
|
14487
|
+
});
|
|
14480
14488
|
var LCNProfileConnectionStatusEnum = mod.enum([
|
|
14481
14489
|
"CONNECTED",
|
|
14482
14490
|
"PENDING_REQUEST_SENT",
|
|
@@ -14496,7 +14504,8 @@ var BoostValidator = mod.object({
|
|
|
14496
14504
|
name: mod.string().optional(),
|
|
14497
14505
|
type: mod.string().optional(),
|
|
14498
14506
|
category: mod.string().optional(),
|
|
14499
|
-
status: LCNBoostStatus.optional()
|
|
14507
|
+
status: LCNBoostStatus.optional(),
|
|
14508
|
+
autoConnectRecipients: mod.boolean().optional()
|
|
14500
14509
|
});
|
|
14501
14510
|
var BoostRecipientValidator = mod.object({
|
|
14502
14511
|
to: LCNProfileValidator,
|