@meshery/schemas 0.8.75 → 0.8.76

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,7 @@ 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>;
11
12
  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
13
  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
14
  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 +135,7 @@ type GetSubscriptionsApiArg = {
134
135
  /** Filter subscriptions by status */
135
136
  status?: string[];
136
137
  };
137
- type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse =
138
- /** status 200 Subscription created successfully */ {
138
+ type PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiResponse = {
139
139
  page: number;
140
140
  page_size: number;
141
141
  total_count: number;
@@ -193,6 +193,47 @@ type PostApiEntitlementSubscriptionsCreateApiArg = {
193
193
  payment_processor?: "stripe" | "paypal" | "braintree";
194
194
  };
195
195
  };
196
+ type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse = {
197
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
198
+ ID: string;
199
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
200
+ org_id: string;
201
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
202
+ plan_id: string;
203
+ plan?: {
204
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
205
+ id: string;
206
+ /** Name of the plan */
207
+ name: "Free" | "Team Designer" | "Team Operator" | "Enterprise";
208
+ cadence: "monthly" | "yearly";
209
+ unit: "user" | "free";
210
+ /** Minimum number of units required for the plan */
211
+ minimum_units: number;
212
+ /** Price per unit of the plan */
213
+ price_per_unit: number;
214
+ currency: "usd";
215
+ };
216
+ quantity: number;
217
+ start_date?: string;
218
+ end_date?: string;
219
+ /** Possible statuses of a Stripe subscription. */
220
+ status: "incomplete" | "incomplete_expired" | "trialing" | "active" | "past_due" | "canceled" | "unpaid";
221
+ created_at?: string;
222
+ updated_at?: string;
223
+ deleted_at?: string;
224
+ /** Billing ID of the subscription. This is the ID of the subscription in the billing system. eg Stripe */
225
+ billing_id: string;
226
+ };
227
+ type PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg = {
228
+ /** Subscription ID */
229
+ subscriptionId: string;
230
+ body: {
231
+ /** Old Plan id that is being changed */
232
+ old_plan_id?: string;
233
+ /** New Plan id that is being changed to */
234
+ new_plan_id?: string;
235
+ };
236
+ };
196
237
  type PostApiEntitlementSubscriptionsWebhooksApiResponse = unknown;
197
238
  type PostApiEntitlementSubscriptionsWebhooksApiArg = {
198
239
  body: object;
@@ -1861,7 +1902,7 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
1861
1902
  fixedCacheKey?: string | undefined;
1862
1903
  } | 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
1904
  originalArgs?: ImportDesignApiArg | undefined;
1864
- reset: () => void;
1905
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
1865
1906
  }];
1866
1907
  declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
1867
1908
  requestId?: undefined;
@@ -2022,11 +2063,11 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2022
2063
  fixedCacheKey?: string | undefined;
2023
2064
  } | 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
2065
  originalArgs?: RegisterMeshmodelsApiArg | undefined;
2025
- reset: () => void;
2066
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
2026
2067
  }];
2027
2068
  declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
2028
- data?: undefined;
2029
2069
  error?: undefined;
2070
+ data?: undefined;
2030
2071
  fulfilledTimeStamp?: undefined;
2031
2072
  originalArgs?: undefined;
2032
2073
  requestId?: undefined;
