@meshery/schemas 0.8.77 → 0.8.79

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.
@@ -26,6 +26,7 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
26
26
  getAcademyCirricula: _reduxjs_toolkit_query.QueryDefinition<GetAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>;
27
27
  getApiAcademyByTypeAndOrgIdSlug: _reduxjs_toolkit_query.QueryDefinition<GetApiAcademyByTypeAndOrgIdSlugApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetApiAcademyByTypeAndOrgIdSlugApiResponse, "api", unknown>;
28
28
  registerToAcademyContent: _reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", RegisterToAcademyContentApiResponse, "api", unknown>;
29
+ withdrawFromAcademyContent: _reduxjs_toolkit_query.MutationDefinition<WithdrawFromAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", WithdrawFromAcademyContentApiResponse, "api", unknown>;
29
30
  updateAcademyCurriculaById: _reduxjs_toolkit_query.MutationDefinition<UpdateAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", UpdateAcademyCurriculaByIdApiResponse, "api", unknown>;
30
31
  deleteAcademyCurriculaById: _reduxjs_toolkit_query.MutationDefinition<DeleteAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>;
31
32
  getAcademyCurriculaById: _reduxjs_toolkit_query.QueryDefinition<GetAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", GetAcademyCurriculaByIdApiResponse, "api", unknown>;
@@ -790,6 +791,69 @@ type RegisterToAcademyContentApiResponse = {
790
791
  /** Date when the certificate expires (optional) */
791
792
  expiration_date?: string;
792
793
  };
794
+ /** Test submissions made by the user (map of test IDs to Submissions) */
795
+ test_submissions: {
796
+ [key: string]: {
797
+ score: number;
798
+ passed: boolean;
799
+ percentage_scored: number;
800
+ total_marks: number;
801
+ pass_percentage: number;
802
+ correct_submissions: {
803
+ [key: string]: boolean;
804
+ };
805
+ quiz: {
806
+ id: string;
807
+ /** Organization ID that owns this quiz */
808
+ orgId: string;
809
+ /** Indicates if the quiz is final . i.e this quiz will used to evaluate the completion of parent section eg course , module , learning path */
810
+ final: boolean;
811
+ title: string;
812
+ description: string;
813
+ slug: string;
814
+ relPermalink: string;
815
+ permalink: string;
816
+ type: string;
817
+ section: string;
818
+ layout: string;
819
+ date: string;
820
+ lastmod: string;
821
+ draft: boolean;
822
+ file_path: string;
823
+ pass_percentage: number;
824
+ time_limit: string;
825
+ questions: {
826
+ id: string;
827
+ text: string;
828
+ type: "multiple-answers" | "single-answer" | "short-answer" | "essay";
829
+ marks: number;
830
+ multiple_answers?: boolean;
831
+ options: {
832
+ id: string;
833
+ text: string;
834
+ is_correct: boolean;
835
+ }[];
836
+ correct_answer: string;
837
+ }[];
838
+ total_questions: number;
839
+ total_marks: number;
840
+ prerequisites: {
841
+ id: string;
842
+ title: string;
843
+ relPermalink: string;
844
+ type: string;
845
+ }[];
846
+ parent?: {
847
+ id: string;
848
+ title: string;
849
+ relPermalink: string;
850
+ type: string;
851
+ };
852
+ };
853
+ attempted_at: string;
854
+ attempts: number;
855
+ }[];
856
+ };
793
857
  /** Additional metadata about the registration */
794
858
  metadata: {
795
859
  [key: string]: any;
@@ -802,6 +866,123 @@ type RegisterToAcademyContentApiArg = {
802
866
  content_type?: "learning-path" | "challenge" | "certification";
803
867
  };
804
868
  };
