adaptic-backend 1.0.298 → 1.0.300

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.
@@ -3,16 +3,18 @@
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.onError = exports.setContext = exports.split = exports.ApolloError = exports.gql = exports.HttpLink = exports.InMemoryCache = exports.ApolloClient = void 0;
5
5
  // Import runtime implementations.
6
- const client_1 = require("@apollo/client");
7
- Object.defineProperty(exports, "ApolloClient", { enumerable: true, get: function () { return client_1.ApolloClient; } });
8
- Object.defineProperty(exports, "InMemoryCache", { enumerable: true, get: function () { return client_1.InMemoryCache; } });
9
- Object.defineProperty(exports, "gql", { enumerable: true, get: function () { return client_1.gql; } });
10
- Object.defineProperty(exports, "ApolloError", { enumerable: true, get: function () { return client_1.ApolloError; } });
11
- Object.defineProperty(exports, "split", { enumerable: true, get: function () { return client_1.split; } });
6
+ const core_1 = require("@apollo/client/core");
7
+ Object.defineProperty(exports, "ApolloClient", { enumerable: true, get: function () { return core_1.ApolloClient; } });
8
+ Object.defineProperty(exports, "gql", { enumerable: true, get: function () { return core_1.gql; } });
9
+ Object.defineProperty(exports, "ApolloError", { enumerable: true, get: function () { return core_1.ApolloError; } });
10
+ const core_2 = require("@apollo/client/link/core");
11
+ Object.defineProperty(exports, "split", { enumerable: true, get: function () { return core_2.split; } });
12
12
  const context_1 = require("@apollo/client/link/context");
13
13
  Object.defineProperty(exports, "setContext", { enumerable: true, get: function () { return context_1.setContext; } });
14
14
  const error_1 = require("@apollo/client/link/error");
15
15
  Object.defineProperty(exports, "onError", { enumerable: true, get: function () { return error_1.onError; } });
16
16
  const http_1 = require("@apollo/client/link/http");
17
17
  Object.defineProperty(exports, "HttpLink", { enumerable: true, get: function () { return http_1.HttpLink; } });
18
+ const inMemoryCache_1 = require("@apollo/client/cache/inmemory/inMemoryCache");
19
+ Object.defineProperty(exports, "InMemoryCache", { enumerable: true, get: function () { return inMemoryCache_1.InMemoryCache; } });
18
20
  //# sourceMappingURL=apollo-client.client.js.map
@@ -1,8 +1,10 @@
1
1
  import type { ApolloClient as ApolloClientType, InMemoryCache as InMemoryCacheType, HttpLink as HttpLinkType, NormalizedCacheObject } from "@apollo/client";
2
- import { ApolloClient, InMemoryCache, gql, ApolloError, split } from "@apollo/client";
2
+ import { ApolloClient, gql, ApolloError } from "@apollo/client/core";
3
+ import { split } from "@apollo/client/link/core";
3
4
  import { setContext } from "@apollo/client/link/context";
4
5
  import { onError } from "@apollo/client/link/error";
5
6
  import { HttpLink } from "@apollo/client/link/http";
7
+ import { InMemoryCache } from "@apollo/client/cache/inmemory/inMemoryCache";
6
8
  export { ApolloClient, InMemoryCache, HttpLink, gql, ApolloError, split, setContext, onError, };
7
9
  export type { ApolloClientType, InMemoryCacheType, HttpLinkType, NormalizedCacheObject, };
8
10
  //# sourceMappingURL=apollo-client.client.d.ts.map
@@ -1,51 +1,19 @@
1
1
  "use strict";
2
2
  // apollo-client.server.ts
3
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
- if (k2 === undefined) k2 = k;
5
- var desc = Object.getOwnPropertyDescriptor(m, k);
6
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
- desc = { enumerable: true, get: function() { return m[k]; } };
8
- }
9
- Object.defineProperty(o, k2, desc);
10
- }) : (function(o, m, k, k2) {
11
- if (k2 === undefined) k2 = k;
12
- o[k2] = m[k];
13
- }));
14
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
- Object.defineProperty(o, "default", { enumerable: true, value: v });
16
- }) : function(o, v) {
17
- o["default"] = v;
18
- });
19
- var __importStar = (this && this.__importStar) || (function () {
20
- var ownKeys = function(o) {
21
- ownKeys = Object.getOwnPropertyNames || function (o) {
22
- var ar = [];
23
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
- return ar;
25
- };
26
- return ownKeys(o);
27
- };
28
- return function (mod) {
29
- if (mod && mod.__esModule) return mod;
30
- var result = {};
31
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
- __setModuleDefault(result, mod);
33
- return result;
34
- };
35
- })();
36
3
  Object.defineProperty(exports, "__esModule", { value: true });
