@meshery/schemas 0.8.75 → 0.8.77

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.
@@ -8,6 +8,8 @@ declare const injectedRtkApi: _reduxjs_toolkit_query.Api<(args: any, api: any, e
8
8
  getSubscriptions: _reduxjs_toolkit_query.QueryDefinition<GetSubscriptionsApiArg, (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", GetSubscriptionsApiResponse, "api", unknown>;
9
9
  postApiEntitlementSubscriptionsBySubscriptionIdCancel: _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>;
10
10
  postApiEntitlementSubscriptionsCreate: _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>;
11
+ postApiEntitlementSubscriptionsBySubscriptionIdUpgrade: _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>;
12
+ postApiEntitlementSubscriptionsBySubscriptionIdUpgradePreview: _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>;
11
13
  postApiEntitlementSubscriptionsWebhooks: _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>;
12
14
  getPlans: _reduxjs_toolkit_query.QueryDefinition<void, (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", GetPlansApiResponse, "api", unknown>;
13
15
  getFeatures: _reduxjs_toolkit_query.QueryDefinition<void, (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", GetFeaturesApiResponse, "api", unknown>;
@@ -134,8 +136,7 @@ type GetSubscriptionsApiArg = {
134
136
  /** Filter subscriptions by status */
135
137
  status?: string[];
136
138
  };
137
- type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse =
138
- /** status 200 Subscription created successfully */ {
139
+ type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse = {
139
140
  page: number;
140
141
  page_size: number;
141
142
  total_count: number;
@@ -193,6 +194,59 @@ type PostApiEntitlementSubscriptionsCreateApiArg = {
193
194
  payment_processor?: "stripe" | "paypal" | "braintree";
194
195
  };
195
196
  };
197
+ type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse = {
198
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
199
+ ID: string;
200
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
201
+ org_id: string;
202
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
203
+ plan_id: string;
204
+ plan?: {
205
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
206
+ id: string;
207
+ /** Name of the plan */
208
+ name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
209
+ cadence: "monthly" | "yearly";
210
+ unit: "user" | "free";
211
+ /** Minimum number of units required for the plan */
212
+ minimum_units: number;
213
+ /** Price per unit of the plan */
214
+ price_per_unit: number;
215
+ currency: "usd";
216
+ };
217
+ quantity: number;
218
+ start_date?: string;
219
+ end_date?: string;
220
+ /** Possible statuses of a Stripe subscription. */
221
+ status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid";
222
+ created_at?: string;
223
+ updated_at?: string;
224
+ deleted_at?: string;
225
+ /** Billing ID of the subscription. This is the ID of the subscription in the billing system. eg Stripe */
226
+ billing_id: string;
227
+ };
228
+ type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg = {
229
+ /** Subscription ID */
230
+ subscriptionId: string;
231
+ body: {
232
+ /** Old Plan id that is being changed */
233
+ old_plan_id?: string;
234
+ /** New Plan id that is being changed to */
235
+ new_plan_id?: string;
236
+ };
237
+ };
238
+ type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiResponse =
239
+ /** status 200 Preview of the upgraded subscription invoice */ object;
240
+ type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg = {
241
+ /** Subscription ID */
242
+ subscriptionId: string;
243
+ body: {
244
+ /** Old Plan id that is being changed */
245
+ old_plan_id?: string;
246
+ /** New Plan id that is being changed to */
247
+ new_plan_id?: string;
248
+ };
249
+ };
196
250
  type PostApiEntitlementSubscriptionsWebhooksApiResponse = unknown;
197
251
  type PostApiEntitlementSubscriptionsWebhooksApiArg = {
198
252
  body: object;
@@ -1858,7 +1912,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1858
1912
  isSuccess: false;
1859
1913
  isError: true;
1860
1914
  })) => R) | undefined;
1861
- fixedCacheKey?: string | undefined;
1915
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
1862
1916
  } | 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> & {
1863
1917
  originalArgs?: ImportDesignApiArg | undefined;
1864
1918
  reset: () => void;
@@ -2019,7 +2073,7 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2019
2073
  isSuccess: false;
2020
2074
  isError: true;
2021
2075
  })) => R) | undefined;
2022
- fixedCacheKey?: string | undefined;
2076
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2023
2077
  } | 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> & {
2024
2078
  originalArgs?: RegisterMeshmodelsApiArg | undefined;
2025
2079
  reset: () => void;
@@ -2343,7 +2397,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
2343
2397
  isSuccess: false;
2344
2398
  isError: true;
2345
2399
  })) => R) | undefined;