@@ -2107,8 +2148,8 @@ declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
2107
2148
  } & {
2108
2149
  skip?: boolean | undefined;
2109
2150
  selectFromResult?: ((state: ({
2110
- data?: undefined;
2111
2151
  error?: undefined;
2152
+ data?: undefined;
2112
2153
  fulfilledTimeStamp?: undefined;
2113
2154
  originalArgs?: undefined;
2114
2155
  requestId?: undefined;
@@ -2346,7 +2387,7 @@ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdCancelMutation:
2346
2387
  fixedCacheKey?: string | undefined;
2347
2388
  } | 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
2389
  originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdCancelApiArg | undefined;
2349
- reset: () => void;
2390
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
2350
2391
  }];
2351
2392
  declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Record<string, any> = ({
2352
2393
  requestId?: undefined;
@@ -2507,7 +2548,168 @@ declare const usePostApiEntitlementSubscriptionsCreateMutation: <R extends Recor
2507
2548
  fixedCacheKey?: string | undefined;
2508
2549
  } | 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
2550
  originalArgs?: PostApiEntitlementSubscriptionsCreateApiArg | undefined;
2510
- reset: () => void;
2551
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
2552
+ }];
2553
+ declare const usePostApiEntitlementSubscriptionsBySubscriptionIdUpgradeMutation: <R extends Record<string, any> = ({
2554
+ requestId?: undefined;
2555
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2556
+ data?: undefined;
2557
+ error?: undefined;
2558
+ endpointName?: string | undefined;
2559
+ startedTimeStamp?: undefined;
2560
+ fulfilledTimeStamp?: undefined;
2561
+ } & {
2562
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2563
+ isUninitialized: true;
2564
+ isLoading: false;
2565
+ isSuccess: false;
2566
+ isError: false;
2567
+ }) | ({
2568
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2569
+ } & Omit<{
2570
+ requestId: string;
2571
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2572
+ error?: unknown;
2573
+ endpointName: string;
2574
+ startedTimeStamp: number;
2575
+ fulfilledTimeStamp?: number | undefined;
2576
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2577
+ requestId: string;
2578
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2579
+ error?: unknown;
2580
+ endpointName: string;
2581
+ startedTimeStamp: number;
2582
+ fulfilledTimeStamp?: number | undefined;
2583
+ }, "data" | "fulfilledTimeStamp">> & {
2584
+ error: undefined;
2585
+ } & {
2586
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2587
+ isUninitialized: false;
2588
+ isLoading: false;
2589
+ isSuccess: true;
2590
+ isError: false;
2591
+ }) | ({
2592
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2593
+ } & {
2594
+ requestId: string;
2595
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2596
+ error?: unknown;
2597
+ endpointName: string;
2598
+ startedTimeStamp: number;
2599
+ fulfilledTimeStamp?: number | undefined;
2600
+ } & {
2601
+ data?: undefined;
2602
+ } & {
2603
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2604
+ isUninitialized: false;
2605
+ isLoading: true;
2606
+ isSuccess: false;
2607
+ isError: false;
2608
+ }) | ({
2609
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2610
+ } & Omit<{
2611
+ requestId: string;
2612
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2613
+ error?: unknown;
2614
+ endpointName: string;
2615
+ startedTimeStamp: number;
2616
+ fulfilledTimeStamp?: number | undefined;
2617
+ }, "error"> & Required<Pick<{
2618
+ requestId: string;
2619
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2620
+ error?: unknown;
2621
+ endpointName: string;
2622
+ startedTimeStamp: number;
2623
+ fulfilledTimeStamp?: number | undefined;
2624
+ }, "error">> & {
2625
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2626
+ isUninitialized: false;
2627
+ isLoading: false;
2628
+ isSuccess: false;
2629
+ isError: true;
2630
+ })>(options?: {
2631
+ selectFromResult?: ((state: ({
2632
+ requestId?: undefined;
2633
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2634
+ data?: undefined;
2635
+ error?: undefined;
2636
+ endpointName?: string | undefined;
2637
+ startedTimeStamp?: undefined;
2638
+ fulfilledTimeStamp?: undefined;
2639
+ } & {
2640
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2641
+ isUninitialized: true;
2642
+ isLoading: false;
2643
+ isSuccess: false;
2644
+ isError: false;
2645
+ }) | ({
2646
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2647
+ } & Omit<{
2648
+ requestId: string;
2649
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2650
+ error?: unknown;
2651
+ endpointName: string;
2652
+ startedTimeStamp: number;
2653
+ fulfilledTimeStamp?: number | undefined;
2654
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2655
+ requestId: string;
2656
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2657
+ error?: unknown;
2658
+ endpointName: string;
2659
+ startedTimeStamp: number;
2660
+ fulfilledTimeStamp?: number | undefined;
2661
+ }, "data" | "fulfilledTimeStamp">> & {
2662
+ error: undefined;
2663
+ } & {
2664
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2665
+ isUninitialized: false;
2666
+ isLoading: false;
2667
+ isSuccess: true;
2668
+ isError: false;
2669
+ }) | ({
2670
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2671
+ } & {
2672
+ requestId: string;
2673
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2674
+ error?: unknown;
2675
+ endpointName: string;
2676
+ startedTimeStamp: number;
2677
+ fulfilledTimeStamp?: number | undefined;
2678
+ } & {
2679
+ data?: undefined;
2680
+ } & {
2681
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
2682
+ isUninitialized: false;
2683
+ isLoading: true;
2684
+ isSuccess: false;
2685
+ isError: false;
2686
+ }) | ({
2687
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2688
+ } & Omit<{
2689
+ requestId: string;
2690
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2691
+ error?: unknown;
2692
+ endpointName: string;
2693
+ startedTimeStamp: number;
2694
+ fulfilledTimeStamp?: number | undefined;
2695
+ }, "error"> & Required<Pick<{
2696
+ requestId: string;
2697
+ data?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiResponse | undefined;
2698
+ error?: unknown;
2699
+ endpointName: string;
2700
+ startedTimeStamp: number;
2701
+ fulfilledTimeStamp?: number | undefined;
2702
+ }, "error">> & {
2703
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
2704
+ isUninitialized: false;
2705
+ isLoading: false;
2706
+ isSuccess: false;
2707
+ isError: true;
2708
+ })) => R) | undefined;
2709
+ fixedCacheKey?: string | undefined;
2710
+ } | 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> & {
2711
+ originalArgs?: PostApiEntitlementSubscriptionsBySubscriptionIdUpgradeApiArg | undefined;
2712
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
2511
2713
  }];
2512
2714
  declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Record<string, any> = ({
2513
2715
  requestId?: undefined;
@@ -2668,11 +2870,11 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
2668
2870
  fixedCacheKey?: string | undefined;
2669
2871
  } | 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
2872
  originalArgs?: PostApiEntitlementSubscriptionsWebhooksApiArg | undefined;
2671
- reset: () => void;
2873
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
2672
2874
  }];