37
4
  exports.onError = exports.setContext = exports.split = exports.ApolloError = exports.gql = exports.HttpLink = exports.InMemoryCache = exports.ApolloClient = void 0;
38
- const pkg = __importStar(require("@apollo/client"));
39
- const { ApolloClient, InMemoryCache, gql, ApolloError, split } = pkg;
40
- exports.ApolloClient = ApolloClient;
41
- exports.InMemoryCache = InMemoryCache;
42
- exports.gql = gql;
43
- exports.ApolloError = ApolloError;
44
- exports.split = split;
5
+ const core_cjs_1 = require("@apollo/client/core/core.cjs");
6
+ Object.defineProperty(exports, "ApolloClient", { enumerable: true, get: function () { return core_cjs_1.ApolloClient; } });
7
+ Object.defineProperty(exports, "gql", { enumerable: true, get: function () { return core_cjs_1.gql; } });
8
+ Object.defineProperty(exports, "ApolloError", { enumerable: true, get: function () { return core_cjs_1.ApolloError; } });
9
+ const core_cjs_2 = require("@apollo/client/link/core/core.cjs");
10
+ Object.defineProperty(exports, "split", { enumerable: true, get: function () { return core_cjs_2.split; } });
45
11
  const context_cjs_1 = require("@apollo/client/link/context/context.cjs");
46
12
  Object.defineProperty(exports, "setContext", { enumerable: true, get: function () { return context_cjs_1.setContext; } });
47
13
  const error_cjs_1 = require("@apollo/client/link/error/error.cjs");
48
14
  Object.defineProperty(exports, "onError", { enumerable: true, get: function () { return error_cjs_1.onError; } });
49
15
  const http_cjs_1 = require("@apollo/client/link/http/http.cjs");
50
16
  Object.defineProperty(exports, "HttpLink", { enumerable: true, get: function () { return http_cjs_1.HttpLink; } });
17
+ const inMemoryCache_js_1 = require("@apollo/client/cache/inmemory/inMemoryCache.js");
18
+ Object.defineProperty(exports, "InMemoryCache", { enumerable: true, get: function () { return inMemoryCache_js_1.InMemoryCache; } });
51
19
  //# sourceMappingURL=apollo-client.server.js.map
@@ -1,9 +1,10 @@
1
1
  import type { ApolloClient as ApolloClientType, InMemoryCache as InMemoryCacheType, HttpLink as HttpLinkType, NormalizedCacheObject } from "@apollo/client";
2
- import * as pkg from "@apollo/client";
3
- declare const ApolloClient: typeof ApolloClientType, InMemoryCache: typeof InMemoryCacheType, gql: typeof pkg.gql, ApolloError: typeof pkg.ApolloError, split: typeof pkg.ApolloLink.split;
2
+ import { ApolloClient, gql, ApolloError } from "@apollo/client/core/core.cjs";
3
+ import { split } from "@apollo/client/link/core/core.cjs";
4
4
  import { setContext } from "@apollo/client/link/context/context.cjs";
5
5
  import { onError } from "@apollo/client/link/error/error.cjs";
6
6
  import { HttpLink } from "@apollo/client/link/http/http.cjs";
7
+ import { InMemoryCache } from "@apollo/client/cache/inmemory/inMemoryCache.js";
7
8
  export { ApolloClient, InMemoryCache, HttpLink, gql, ApolloError, split, setContext, onError, };
8
9
  export type { ApolloClientType, InMemoryCacheType, HttpLinkType, NormalizedCacheObject, };
9
10
  //# sourceMappingURL=apollo-client.server.d.ts.map
package/client.d.ts CHANGED
@@ -3,7 +3,7 @@ import { HttpLink as HttpLinkType } from "@apollo/client/link/http";
3
3
  export type { ApolloClientType, InMemoryCacheType, HttpLinkType, NormalizedCacheObject, };