2346
- fixedCacheKey?: string | undefined;
2400
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2347
2401
  } | 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> & {
2348
2402
  originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
2349
2403
  reset: () => void;
@@ -2504,11 +2558,333 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
2504
2558
  isSuccess: false;
2505
2559
  isError: true;
2506
2560
  })) => R) | undefined;
2507
- fixedCacheKey?: string | undefined;
2561
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2508
2562
  } | 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> & {
2509
2563
  originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
2510
2564
  reset: () => void;
2511
2565
  }];
2566
+ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation: <R extends Record<string, any> = ({
2567
+ requestId?: undefined;
2568
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2569
+ data?: undefined;
2570
+ error?: undefined;
2571
+ endpointName?: string | undefined;
2572
+ startedTimeStamp?: undefined;
2573
+ fulfilledTimeStamp?: undefined;
2574
+ } & {
2575
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2576
+ isUninitialized: true;
2577
+ isLoading: false;
2578
+ isSuccess: false;
2579
+ isError: false;
2580
+ }) | ({
2581
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2582
+ } & Omit<{
2583
+ requestId: string;
2584
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2585
+ error?: unknown;
2586
+ endpointName: string;
2587
+ startedTimeStamp: number;
2588
+ fulfilledTimeStamp?: number | undefined;
2589
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2590
+ requestId: string;
2591
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2592
+ error?: unknown;
2593
+ endpointName: string;
2594
+ startedTimeStamp: number;
2595
+ fulfilledTimeStamp?: number | undefined;
2596
+ }, "data" | "fulfilledTimeStamp">> & {
2597
+ error: undefined;
2598
+ } & {
2599
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2600
+ isUninitialized: false;
2601
+ isLoading: false;
2602
+ isSuccess: true;
2603
+ isError: false;
2604
+ }) | ({
2605
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2606
+ } & {
2607
+ requestId: string;
2608
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2609
+ error?: unknown;
2610
+ endpointName: string;
2611
+ startedTimeStamp: number;
2612
+ fulfilledTimeStamp?: number | undefined;
2613
+ } & {
2614
+ data?: undefined;
2615
+ } & {
2616
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2617
+ isUninitialized: false;
2618
+ isLoading: true;
2619
+ isSuccess: false;
2620
+ isError: false;
2621
+ }) | ({
2622
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2623
+ } & Omit<{
2624
+ requestId: string;
2625
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2626
+ error?: unknown;
2627
+ endpointName: string;
2628
+ startedTimeStamp: number;
2629
+ fulfilledTimeStamp?: number | undefined;
2630
+ }, "error"> & Required<Pick<{
2631
+ requestId: string;
2632
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2633
+ error?: unknown;
2634
+ endpointName: string;
2635
+ startedTimeStamp: number;
2636
+ fulfilledTimeStamp?: number | undefined;
2637
+ }, "error">> & {
2638
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2639
+ isUninitialized: false;
2640
+ isLoading: false;
2641
+ isSuccess: false;
2642
+ isError: true;
2643
+ })>(options?: {
2644
+ selectFromResult?: ((state: ({
2645
+ requestId?: undefined;
2646
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2647
+ data?: undefined;
2648
+ error?: undefined;
2649
+ endpointName?: string | undefined;
2650
+ startedTimeStamp?: undefined;
2651
+ fulfilledTimeStamp?: undefined;
2652
+ } & {
2653
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2654
+ isUninitialized: true;
2655
+ isLoading: false;
2656
+ isSuccess: false;
2657
+ isError: false;
2658
+ }) | ({
2659
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2660
+ } & Omit<{
2661
+ requestId: string;
2662
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2663
+ error?: unknown;
2664
+ endpointName: string;
2665
+ startedTimeStamp: number;
2666
+ fulfilledTimeStamp?: number | undefined;
2667
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2668
+ requestId: string;
2669
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2670
+ error?: unknown;
2671
+ endpointName: string;
2672
+ startedTimeStamp: number;
2673
+ fulfilledTimeStamp?: number | undefined;
2674
+ }, "data" | "fulfilledTimeStamp">> & {
2675
+ error: undefined;
2676
+ } & {
2677
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2678
+ isUninitialized: false;
2679
+ isLoading: false;
2680
+ isSuccess: true;
2681
+ isError: false;
2682
+ }) | ({
2683
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2684
+ } & {
2685
+ requestId: string;
2686
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2687
+ error?: unknown;
2688
+ endpointName: string;
2689
+ startedTimeStamp: number;
2690
+ fulfilledTimeStamp?: number | undefined;
2691
+ } & {
2692
+ data?: undefined;
2693
+ } & {
2694
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2695
+ isUninitialized: false;
2696
+ isLoading: true;
2697
+ isSuccess: false;
2698
+ isError: false;
2699
+ }) | ({
2700
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2701
+ } & Omit<{
2702
+ requestId: string;
2703
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2704
+ error?: unknown;
2705
+ endpointName: string;
2706
+ startedTimeStamp: number;
2707
+ fulfilledTimeStamp?: number | undefined;
2708
+ }, "error"> & Required<Pick<{
2709
+ requestId: string;
2710
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2711
+ error?: unknown;
2712
+ endpointName: string;
2713
+ startedTimeStamp: number;
2714
+ fulfilledTimeStamp?: number | undefined;
2715
+ }, "error">> & {
2716
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2717
+ isUninitialized: false;
2718
+ isLoading: false;
2719
+ isSuccess: false;
2720
+ isError: true;
2721
+ })) => R) | undefined;
2722
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2723
+ } | 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
+ originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg | undefined;
2725
+ reset: () => void;
2726
+ }];
2727
+ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewMutation: <R extends Record<string, any> = ({
2728
+ requestId?: undefined;
2729
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2730
+ data?: undefined;
2731
+ error?: undefined;
2732
+ endpointName?: string | undefined;
2733
+ startedTimeStamp?: undefined;
2734
+ fulfilledTimeStamp?: undefined;
2735
+ } & {
2736
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2737
+ isUninitialized: true;
2738
+ isLoading: false;
2739
+ isSuccess: false;
2740
+ isError: false;
2741
+ }) | ({
2742
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2743
+ } & Omit<{
2744
+ requestId: string;
2745
+ data?: object | undefined;
2746
+ error?: unknown;
2747
+ endpointName: string;
2748
+ startedTimeStamp: number;
2749
+ fulfilledTimeStamp?: number | undefined;
2750
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2751
+ requestId: string;
2752
+ data?: object | undefined;
2753
+ error?: unknown;
2754
+ endpointName: string;
2755
+ startedTimeStamp: number;
2756
+ fulfilledTimeStamp?: number | undefined;
2757
+ }, "data" | "fulfilledTimeStamp">> & {
2758
+ error: undefined;
2759
+ } & {
2760
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2761
+ isUninitialized: false;
2762
+ isLoading: false;
2763
+ isSuccess: true;
2764
+ isError: false;
2765
+ }) | ({
2766
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2767
+ } & {
2768
+ requestId: string;
2769
+ data?: object | undefined;
2770
+ error?: unknown;
2771
+ endpointName: string;
2772
+ startedTimeStamp: number;
2773
+ fulfilledTimeStamp?: number | undefined;
2774
+ } & {
2775
+ data?: undefined;
2776
+ } & {
2777
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2778
+ isUninitialized: false;
2779
+ isLoading: true;
2780
+ isSuccess: false;
2781
+ isError: false;
2782
+ }) | ({
2783
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2784
+ } & Omit<{
2785
+ requestId: string;
2786
+ data?: object | undefined;
2787
+ error?: unknown;
2788
+ endpointName: string;
2789
+ startedTimeStamp: number;
2790
+ fulfilledTimeStamp?: number | undefined;
2791
+ }, "error"> & Required<Pick<{
2792
+ requestId: string;
2793
+ data?: object | undefined;
2794
+ error?: unknown;
2795
+ endpointName: string;
2796
+ startedTimeStamp: number;
2797
+ fulfilledTimeStamp?: number | undefined;
2798
+ }, "error">> & {
2799
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2800
+ isUninitialized: false;
2801
+ isLoading: false;
2802
+ isSuccess: false;
2803
+ isError: true;
2804
+ })>(options?: {
2805
+ selectFromResult?: ((state: ({
2806
+ requestId?: undefined;
2807
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2808
+ data?: undefined;
2809
+ error?: undefined;
2810
+ endpointName?: string | undefined;
2811
+ startedTimeStamp?: undefined;
2812
+ fulfilledTimeStamp?: undefined;
2813
+ } & {
2814
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2815
+ isUninitialized: true;
2816
+ isLoading: false;
2817
+ isSuccess: false;
2818
+ isError: false;
2819
+ }) | ({
2820
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2821
+ } & Omit<{
2822
+ requestId: string;
2823
+ data?: object | undefined;
2824
+ error?: unknown;
2825
+ endpointName: string;
2826
+ startedTimeStamp: number;
2827
+ fulfilledTimeStamp?: number | undefined;
2828
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2829
+ requestId: string;
2830
+ data?: object | undefined;
2831
+ error?: unknown;
2832
+ endpointName: string;
2833
+ startedTimeStamp: number;
2834
+ fulfilledTimeStamp?: number | undefined;
2835
+ }, "data" | "fulfilledTimeStamp">> & {
2836
+ error: undefined;
2837
+ } & {
2838
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2839
+ isUninitialized: false;
2840
+ isLoading: false;
2841
+ isSuccess: true;
2842
+ isError: false;
2843
+ }) | ({
2844
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2845
+ } & {
2846
+ requestId: string;
2847
+ data?: object | undefined;
2848
+ error?: unknown;
2849
+ endpointName: string;
2850
+ startedTimeStamp: number;
2851
+ fulfilledTimeStamp?: number | undefined;
2852
+ } & {
2853
+ data?: undefined;
2854
+ } & {
2855
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2856
+ isUninitialized: false;
2857
+ isLoading: true;
2858
+ isSuccess: false;
2859
+ isError: false;
2860
+ }) | ({
2861
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2862
+ } & Omit<{
2863
+ requestId: string;
2864
+ data?: object | undefined;
2865
+ error?: unknown;
2866
+ endpointName: string;
2867
+ startedTimeStamp: number;
2868
+ fulfilledTimeStamp?: number | undefined;
2869
+ }, "error"> & Required<Pick<{
2870
+ requestId: string;
2871
+ data?: object | undefined;
2872
+ error?: unknown;
2873
+ endpointName: string;
2874
+ startedTimeStamp: number;
2875
+ fulfilledTimeStamp?: number | undefined;
2876
+ }, "error">> & {
2877
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2878
+ isUninitialized: false;
2879
+ isLoading: false;
2880
+ isSuccess: false;
2881
+ isError: true;
2882
+ })) => R) | undefined;
2883
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2884
+ } | 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
+ originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradePreviewApiArg | undefined;
2886
+ reset: () => void;
2887
+ }];
2512
2888
  declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
