at-shared-types 1.1.37 → 1.1.39

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.
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/protocol.ts
21
+ var protocol_exports = {};
22
+ __export(protocol_exports, {
23
+ ATAPIErrorCodeMap: () => ATAPIErrorCodeMap,
24
+ ATProtocol: () => ATProtocol
25
+ });
26
+ module.exports = __toCommonJS(protocol_exports);
27
+
28
+ // src/core/protocol/errors.ts
29
+ var ATAPIErrorCodeMap = {
30
+ AI_SESSION_EXPIRED: 4501,
31
+ AI_SESSION_NOT_FOUND: 4502,
32
+ AI_REQUEST_CONTEXT_MISSING: 4503
33
+ };
34
+
35
+ // src/protocol.ts
36
+ var ATProtocol = { ATAPIErrorCodeMap };
37
+ // Annotate the CommonJS export names for ESM import in node:
38
+ 0 && (module.exports = {
39
+ ATAPIErrorCodeMap,
40
+ ATProtocol
41
+ });
42
+ //# sourceMappingURL=protocol.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/protocol.ts","../src/core/protocol/errors.ts"],"sourcesContent":["export * from \"./core/protocol/errors\";\r\n\r\nimport { ATAPIErrorCodeMap } from \"./core/protocol/errors\";\r\n\r\nexport const ATProtocol = { ATAPIErrorCodeMap } as const;\r\n\r\nexport namespace ATProtocol {\r\n export type ATAPIErrorCode =\r\n import(\"./core/protocol/errors\").ATAPIErrorCode;\r\n}\r\n","export const ATAPIErrorCodeMap = {\r\n AI_SESSION_EXPIRED: 4501,\r\n AI_SESSION_NOT_FOUND: 4502,\r\n AI_REQUEST_CONTEXT_MISSING: 4503,\r\n} as const;\r\n\r\nexport type ATAPIErrorCode = typeof ATAPIErrorCodeMap[keyof typeof ATAPIErrorCodeMap];\r\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAO,IAAM,oBAAoB;AAAA,EAC7B,oBAAoB;AAAA,EACpB,sBAAsB;AAAA,EACtB,4BAA4B;AAChC;;;ADAO,IAAM,aAAa,EAAE,kBAAkB;","names":[]}
@@ -0,0 +1,16 @@
1
+ import "./chunk-J5LGTIGS.mjs";
2
+
3
+ // src/core/protocol/errors.ts
4
+ var ATAPIErrorCodeMap = {
5
+ AI_SESSION_EXPIRED: 4501,
6
+ AI_SESSION_NOT_FOUND: 4502,
7
+ AI_REQUEST_CONTEXT_MISSING: 4503
8
+ };
9
+
10
+ // src/protocol.ts
11
+ var ATProtocol = { ATAPIErrorCodeMap };
12
+ export {
13
+ ATAPIErrorCodeMap,
14
+ ATProtocol
15
+ };
16
+ //# sourceMappingURL=protocol.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/core/protocol/errors.ts","../src/protocol.ts"],"sourcesContent":["export const ATAPIErrorCodeMap = {\r\n AI_SESSION_EXPIRED: 4501,\r\n AI_SESSION_NOT_FOUND: 4502,\r\n AI_REQUEST_CONTEXT_MISSING: 4503,\r\n} as const;\r\n\r\nexport type ATAPIErrorCode = typeof ATAPIErrorCodeMap[keyof typeof ATAPIErrorCodeMap];\r\n","export * from \"./core/protocol/errors\";\r\n\r\nimport { ATAPIErrorCodeMap } from \"./core/protocol/errors\";\r\n\r\nexport const ATProtocol = { ATAPIErrorCodeMap } as const;\r\n\r\nexport namespace ATProtocol {\r\n export type ATAPIErrorCode =\r\n import(\"./core/protocol/errors\").ATAPIErrorCode;\r\n}\r\n"],"mappings":";;;AAAO,IAAM,oBAAoB;AAAA,EAC7B,oBAAoB;AAAA,EACpB,sBAAsB;AAAA,EACtB,4BAA4B;AAChC;;;ACAO,IAAM,aAAa,EAAE,kBAAkB;","names":[]}
@@ -3,6 +3,10 @@ var __defProp = Object.defineProperty;
3
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
5
  var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
