@meshery/schemas 0.8.62 → 0.8.63

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.
@@ -896,9 +896,9 @@ type GetInvitationApiResponse = {
896
896
  /** ID of the organization to which the user is invited */
897
897
  org_id: string;
898
898
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
899
- expires_at: string;
899
+ expires_at?: string;
900
900
  /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
901
- quota: number;
901
+ quota?: number;
902
902
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
903
903
  accepted_by: string[];
904
904
  roles: string[];
@@ -936,9 +936,9 @@ type UpdateInvitationApiResponse = {
936
936
  /** ID of the organization to which the user is invited */
937
937
  org_id: string;
938
938
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
939
- expires_at: string;
939
+ expires_at?: string;
940
940
  /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
941
- quota: number;
941
+ quota?: number;
942
942
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
943
943
  accepted_by: string[];
944
944
  roles: string[];
@@ -970,9 +970,9 @@ type UpdateInvitationApiArg = {
970
970
  /** ID of the organization to which the user is invited */
971
971
  org_id: string;
972
972
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
973
- expires_at: string;
973
+ expires_at?: string;
974
974
  /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
975
- quota: number;
975
+ quota?: number;
976
976
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
977
977
  accepted_by: string[];
978
978
  roles: string[];
@@ -1004,9 +1004,9 @@ type GetInvitationsApiResponse = {
1004
1004
  /** ID of the organization to which the user is invited */
1005
1005
  org_id: string;
1006
1006
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1007
- expires_at: string;
1007
+ expires_at?: string;
1008
1008
  /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1009
- quota: number;
1009
+ quota?: number;
1010
1010
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1011
1011
  accepted_by: string[];
1012
1012
  roles: string[];
@@ -1039,9 +1039,9 @@ type CreateInvitationApiResponse = {
1039
1039
  /** ID of the organization to which the user is invited */
1040
1040
  org_id: string;
1041
1041
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1042
- expires_at: string;
1042
+ expires_at?: string;
1043
1043
  /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1044
- quota: number;
1044
+ quota?: number;
1045
1045
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1046
1046
  accepted_by: string[];
1047
1047
  roles: string[];
@@ -1071,9 +1071,9 @@ type CreateInvitationApiArg = {
1071
1071
  /** ID of the organization to which the user is invited */
1072
1072
  org_id: string;
1073
1073
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1074
- expires_at: string;
1074
+ expires_at?: string;
1075
1075
  /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1076
- quota: number;
1076
+ quota?: number;
1077
1077
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1078
1078
  accepted_by: string[];
1079
1079
  roles: string[];
@@ -1103,9 +1103,9 @@ type AcceptInvitationApiResponse = {
1103
1103
  /** ID of the organization to which the user is invited */
1104
1104
  org_id: string;
1105
1105
  /** Timestamp when the invitation expires, if applicable , null or empty string means the invitation does not expire */
1106
- expires_at: string;
1106
+ expires_at?: string;
1107
1107
  /** Quota for the invitation, which can be used to limit the number of users that can accept the invitation, null or empty string means the invitation does not have a quota */
1108
- quota: number;
1108
+ quota?: number;
1109
1109
  /** List of user ids that have already accepted the invitation, null or empty string means the invitation has not been used yet */
1110
1110
  accepted_by: string[];
1111
1111
  roles: string[];
@@ -1446,8 +1446,8 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
1446
1446
  reset: () => void;
1447
1447
  }];
1448
1448
  declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
1449
- data?: undefined;
1450
1449
  error?: undefined;
1450
+ data?: undefined;
1451
1451
  fulfilledTimeStamp?: undefined;
1452
1452
  originalArgs?: undefined;
1453
1453
  requestId?: undefined;
@@ -1528,8 +1528,8 @@ declare const useGetSubscriptionsQuery: <R extends Record<string, any> = ({
1528
1528
  } & {
1529
1529
  skip?: boolean | undefined;
1530
1530
  selectFromResult?: ((state: ({
1531
- data?: undefined;
1532
1531
  error?: undefined;
1532
+ data?: undefined;
1533
1533
  fulfilledTimeStamp?: undefined;
1534
1534
  originalArgs?: undefined;
1535
1535
  requestId?: undefined;
@@ -2092,8 +2092,8 @@ declare const usePostApiEntitlementSubscriptionsWebhooksMutation: <R extends Rec
2092
2092
  reset: () => void;
2093
2093
  }];
2094
2094
  declare const useGetPlansQuery: <R extends Record<string, any> = ({
2095
- data?: undefined;
2096
2095
  error?: undefined;
2096
+ data?: undefined;
2097
2097
  fulfilledTimeStamp?: undefined;
2098
2098
  originalArgs?: undefined;
2099
2099
  requestId?: undefined;
@@ -2174,8 +2174,8 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
2174
2174
  } & {
2175
2175
  skip?: boolean | undefined;
2176
2176
  selectFromResult?: ((state: ({
2177
- data?: undefined;
2178
2177
  error?: undefined;
2178
+ data?: undefined;
2179
2179
  fulfilledTimeStamp?: undefined;
2180
2180
  originalArgs?: undefined;
2181
2181
  requestId?: undefined;
@@ -2255,8 +2255,8 @@ declare const useGetPlansQuery: <R extends Record<string, any> = ({
2255
2255
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetPlansApiResponse, "api", unknown>>;
2256
2256
  };
2257
2257
  declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
2258
- data?: undefined;
2259
2258
  error?: undefined;
2259
+ data?: undefined;
2260
2260
  fulfilledTimeStamp?: undefined;
2261
2261
  originalArgs?: undefined;
2262
2262
  requestId?: undefined;
@@ -2337,8 +2337,8 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
2337
2337
  } & {
2338
2338
  skip?: boolean | undefined;
2339
2339
  selectFromResult?: ((state: ({
2340
- data?: undefined;
2341
2340
  error?: undefined;
2341
+ data?: undefined;
2342
2342
  fulfilledTimeStamp?: undefined;
2343
2343
  originalArgs?: undefined;
2344
2344
  requestId?: undefined;
@@ -2418,8 +2418,8 @@ declare const useGetFeaturesQuery: <R extends Record<string, any> = ({
2418
2418
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetFeaturesApiResponse, "api", unknown>>;
2419
2419
  };
2420
2420
  declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any> = ({
2421
- data?: undefined;
2422
2421
  error?: undefined;
2422
+ data?: undefined;
2423
2423
  fulfilledTimeStamp?: undefined;
2424
2424
  originalArgs?: undefined;
2425
2425
  requestId?: undefined;
@@ -2500,8 +2500,8 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
2500
2500
  } & {
2501
2501
  skip?: boolean | undefined;
2502
2502
  selectFromResult?: ((state: ({
2503
- data?: undefined;
2504
2503
  error?: undefined;
2504
+ data?: undefined;
2505
2505
  fulfilledTimeStamp?: undefined;
2506
2506
  originalArgs?: undefined;
2507
2507
  requestId?: undefined;
@@ -2581,8 +2581,8 @@ declare const useGetFeaturesByOrganizationQuery: <R extends Record<string, any>
2581
2581
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetFeaturesByOrganizationApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetFeaturesByOrganizationApiResponse, "api", unknown>>;
2582
2582
  };
2583
2583
  declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
2584
- data?: undefined;
2585
2584
  error?: undefined;
2585
+ data?: undefined;
2586
2586
  fulfilledTimeStamp?: undefined;
2587
2587
  originalArgs?: undefined;
2588
2588
  requestId?: undefined;
@@ -2663,8 +2663,8 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
2663
2663
  } & {
2664
2664
  skip?: boolean | undefined;
2665
2665
  selectFromResult?: ((state: ({
2666
- data?: undefined;
2667
2666
  error?: undefined;
2667
+ data?: undefined;
2668
2668
  fulfilledTimeStamp?: undefined;
2669
2669
  originalArgs?: undefined;
2670
2670
  requestId?: undefined;
@@ -2905,8 +2905,8 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
2905
2905
  reset: () => void;
2906
2906
  }];
2907
2907
  declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
2908
- data?: undefined;
2909
2908
  error?: undefined;
2909
+ data?: undefined;
2910
2910
  fulfilledTimeStamp?: undefined;
2911
2911
  originalArgs?: undefined;
2912
2912
  requestId?: undefined;
@@ -2987,8 +2987,8 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
2987
2987
  } & {
2988
2988
  skip?: boolean | undefined;
2989
2989
  selectFromResult?: ((state: ({
2990
- data?: undefined;
2991
2990
  error?: undefined;
2991
+ data?: undefined;
2992
2992
  fulfilledTimeStamp?: undefined;
2993
2993
  originalArgs?: undefined;
2994
2994
  requestId?: undefined;
@@ -3551,8 +3551,8 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3551
3551
  reset: () => void;
3552
3552
  }];
3553
3553
  declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
3554
- data?: undefined;
3555
3554
  error?: undefined;
3555
+ data?: undefined;
3556
3556
  fulfilledTimeStamp?: undefined;
3557
3557
  originalArgs?: undefined;
3558
3558
  requestId?: undefined;
@@ -3633,8 +3633,8 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
3633
3633
  } & {
3634
3634
  skip?: boolean | undefined;
3635
3635
  selectFromResult?: ((state: ({
3636
- data?: undefined;
3637
3636
  error?: undefined;
3637
+ data?: undefined;
3638
3638
  fulfilledTimeStamp?: undefined;
3639
3639
  originalArgs?: undefined;
3640
3640
  requestId?: undefined;
@@ -3714,8 +3714,8 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
3714
3714
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetEnvironmentsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetEnvironmentsApiResponse, "api", unknown>>;
3715
3715
  };
3716
3716
  declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
3717
- data?: undefined;
3718
3717
  error?: undefined;
3718
+ data?: undefined;
3719
3719
  fulfilledTimeStamp?: undefined;
3720
3720
  originalArgs?: undefined;
3721
3721
  requestId?: undefined;
@@ -3796,8 +3796,8 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
3796
3796
  } & {
3797
3797
  skip?: boolean | undefined;
3798
3798
  selectFromResult?: ((state: ({
3799
- data?: undefined;
3800
3799
  error?: undefined;
3800
+ data?: undefined;
3801
3801
  fulfilledTimeStamp?: undefined;
3802
3802
  originalArgs?: undefined;
3803
3803
  requestId?: undefined;
@@ -3877,8 +3877,8 @@ declare const useGetMyAcademyCirriculaQuery: <R extends Record<string, any> = ({
3877
3877
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetMyAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>;
3878
3878
  };
3879
3879
  declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
3880
- data?: undefined;
3881
3880
  error?: undefined;
3881
+ data?: undefined;
3882
3882
  fulfilledTimeStamp?: undefined;
3883
3883
  originalArgs?: undefined;
3884
3884
  requestId?: undefined;
@@ -3959,8 +3959,8 @@ declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
3959
3959
  } & {
3960
3960
  skip?: boolean | undefined;
3961
3961
  selectFromResult?: ((state: ({
3962
- data?: undefined;
3963
3962
  error?: undefined;
3963
+ data?: undefined;
3964
3964
  fulfilledTimeStamp?: undefined;
3965
3965
  originalArgs?: undefined;
3966
3966
  requestId?: undefined;
@@ -4040,8 +4040,8 @@ declare const useGetAcademyCirriculaQuery: <R extends Record<string, any> = ({
4040
4040
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyCirriculaApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, unknown, "api", unknown>>;
4041
4041
  };
4042
4042
  declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string, any> = ({
4043
- data?: undefined;
4044
4043
  error?: undefined;
4044
+ data?: undefined;
4045
4045
  fulfilledTimeStamp?: undefined;
4046
4046
  originalArgs?: undefined;
4047
4047
  requestId?: undefined;
@@ -4122,8 +4122,8 @@ declare const useGetApiAcademyByTypeAndOrgIdSlugQuery: <R extends Record<string,
4122
4122
  } & {
4123
4123
  skip?: boolean | undefined;
4124
4124
  selectFromResult?: ((state: ({
4125
- data?: undefined;
4126
4125
  error?: undefined;
4126
+ data?: undefined;
4127
4127
  fulfilledTimeStamp?: undefined;
4128
4128
  originalArgs?: undefined;
4129
4129
  requestId?: undefined;
@@ -4364,8 +4364,8 @@ declare const useRegisterToAcademyContentMutation: <R extends Record<string, any
4364
4364
  reset: () => void;
4365
4365
  }];
4366
4366
  declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<string, any> = ({
4367
- data?: undefined;
4368
4367
  error?: undefined;
4368
+ data?: undefined;
4369
4369
  fulfilledTimeStamp?: undefined;
4370
4370
  originalArgs?: undefined;
4371
4371
  requestId?: undefined;
@@ -4446,8 +4446,8 @@ declare const useGetApiAcademyRegistrationsByContentIdQuery: <R extends Record<s
4446
4446
  } & {
4447
4447
  skip?: boolean | undefined;
4448
4448
  selectFromResult?: ((state: ({
4449
- data?: undefined;
4450
4449
  error?: undefined;
4450
+ data?: undefined;
4451
4451
  fulfilledTimeStamp?: undefined;
4452
4452
  originalArgs?: undefined;
4453
4453
  requestId?: undefined;
@@ -4849,8 +4849,8 @@ declare const useSubmitQuizMutation: <R extends Record<string, any> = ({
4849
4849
  reset: () => void;
4850
4850
  }];
4851
4851
  declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = ({
4852
- data?: undefined;
4853
4852
  error?: undefined;
4853
+ data?: undefined;
4854
4854
  fulfilledTimeStamp?: undefined;
4855
4855
  originalArgs?: undefined;
4856
4856
  requestId?: undefined;
@@ -4931,8 +4931,8 @@ declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = (
4931
4931
  } & {
4932
4932
  skip?: boolean | undefined;
4933
4933
  selectFromResult?: ((state: ({
4934
- data?: undefined;
4935
4934
  error?: undefined;
4935
+ data?: undefined;
4936
4936
  fulfilledTimeStamp?: undefined;
4937
4937
  originalArgs?: undefined;
4938
4938
  requestId?: undefined;
@@ -5012,8 +5012,8 @@ declare const useGetAcademyAdminSummaryQuery: <R extends Record<string, any> = (
5012
5012
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, object, "api", unknown>>;
5013
5013
  };
5014
5014
  declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, any> = ({
5015
- data?: undefined;
5016
5015
  error?: undefined;
5016
+ data?: undefined;
5017
5017
  fulfilledTimeStamp?: undefined;
5018
5018
  originalArgs?: undefined;
5019
5019
  requestId?: undefined;
@@ -5094,8 +5094,8 @@ declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, an
5094
5094
  } & {
5095
5095
  skip?: boolean | undefined;
5096
5096
  selectFromResult?: ((state: ({
5097
- data?: undefined;
5098
5097
  error?: undefined;
5098
+ data?: undefined;
5099
5099
  fulfilledTimeStamp?: undefined;
5100
5100
  originalArgs?: undefined;
5101
5101
  requestId?: undefined;
@@ -5175,8 +5175,8 @@ declare const useGetAcademyAdminRegistrationsQuery: <R extends Record<string, an
5175
5175
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetAcademyAdminRegistrationsApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetAcademyAdminRegistrationsApiResponse, "api", unknown>>;
5176
5176
  };
5177
5177
  declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
5178
- data?: undefined;
5179
5178
  error?: undefined;
5179
+ data?: undefined;
5180
5180
  fulfilledTimeStamp?: undefined;
5181
5181
  originalArgs?: undefined;
5182
5182
  requestId?: undefined;
@@ -5257,8 +5257,8 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
5257
5257
  } & {
5258
5258
  skip?: boolean | undefined;
5259
5259
  selectFromResult?: ((state: ({
5260
- data?: undefined;
5261
5260
  error?: undefined;
5261
+ data?: undefined;
5262
5262
  fulfilledTimeStamp?: undefined;
5263
5263
  originalArgs?: undefined;
5264
5264
  requestId?: undefined;
@@ -5338,8 +5338,8 @@ declare const useGetCertificateByIdQuery: <R extends Record<string, any> = ({
5338
5338
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetCertificateByIdApiArg, (args: any, api: any, extraOptions: any) => Promise<_reduxjs_toolkit_query.QueryReturnValue<unknown, unknown, {}>>, never, GetCertificateByIdApiResponse, "api", unknown>>;
5339
5339
  };
5340
5340
  declare const useGetInvitationQuery: <R extends Record<string, any> = ({
5341
- data?: undefined;
5342
5341
  error?: undefined;
5342
+ data?: undefined;
5343
5343
  fulfilledTimeStamp?: undefined;
5344
5344
  originalArgs?: undefined;
5345
5345
  requestId?: undefined;
@@ -5420,8 +5420,8 @@ declare const useGetInvitationQuery: <R extends Record<string, any> = ({
5420
5420
  } & {
5421
5421
  skip?: boolean | undefined;
5422
5422
  selectFromResult?: ((state: ({
5423
- data?: undefined;
5424
5423
  error?: undefined;
5424
+ data?: undefined;
5425
5425
  fulfilledTimeStamp?: undefined;
5426
5426
  originalArgs?: undefined;
5427
5427
  requestId?: undefined;
@@ -5823,8 +5823,8 @@ declare const useUpdateInvitationMutation: <R extends Record<string, any> = ({
5823
5823
  reset: () => void;
5824
5824
  }];
5825
5825
  declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
5826
- data?: undefined;
5827
5826
  error?: undefined;
5827
+ data?: undefined;
5828
5828
  fulfilledTimeStamp?: undefined;
5829
5829
  originalArgs?: undefined;
5830
5830
  requestId?: undefined;
@@ -5905,8 +5905,8 @@ declare const useGetInvitationsQuery: <R extends Record<string, any> = ({
5905
5905
  } & {
5906
5906
  skip?: boolean | undefined;
5907
5907
  selectFromResult?: ((state: ({
5908
- data?: undefined;
5909
5908
  error?: undefined;
5909
+ data?: undefined;
5910
5910
  fulfilledTimeStamp?: undefined;
5911
5911
  originalArgs?: undefined;
5912
5912
  requestId?: undefined;