nucleus-core-ts 0.9.784 → 0.9.785

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.
@@ -7,6 +7,12 @@ import type { ConnectionTestValue, EndpointSampleValue, RunPlanValue, RunProgres
7
7
  * pages on the client has already fetched everything, which stops being viable
8
8
  * at the first customer with real data.
9
9
  */
10
+ /** One server-side filter condition, as the entity API reads it. */
11
+ export type ListFilterCondition = {
12
+ field?: string;
13
+ operator: string;
14
+ value?: unknown;
15
+ };
10
16
  export type ListQuery = {
11
17
  page?: number;
12
18
  limit?: number;
@@ -15,7 +21,7 @@ export type ListQuery = {
15
21
  field: string;
16
22
  direction: 'asc' | 'desc';
17
23
  }[];
18
- filters?: unknown[];
24
+ filters?: ListFilterCondition[];
19
25
  };
20
26
  export type ListResult<T> = {
21
27
  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.785",
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",