@appconda/nextjs 1.0.49 → 1.0.50

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,4 +1 @@
1
- export declare const actionClient: import("next-safe-action").SafeActionClient<string, undefined, undefined, unknown, {}, undefined, undefined, undefined, readonly [], {
2
- formErrors: string[];
3
- fieldErrors: {};
4
- }, readonly []>;
1
+ export declare const actionClient: any;
@@ -1,4 +1 @@
1
- export declare const getAllNodesAction: import("next-safe-action/.").SafeActionFn<string, undefined, readonly [], {
2
- formErrors: string[];
3
- fieldErrors: {};
4
- }, readonly [], any[]>;
1
+ export declare const getAllNodesAction: any;
@@ -7,5 +7,5 @@ export declare enum PricingModel {
7
7
  ONCE = 4,
8
8
  ALL = 5
9
9
  }
10
- export declare const ZPricingModel: z.ZodNativeEnum<typeof PricingModel>;
10
+ export declare const ZPricingModel: any;
11
11
  export type TPricingModel = z.infer<typeof ZPricingModel>;
@@ -6,5 +6,5 @@ export declare enum SubscriptionBillingPeriod {
6
6
  MONTHLY = 3,
7
7
  YEARLY = 4
8
8
  }
9
- export declare const ZSubscriptionBillingPeriod: z.ZodNativeEnum<typeof SubscriptionBillingPeriod>;
9
+ export declare const ZSubscriptionBillingPeriod: any;
10
10
  export type TSubscriptionBillingPeriod = z.infer<typeof ZSubscriptionBillingPeriod>;
@@ -6,5 +6,5 @@ export declare enum SubscriptionFeatureLimitType {
6
6
  MAX = 3,
7
7
  UNLIMITED = 4
8
8
  }
9
- export declare const ZSubscriptionFeatureLimitType: z.ZodNativeEnum<typeof SubscriptionFeatureLimitType>;
9
+ export declare const ZSubscriptionFeatureLimitType: any;
10
10
  export type TSubscriptionFeatureLimitType = z.infer<typeof ZSubscriptionFeatureLimitType>;
@@ -3,5 +3,5 @@ export declare enum SubscriptionPriceType {
3
3
  ONE_TIME = 0,
4
4
  RECURRING = 1
5
5
  }
6
- export declare const ZSubscriptionPriceType: z.ZodNativeEnum<typeof SubscriptionPriceType>;
6
+ export declare const ZSubscriptionPriceType: any;
7
7
  export type TSubscriptionPriceType = z.infer<typeof ZSubscriptionPriceType>;
@@ -1,3 +1,4 @@
1
+ import { File } from "node-fetch-native-with-agent";
1
2
  import type { BinaryLike } from "crypto";
2
3
  export declare class InputFile {
3
4
  static fromBuffer(parts: Blob | BinaryLike, name: string): File;
@@ -1,6 +1,5 @@
1
1
  import { Cache } from "./Cache";
2
- import { Registry } from "./Registry";
3
- export declare const registry: Registry;
2
+ export declare const registry: any;
4
3
  export declare class Services {
5
4
  static get Cache(): Cache;
6
5
  }
@@ -1,29 +1,3 @@
1
- import { Waitlist, WaitlistSignup } from './types';
2
- export declare const ListWaitlistSignups: import("next-safe-action/.").SafeActionFn<string, import("zod").ZodObject<{
3
- waitlistId: import("zod").ZodString;
4
- }, "strip", import("zod").ZodTypeAny, {
5
- waitlistId?: string;
6
- }, {
7
- waitlistId?: string;
8
- }>, readonly [], {
9
- formErrors: string[];
10
- fieldErrors: {
11
- waitlistId?: string[];
12
- };
13
- }, readonly [], WaitlistSignup[]>;
14
- export declare const ListWaitlists: import("next-safe-action/.").SafeActionFn<string, undefined, readonly [], {
15
- formErrors: string[];
16
- fieldErrors: {};
17
- }, readonly [], Waitlist[]>;
18
- export declare const CreateWaitlist: import("next-safe-action/.").SafeActionFn<string, import("zod").ZodObject<{
19
- name: import("zod").ZodString;
20
- }, "strip", import("zod").ZodTypeAny, {
21
- name?: string;
22
- }, {
23
- name?: string;
24
- }>, readonly [], {
25
- formErrors: string[];
26
- fieldErrors: {
27
- name?: string[];
28
- };
29
- }, readonly [], Waitlist>;
1
+ export declare const ListWaitlistSignups: any;
2
+ export declare const ListWaitlists: any;
3
+ export declare const CreateWaitlist: any;
@@ -1,15 +1,2 @@
1
- import { z } from "zod";
2
- export declare const ListWaitlistSignupsSchema: z.ZodObject<{
3
- waitlistId: z.ZodString;
4
- }, "strip", z.ZodTypeAny, {
5
- waitlistId?: string;
6
- }, {
7
- waitlistId?: string;
8
- }>;
9
- export declare const CreateWaitlistSchema: z.ZodObject<{
10
- name: z.ZodString;
11
- }, "strip", z.ZodTypeAny, {
12
- name?: string;
13
- }, {
14
- name?: string;
15
- }>;
1
+ export declare const ListWaitlistSignupsSchema: any;
2
+ export declare const CreateWaitlistSchema: any;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@appconda/nextjs",
3
3
  "homepage": "https://appconda.io/support",
4
4
  "description": "Appconda is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
5
- "version": "1.0.49",
5
+ "version": "1.0.50",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "ES2020", // ✅ bu satır gerekli
4
- "moduleResolution": "node", // ✅ bu da tamam
3
+ "target": "ES2020",
4
+ "moduleResolution": "classic",
5
5
  "allowJs": true,
6
6
  "allowSyntheticDefaultImports": true,
7
7
  "declaration": true,