869
+ type WithdrawFromAcademyContentApiResponse = {
870
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
871
+ id: string;
872
+ /** ID of the organization */
873
+ org_id: string;
874
+ /** ID of the course content */
875
+ content_id: string;
876
+ /** ID of the user (foreign key to User) */
877
+ user_id: string;
878
+ /** Status of the user's course registration */
879
+ status: "registered" | "completed" | "failed" | "withdrawn";
880
+ /** When the registration was updated */
881
+ updated_at: string;
882
+ /** When the registration was created */
883
+ created_at: string;
884
+ /** Timestamp when the resource was deleted. */
885
+ deleted_at?: string;
886
+ /** Issued certificate for completing the curricula under registration */
887
+ certificate: {
888
+ /** Unique identifier for the certificate */
889
+ id: string;
890
+ /** UUID of the organization that issued the certificate */
891
+ org_id: string;
892
+ /** ID of the recipient (user) who received the certificate */
893
+ recipient_id: string;
894
+ /** Name of the recipient (user) who received the certificate */
895
+ recipient_name: string;
896
+ /** Title of the certificate */
897
+ title: string;
898
+ /** Description of the certificate */
899
+ description: string;
900
+ /** List of issuing authorities for the certificate */
901
+ issuing_authorities: {
902
+ /** Name of the issuing authority */
903
+ name: string;
904
+ /** Role of the issuing authority */
905
+ role?: string;
906
+ /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
907
+ signature_url?: string;
908
+ }[];
909
+ /** Date when the certificate was issued */
910
+ issued_date: string;
911
+ /** Date when the certificate expires (optional) */
912
+ expiration_date?: string;
913
+ };
914
+ /** Test submissions made by the user (map of test IDs to Submissions) */
915
+ test_submissions: {
916
+ [key: string]: {
917
+ score: number;
918
+ passed: boolean;
919
+ percentage_scored: number;
920
+ total_marks: number;
921
+ pass_percentage: number;
922
+ correct_submissions: {
923
+ [key: string]: boolean;
924
+ };
925
+ quiz: {
926
+ id: string;
927
+ /** Organization ID that owns this quiz */
928
+ orgId: string;
929
+ /** Indicates if the quiz is final . i.e this quiz will used to evaluate the completion of parent section eg course , module , learning path */
930
+ final: boolean;
931
+ title: string;
932
+ description: string;
933
+ slug: string;
934
+ relPermalink: string;
935
+ permalink: string;
936
+ type: string;
937
+ section: string;
938
+ layout: string;
939
+ date: string;
940
+ lastmod: string;
941
+ draft: boolean;
942
+ file_path: string;
943
+ pass_percentage: number;
944
+ time_limit: string;
945
+ questions: {
946
+ id: string;
947
+ text: string;
948
+ type: "multiple-answers" | "single-answer" | "short-answer" | "essay";
949
+ marks: number;
950
+ multiple_answers?: boolean;
951
+ options: {
952
+ id: string;
953
+ text: string;
954
+ is_correct: boolean;
955
+ }[];
956
+ correct_answer: string;
957
+ }[];
958
+ total_questions: number;
959
+ total_marks: number;
960
+ prerequisites: {
961
+ id: string;
962
+ title: string;
963
+ relPermalink: string;
964
+ type: string;
965
+ }[];
966
+ parent?: {
967
+ id: string;
968
+ title: string;
969
+ relPermalink: string;
970
+ type: string;
971
+ };
972
+ };
973
+ attempted_at: string;
974
+ attempts: number;
975
+ }[];
976
+ };
977
+ /** Additional metadata about the registration */
978
+ metadata: {
979
+ [key: string]: any;
980
+ };
981
+ };
982
+ type WithdrawFromAcademyContentApiArg = {
983
+ /** The ID of the curricula */
984
+ id: string;
985
+ };
805
986
  type UpdateAcademyCurriculaByIdApiResponse = /** status 200 updated the curricula */ {
806
987
  /** Id of the cirricula */
807
988
  id: string;
@@ -1173,6 +1354,69 @@ type GetApiAcademyRegistrationsByContentIdApiResponse =
1173
1354
  /** Date when the certificate expires (optional) */
1174
1355
  expiration_date?: string;
1175
1356
  };