2513
2889
  requestId?: undefined;
2514
2890
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
@@ -2665,7 +3041,7 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
2665
3041
  isSuccess: false;
2666
3042
  isError: true;
2667
3043
  })) => R) | undefined;
2668
- fixedCacheKey?: string | undefined;
3044
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
2669
3045
  } | 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> & {
2670
3046
  originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
2671
3047
  reset: () => void;
@@ -3478,7 +3854,7 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3478
3854
  isSuccess: false;
3479
3855
  isError: true;
3480
3856
  })) => R) | undefined;
3481
- fixedCacheKey?: string | undefined;
3857
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
3482
3858
  } | 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> & {
3483
3859
  originalArgs?: PostApiWorkspacesApiArg | undefined;
3484
3860
  reset: () => void;
@@ -3802,7 +4178,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3802
4178
  isSuccess: false;
3803
4179
  isError: true;
3804
4180
  })) => R) | undefined;
3805
- fixedCacheKey?: string | undefined;
4181
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
3806
4182
  } | 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> & {
3807
4183
  originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
3808
4184
  reset: () => void;
@@ -3963,7 +4339,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3963
4339
  isSuccess: false;
3964
4340
  isError: true;
3965
4341
  })) => R) | undefined;
3966
- fixedCacheKey?: string | undefined;
4342
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
3967
4343
  } | 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> & {
3968
4344
  originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
3969
4345
  reset: () => void;
@@ -4124,7 +4500,7 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
4124
4500
  isSuccess: false;
4125
4501
  isError: true;
4126
4502
  })) => R) | undefined;