4
4
  export interface ApolloModules {
5
5
  ApolloClient: typeof import("@apollo/client").ApolloClient;
6
- InMemoryCache: typeof import("@apollo/client").InMemoryCache;
6
+ InMemoryCache: typeof import("@apollo/client/cache/inmemory/inMemoryCache").InMemoryCache;
7
7
  HttpLink: typeof import("@apollo/client/link/http").HttpLink;
8
8
  gql: typeof import("@apollo/client").gql;
9
9
  ApolloError: typeof import("@apollo/client").ApolloError;
@@ -1,8 +1,10 @@
1
1
  import type { ApolloClient as ApolloClientType, InMemoryCache as InMemoryCacheType, HttpLink as HttpLinkType, NormalizedCacheObject } from "@apollo/client";
2
- import { ApolloClient, InMemoryCache, gql, ApolloError, split } from "@apollo/client";
2
+ import { ApolloClient, gql, ApolloError } from "@apollo/client/core";
3
+ import { split } from "@apollo/client/link/core";
3
4
  import { setContext } from "@apollo/client/link/context";
4
5
  import { onError } from "@apollo/client/link/error";
5
6
  import { HttpLink } from "@apollo/client/link/http";
7
+ import { InMemoryCache } from "@apollo/client/cache/inmemory/inMemoryCache";
6
8
  export { ApolloClient, InMemoryCache, HttpLink, gql, ApolloError, split, setContext, onError, };
7
9
  export type { ApolloClientType, InMemoryCacheType, HttpLinkType, NormalizedCacheObject, };
8
10
  //# sourceMappingURL=apollo-client.client.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"apollo-client.client.d.ts","sourceRoot":"","sources":["../../src/apollo-client.client.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,IAAI,gBAAgB,EAChC,aAAa,IAAI,iBAAiB,EAClC,QAAQ,IAAI,YAAY,EACxB,qBAAqB,EACtB,MAAM,gBAAgB,CAAC;AAGxB,OAAO,EACL,YAAY,EACZ,aAAa,EACb,GAAG,EACH,WAAW,EACX,KAAK,EACN,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAGpD,OAAO,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,GAAG,EACH,WAAW,EACX,KAAK,EACL,UAAU,EACV,OAAO,GACR,CAAC;AAGF,YAAY,EACV,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,qBAAqB,GACtB,CAAC"}
1
+ {"version":3,"file":"apollo-client.client.d.ts","sourceRoot":"","sources":["../../src/apollo-client.client.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,IAAI,gBAAgB,EAChC,aAAa,IAAI,iBAAiB,EAClC,QAAQ,IAAI,YAAY,EACxB,qBAAqB,EACtB,MAAM,gBAAgB,CAAC;AAGxB,OAAO,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;AAG5E,OAAO,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,GAAG,EACH,WAAW,EACX,KAAK,EACL,UAAU,EACV,OAAO,GACR,CAAC;AAGF,YAAY,EACV,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,qBAAqB,GACtB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"apollo-client.client.js","sourceRoot":"","sources":["../../src/apollo-client.client.ts"],"names":[],"mappings":"AAAA,0BAA0B;AAU1B,kCAAkC;AAClC,OAAO,EACL,YAAY,EACZ,aAAa,EACb,GAAG,EACH,WAAW,EACX,KAAK,GACN,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEpD,yCAAyC;AACzC,OAAO,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,GAAG,EACH,WAAW,EACX,KAAK,EACL,UAAU,EACV,OAAO,GACR,CAAC"}
1
+ {"version":3,"file":"apollo-client.client.js","sourceRoot":"","sources":["../../src/apollo-client.client.ts"],"names":[],"mappings":"AAAA,0BAA0B;AAU1B,kCAAkC;AAClC,OAAO,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;AAE5E,yCAAyC;AACzC,OAAO,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,GAAG,EACH,WAAW,EACX,KAAK,EACL,UAAU,EACV,OAAO,GACR,CAAC"}
@@ -1,9 +1,11 @@
1
1
  // apollo-client.client.ts
2
2
  // Import runtime implementations.
3
- import { ApolloClient, InMemoryCache, gql, ApolloError, split, } from "@apollo/client";
3
+ import { ApolloClient, gql, ApolloError } from "@apollo/client/core";
4
+ import { split } from "@apollo/client/link/core";
4
5
  import { setContext } from "@apollo/client/link/context";
5
6
  import { onError } from "@apollo/client/link/error";
6
7
  import { HttpLink } from "@apollo/client/link/http";
8
+ import { InMemoryCache } from "@apollo/client/cache/inmemory/inMemoryCache";
7
9
  // Re‑export the runtime implementations.
8
10
  export { ApolloClient, InMemoryCache, HttpLink, gql, ApolloError, split, setContext, onError, };
9
11
  //# sourceMappingURL=apollo-client.client.js.map
@@ -1,9 +1,10 @@
1
1
  import type { ApolloClient as ApolloClientType, InMemoryCache as InMemoryCacheType, HttpLink as HttpLinkType, NormalizedCacheObject } from "@apollo/client";
2
- import * as pkg from "@apollo/client";
3
- declare const ApolloClient: typeof ApolloClientType, InMemoryCache: typeof InMemoryCacheType, gql: typeof pkg.gql, ApolloError: typeof pkg.ApolloError, split: typeof pkg.ApolloLink.split;
2
+ import { ApolloClient, gql, ApolloError } from "@apollo/client/core/core.cjs";
3
+ import { split } from "@apollo/client/link/core/core.cjs";
4
4
  import { setContext } from "@apollo/client/link/context/context.cjs";
5
5
  import { onError } from "@apollo/client/link/error/error.cjs";
6
6
  import { HttpLink } from "@apollo/client/link/http/http.cjs";
7
+ import { InMemoryCache } from "@apollo/client/cache/inmemory/inMemoryCache.js";
7
8
  export { ApolloClient, InMemoryCache, HttpLink, gql, ApolloError, split, setContext, onError, };
8
9
  export type { ApolloClientType, InMemoryCacheType, HttpLinkType, NormalizedCacheObject, };
9
10
  //# sourceMappingURL=apollo-client.server.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"apollo-client.server.d.ts","sourceRoot":"","sources":["../../src/apollo-client.server.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,IAAI,gBAAgB,EAChC,aAAa,IAAI,iBAAiB,EAClC,QAAQ,IAAI,YAAY,EACxB,qBAAqB,EACtB,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,GAAG,MAAM,gBAAgB,CAAC;AACtC,QAAA,MAAQ,YAAY,2BAAE,aAAa,4BAAE,GAAG,kBAAE,WAAW,0BAAE,KAAK,6BAAQ,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,yCAAyC,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;AAC9D,OAAO,EAAE,QAAQ,EAAC,MAAM,mCAAmC,CAAC;AAG5D,OAAO,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,GAAG,EACH,WAAW,EACX,KAAK,EACL,UAAU,EACV,OAAO,GACR,CAAC;AAGF,YAAY,EACV,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,qBAAqB,GACtB,CAAC"}
1
+ {"version":3,"file":"apollo-client.server.d.ts","sourceRoot":"","sources":["../../src/apollo-client.server.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,IAAI,gBAAgB,EAChC,aAAa,IAAI,iBAAiB,EAClC,QAAQ,IAAI,YAAY,EACxB,qBAAqB,EACtB,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,yCAAyC,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,gDAAgD,CAAC;AAE/E,OAAO,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,GAAG,EACH,WAAW,EACX,KAAK,EACL,UAAU,EACV,OAAO,GACR,CAAC;AAGF,YAAY,EACV,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,qBAAqB,GACtB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"apollo-client.server.js","sourceRoot":"","sources":["../../src/apollo-client.server.ts"],"names":[],"mappings":"AAAA,0BAA0B;AAU1B,OAAO,KAAK,GAAG,MAAM,gBAAgB,CAAC;AACtC,MAAM,EAAE,YAAY,EAAE,aAAa,EAAE,GAAG,EAAE,WAAW,EAAE,KAAK,EAAE,GAAG,GAAG,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,yCAAyC,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;AAC9D,OAAO,EAAE,QAAQ,EAAC,MAAM,mCAAmC,CAAC;AAE5D,yCAAyC;AACzC,OAAO,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,GAAG,EACH,WAAW,EACX,KAAK,EACL,UAAU,EACV,OAAO,GACR,CAAC"}
1
+ {"version":3,"file":"apollo-client.server.js","sourceRoot":"","sources":["../../src/apollo-client.server.ts"],"names":[],"mappings":"AAAA,0BAA0B;AAU1B,OAAO,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,yCAAyC,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,gDAAgD,CAAC;AAC/E,yCAAyC;AACzC,OAAO,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,GAAG,EACH,WAAW,EACX,KAAK,EACL,UAAU,EACV,OAAO,GACR,CAAC"}
@@ -1,9 +1,10 @@
1
1
  // apollo-client.server.ts
2
- import * as pkg from "@apollo/client";
3
- const { ApolloClient, InMemoryCache, gql, ApolloError, split } = pkg;
2
+ import { ApolloClient, gql, ApolloError } from "@apollo/client/core/core.cjs";
3
+ import { split } from "@apollo/client/link/core/core.cjs";
4
4
  import { setContext } from "@apollo/client/link/context/context.cjs";
5
5
  import { onError } from "@apollo/client/link/error/error.cjs";
6
6
  import { HttpLink } from "@apollo/client/link/http/http.cjs";
7
+ import { InMemoryCache } from "@apollo/client/cache/inmemory/inMemoryCache.js";
7
8
  // Re‑export the runtime implementations.
8
9
  export { ApolloClient, InMemoryCache, HttpLink, gql, ApolloError, split, setContext, onError, };
9
10
  //# sourceMappingURL=apollo-client.server.js.map
package/esm/client.d.ts CHANGED
@@ -3,7 +3,7 @@ import { HttpLink as HttpLinkType } from "@apollo/client/link/http";
3
3
  export type { ApolloClientType, InMemoryCacheType, HttpLinkType, NormalizedCacheObject, };
4
4
  export interface ApolloModules {
5
5
  ApolloClient: typeof import("@apollo/client").ApolloClient;
6
- InMemoryCache: typeof import("@apollo/client").InMemoryCache;
6
+ InMemoryCache: typeof import("@apollo/client/cache/inmemory/inMemoryCache").InMemoryCache;
7
7
  HttpLink: typeof import("@apollo/client/link/http").HttpLink;
8
8
  gql: typeof import("@apollo/client").gql;
9
9
  ApolloError: typeof import("@apollo/client").ApolloError;
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,IAAI,gBAAgB,EAChC,aAAa,IAAI,iBAAiB,EAClC,qBAAqB,EACtB,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAAE,QAAQ,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAEpE,YAAY,EACV,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,qBAAqB,GACtB,CAAC;AAGF,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,cAAc,gBAAgB,EAAE,YAAY,CAAC;IAC3D,aAAa,EAAE,cAAc,gBAAgB,EAAE,aAAa,CAAC;IAC7D,QAAQ,EAAE,cAAc,0BAA0B,EAAE,QAAQ,CAAC;IAC7D,GAAG,EAAE,cAAc,gBAAgB,EAAE,GAAG,CAAC;IACzC,WAAW,EAAE,cAAc,gBAAgB,EAAE,WAAW,CAAC;IACzD,KAAK,EAAE,cAAc,gBAAgB,EAAE,KAAK,CAAC;IAC7C,UAAU,EAAE,cAAc,6BAA6B,EAAE,UAAU,CAAC;IACpE,OAAO,EAAE,cAAc,2BAA2B,EAAE,OAAO,CAAC;CAC7D;AAmBD;;;;GAIG;AACH,wBAAsB,eAAe,IAAI,OAAO,CAAC,gBAAgB,CAAC,qBAAqB,CAAC,CAAC,CAsDxF;AAED;;;;;GAKG;AACH,wBAAsB,gBAAgB,IAAI,OAAO,CAAC,aAAa,CAAC,CAK/D;AAED;;GAEG;AACH,eAAO,MAAM,MAAM,kDAAoB,CAAC"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,IAAI,gBAAgB,EAChC,aAAa,IAAI,iBAAiB,EAClC,qBAAqB,EACtB,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAAE,QAAQ,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAEpE,YAAY,EACV,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,qBAAqB,GACtB,CAAC;AAGF,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,cAAc,gBAAgB,EAAE,YAAY,CAAC;IAC3D,aAAa,EAAE,cAAc,6CAA6C,EAAE,aAAa,CAAC;IAC1F,QAAQ,EAAE,cAAc,0BAA0B,EAAE,QAAQ,CAAC;IAC7D,GAAG,EAAE,cAAc,gBAAgB,EAAE,GAAG,CAAC;IACzC,WAAW,EAAE,cAAc,gBAAgB,EAAE,WAAW,CAAC;IACzD,KAAK,EAAE,cAAc,gBAAgB,EAAE,KAAK,CAAC;IAC7C,UAAU,EAAE,cAAc,6BAA6B,EAAE,UAAU,CAAC;IACpE,OAAO,EAAE,cAAc,2BAA2B,EAAE,OAAO,CAAC;CAC7D;AAmBD;;;;GAIG;AACH,wBAAsB,eAAe,IAAI,OAAO,CAAC,gBAAgB,CAAC,qBAAqB,CAAC,CAAC,CAsDxF;AAED;;;;;GAKG;AACH,wBAAsB,gBAAgB,IAAI,OAAO,CAAC,aAAa,CAAC,CAK/D;AAED;;GAEG;AACH,eAAO,MAAM,MAAM,kDAAoB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adaptic-backend",
3
- "version": "1.0.298",
3
+ "version": "1.0.300",
4
4
  "description": "Backend executable CRUD functions with dynamic variables construction, and type definitions for the Adaptic AI platform.",
5
5
  "type": "module",
6
6
  "types": "index.d.ts",