@appconda/nextjs 1.0.22 → 1.0.24

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,4 @@
1
- import { Registry } from "@/lib/Registry";
1
+ import { Registry } from "./lib/Registry";
2
2
  import { Cache } from "./Cache";
3
3
  export declare const registry: Registry;
4
4
  export declare class Services {
package/dist/Services.js CHANGED
@@ -1,4 +1,4 @@
1
- import { Registry } from "@/lib/Registry";
1
+ import { Registry } from "./lib/Registry";
2
2
  import { createClient } from 'redis';
3
3
  import { Redis } from "./Cache/Adapters/Redis";
4
4
  import { Cache } from "./Cache";
@@ -1,6 +1,6 @@
1
1
  'use server';
2
2
  import { actionClient } from "./actionClient";
3
- import { getSDKForCurrentUser } from "@/getSDKForCurrentUser";
3
+ import { getSDKForCurrentUser } from '../getSDKForCurrentUser';
4
4
  export const getAllNodesAction = actionClient
5
5
  // .schema(listModelsSchema)
6
6
  .action(async ({ parsedInput }) => {
@@ -1,4 +1,4 @@
1
- import { Services } from "@/Services";
1
+ import { Services } from '../Services';
2
2
  function stableStringify(obj) {
3
3
  if (obj && typeof obj === "object" && !Array.isArray(obj)) {
4
4
  return `{${Object.keys(obj).sort().map(key => `"${key}":${stableStringify(obj[key])}`).join(",")}}`;
@@ -1,4 +1,4 @@
1
- import { Services } from "@/Services";
1
+ import { Services } from '../Services';
2
2
  export function Invalidate(keys) {
3
3
  return function (target, propertyKey, descriptor) {
4
4
  const originalMethod = descriptor.value;