2673
2875
  declare const useGetPlansQuery: <R extends Record<string, any> = ({
2674
- data?: undefined;
2675
2876
  error?: undefined;
2877
+ data?: undefined;
2676
2878
  fulfilledTimeStamp?: undefined;
2677
2879
  originalArgs?: undefined;
2678
2880
  requestId?: undefined;
@@ -2753,8 +2955,8 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
2753
2955
  } & {
2754
2956
  skip?: boolean | undefined;
2755
2957
  selectFromResult?: ((state: ({
2756
- data?: undefined;
2757
2958
  error?: undefined;
2959
+ data?: undefined;
2758
2960
  fulfilledTimeStamp?: undefined;
2759
2961
  originalArgs?: undefined;
2760
2962
  requestId?: undefined;
@@ -2834,8 +3036,8 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
2834
3036
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_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>>;
2835
3037
  };
2836
3038
  declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
2837
- data?: undefined;
2838
3039
  error?: undefined;
3040
+ data?: undefined;
2839
3041
  fulfilledTimeStamp?: undefined;
2840
3042
  originalArgs?: undefined;
2841
3043
  requestId?: undefined;
@@ -2916,8 +3118,8 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
2916
3118
  } & {
2917
3119
  skip?: boolean | undefined;
2918
3120
  selectFromResult?: ((state: ({
2919
- data?: undefined;
2920
3121
  error?: undefined;
3122
+ data?: undefined;
2921
3123
  fulfilledTimeStamp?: undefined;
2922
3124
  originalArgs?: undefined;
2923
3125
  requestId?: undefined;
@@ -2997,8 +3199,8 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
2997
3199
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_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>>;
2998
3200
  };
2999
3201
  declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any> = ({
3000
- data?: undefined;
3001
3202
  error?: undefined;
3203
+ data?: undefined;
3002
3204
  fulfilledTimeStamp?: undefined;
3003
3205
  originalArgs?: undefined;
3004
3206
  requestId?: undefined;
@@ -3079,8 +3281,8 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
3079
3281
  } & {
3080
3282
  skip?: boolean | undefined;
3081
3283
  selectFromResult?: ((state: ({
3082
- data?: undefined;
3083
3284
  error?: undefined;
3285
+ data?: undefined;
3084
3286
  fulfilledTimeStamp?: undefined;
3085
3287
  originalArgs?: undefined;
3086
3288
  requestId?: undefined;
@@ -3160,8 +3362,8 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
3160
3362
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetFeaturesByOrganizationApiArg, (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", GetFeaturesByOrganizationApiResponse, "api", unknown>>;
3161
3363
  };
3162
3364
  declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
3163
- data?: undefined;
3164
3365
  error?: undefined;
3366
+ data?: undefined;
3165
3367
  fulfilledTimeStamp?: undefined;
3166
3368
  originalArgs?: undefined;
3167
3369
  requestId?: undefined;
@@ -3242,8 +3444,8 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
3242
3444
  } & {
3243
3445
  skip?: boolean | undefined;
3244
3446
  selectFromResult?: ((state: ({
3245
- data?: undefined;
3246
3447
  error?: undefined;
3448
+ data?: undefined;
3247
3449
  fulfilledTimeStamp?: undefined;
3248
3450
  originalArgs?: undefined;
3249
3451
  requestId?: undefined;
@@ -3481,11 +3683,11 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3481
3683
  fixedCacheKey?: string | undefined;
3482
3684
  } | 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
3685
  originalArgs?: PostApiWorkspacesApiArg | undefined;
3484
- reset: () => void;
3686
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
3485
3687
  }];
3486
3688
  declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
3487
- data?: undefined;
3488
3689
  error?: undefined;
3690
+ data?: undefined;
3489
3691
  fulfilledTimeStamp?: undefined;
3490
3692
  originalArgs?: undefined;
3491
3693
  requestId?: undefined;
@@ -3566,8 +3768,8 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
3566
3768
  } & {
3567
3769
  skip?: boolean | undefined;
3568
3770
  selectFromResult?: ((state: ({
3569
- data?: undefined;
3570
3771
  error?: undefined;
3772
+ data?: undefined;
3571
3773
  fulfilledTimeStamp?: undefined;
3572
3774
  originalArgs?: undefined;
3573
3775
  requestId?: undefined;
@@ -3805,7 +4007,7 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3805
4007
  fixedCacheKey?: string | undefined;
3806
4008
  } | 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
4009
  originalArgs?: PutApiWorkspacesByIdApiArg | undefined;
3808
- reset: () => void;
4010
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
3809
4011
  }];
3810
4012
  declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
3811
4013
  requestId?: undefined;
@@ -3966,7 +4168,7 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3966
4168
  fixedCacheKey?: string | undefined;
3967
4169
  } | 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
4170
  originalArgs?: DeleteApiWorkspacesByIdApiArg | undefined;
3969
- reset: () => void;
4171
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
3970
4172
  }];
3971
4173
  declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3972
4174
  requestId?: undefined;
@@ -4127,11 +4329,11 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
4127
4329
  fixedCacheKey?: string | undefined;
4128
4330
  } | 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
4331
  originalArgs?: CreateEnvironmentApiArg | undefined;
4130
- reset: () => void;
4332
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
4131
4333
  }];
4132
4334
  declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
4133
- data?: undefined;
4134
4335
  error?: undefined;
4336
+ data?: undefined;
4135
4337
  fulfilledTimeStamp?: undefined;
4136
4338
  originalArgs?: undefined;
4137
4339
  requestId?: undefined;
@@ -4212,8 +4414,8 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
4212
4414
  } & {
4213
4415
  skip?: boolean | undefined;
4214
4416
  selectFromResult?: ((state: ({
4215
- data?: undefined;
4216
4417
  error?: undefined;
4418
+ data?: undefined;
4217
4419
  fulfilledTimeStamp?: undefined;
4218
4420
  originalArgs?: undefined;
4219
4421
  requestId?: undefined;
@@ -4293,8 +4495,8 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
4293
4495
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetEnvironmentsApiArg, (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", GetEnvironmentsApiResponse, "api", unknown>>;
4294
4496
  };
4295
4497
  declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
4296
- data?: undefined;
4297
4498
  error?: undefined;
4499
+ data?: undefined;
4298
4500
  fulfilledTimeStamp?: undefined;
4299
4501
  originalArgs?: undefined;
4300
4502
  requestId?: undefined;
@@ -4375,8 +4577,8 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
4375
4577
  } & {
4376
4578
  skip?: boolean | undefined;
4377
4579
  selectFromResult?: ((state: ({
4378
- data?: undefined;
4379
4580
  error?: undefined;
4581
+ data?: undefined;
4380
4582
  fulfilledTimeStamp?: undefined;
4381
4583
  originalArgs?: undefined;
4382
4584
  requestId?: undefined;
@@ -4614,11 +4816,11 @@ declare const useCreateAcademyCurriculaMutation: <R extends Record<string, any>
4614
4816
  fixedCacheKey?: string | undefined;
4615
4817
  } | 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
4818
  originalArgs?: CreateAcademyCurriculaApiArg | undefined;
4617
- reset: () => void;
4819
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
4618
4820
  }];
4619
4821
  declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
4620
- data?: undefined;
4621
4822
  error?: undefined;
4823
+ data?: undefined;
4622
4824
  fulfilledTimeStamp?: undefined;
4623
4825
  originalArgs?: undefined;
4624
4826
  requestId?: undefined;
@@ -4699,8 +4901,8 @@ declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
4699
4901
  } & {
4700
4902
  skip?: boolean | undefined;
4701
4903
  selectFromResult?: ((state: ({
4702
- data?: undefined;
4703
4904
  error?: undefined;
4905
+ data?: undefined;
4704
4906
  fulfilledTimeStamp?: undefined;
4705
4907
  originalArgs?: undefined;
4706
4908
  requestId?: undefined;
@@ -4780,8 +4982,8 @@ declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
4780
4982
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_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>>;
4781
4983
  };
4782
4984
  declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string, any> = ({
4783
- data?: undefined;
4784
4985
  error?: undefined;
4986
+ data?: undefined;
4785
4987
  fulfilledTimeStamp?: undefined;
4786
4988
  originalArgs?: undefined;
4787
4989
  requestId?: undefined;
@@ -4862,8 +5064,8 @@ declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string,
4862
5064
  } & {
4863
5065
  skip?: boolean | undefined;
4864
5066
  selectFromResult?: ((state: ({
4865
- data?: undefined;
4866
5067
  error?: undefined;
5068
+ data?: undefined;
4867
5069
  fulfilledTimeStamp?: undefined;
4868
5070
  originalArgs?: undefined;
4869
5071
  requestId?: undefined;
@@ -5101,7 +5303,7 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
5101
5303
  fixedCacheKey?: string | undefined;
5102
5304
  } | 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
5305
  originalArgs?: RegisterToAcademyContentApiArg | undefined;
5104
- reset: () => void;
5306
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
5105
5307
  }];
5106
5308
  declare const useUpdateAcademyCurriculaByIdMutation: <R extends Record<string, any> = ({
5107
5309
  requestId?: undefined;
@@ -5262,7 +5464,7 @@ declare const useUpdateAcademyCurriculaByIdMutation: <R extends Record<string, a
5262
5464
  fixedCacheKey?: string | undefined;
5263
5465
  } | 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
5466
  originalArgs?: UpdateAcademyCurriculaByIdApiArg | undefined;
5265
- reset: () => void;
5467
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
5266
5468
  }];
5267
5469
  declare const useDeleteAcademyCurriculaByIdMutation: <R extends Record<string, any> = ({
5268
5470
  requestId?: undefined;
@@ -5423,11 +5625,11 @@ declare const useDeleteAcademyCurriculaByIdMutation: <R extends Record<string, a
5423
5625
  fixedCacheKey?: string | undefined;
5424
5626
  } | 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
5627
  originalArgs?: DeleteAcademyCurriculaByIdApiArg | undefined;
5426
- reset: () => void;
5628
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
5427
5629
  }];
5428
5630
  declare const useGetAcademyCurriculaByIdQuery: <R extends Record<string, any> = ({
5429
- data?: undefined;
5430
5631
  error?: undefined;
5632
+ data?: undefined;
5431
5633
  fulfilledTimeStamp?: undefined;
5432
5634
  originalArgs?: undefined;
5433
5635
  requestId?: undefined;
@@ -5508,8 +5710,8 @@ declare const useGetAcademyCurriculaByIdQuery: <R extends Record<string, any> =
5508
5710
  } & {
5509
5711
  skip?: boolean | undefined;
5510
5712
  selectFromResult?: ((state: ({
5511
- data?: undefined;
5512
5713
  error?: undefined;
5714
+ data?: undefined;
5513
5715
  fulfilledTimeStamp?: undefined;
5514
5716
  originalArgs?: undefined;
5515
5717
  requestId?: undefined;
@@ -5589,8 +5791,8 @@ declare const useGetAcademyCurriculaByIdQuery: <R extends Record<string, any> =
5589
5791
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_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>>;
5590
5792
  };
5591
5793
  declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
5592
- data?: undefined;
5593
5794
  error?: undefined;
5795
+ data?: undefined;
5594
5796
  fulfilledTimeStamp?: undefined;
5595
5797
  originalArgs?: undefined;
5596
5798
  requestId?: undefined;
@@ -5671,8 +5873,8 @@ declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<s
5671
5873
  } & {
5672
5874
  skip?: boolean | undefined;
5673
5875
  selectFromResult?: ((state: ({
5674
- data?: undefined;
5675
5876
  error?: undefined;
5877
+ data?: undefined;
5676
5878
  fulfilledTimeStamp?: undefined;
5677
5879
  originalArgs?: undefined;
5678
5880
  requestId?: undefined;
@@ -5910,7 +6112,7 @@ declare const useUpdateCurrentItemInProgressTrackerMutation: <R extends Record<s
5910
6112
  fixedCacheKey?: string | undefined;
5911
6113
  } | 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
6114
  originalArgs?: UpdateCurrentItemInProgressTrackerApiArg | undefined;
5913
- reset: () => void;
6115
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
5914
6116
  }];
5915
6117
  declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
5916
6118
  requestId?: undefined;
@@ -6071,11 +6273,11 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
6071
6273
  fixedCacheKey?: string | undefined;
6072
6274
  } | 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
6275
  originalArgs?: SubmitQuizApiArg | undefined;
6074
- reset: () => void;
6276
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
6075
6277
  }];
6076
6278
  declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
6077
- data?: undefined;
6078
6279
  error?: undefined;
6280
+ data?: undefined;
6079
6281
  fulfilledTimeStamp?: undefined;
6080
6282
  originalArgs?: undefined;
6081
6283
  requestId?: undefined;
@@ -6156,8 +6358,8 @@ declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = (
6156
6358
  } & {
6157
6359
  skip?: boolean | undefined;
6158
6360
  selectFromResult?: ((state: ({
6159
- data?: undefined;
6160
6361
  error?: undefined;
6362
+ data?: undefined;
6161
6363
  fulfilledTimeStamp?: undefined;
6162
6364
  originalArgs?: undefined;
6163
6365
  requestId?: undefined;
@@ -6237,8 +6439,8 @@ declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = (
6237
6439
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_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", object, "api", unknown>>;
6238
6440
  };
6239
6441
  declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, any> = ({
6240
- data?: undefined;
6241
6442
  error?: undefined;
6443
+ data?: undefined;
6242
6444
  fulfilledTimeStamp?: undefined;
6243
6445
  originalArgs?: undefined;
6244
6446
  requestId?: undefined;
@@ -6319,8 +6521,8 @@ declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, an
6319
6521
  } & {
6320
6522
  skip?: boolean | undefined;
6321
6523
  selectFromResult?: ((state: ({
6322
- data?: undefined;
6323
6524
  error?: undefined;
6525
+ data?: undefined;
6324
6526
  fulfilledTimeStamp?: undefined;
6325
6527
  originalArgs?: undefined;
6326
6528
  requestId?: undefined;
@@ -6400,8 +6602,8 @@ declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, an
6400
6602
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyAdminRegistrationsApiArg, (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", GetAcademyAdminRegistrationsApiResponse, "api", unknown>>;
6401
6603
  };
6402
6604
  declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
6403
- data?: undefined;
6404
6605
  error?: undefined;
6606
+ data?: undefined;
6405
6607
  fulfilledTimeStamp?: undefined;
6406
6608
  originalArgs?: undefined;
6407
6609
  requestId?: undefined;
@@ -6482,8 +6684,8 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
6482
6684
  } & {
6483
6685
  skip?: boolean | undefined;
6484
6686
  selectFromResult?: ((state: ({
6485
- data?: undefined;
6486
6687
  error?: undefined;
6688
+ data?: undefined;
6487
6689
  fulfilledTimeStamp?: undefined;
6488
6690
  originalArgs?: undefined;
6489
6691
  requestId?: undefined;
@@ -6563,8 +6765,8 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
6563
6765
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetCertificateByIdApiArg, (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", GetCertificateByIdApiResponse, "api", unknown>>;
6564
6766
  };
6565
6767
  declare const useGetInvitationQuery: <R extends Record<string, any> = ({
6566
- data?: undefined;
6567
6768
  error?: undefined;
6769
+ data?: undefined;
6568
6770
  fulfilledTimeStamp?: undefined;
6569
6771
  originalArgs?: undefined;
6570
6772
  requestId?: undefined;
@@ -6645,8 +6847,8 @@ declare const useGetInvitationQuery: <R extends Record<string, any> = ({
6645
6847
  } & {
6646
6848
  skip?: boolean | undefined;
6647
6849
  selectFromResult?: ((state: ({
6648
- data?: undefined;
6649
6850
  error?: undefined;
6851
+ data?: undefined;
6650
6852
  fulfilledTimeStamp?: undefined;
6651
6853
  originalArgs?: undefined;
6652
6854
  requestId?: undefined;
@@ -6884,7 +7086,7 @@ declare const useDeleteInvitationMutation: <R extends Record<string, any> = ({
6884
7086
  fixedCacheKey?: string | undefined;
6885
7087
  } | 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
7088
  originalArgs?: DeleteInvitationApiArg | undefined;
6887
- reset: () => void;
7089
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
6888
7090
  }];
6889
7091
  declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
6890
7092
  requestId?: undefined;
@@ -7045,11 +7247,11 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
7045
7247
  fixedCacheKey?: string | undefined;
7046
7248
  } | 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
7249
  originalArgs?: UpdateInvitationApiArg | undefined;
7048
- reset: () => void;
7250
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
7049
7251
  }];
7050
7252
  declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
7051
- data?: undefined;
7052
7253
  error?: undefined;
7254
+ data?: undefined;
7053
7255
  fulfilledTimeStamp?: undefined;
7054
7256
  originalArgs?: undefined;
7055
7257
  requestId?: undefined;
@@ -7130,8 +7332,8 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
7130
7332
  } & {
7131
7333
  skip?: boolean | undefined;
7132
7334
  selectFromResult?: ((state: ({
7133
- data?: undefined;
7134
7335
  error?: undefined;
7336
+ data?: undefined;
7135
7337
  fulfilledTimeStamp?: undefined;
7136
7338
  originalArgs?: undefined;
7137
7339
  requestId?: undefined;
@@ -7369,7 +7571,7 @@ declare const useCreateInvitationMutation: <R extends Record<string, any> = ({
7369
7571
  fixedCacheKey?: string | undefined;
7370
7572
  } | 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
7573
  originalArgs?: CreateInvitationApiArg | undefined;
7372
- reset: () => void;
7574
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
7373
7575
  }];
7374
7576
  declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
7375
7577
  requestId?: undefined;
@@ -7530,7 +7732,7 @@ declare const useAcceptInvitationMutation: <R extends Record<string, any> = ({
7530
7732
  fixedCacheKey?: string | undefined;
7531
7733
  } | 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
7734
  originalArgs?: AcceptInvitationApiArg | undefined;
7533
- reset: () => void;
7735
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
7534
7736
  }];
7535
7737
  declare const useDeleteBadgeByIdMutation: <R extends Record<string, any> = ({
7536
7738
  requestId?: undefined;
@@ -7691,11 +7893,11 @@ declare const useDeleteBadgeByIdMutation: <R extends Record<string, any> = ({
7691
7893
  fixedCacheKey?: string | undefined;
7692
7894
  } | 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
7895
  originalArgs?: DeleteBadgeByIdApiArg | undefined;
7694
- reset: () => void;
7896
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
7695
7897
  }];
7696
7898
  declare const useGetBadgeByIdQuery: <R extends Record<string, any> = ({
7697
- data?: undefined;
7698
7899
  error?: undefined;
7900
+ data?: undefined;
7699
7901
  fulfilledTimeStamp?: undefined;
7700
7902
  originalArgs?: undefined;
7701
7903
  requestId?: undefined;
@@ -7776,8 +7978,8 @@ declare const useGetBadgeByIdQuery: <R extends Record<string, any> = ({
7776
7978
  } & {
7777
7979
  skip?: boolean | undefined;
7778
7980
  selectFromResult?: ((state: ({
7779
- data?: undefined;
7780
7981
  error?: undefined;
7982
+ data?: undefined;
7781
7983
  fulfilledTimeStamp?: undefined;
7782
7984
  originalArgs?: undefined;
7783
7985
  requestId?: undefined;
@@ -8015,7 +8217,7 @@ declare const useCreateOrUpdateBadgeMutation: <R extends Record<string, any> = (
8015
8217
  fixedCacheKey?: string | undefined;
8016
8218
  } | 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
8219
  originalArgs?: CreateOrUpdateBadgeApiArg | undefined;
8018
- reset: () => void;
8220
+ reset: () => void; /** URL to the signature image of the issuing authority should be a publicly accessible URL and transparent PNG or SVG format */
8019
8221
  }];
8020
8222
 
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 };
8223
+ 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 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, usePostApiEntitlementSubscriptionsCreateMutation, usePostApiEntitlementSubscriptionsWebhooksMutation, usePostApiWorkspacesMutation, usePutApiWorkspacesByIdMutation, useRegisterMeshmodelsMutation, useRegisterToAcademyContentMutation, useSubmitQuizMutation, useUpdateAcademyCurriculaByIdMutation, useUpdateCurrentItemInProgressTrackerMutation, useUpdateInvitationMutation };