1357
+ /** Test submissions made by the user (map of test IDs to Submissions) */
1358
+ test_submissions: {
1359
+ [key: string]: {
1360
+ score: number;
1361
+ passed: boolean;
1362
+ percentage_scored: number;
1363
+ total_marks: number;
1364
+ pass_percentage: number;
1365
+ correct_submissions: {
1366
+ [key: string]: boolean;
1367
+ };
1368
+ quiz: {
1369
+ id: string;
1370
+ /** Organization ID that owns this quiz */
1371
+ orgId: string;
1372
+ /** Indicates if the quiz is final . i.e this quiz will used to evaluate the completion of parent section eg course , module , learning path */
1373
+ final: boolean;
1374
+ title: string;
1375
+ description: string;
1376
+ slug: string;
1377
+ relPermalink: string;
1378
+ permalink: string;
1379
+ type: string;
1380
+ section: string;
1381
+ layout: string;
1382
+ date: string;
1383
+ lastmod: string;
1384
+ draft: boolean;
1385
+ file_path: string;
1386
+ pass_percentage: number;
1387
+ time_limit: string;
1388
+ questions: {
1389
+ id: string;
1390
+ text: string;
1391
+ type: "multiple-answers" | "single-answer" | "short-answer" | "essay";
1392
+ marks: number;
1393
+ multiple_answers?: boolean;
1394
+ options: {
1395
+ id: string;
1396
+ text: string;
1397
+ is_correct: boolean;
1398
+ }[];
1399
+ correct_answer: string;
1400
+ }[];
1401
+ total_questions: number;
1402
+ total_marks: number;
1403
+ prerequisites: {
1404
+ id: string;
1405
+ title: string;
1406
+ relPermalink: string;
1407
+ type: string;
1408
+ }[];
1409
+ parent?: {
1410
+ id: string;
1411
+ title: string;
1412
+ relPermalink: string;
1413
+ type: string;
1414
+ };
1415
+ };
1416
+ attempted_at: string;
1417
+ attempts: number;
1418
+ }[];
1419
+ };
1176
1420
  /** Additional metadata about the registration */
1177
1421
  metadata: {
1178
1422
  [key: string]: any;
@@ -1912,7 +2156,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1912
2156
  isSuccess: false;
1913
2157
  isError: true;
1914
2158
  })) => R) | undefined;
1915
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2159
+ fixedCacheKey?: string | undefined;
1916
2160
  } | undefined) => readonly [(arg: ImportDesignApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<ImportDesignApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", ImportDesignApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
1917
2161
  originalArgs?: ImportDesignApiArg | undefined;
1918
2162
  reset: () => void;
@@ -2073,7 +2317,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2073
2317
  isSuccess: false;
2074
2318
  isError: true;
2075
2319
  })) => R) | undefined;
2076
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2320
+ fixedCacheKey?: string | undefined;
2077
2321
  } | undefined) => readonly [(arg: RegisterMeshmodelsApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterMeshmodelsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", RegisterMeshmodelsApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2078
2322
  originalArgs?: RegisterMeshmodelsApiArg | undefined;
2079
2323
  reset: () => void;
@@ -2397,7 +2641,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
2397
2641
  isSuccess: false;
2398
2642
  isError: true;
2399
2643
  })) => R) | undefined;
2400
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2644
+ fixedCacheKey?: string | undefined;
2401
2645
  } | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2402
2646
  originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
2403
2647
  reset: () => void;
@@ -2558,7 +2802,7 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
2558
2802
  isSuccess: false;
2559
2803
  isError: true;
2560
2804
  })) => R) | undefined;
2561
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2805
+ fixedCacheKey?: string | undefined;
2562
2806
  } | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsCreateApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsCreateApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", PostApiEntitlementSubscriptionsCreateApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2563
2807
  originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
2564
2808
  reset: () => void;
@@ -2719,7 +2963,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation:
2719
2963
  isSuccess: false;
2720
2964
  isError: true;
2721
2965
  })) => R) | undefined;
2722
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2966
+ fixedCacheKey?: string | undefined;
2723
2967
  } | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2724
2968
  originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg | undefined;
2725
2969
  reset: () => void;
@@ -2880,7 +3124,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewMu
2880
3124
  isSuccess: false;
2881
3125
  isError: true;
2882
3126
  })) => R) | undefined;
2883
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
3127
+ fixedCacheKey?: string | undefined;
2884
3128
  } | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", object, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
2885
3129
  originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg | undefined;
2886
3130
  reset: () => void;
@@ -3041,7 +3285,7 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
3041
3285
  isSuccess: false;
3042
3286
  isError: true;
3043
3287
  })) => R) | undefined;
3044
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
3288
+ fixedCacheKey?: string | undefined;
3045
3289
  } | undefined) => readonly [(arg: PostApiEntitlementSubscriptionsWebhooksApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiEntitlementSubscriptionsWebhooksApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
3046
3290
  originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
3047
3291
  reset: () => void;
@@ -3854,7 +4098,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3854
4098
  isSuccess: false;
3855
4099
  isError: true;
3856
4100
  })) => R) | undefined;