4127
- fixedCacheKey?: string | undefined;
4503
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
4128
4504
  } | 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> & {
4129
4505
  originalArgs?: CreateEnvironmentApiArg | undefined;
4130
4506
  reset: () => void;
@@ -4611,7 +4987,7 @@ declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any>
4611
4987
  isSuccess: false;
4612
4988
  isError: true;
4613
4989
  })) => R) | undefined;
4614
- fixedCacheKey?: string | undefined;
4990
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
4615
4991
  } | 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> & {
4616
4992
  originalArgs?: CreateAcademyCurriculaApiArg | undefined;
4617
4993
  reset: () => void;
@@ -5098,7 +5474,7 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
5098
5474
  isSuccess: false;
5099
5475
  isError: true;
5100
5476
  })) => R) | undefined;
5101
- fixedCacheKey?: string | undefined;
5477
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
5102
5478
  } | 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> & {
5103
5479
  originalArgs?: RegisterToAcademyContentApiArg | undefined;
5104
5480
  reset: () => void;
@@ -5259,7 +5635,7 @@ declare const useUpdateAcademyCurriculaByIdMutation: <R extends Record<string, a
5259
5635
  isSuccess: false;
5260
5636
  isError: true;
5261
5637
  })) => R) | undefined;
5262
- fixedCacheKey?: string | undefined;
5638
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
5263
5639
  } | 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> & {
5264
5640
  originalArgs?: UpdateAcademyCurriculaByIdApiArg | undefined;
5265
5641
  reset: () => void;
@@ -5420,7 +5796,7 @@ declare const useDeleteAcademyCurriculaByIdMutation: <R extends Record<string, a
5420
5796
  isSuccess: false;
5421
5797
  isError: true;
5422
5798
  })) => R) | undefined;
