academe-kit 0.11.7 → 0.12.0

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.
@@ -2,7 +2,7 @@ import { type ReactNode } from 'react';
2
2
  import './journey-step.css';
3
3
  import type { FrameKind } from './frames/types';
4
4
  export type JourneyStepSize = 'sm' | 'md';
5
- export type JourneyStepType = 'challenge' | 'course' | 'tutorial' | 'publication' | 'evaluation' | 'certificate';
5
+ export type JourneyStepType = 'challenge' | 'course' | 'tutorial' | 'publication' | 'evaluation' | 'certificate' | 'redirect';
6
6
  export interface JourneyStepProps {
7
7
  color?: string;
8
8
  stepType?: JourneyStepType;
@@ -16095,7 +16095,7 @@ export interface components {
16095
16095
  * @example course
16096
16096
  * @enum {string}
16097
16097
  */
16098
- type: "challenge" | "course" | "tutorial" | "publication" | "evaluation" | "certificate";
16098
+ type: "challenge" | "course" | "tutorial" | "publication" | "evaluation" | "certificate" | "redirect";
16099
16099
  /**
16100
16100
  * @description Cor hex do step catalog
16101
16101
  * @example #8030D8
@@ -16127,6 +16127,8 @@ export interface components {
16127
16127
  * @example Introdução a IA
16128
16128
  */
16129
16129
  courseModuleName?: string | null;
16130
+ /** @description URL de redirecionamento desta etapa (apenas quando type=redirect) */
16131
+ redirectUrl?: string | null;
16130
16132
  };
16131
16133
  /** @description Desafio da jornada com suas etapas e status computados */
16132
16134
  JourneyChallengeView: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "academe-kit",
3
- "version": "0.11.7",
3
+ "version": "0.12.0",
4
4
  "type": "module",
5
5
  "description": "Official React SDK for Academe ecosystem - Authentication, protected routes, API services, and UI components for educational management applications",
6
6
  "main": "dist/index.cjs",