3857
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
4101
+ fixedCacheKey?: string | undefined;
3858
4102
  } | undefined) => readonly [(arg: PostApiWorkspacesApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PostApiWorkspacesApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", PostApiWorkspacesApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
3859
4103
  originalArgs?: PostApiWorkspacesApiArg | undefined;
3860
4104
  reset: () => void;
@@ -4178,7 +4422,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
4178
4422
  isSuccess: false;
4179
4423
  isError: true;
4180
4424
  })) => R) | undefined;
4181
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
4425
+ fixedCacheKey?: string | undefined;
4182
4426
  } | undefined) => readonly [(arg: PutApiWorkspacesByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<PutApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", PutApiWorkspacesByIdApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
4183
4427
  originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
4184
4428
  reset: () => void;
@@ -4339,7 +4583,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
4339
4583
  isSuccess: false;
4340
4584
  isError: true;
4341
4585
  })) => R) | undefined;
4342
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
4586
+ fixedCacheKey?: string | undefined;
4343
4587
  } | undefined) => readonly [(arg: DeleteApiWorkspacesByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteApiWorkspacesByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
4344
4588
  originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
4345
4589
  reset: () => void;
@@ -4500,7 +4744,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
4500
4744
  isSuccess: false;
4501
4745
  isError: true;
4502
4746
  })) => R) | undefined;
4503
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
4747
+ fixedCacheKey?: string | undefined;
4504
4748
  } | undefined) => readonly [(arg: CreateEnvironmentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateEnvironmentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", CreateEnvironmentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
4505
4749
  originalArgs?: CreateEnvironmentApiArg | undefined;
4506
4750
  reset: () => void;
@@ -4987,7 +5231,7 @@ declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any>
4987
5231
  isSuccess: false;
4988
5232
  isError: true;
4989
5233
  })) => R) | undefined;
4990
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
5234
+ fixedCacheKey?: string | undefined;
4991
5235
  } | undefined) => readonly [(arg: CreateAcademyCurriculaApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateAcademyCurriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", CreateAcademyCurriculaApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
4992
5236
  originalArgs?: CreateAcademyCurriculaApiArg | undefined;
4993
5237
  reset: () => void;
@@ -5474,11 +5718,172 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
5474
5718
  isSuccess: false;
5475
5719
  isError: true;
5476
5720
  })) => R) | undefined;
5477
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
5721
+ fixedCacheKey?: string | undefined;
5478
5722
  } | undefined) => readonly [(arg: RegisterToAcademyContentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<RegisterToAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", RegisterToAcademyContentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
5479
5723
  originalArgs?: RegisterToAcademyContentApiArg | undefined;
5480
5724
  reset: () => void;
5481
5725
  }];
