nucleus-core-ts 0.9.784 → 0.9.786

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.
@@ -1,3 +1,4 @@
1
+ import type { FilterCondition, SortCondition } from '../../../types';
1
2
  import type { IntegrationEndpoint, IntegrationMapping, IntegrationRun, IntegrationSource } from './records';
2
3
  import type { ConnectionTestValue, EndpointSampleValue, RunPlanValue, RunProgressValue } from './results';
3
4
  /**
@@ -11,11 +12,8 @@ export type ListQuery = {
11
12
  page?: number;
12
13
  limit?: number;
13
14
  search?: string;
14
- sort?: {
15
- field: string;
16
- direction: 'asc' | 'desc';
17
- }[];
18
- filters?: unknown[];
15
+ sort?: SortCondition[];
16
+ filters?: FilterCondition[];
19
17
  };
20
18
  export type ListResult<T> = {
21
19
  items: T[];
@@ -21,8 +21,10 @@ export type { ForgotPasswordAction, ForgotPasswordFormProps, ForgotPasswordHeade
21
21
  export { ForgotPasswordPage, useForgotPasswordStore, } from './components/ForgotPasswordPage';
22
22
  export type { FormBuilderProps, FormFieldConfig, FormFieldProps, FormFieldRenderProps, FormFooterRenderProps, FormLayout, FormMode, FormSize, FormState, UseFormBuilderOptions, UseFormBuilderReturn, } from './components/FormBuilder';
23
23
  export { FormBuilder, FormField, formBuilderTheme, useFormBuilder, } from './components/FormBuilder';
24
- export type { ConnectionTab, IntegrationsActions, IntegrationsPageProps, IntegrationsPageTheme, } from './components/IntegrationsPage';
25
24
  export { extendIntegrationsTheme, IntegrationsPage, integrationsPageTheme, useIntegrationsStore, } from './components/IntegrationsPage';
25
+ export type { ConnectionTab } from './components/IntegrationsPage/store/state';
26
+ export type { IntegrationsPageTheme } from './components/IntegrationsPage/theme';
27
+ export type * from './components/IntegrationsPage/types';
26
28
  export type { LoginAction, LoginFeatureConfig, LoginFormData, LoginFormProps, LoginHeaderProps, LoginPageConfig, LoginPageProps, LoginPageVariant, LogoutAction, MeAction, } from './components/LoginPage';
27
29
  export { LoginPage, useLoginStore } from './components/LoginPage';
28
30
  export type { MagicLinkVerifyAction as MagicLinkVerifyPageAction, MagicLinkVerifyError, MagicLinkVerifyPageConfig, } from './components/MagicLinkVerifyPage';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nucleus-core-ts",
3
- "version": "0.9.784",
3
+ "version": "0.9.786",
4
4
  "description": "Production-ready, enterprise-grade TypeScript framework for building multi-tenant APIs",
5
5
  "author": "Hidayet Can Özcan <hidayetcan@gmail.com>",
6
6
  "license": "SEE LICENSE IN LICENSE",