@appconda/sdk 1.0.409 → 1.0.410

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 { 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,12 +1,3 @@
1
1
  import { NextRequest, NextResponse } from 'next/server';
2
2
  import './jobs';
3
- export declare function hookHandler(request: NextRequest, res: NextResponse): Promise<NextResponse<{
4
- message: string;
5
- }> | NextResponse<{
6
- hooks: {
7
- id: string;
8
- events: string[];
9
- maxDuration: number | undefined;
10
- retries: number | undefined;
11
- }[];
12
- }>>;
3
+ export declare function hookHandler(request: NextRequest, res: NextResponse): Promise<any>;
@@ -1,13 +1,3 @@
1
1
  import { NextRequest, NextResponse } from 'next/server';
2
2
  import './jobs';
3
- export declare function scheduledJobHandler(request: NextRequest, res: NextResponse): Promise<NextResponse<{
4
- message: string;
5
- }> | NextResponse<{
6
- schedules: {
7
- id: string;
8
- name: string;
9
- cron: string;
10
- maxDuration: number | undefined;
11
- retries: number | undefined;
12
- }[];
13
- }>>;
3
+ export declare function scheduledJobHandler(request: NextRequest, res: NextResponse): Promise<any>;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@appconda/sdk",
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.409",
5
+ "version": "1.0.410",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -24,17 +24,8 @@
24
24
  "jsdelivr": "dist/iife/sdk.js",
25
25
  "unpkg": "dist/iife/sdk.js",
26
26
  "dependencies": {
27
- "@t3-oss/env-nextjs": "^0.12.0",
28
- "jsonwebtoken": "^9.0.2",
29
- "next": "^15.2.3",
30
- "next-auth": "^4.24.11",
31
- "next-safe-action": "^7.10.4",
32
- "node-fetch-native-with-agent": "^1.7.2",
33
- "server-only": "^0.0.1",
34
27
  "zod": "4.1.5"
35
28
  },
36
- "peerDependencies": {
37
- "redis": "^4.7.0"
38
- },
29
+ "peerDependencies": {},
39
30
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
40
31
  }