5423
- fixedCacheKey?: string | undefined;
5799
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
5424
5800
  } | 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> & {
5425
5801
  originalArgs?: DeleteAcademyCurriculaByIdApiArg | undefined;
5426
5802
  reset: () => void;
@@ -5907,7 +6283,7 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
5907
6283
  isSuccess: false;
5908
6284
  isError: true;
5909
6285
  })) => R) | undefined;
5910
- fixedCacheKey?: string | undefined;
6286
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
5911
6287
  } | 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> & {
5912
6288
  originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
5913
6289
  reset: () => void;
@@ -6068,7 +6444,7 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
6068
6444
  isSuccess: false;
6069
6445
  isError: true;
6070
6446
  })) => R) | undefined;
6071
- fixedCacheKey?: string | undefined;
6447
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
6072
6448
  } | 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> & {
6073
6449
  originalArgs?: SubmitQuizApiArg | undefined;
6074
6450
  reset: () => void;
@@ -6881,7 +7257,7 @@ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
6881
7257
  isSuccess: false;
6882
7258
  isError: true;
6883
7259
  })) => R) | undefined;
6884
- fixedCacheKey?: string | undefined;
7260
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
6885
7261
  } | 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> & {
6886
7262
  originalArgs?: DeleteInvitationApiArg | undefined;
6887
7263
  reset: () => void;
@@ -7042,7 +7418,7 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
7042
7418
  isSuccess: false;
7043
7419
  isError: true;
7044
7420
  })) => R) | undefined;
7045
- fixedCacheKey?: string | undefined;
7421
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
7046
7422
  } | 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> & {
7047
7423
  originalArgs?: UpdateInvitationApiArg | undefined;
7048
7424
  reset: () => void;
@@ -7366,7 +7742,7 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
7366
7742
  isSuccess: false;
7367
7743
  isError: true;
7368
7744
  })) => R) | undefined;
7369
- fixedCacheKey?: string | undefined;
7745
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
7370
7746
  } | 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> & {
7371
7747
  originalArgs?: CreateInvitationApiArg | undefined;
7372
7748
  reset: () => void;
@@ -7527,7 +7903,7 @@ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
7527
7903
  isSuccess: false;
7528
7904
  isError: true;
7529
7905
  })) => R) | undefined;
7530
- fixedCacheKey?: string | undefined;
7906
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
7531
7907
  } | 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> & {
7532
7908
  originalArgs?: AcceptInvitationApiArg | undefined;
7533
7909
  reset: () => void;
@@ -7688,7 +8064,7 @@ declare const useDeleteBadgeByIdMutation: <R extends Record<string, any> = ({
7688
8064
  isSuccess: false;
7689
8065
  isError: true;
7690
8066
  })) => R) | undefined;
7691
- fixedCacheKey?: string | undefined;
8067
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
7692
8068
  } | 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> & {
7693
8069
  originalArgs?: DeleteBadgeByIdApiArg | undefined;
7694
8070
  reset: () => void;
@@ -8012,10 +8388,10 @@ declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = (
8012
8388
  isSuccess: false;
8013
8389
  isError: true;
8014
8390
  })) => R) | undefined;
8015
- fixedCacheKey?: string | undefined;
8391
+ fixedCacheKey?: string | undefined; /** When the cirricula was last updated */
8016
8392
  } | 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> & {
8017
8393
  originalArgs?: CreateOrUpdateBadgeApiArg | undefined;
8018
8394
  reset: () => void;
8019
8395
  }];
8020
8396
 
8021
- 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 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, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateAcademyCurriculaByIdMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };
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 };