5726
+ declare const useWithdrawFromAcademyContentMutation: <R extends Record<string, any> = ({
5727
+ requestId?: undefined;
5728
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5729
+ data?: undefined;
5730
+ error?: undefined;
5731
+ endpointName?: string | undefined;
5732
+ startedTimeStamp?: undefined;
5733
+ fulfilledTimeStamp?: undefined;
5734
+ } & {
5735
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5736
+ isUninitialized: true;
5737
+ isLoading: false;
5738
+ isSuccess: false;
5739
+ isError: false;
5740
+ }) | ({
5741
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5742
+ } & Omit<{
5743
+ requestId: string;
5744
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5745
+ error?: unknown;
5746
+ endpointName: string;
5747
+ startedTimeStamp: number;
5748
+ fulfilledTimeStamp?: number | undefined;
5749
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5750
+ requestId: string;
5751
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5752
+ error?: unknown;
5753
+ endpointName: string;
5754
+ startedTimeStamp: number;
5755
+ fulfilledTimeStamp?: number | undefined;
5756
+ }, "data" | "fulfilledTimeStamp">> & {
5757
+ error: undefined;
5758
+ } & {
5759
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5760
+ isUninitialized: false;
5761
+ isLoading: false;
5762
+ isSuccess: true;
5763
+ isError: false;
5764
+ }) | ({
5765
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5766
+ } & {
5767
+ requestId: string;
5768
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5769
+ error?: unknown;
5770
+ endpointName: string;
5771
+ startedTimeStamp: number;
5772
+ fulfilledTimeStamp?: number | undefined;
5773
+ } & {
5774
+ data?: undefined;
5775
+ } & {
5776
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5777
+ isUninitialized: false;
5778
+ isLoading: true;
5779
+ isSuccess: false;
5780
+ isError: false;
5781
+ }) | ({
5782
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5783
+ } & Omit<{
5784
+ requestId: string;
5785
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5786
+ error?: unknown;
5787
+ endpointName: string;
5788
+ startedTimeStamp: number;
5789
+ fulfilledTimeStamp?: number | undefined;
5790
+ }, "error"> & Required<Pick<{
5791
+ requestId: string;
5792
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5793
+ error?: unknown;
5794
+ endpointName: string;
5795
+ startedTimeStamp: number;
5796
+ fulfilledTimeStamp?: number | undefined;
5797
+ }, "error">> & {
5798
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5799
+ isUninitialized: false;
5800
+ isLoading: false;
5801
+ isSuccess: false;
5802
+ isError: true;
5803
+ })>(options?: {
5804
+ selectFromResult?: ((state: ({
5805
+ requestId?: undefined;
5806
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5807
+ data?: undefined;
5808
+ error?: undefined;
5809
+ endpointName?: string | undefined;
5810
+ startedTimeStamp?: undefined;
5811
+ fulfilledTimeStamp?: undefined;
5812
+ } & {
5813
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
5814
+ isUninitialized: true;
5815
+ isLoading: false;
5816
+ isSuccess: false;
5817
+ isError: false;
5818
+ }) | ({
5819
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5820
+ } & Omit<{
5821
+ requestId: string;
5822
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5823
+ error?: unknown;
5824
+ endpointName: string;
5825
+ startedTimeStamp: number;
5826
+ fulfilledTimeStamp?: number | undefined;
5827
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
5828
+ requestId: string;
5829
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5830
+ error?: unknown;
5831
+ endpointName: string;
5832
+ startedTimeStamp: number;
5833
+ fulfilledTimeStamp?: number | undefined;
5834
+ }, "data" | "fulfilledTimeStamp">> & {
5835
+ error: undefined;
5836
+ } & {
5837
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
5838
+ isUninitialized: false;
5839
+ isLoading: false;
5840
+ isSuccess: true;
5841
+ isError: false;
5842
+ }) | ({
5843
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5844
+ } & {
5845
+ requestId: string;
5846
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5847
+ error?: unknown;
5848
+ endpointName: string;
5849
+ startedTimeStamp: number;
5850
+ fulfilledTimeStamp?: number | undefined;
5851
+ } & {
5852
+ data?: undefined;
5853
+ } & {
5854
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
5855
+ isUninitialized: false;
5856
+ isLoading: true;
5857
+ isSuccess: false;
5858
+ isError: false;
5859
+ }) | ({
5860
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5861
+ } & Omit<{
5862
+ requestId: string;
5863
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5864
+ error?: unknown;
5865
+ endpointName: string;
5866
+ startedTimeStamp: number;
5867
+ fulfilledTimeStamp?: number | undefined;
5868
+ }, "error"> & Required<Pick<{
5869
+ requestId: string;
5870
+ data?: WithdrawFromAcademyContentApiResponse | undefined;
5871
+ error?: unknown;
5872
+ endpointName: string;
5873
+ startedTimeStamp: number;
5874
+ fulfilledTimeStamp?: number | undefined;
5875
+ }, "error">> & {
5876
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
5877
+ isUninitialized: false;
5878
+ isLoading: false;
5879
+ isSuccess: false;
5880
+ isError: true;
5881
+ })) => R) | undefined;
5882
+ fixedCacheKey?: string | undefined;
5883
+ } | undefined) => readonly [(arg: WithdrawFromAcademyContentApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<WithdrawFromAcademyContentApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", WithdrawFromAcademyContentApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
5884
+ originalArgs?: WithdrawFromAcademyContentApiArg | undefined;
5885
+ reset: () => void;
5886
+ }];
5482
5887
  declare const useUpdateAcademyCurriculaByIdMutation: <R extends Record<string, any> = ({
5483
5888
  requestId?: undefined;
5484
5889
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -5635,7 +6040,7 @@ declare const useUpdateAcademyCurriculaByIdMutation: <R extends Record<string, a
5635
6040
  isSuccess: false;
5636
6041
  isError: true;
5637
6042
  })) => R) | undefined;