6
10
  var __copyProps = (to, from, except, desc) => {
7
11
  if (from && typeof from === "object" || typeof from === "function") {
8
12
  for (let key of __getOwnPropNames(from))
@@ -15,5 +19,13 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
15
19
 
16
20
  // src/transport.ts
17
21
  var transport_exports = {};
22
+ __export(transport_exports, {
23
+ ATTransportDTO: () => ATTransportDTO
24
+ });
18
25
  module.exports = __toCommonJS(transport_exports);
26
+ var ATTransportDTO = {};
27
+ // Annotate the CommonJS export names for ESM import in node:
28
+ 0 && (module.exports = {
29
+ ATTransportDTO
30
+ });
19
31
  //# sourceMappingURL=transport.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/transport.ts"],"sourcesContent":["export type * from \"./ai/transport/wire.types\";\r\nexport type * from \"./ai/transport/chat\";\r\nexport type * from \"./core/transport/responses\";\r\n\r\n// ✅ type bucket (so ATTransportDTO.ResponseErrorDTO etc works)\r\nexport namespace ATTransportDTO {\r\n export type ResponseSuccessDTO<T> =\r\n import(\"./core/transport/responses\").ResponseSuccessDTO<T>;\r\n export type ResponseErrorDTO =\r\n import(\"./core/transport/responses\").ResponseErrorDTO;\r\n\r\n export type AIChatRequestDTO =\r\n import(\"./ai/transport/chat\").AIChatRequestDTO;\r\n export type AIChatResponseDTO =\r\n import(\"./ai/transport/chat\").AIChatResponseDTO;\r\n export type AIChatWithIntentRequestDTO =\r\n import(\"./ai/transport/chat\").AIChatWithIntentRequestDTO;\r\n export type AIChatWithIntentResponseDTO =\r\n import(\"./ai/transport/chat\").AIChatWithIntentResponseDTO;\r\n\r\n export type AIChatMessageWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatMessageWireDTO;\r\n export type AIChatOptionsWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatOptionsWireDTO;\r\n export type AIRequestContextWireDTO =\r\n import(\"./ai/transport/wire.types\").AIRequestContextWireDTO;\r\n export type AIChatWithIntentOptionsWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatWithIntentOptionsWireDTO;\r\n\r\n export type AIIntentWireDTO =\r\n import(\"./ai/transport/wire.types\").AIIntentWireDTO;\r\n export type AICapabilityWireDTO =\r\n import(\"./ai/transport/wire.types\").AICapabilityWireDTO;\r\n export type AIPageContextWireDTO =\r\n import(\"./ai/transport/wire.types\").AIPageContextWireDTO;\r\n\r\n export type AISessionConfigWireDTO =\r\n import(\"./ai/transport/wire.types\").AISessionConfigWireDTO;\r\n}\r\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../src/transport.ts"],"sourcesContent":["export type * from \"./ai/transport/wire.types\";\r\nexport type * from \"./ai/transport/chat\";\r\nexport type * from \"./core/transport/responses\";\r\n\r\nexport const ATTransportDTO = {} as const;\r\n\r\n// ✅ type bucket (so ATTransportDTO.ResponseErrorDTO etc works)\r\nexport namespace ATTransportDTO {\r\n export type ResponseSuccessDTO<T> =\r\n import(\"./core/transport/responses\").ResponseSuccessDTO<T>;\r\n export type ResponseErrorDTO =\r\n import(\"./core/transport/responses\").ResponseErrorDTO;\r\n\r\n export type AIChatRequestDTO =\r\n import(\"./ai/transport/chat\").AIChatRequestDTO;\r\n export type AIChatResponseDTO =\r\n import(\"./ai/transport/chat\").AIChatResponseDTO;\r\n export type AIChatWithIntentRequestDTO =\r\n import(\"./ai/transport/chat\").AIChatWithIntentRequestDTO;\r\n export type AIChatWithIntentResponseDTO =\r\n import(\"./ai/transport/chat\").AIChatWithIntentResponseDTO;\r\n\r\n export type AIChatMessageWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatMessageWireDTO;\r\n export type AIChatOptionsWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatOptionsWireDTO;\r\n export type AIRequestContextWireDTO =\r\n import(\"./ai/transport/wire.types\").AIRequestContextWireDTO;\r\n export type AIChatWithIntentOptionsWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatWithIntentOptionsWireDTO;\r\n\r\n export type AIIntentWireDTO =\r\n import(\"./ai/transport/wire.types\").AIIntentWireDTO;\r\n export type AICapabilityWireDTO =\r\n import(\"./ai/transport/wire.types\").AICapabilityWireDTO;\r\n export type AIPageContextWireDTO =\r\n import(\"./ai/transport/wire.types\").AIPageContextWireDTO;\r\n\r\n export type AISessionConfigWireDTO =\r\n import(\"./ai/transport/wire.types\").AISessionConfigWireDTO;\r\n}\r\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAIO,IAAM,iBAAiB,CAAC;","names":[]}
@@ -1,6 +1,7 @@
1
1
  export type * from "./ai/transport/wire.types";
2
2
  export type * from "./ai/transport/chat";
3
3
  export type * from "./core/transport/responses";
4
+ export declare const ATTransportDTO: {};
4
5
  export declare namespace ATTransportDTO {
5
6
  type ResponseSuccessDTO<T> = import("./core/transport/responses").ResponseSuccessDTO<T>;
6
7
  type ResponseErrorDTO = import("./core/transport/responses").ResponseErrorDTO;
@@ -1 +1 @@
1
- {"version":3,"file":"transport.d.ts","sourceRoot":"","sources":["../src/transport.ts"],"names":[],"mappings":"AAAA,mBAAmB,2BAA2B,CAAC;AAC/C,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,4BAA4B,CAAC;AAGhD,yBAAiB,cAAc,CAAC;IAC9B,KAAY,kBAAkB,CAAC,CAAC,IAC9B,OAAO,4BAA4B,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC;IAC7D,KAAY,gBAAgB,GAC1B,OAAO,4BAA4B,EAAE,gBAAgB,CAAC;IAExD,KAAY,gBAAgB,GAC1B,OAAO,qBAAqB,EAAE,gBAAgB,CAAC;IACjD,KAAY,iBAAiB,GAC3B,OAAO,qBAAqB,EAAE,iBAAiB,CAAC;IAClD,KAAY,0BAA0B,GACpC,OAAO,qBAAqB,EAAE,0BAA0B,CAAC;IAC3D,KAAY,2BAA2B,GACrC,OAAO,qBAAqB,EAAE,2BAA2B,CAAC;IAE5D,KAAY,oBAAoB,GAC9B,OAAO,2BAA2B,EAAE,oBAAoB,CAAC;IAC3D,KAAY,oBAAoB,GAC9B,OAAO,2BAA2B,EAAE,oBAAoB,CAAC;IAC3D,KAAY,uBAAuB,GACjC,OAAO,2BAA2B,EAAE,uBAAuB,CAAC;IAC9D,KAAY,8BAA8B,GACxC,OAAO,2BAA2B,EAAE,8BAA8B,CAAC;IAErE,KAAY,eAAe,GACzB,OAAO,2BAA2B,EAAE,eAAe,CAAC;IACtD,KAAY,mBAAmB,GAC7B,OAAO,2BAA2B,EAAE,mBAAmB,CAAC;IAC1D,KAAY,oBAAoB,GAC9B,OAAO,2BAA2B,EAAE,oBAAoB,CAAC;IAE3D,KAAY,sBAAsB,GAChC,OAAO,2BAA2B,EAAE,sBAAsB,CAAC;CAC9D"}
1
+ {"version":3,"file":"transport.d.ts","sourceRoot":"","sources":["../src/transport.ts"],"names":[],"mappings":"AAAA,mBAAmB,2BAA2B,CAAC;AAC/C,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,4BAA4B,CAAC;AAEhD,eAAO,MAAM,cAAc,IAAc,CAAC;AAG1C,yBAAiB,cAAc,CAAC;IAC9B,KAAY,kBAAkB,CAAC,CAAC,IAC9B,OAAO,4BAA4B,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC;IAC7D,KAAY,gBAAgB,GAC1B,OAAO,4BAA4B,EAAE,gBAAgB,CAAC;IAExD,KAAY,gBAAgB,GAC1B,OAAO,qBAAqB,EAAE,gBAAgB,CAAC;IACjD,KAAY,iBAAiB,GAC3B,OAAO,qBAAqB,EAAE,iBAAiB,CAAC;IAClD,KAAY,0BAA0B,GACpC,OAAO,qBAAqB,EAAE,0BAA0B,CAAC;IAC3D,KAAY,2BAA2B,GACrC,OAAO,qBAAqB,EAAE,2BAA2B,CAAC;IAE5D,KAAY,oBAAoB,GAC9B,OAAO,2BAA2B,EAAE,oBAAoB,CAAC;IAC3D,KAAY,oBAAoB,GAC9B,OAAO,2BAA2B,EAAE,oBAAoB,CAAC;IAC3D,KAAY,uBAAuB,GACjC,OAAO,2BAA2B,EAAE,uBAAuB,CAAC;IAC9D,KAAY,8BAA8B,GACxC,OAAO,2BAA2B,EAAE,8BAA8B,CAAC;IAErE,KAAY,eAAe,GACzB,OAAO,2BAA2B,EAAE,eAAe,CAAC;IACtD,KAAY,mBAAmB,GAC7B,OAAO,2BAA2B,EAAE,mBAAmB,CAAC;IAC1D,KAAY,oBAAoB,GAC9B,OAAO,2BAA2B,EAAE,oBAAoB,CAAC;IAE3D,KAAY,sBAAsB,GAChC,OAAO,2BAA2B,EAAE,sBAAsB,CAAC;CAC9D"}
@@ -1 +1,8 @@
1
+ import "./chunk-J5LGTIGS.mjs";
2
+
3
+ // src/transport.ts
4
+ var ATTransportDTO = {};
5
+ export {
6
+ ATTransportDTO
7
+ };
1
8
  //# sourceMappingURL=transport.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
1
+ {"version":3,"sources":["../src/transport.ts"],"sourcesContent":["export type * from \"./ai/transport/wire.types\";\r\nexport type * from \"./ai/transport/chat\";\r\nexport type * from \"./core/transport/responses\";\r\n\r\nexport const ATTransportDTO = {} as const;\r\n\r\n// ✅ type bucket (so ATTransportDTO.ResponseErrorDTO etc works)\r\nexport namespace ATTransportDTO {\r\n export type ResponseSuccessDTO<T> =\r\n import(\"./core/transport/responses\").ResponseSuccessDTO<T>;\r\n export type ResponseErrorDTO =\r\n import(\"./core/transport/responses\").ResponseErrorDTO;\r\n\r\n export type AIChatRequestDTO =\r\n import(\"./ai/transport/chat\").AIChatRequestDTO;\r\n export type AIChatResponseDTO =\r\n import(\"./ai/transport/chat\").AIChatResponseDTO;\r\n export type AIChatWithIntentRequestDTO =\r\n import(\"./ai/transport/chat\").AIChatWithIntentRequestDTO;\r\n export type AIChatWithIntentResponseDTO =\r\n import(\"./ai/transport/chat\").AIChatWithIntentResponseDTO;\r\n\r\n export type AIChatMessageWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatMessageWireDTO;\r\n export type AIChatOptionsWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatOptionsWireDTO;\r\n export type AIRequestContextWireDTO =\r\n import(\"./ai/transport/wire.types\").AIRequestContextWireDTO;\r\n export type AIChatWithIntentOptionsWireDTO =\r\n import(\"./ai/transport/wire.types\").AIChatWithIntentOptionsWireDTO;\r\n\r\n export type AIIntentWireDTO =\r\n import(\"./ai/transport/wire.types\").AIIntentWireDTO;\r\n export type AICapabilityWireDTO =\r\n import(\"./ai/transport/wire.types\").AICapabilityWireDTO;\r\n export type AIPageContextWireDTO =\r\n import(\"./ai/transport/wire.types\").AIPageContextWireDTO;\r\n\r\n export type AISessionConfigWireDTO =\r\n import(\"./ai/transport/wire.types\").AISessionConfigWireDTO;\r\n}\r\n"],"mappings":";;;AAIO,IAAM,iBAAiB,CAAC;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "at-shared-types",
3
- "version": "1.1.37",
3
+ "version": "1.1.39",
4
4
  "type": "commonjs",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",
@@ -1,4 +0,0 @@
1
- import * as Engine from "./engine";
2
- import * as Session from "./session";
3
- export { Engine, Session };
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ai/domain/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AAErC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC"}
@@ -1,4 +0,0 @@
1
- import * as Domain from "./domain";
2
- import * as Transport from "./transport";
3
- export { Domain, Transport };
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ai/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AAEzC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC"}
@@ -1,4 +0,0 @@
1
- import * as Wire from "./wire.types";
2
- import * as Chat from "./chat";
3
- export { Wire, Chat };
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ai/transport/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAC;AACrC,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAE/B,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC"}
@@ -1,27 +0,0 @@
1
- import type * as Engine from "./ai/domain/engine";
2
- import type * as Session from "./ai/domain/session";
3
- /**
4
- * Runtime value (empty on purpose) so consumers can:
5
- * import { ATDomainDTO } from "at-shared-types"
6
- * and then use:
7
- * ATDomainDTO.SomeType
8
- */
9
- export declare const ATDomainDTO: {};
10
- /**
11
- * Namespace holds ONLY types (and could hold values too if you ever need).
12
- * TS merges this with the const above.
13
- */
14
- export declare namespace ATDomainDTO {
15
- type ATChatMessageContentDTO = Engine.ATChatMessageContentDTO;
16
- type AIChatMessageDTO = Engine.AIChatMessageDTO;
17
- type AIChatOptionsResponseFormatDTO = Engine.AIChatOptionsResponseFormatDTO;
18
- type AIRequestContextDTO = Engine.AIRequestContextDTO;
19
- type AIChatOptionsDTO = Engine.AIChatOptionsDTO;
20
- type AIIntentDTO = Engine.AIIntentDTO;
21
- type AICapabilityDTO = Engine.AICapabilityDTO;
22
- type AIPageContextDTO = Engine.AIPageContextDTO;
23
- type AIChatWithIntentOptionsDTO = Engine.AIChatWithIntentOptionsDTO;
24
- type AIPromptRoleDTO = Session.AIPromptRoleDTO;
25
- type AISessionConfigDTO = Session.AISessionConfigDTO;
26
- }
27
- //# sourceMappingURL=at-domain-dto.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"at-domain-dto.d.ts","sourceRoot":"","sources":["../src/at-domain-dto.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,KAAK,OAAO,MAAM,qBAAqB,CAAC;AAEpD;;;;;GAKG;AACH,eAAO,MAAM,WAAW,IAAc,CAAC;AAEvC;;;GAGG;AACH,yBAAiB,WAAW,CAAC;IACzB,KAAY,uBAAuB,GAAG,MAAM,CAAC,uBAAuB,CAAC;IAErE,KAAY,gBAAgB,GAAG,MAAM,CAAC,gBAAgB,CAAC;IACvD,KAAY,8BAA8B,GAAG,MAAM,CAAC,8BAA8B,CAAC;IAEnF,KAAY,mBAAmB,GAAG,MAAM,CAAC,mBAAmB,CAAC;IAC7D,KAAY,gBAAgB,GAAG,MAAM,CAAC,gBAAgB,CAAC;IAEvD,KAAY,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC;IAC7C,KAAY,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC;IACrD,KAAY,gBAAgB,GAAG,MAAM,CAAC,gBAAgB,CAAC;IAEvD,KAAY,0BAA0B,GAAG,MAAM,CAAC,0BAA0B,CAAC;IAE3E,KAAY,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IACtD,KAAY,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC;CAC/D"}
@@ -1,20 +0,0 @@
1
- import type * as AIWire from "./ai/transport/wire.types";
2
- import type * as AIChat from "./ai/transport/chat";
3
- import type * as CoreResponses from "./core/transport/responses";
4
- export declare namespace ATTransportDTO {
5
- type ResponseSuccessDTO<T> = CoreResponses.ResponseSuccessDTO<T>;
6
- type ResponseErrorDTO = CoreResponses.ResponseErrorDTO;
7
- type AIChatRequestDTO = AIChat.AIChatRequestDTO;
8
- type AIChatResponseDTO = AIChat.AIChatResponseDTO;
9
- type AIChatWithIntentRequestDTO = AIChat.AIChatWithIntentRequestDTO;
10
- type AIChatWithIntentResponseDTO = AIChat.AIChatWithIntentResponseDTO;
11
- type AIChatMessageWireDTO = AIWire.AIChatMessageWireDTO;
12
- type AIChatOptionsWireDTO = AIWire.AIChatOptionsWireDTO;
13
- type AIRequestContextWireDTO = AIWire.AIRequestContextWireDTO;
14
- type AIChatWithIntentOptionsWireDTO = AIWire.AIChatWithIntentOptionsWireDTO;
15
- type AIIntentWireDTO = AIWire.AIIntentWireDTO;
16
- type AICapabilityWireDTO = AIWire.AICapabilityWireDTO;
17
- type AIPageContextWireDTO = AIWire.AIPageContextWireDTO;
18
- type AISessionConfigWireDTO = AIWire.AISessionConfigWireDTO;
19
- }
20
- //# sourceMappingURL=at-transport-dto.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"at-transport-dto.d.ts","sourceRoot":"","sources":["../src/at-transport-dto.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,MAAM,2BAA2B,CAAC;AACzD,OAAO,KAAK,KAAK,MAAM,MAAM,qBAAqB,CAAC;AAEnD,OAAO,KAAK,KAAK,aAAa,MAAM,4BAA4B,CAAC;AAEjE,yBAAiB,cAAc,CAAC;IAE5B,KAAY,kBAAkB,CAAC,CAAC,IAAI,aAAa,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC;IACxE,KAAY,gBAAgB,GAAG,aAAa,CAAC,gBAAgB,CAAC;IAG9D,KAAY,gBAAgB,GAAG,MAAM,CAAC,gBAAgB,CAAC;IACvD,KAAY,iBAAiB,GAAG,MAAM,CAAC,iBAAiB,CAAC;IACzD,KAAY,0BAA0B,GAAG,MAAM,CAAC,0BAA0B,CAAC;IAC3E,KAAY,2BAA2B,GAAG,MAAM,CAAC,2BAA2B,CAAC;IAG7E,KAAY,oBAAoB,GAAG,MAAM,CAAC,oBAAoB,CAAC;IAC/D,KAAY,oBAAoB,GAAG,MAAM,CAAC,oBAAoB,CAAC;IAC/D,KAAY,uBAAuB,GAAG,MAAM,CAAC,uBAAuB,CAAC;IACrE,KAAY,8BAA8B,GAAG,MAAM,CAAC,8BAA8B,CAAC;IAEnF,KAAY,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC;IACrD,KAAY,mBAAmB,GAAG,MAAM,CAAC,mBAAmB,CAAC;IAC7D,KAAY,oBAAoB,GAAG,MAAM,CAAC,oBAAoB,CAAC;IAE/D,KAAY,sBAAsB,GAAG,MAAM,CAAC,sBAAsB,CAAC;CACtE"}
package/dist/cjs.d.ts DELETED
@@ -1,4 +0,0 @@
1
- export { ATDomainDTO } from "./at-domain-dto";
2
- export { ATTransportDTO } from "./at-transport-dto";
3
- export * as Casing from "./casing";
4
- //# sourceMappingURL=cjs.d.ts.map
package/dist/cjs.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"cjs.d.ts","sourceRoot":"","sources":["../src/cjs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC"}
@@ -1,4 +0,0 @@
1
- import * as Protocol from "./protocol";
2
- import * as Transport from "./transport";
3
- export { Protocol, Transport };
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from "./errors";
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/protocol/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from "./responses";
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/transport/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC"}