@meshery/schemas 0.8.51 → 0.8.52
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/cloudApi.d.mts +20 -2
- package/dist/cloudApi.d.ts +20 -2
- package/dist/mesheryApi.d.mts +82 -82
- package/dist/mesheryApi.d.ts +82 -82
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -433,6 +433,24 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
|
|
|
433
433
|
banner?: string | null;
|
|
434
434
|
/** Canonical URL for the learning path */
|
|
435
435
|
permalink: string;
|
|
436
|
+
badge?: {
|
|
437
|
+
/** unique identifier for the badge ( auto generated ) */
|
|
438
|
+
label: string;
|
|
439
|
+
/** Title of the badge */
|
|
440
|
+
title: string;
|
|
441
|
+
/** Description of the badge */
|
|
442
|
+
description: string;
|
|
443
|
+
/** URL to the badge image */
|
|
444
|
+
png: string;
|
|
445
|
+
/** URL to the badge SVG image */
|
|
446
|
+
svg: string;
|
|
447
|
+
};
|
|
448
|
+
certificate?: {
|
|
449
|
+
/** Title of the certificate */
|
|
450
|
+
title: string;
|
|
451
|
+
/** Description of the certificate */
|
|
452
|
+
description: string;
|
|
453
|
+
};
|
|
436
454
|
/** List of children items in the top-level curricula */
|
|
437
455
|
children?: {
|
|
438
456
|
/** Unique identifier for the course */
|
|
@@ -560,7 +578,7 @@ type UpdateCurrentItemInProgressTrackerApiResponse =
|
|
|
560
578
|
questions: {
|
|
561
579
|
id: string;
|
|
562
580
|
text: string;
|
|
563
|
-
type: "
|
|
581
|
+
type: "multiple_answers" | "single_answer" | "short_answer" | "essay";
|
|
564
582
|
marks: number;
|
|
565
583
|
multiple_answers: boolean;
|
|
566
584
|
options: {
|
|
@@ -656,7 +674,7 @@ type SubmitQuizApiResponse = {
|
|
|
656
674
|
questions: {
|
|
657
675
|
id: string;
|
|
658
676
|
text: string;
|
|
659
|
-
type: "
|
|
677
|
+
type: "multiple_answers" | "single_answer" | "short_answer" | "essay";
|
|
660
678
|
marks: number;
|
|
661
679
|
multiple_answers: boolean;
|
|
662
680
|
options: {
|
package/dist/cloudApi.d.ts
CHANGED
|
@@ -433,6 +433,24 @@ type GetApiAcademyByTypeAndOrgIdSlugApiResponse = {
|
|
|
433
433
|
banner?: string | null;
|
|
434
434
|
/** Canonical URL for the learning path */
|
|
435
435
|
permalink: string;
|
|
436
|
+
badge?: {
|
|
437
|
+
/** unique identifier for the badge ( auto generated ) */
|
|
438
|
+
label: string;
|
|
439
|
+
/** Title of the badge */
|
|
440
|
+
title: string;
|
|
441
|
+
/** Description of the badge */
|
|
442
|
+
description: string;
|
|
443
|
+
/** URL to the badge image */
|
|
444
|
+
png: string;
|
|
445
|
+
/** URL to the badge SVG image */
|
|
446
|
+
svg: string;
|
|
447
|
+
};
|
|
448
|
+
certificate?: {
|
|
449
|
+
/** Title of the certificate */
|
|
450
|
+
title: string;
|
|
451
|
+
/** Description of the certificate */
|
|
452
|
+
description: string;
|
|
453
|
+
};
|
|
436
454
|
/** List of children items in the top-level curricula */
|
|
437
455
|
children?: {
|
|
438
456
|
/** Unique identifier for the course */
|
|
@@ -560,7 +578,7 @@ type UpdateCurrentItemInProgressTrackerApiResponse =
|
|
|
560
578
|
questions: {
|
|
561
579
|
id: string;
|
|
562
580
|
text: string;
|
|
563
|
-
type: "
|
|
581
|
+
type: "multiple_answers" | "single_answer" | "short_answer" | "essay";
|
|
564
582
|
marks: number;
|
|
565
583
|
multiple_answers: boolean;
|
|
566
584
|
options: {
|
|
@@ -656,7 +674,7 @@ type SubmitQuizApiResponse = {
|
|
|
656
674
|
questions: {
|
|
657
675
|
id: string;
|
|
658
676
|
text: string;
|
|
659
|
-
type: "
|
|
677
|
+
type: "multiple_answers" | "single_answer" | "short_answer" | "essay";
|
|
660
678
|
marks: number;
|
|
661
679
|
multiple_answers: boolean;
|
|
662
680
|
options: {
|