5638
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
6043
+ fixedCacheKey?: string | undefined;
5639
6044
  } | undefined) => readonly [(arg: UpdateAcademyCurriculaByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", UpdateAcademyCurriculaByIdApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
5640
6045
  originalArgs?: UpdateAcademyCurriculaByIdApiArg | undefined;
5641
6046
  reset: () => void;
@@ -5796,7 +6201,7 @@ declare const useDeleteAcademyCurriculaByIdMutation: <R extends Record<string, a
5796
6201
  isSuccess: false;
5797
6202
  isError: true;
5798
6203
  })) => R) | undefined;
5799
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
6204
+ fixedCacheKey?: string | undefined;
5800
6205
  } | undefined) => readonly [(arg: DeleteAcademyCurriculaByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteAcademyCurriculaByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
5801
6206
  originalArgs?: DeleteAcademyCurriculaByIdApiArg | undefined;
5802
6207
  reset: () => void;
@@ -6283,7 +6688,7 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
6283
6688
  isSuccess: false;
6284
6689
  isError: true;
6285
6690
  })) => R) | undefined;
6286
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
6691
+ fixedCacheKey?: string | undefined;
6287
6692
  } | undefined) => readonly [(arg: UpdateCurrentItemInProgressTrackerApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateCurrentItemInProgressTrackerApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", UpdateCurrentItemInProgressTrackerApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
6288
6693
  originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
6289
6694
  reset: () => void;
@@ -6444,7 +6849,7 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
6444
6849
  isSuccess: false;
6445
6850
  isError: true;
6446
6851
  })) => R) | undefined;
6447
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
6852
+ fixedCacheKey?: string | undefined;
6448
6853
  } | undefined) => readonly [(arg: SubmitQuizApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<SubmitQuizApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", SubmitQuizApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
6449
6854
  originalArgs?: SubmitQuizApiArg | undefined;
6450
6855
  reset: () => void;
@@ -7257,7 +7662,7 @@ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
7257
7662
  isSuccess: false;
7258
7663
  isError: true;
7259
7664
  })) => R) | undefined;
7260
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
7665
+ fixedCacheKey?: string | undefined;
7261
7666
  } | undefined) => readonly [(arg: DeleteInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
7262
7667
  originalArgs?: DeleteInvitationApiArg | undefined;
7263
7668
  reset: () => void;
@@ -7418,7 +7823,7 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
7418
7823
  isSuccess: false;
7419
7824
  isError: true;
7420
7825
  })) => R) | undefined;
7421
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
7826
+ fixedCacheKey?: string | undefined;
7422
7827
  } | undefined) => readonly [(arg: UpdateInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<UpdateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", UpdateInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
7423
7828
  originalArgs?: UpdateInvitationApiArg | undefined;
7424
7829
  reset: () => void;
@@ -7742,7 +8147,7 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
7742
8147
  isSuccess: false;
7743
8148
  isError: true;
7744
8149
  })) => R) | undefined;
7745
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
8150
+ fixedCacheKey?: string | undefined;
7746
8151
  } | undefined) => readonly [(arg: CreateInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", CreateInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
7747
8152
  originalArgs?: CreateInvitationApiArg | undefined;
7748
8153
  reset: () => void;
@@ -7903,7 +8308,7 @@ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
7903
8308
  isSuccess: false;
7904
8309
  isError: true;
7905
8310
  })) => R) | undefined;
7906
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
8311
+ fixedCacheKey?: string | undefined;
7907
8312
  } | undefined) => readonly [(arg: AcceptInvitationApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<AcceptInvitationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", AcceptInvitationApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
7908
8313
  originalArgs?: AcceptInvitationApiArg | undefined;
7909
8314
  reset: () => void;
@@ -8064,7 +8469,7 @@ declare const useDeleteBadgeByIdMutation: <R extends Record<string, any> = ({
8064
8469
  isSuccess: false;
8065
8470
  isError: true;
8066
8471
  })) => R) | undefined;
8067
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
8472
+ fixedCacheKey?: string | undefined;
8068
8473
  } | undefined) => readonly [(arg: DeleteBadgeByIdApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<DeleteBadgeByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", unknown, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
8069
8474
  originalArgs?: DeleteBadgeByIdApiArg | undefined;
8070
8475
  reset: () => void;
@@ -8388,10 +8793,10 @@ declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = (
8388
8793
  isSuccess: false;
8389
8794
  isError: true;
8390
8795
  })) => R) | undefined;
8391
- fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
8796
+ fixedCacheKey?: string | undefined;
8392
8797
  } | undefined) => readonly [(arg: CreateOrUpdateBadgeApiArg) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<CreateOrUpdateBadgeApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, "design_other" | "model_other" | "subscription_subscription" | "subscription_other" | "plan_Plans" | "feature_Features" | "workspace_workspaces" | "environment_environments" | "Academy_API_Academy" | "Academy_API_other" | "invitation_Invitation" | "badge_Badge", CreateOrUpdateBadgeApiResponse, "api", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
8393
8798
  originalArgs?: CreateOrUpdateBadgeApiArg | undefined;
8394
8799
  reset: () => void;
8395
8800
  }];
8396
8801
 
8397
- export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateAcademyCurriculaApiArg, type CreateAcademyCurriculaApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type CreateOrUpdateBadgeApiArg, type CreateOrUpdateBadgeApiResponse, type DeleteAcademyCurriculaByIdApiArg, type DeleteAcademyCurriculaByIdApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type DeleteBadgeByIdApiArg, type DeleteBadgeByIdApiResponse, type DeleteInvitationApiArg, type DeleteInvitationApiResponse, type GetAcademyAdminRegistrationsApiArg, type GetAcademyAdminRegistrationsApiResponse, type GetAcademyAdminSummaryApiArg, type GetAcademyAdminSummaryApiResponse, type GetAcademyCirriculaApiArg, type GetAcademyCirriculaApiResponse, type GetAcademyCurriculaByIdApiArg, type GetAcademyCurriculaByIdApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetBadgeByIdApiArg, type GetBadgeByIdApiResponse, type GetCertificateByIdApiArg, type GetCertificateByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetInvitationApiArg, type GetInvitationApiResponse, type GetInvitationsApiArg, type GetInvitationsApiResponse, type GetMyAcademyCirriculaApiArg, type GetMyAcademyCirriculaApiResponse, type GetPlansApiArg, type GetPlansApiResponse, type GetSubscriptionsApiArg, type GetSubscriptionsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiResponse, type PostApiEntitlementSubscriptionsCreateApiArg, type PostApiEntitlementSubscriptionsCreateApiResponse, type PostApiEntitlementSubscriptionsWebhooksApiArg, type PostApiEntitlementSubscriptionsWebhooksApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, type RegisterToAcademyContentApiArg, type RegisterToAcademyContentApiResponse, type SubmitQuizApiArg, type SubmitQuizApiResponse, type UpdateAcademyCurriculaByIdApiArg, type UpdateAcademyCurriculaByIdApiResponse, type UpdateCurrentItemInProgressTrackerApiArg, type UpdateCurrentItemInProgressTrackerApiResponse, type UpdateInvitationApiArg, type UpdateInvitationApiResponse, addTagTypes, injectedRtkApi as cloudApi, useAcceptInvitationMutation, useCreateAcademyCurriculaMutation, useCreateEnvironmentMutation, useCreateInvitationMutation, useCreateOrUpdateBadgeMutation, useDeleteAcademyCurriculaByIdMutation, useDeleteApiWorkspacesByIdMutation, useDeleteBadgeByIdMutation, useDeleteInvitationMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetAcademyCurriculaByIdQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetBadgeByIdQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateAcademyCurriculaByIdMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
8802
+ export { type AcceptInvitationApiArg, type AcceptInvitationApiResponse, type CreateAcademyCurriculaApiArg, type CreateAcademyCurriculaApiResponse, type CreateEnvironmentApiArg, type CreateEnvironmentApiResponse, type CreateInvitationApiArg, type CreateInvitationApiResponse, type CreateOrUpdateBadgeApiArg, type CreateOrUpdateBadgeApiResponse, type DeleteAcademyCurriculaByIdApiArg, type DeleteAcademyCurriculaByIdApiResponse, type DeleteApiWorkspacesByIdApiArg, type DeleteApiWorkspacesByIdApiResponse, type DeleteBadgeByIdApiArg, type DeleteBadgeByIdApiResponse, type DeleteInvitationApiArg, type DeleteInvitationApiResponse, type GetAcademyAdminRegistrationsApiArg, type GetAcademyAdminRegistrationsApiResponse, type GetAcademyAdminSummaryApiArg, type GetAcademyAdminSummaryApiResponse, type GetAcademyCirriculaApiArg, type GetAcademyCirriculaApiResponse, type GetAcademyCurriculaByIdApiArg, type GetAcademyCurriculaByIdApiResponse, type GetApiAcademyByTypeAndOrgIdSlugApiArg, type GetApiAcademyByTypeAndOrgIdSlugApiResponse, type GetApiAcademyRegistrationsByContentIdApiArg, type GetApiAcademyRegistrationsByContentIdApiResponse, type GetApiWorkspacesApiArg, type GetApiWorkspacesApiResponse, type GetApiWorkspacesByIdApiArg, type GetApiWorkspacesByIdApiResponse, type GetBadgeByIdApiArg, type GetBadgeByIdApiResponse, type GetCertificateByIdApiArg, type GetCertificateByIdApiResponse, type GetEnvironmentsApiArg, type GetEnvironmentsApiResponse, type GetFeaturesApiArg, type GetFeaturesApiResponse, type GetFeaturesByOrganizationApiArg, type GetFeaturesByOrganizationApiResponse, type GetInvitationApiArg, type GetInvitationApiResponse, type GetInvitationsApiArg, type GetInvitationsApiResponse, type GetMyAcademyCirriculaApiArg, type GetMyAcademyCirriculaApiResponse, type GetPlansApiArg, type GetPlansApiResponse, type GetSubscriptionsApiArg, type GetSubscriptionsApiResponse, type ImportDesignApiArg, type ImportDesignApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg, type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiResponse, type PostApiEntitlementSubscriptionsCreateApiArg, type PostApiEntitlementSubscriptionsCreateApiResponse, type PostApiEntitlementSubscriptionsWebhooksApiArg, type PostApiEntitlementSubscriptionsWebhooksApiResponse, type PostApiWorkspacesApiArg, type PostApiWorkspacesApiResponse, type PutApiWorkspacesByIdApiArg, type PutApiWorkspacesByIdApiResponse, type RegisterMeshmodelsApiArg, type RegisterMeshmodelsApiResponse, type RegisterToAcademyContentApiArg, type RegisterToAcademyContentApiResponse, type SubmitQuizApiArg, type SubmitQuizApiResponse, type UpdateAcademyCurriculaByIdApiArg, type UpdateAcademyCurriculaByIdApiResponse, type UpdateCurrentItemInProgressTrackerApiArg, type UpdateCurrentItemInProgressTrackerApiResponse, type UpdateInvitationApiArg, type UpdateInvitationApiResponse, type WithdrawFromAcademyContentApiArg, type WithdrawFromAcademyContentApiResponse, addTagTypes, injectedRtkApi as cloudApi, useAcceptInvitationMutation, useCreateAcademyCurriculaMutation, useCreateEnvironmentMutation, useCreateInvitationMutation, useCreateOrUpdateBadgeMutation, useDeleteAcademyCurriculaByIdMutation, useDeleteApiWorkspacesByIdMutation, useDeleteBadgeByIdMutation, useDeleteInvitationMutation, useGetAcademyAdminRegistrationsQuery, useGetAcademyAdminSummaryQuery, useGetAcademyCirriculaQuery, useGetAcademyCurriculaByIdQuery, useGetApiAcademyByTypeAndOrgIdSlugQuery, useGetApiAcademyRegistrationsByContentIdQuery, useGetApiWorkspacesByIdQuery, useGetApiWorkspacesQuery, useGetBadgeByIdQuery, useGetCertificateByIdQuery, useGetEnvironmentsQuery, useGetFeaturesByOrganizationQuery, useGetFeaturesQuery, useGetInvitationQuery, useGetInvitationsQuery, useGetMyAcademyCirriculaQuery, useGetPlansQuery, useGetSubscriptionsQuery, useImportDesignMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation, usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewMutation, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateAcademyCurriculaByIdMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation, useWithdrawFromAcademyContentMutation };