at-shared-types 1.1.14 → 1.1.16
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.
- package/dist/cjs/ai/domain/index.d.ts +3 -2
- package/dist/cjs/ai/domain/index.js +6 -16
- package/dist/cjs/ai/index.d.ts +3 -2
- package/dist/cjs/ai/index.js +5 -2
- package/dist/cjs/ai/transport/index.d.ts +3 -2
- package/dist/cjs/ai/transport/index.js +6 -16
- package/dist/cjs/at-domain-dto.d.ts +26 -0
- package/dist/cjs/at-domain-dto.js +10 -0
- package/dist/cjs/at-transport-dto.d.ts +28 -0
- package/dist/cjs/at-transport-dto.js +7 -0
- package/dist/cjs/casing/index.d.ts +3 -0
- package/dist/cjs/casing/index.js +7 -0
- package/dist/cjs/core/index.d.ts +2 -1
- package/dist/cjs/core/index.js +3 -1
- package/dist/cjs/index.d.ts +3 -0
- package/dist/cjs/index.js +8 -0
- package/dist/cjs/package.json +3 -0
- package/dist/esm/ai/domain/index.d.ts +3 -2
- package/dist/esm/ai/domain/index.js +4 -2
- package/dist/esm/ai/index.d.ts +3 -2
- package/dist/esm/ai/index.js +4 -2
- package/dist/esm/ai/transport/index.d.ts +3 -2
- package/dist/esm/ai/transport/index.js +4 -2
- package/dist/esm/at-domain-dto.d.ts +26 -0
- package/dist/esm/at-domain-dto.js +7 -0
- package/dist/esm/at-transport-dto.d.ts +28 -0
- package/dist/esm/at-transport-dto.js +4 -0
- package/dist/esm/casing/index.d.ts +3 -0
- package/dist/esm/casing/index.js +5 -0
- package/dist/esm/core/index.d.ts +2 -1
- package/dist/esm/core/index.js +3 -1
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/package.json +3 -0
- package/package.json +4 -19
- package/dist/cjs/index.cjs.d.ts +0 -4
- package/dist/cjs/index.cjs.js +0 -20
- package/dist/cjs/index.esm.d.ts +0 -4
- package/dist/cjs/index.esm.js +0 -7
- package/dist/esm/index.cjs.d.ts +0 -4
- package/dist/esm/index.cjs.js +0 -4
- package/dist/esm/index.esm.d.ts +0 -4
- package/dist/esm/index.esm.js +0 -4
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as Engine from "./engine";
|
|
2
|
+
import * as Session from "./session";
|
|
3
|
+
export { Engine, Session };
|
|
@@ -1,18 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
|
|
18
|
-
|
|
3
|
+
exports.Session = exports.Engine = void 0;
|
|
4
|
+
// src/ai/domain/index.ts
|
|
5
|
+
const Engine = require("./engine");
|
|
6
|
+
exports.Engine = Engine;
|
|
7
|
+
const Session = require("./session");
|
|
8
|
+
exports.Session = Session;
|
package/dist/cjs/ai/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as Domain from "./domain";
|
|
2
|
+
import * as Transport from "./transport";
|
|
3
|
+
export { Domain, Transport };
|
package/dist/cjs/ai/index.js
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Transport = exports.Domain = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
// src/ai/index.ts
|
|
5
|
+
const Domain = require("./domain");
|
|
6
|
+
exports.Domain = Domain;
|
|
7
|
+
const Transport = require("./transport");
|
|
8
|
+
exports.Transport = Transport;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as Wire from "./wire.types";
|
|
2
|
+
import * as Chat from "./chat";
|
|
3
|
+
export { Wire, Chat };
|
|
@@ -1,18 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
|
|
18
|
-
|
|
3
|
+
exports.Chat = exports.Wire = void 0;
|
|
4
|
+
// src/ai/transport/index.ts
|
|
5
|
+
const Wire = require("./wire.types");
|
|
6
|
+
exports.Wire = Wire;
|
|
7
|
+
const Chat = require("./chat");
|
|
8
|
+
exports.Chat = Chat;
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ATDomainDTO = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Runtime value (empty on purpose) so consumers can:
|
|
6
|
+
* import { ATDomainDTO } from "at-shared-types"
|
|
7
|
+
* and then use:
|
|
8
|
+
* ATDomainDTO.SomeType
|
|
9
|
+
*/
|
|
10
|
+
exports.ATDomainDTO = {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type * as AIWire from "./ai/transport/wire.types";
|
|
2
|
+
import type * as AIChat from "./ai/transport/chat";
|
|
3
|
+
import { type ATAPIErrorCodeDTO as ATAPIErrorCodeType } from "./core/transport/errors";
|
|
4
|
+
import type * as CoreResponses from "./core/transport/responses";
|
|
5
|
+
export declare const ATTransportDTO: {
|
|
6
|
+
readonly ATAPIErrorCodeDTO: {
|
|
7
|
+
readonly AI_SESSION_EXPIRED: 4501;
|
|
8
|
+
readonly AI_SESSION_NOT_FOUND: 4502;
|
|
9
|
+
readonly AI_REQUEST_CONTEXT_MISSING: 4503;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare namespace ATTransportDTO {
|
|
13
|
+
type ATAPIErrorCodeDTO = ATAPIErrorCodeType;
|
|
14
|
+
type ResponseSuccessDTO<T> = CoreResponses.ResponseSuccessDTO<T>;
|
|
15
|
+
type ResponseErrorDTO = CoreResponses.ResponseErrorDTO;
|
|
16
|
+
type AIChatRequestDTO = AIChat.AIChatRequestDTO;
|
|
17
|
+
type AIChatResponseDTO = AIChat.AIChatResponseDTO;
|
|
18
|
+
type AIChatWithIntentRequestDTO = AIChat.AIChatWithIntentRequestDTO;
|
|
19
|
+
type AIChatWithIntentResponseDTO = AIChat.AIChatWithIntentResponseDTO;
|
|
20
|
+
type AIChatMessageWireDTO = AIWire.AIChatMessageWireDTO;
|
|
21
|
+
type AIChatOptionsWireDTO = AIWire.AIChatOptionsWireDTO;
|
|
22
|
+
type AIRequestContextWireDTO = AIWire.AIRequestContextWireDTO;
|
|
23
|
+
type AIChatWithIntentOptionsWireDTO = AIWire.AIChatWithIntentOptionsWireDTO;
|
|
24
|
+
type AIIntentWireDTO = AIWire.AIIntentWireDTO;
|
|
25
|
+
type AICapabilityWireDTO = AIWire.AICapabilityWireDTO;
|
|
26
|
+
type AIPageContextWireDTO = AIWire.AIPageContextWireDTO;
|
|
27
|
+
type AISessionConfigWireDTO = AIWire.AISessionConfigWireDTO;
|
|
28
|
+
}
|
package/dist/cjs/casing/index.js
CHANGED
|
@@ -14,5 +14,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.Runtime = exports.Types = void 0;
|
|
18
|
+
// src/casing/index.ts
|
|
17
19
|
__exportStar(require("./case.types"), exports);
|
|
18
20
|
__exportStar(require("./case.runtime"), exports);
|
|
21
|
+
// (optional) if you still like namespaces, keep them too:
|
|
22
|
+
const Types = require("./case.types");
|
|
23
|
+
exports.Types = Types;
|
|
24
|
+
const Runtime = require("./case.runtime");
|
|
25
|
+
exports.Runtime = Runtime;
|
package/dist/cjs/core/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import * as Transport from "./transport";
|
|
2
|
+
export { Transport };
|
package/dist/cjs/core/index.js
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Casing = exports.ATTransportDTO = exports.ATDomainDTO = void 0;
|
|
4
|
+
var at_domain_dto_1 = require("./at-domain-dto");
|
|
5
|
+
Object.defineProperty(exports, "ATDomainDTO", { enumerable: true, get: function () { return at_domain_dto_1.ATDomainDTO; } });
|
|
6
|
+
var at_transport_dto_1 = require("./at-transport-dto");
|
|
7
|
+
Object.defineProperty(exports, "ATTransportDTO", { enumerable: true, get: function () { return at_transport_dto_1.ATTransportDTO; } });
|
|
8
|
+
exports.Casing = require("./casing");
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as Engine from "./engine";
|
|
2
|
+
import * as Session from "./session";
|
|
3
|
+
export { Engine, Session };
|
package/dist/esm/ai/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as Domain from "./domain";
|
|
2
|
+
import * as Transport from "./transport";
|
|
3
|
+
export { Domain, Transport };
|
package/dist/esm/ai/index.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as Wire from "./wire.types";
|
|
2
|
+
import * as Chat from "./chat";
|
|
3
|
+
export { Wire, Chat };
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type * as AIWire from "./ai/transport/wire.types";
|
|
2
|
+
import type * as AIChat from "./ai/transport/chat";
|
|
3
|
+
import { type ATAPIErrorCodeDTO as ATAPIErrorCodeType } from "./core/transport/errors";
|
|
4
|
+
import type * as CoreResponses from "./core/transport/responses";
|
|
5
|
+
export declare const ATTransportDTO: {
|
|
6
|
+
readonly ATAPIErrorCodeDTO: {
|
|
7
|
+
readonly AI_SESSION_EXPIRED: 4501;
|
|
8
|
+
readonly AI_SESSION_NOT_FOUND: 4502;
|
|
9
|
+
readonly AI_REQUEST_CONTEXT_MISSING: 4503;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare namespace ATTransportDTO {
|
|
13
|
+
type ATAPIErrorCodeDTO = ATAPIErrorCodeType;
|
|
14
|
+
type ResponseSuccessDTO<T> = CoreResponses.ResponseSuccessDTO<T>;
|
|
15
|
+
type ResponseErrorDTO = CoreResponses.ResponseErrorDTO;
|
|
16
|
+
type AIChatRequestDTO = AIChat.AIChatRequestDTO;
|
|
17
|
+
type AIChatResponseDTO = AIChat.AIChatResponseDTO;
|
|
18
|
+
type AIChatWithIntentRequestDTO = AIChat.AIChatWithIntentRequestDTO;
|
|
19
|
+
type AIChatWithIntentResponseDTO = AIChat.AIChatWithIntentResponseDTO;
|
|
20
|
+
type AIChatMessageWireDTO = AIWire.AIChatMessageWireDTO;
|
|
21
|
+
type AIChatOptionsWireDTO = AIWire.AIChatOptionsWireDTO;
|
|
22
|
+
type AIRequestContextWireDTO = AIWire.AIRequestContextWireDTO;
|
|
23
|
+
type AIChatWithIntentOptionsWireDTO = AIWire.AIChatWithIntentOptionsWireDTO;
|
|
24
|
+
type AIIntentWireDTO = AIWire.AIIntentWireDTO;
|
|
25
|
+
type AICapabilityWireDTO = AIWire.AICapabilityWireDTO;
|
|
26
|
+
type AIPageContextWireDTO = AIWire.AIPageContextWireDTO;
|
|
27
|
+
type AISessionConfigWireDTO = AIWire.AISessionConfigWireDTO;
|
|
28
|
+
}
|
package/dist/esm/casing/index.js
CHANGED
package/dist/esm/core/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import * as Transport from "./transport";
|
|
2
|
+
export { Transport };
|
package/dist/esm/core/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "at-shared-types",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.16",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -13,29 +13,14 @@
|
|
|
13
13
|
"clean": "rimraf dist",
|
|
14
14
|
"build:cjs": "tsc --project tsconfig.cjs.json",
|
|
15
15
|
"build:esm": "tsc --project tsconfig.json",
|
|
16
|
-
"
|
|
16
|
+
"postbuild": "node scripts/postbuild.mjs",
|
|
17
|
+
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run postbuild"
|
|
17
18
|
},
|
|
18
19
|
"exports": {
|
|
19
20
|
".": {
|
|
20
21
|
"types": "./dist/esm/index.d.ts",
|
|
21
22
|
"import": "./dist/esm/index.js",
|
|
22
|
-
"require": "./dist/cjs/index.js"
|
|
23
|
-
"default": "./dist/esm/index.js"
|
|
24
|
-
},
|
|
25
|
-
"./ai": {
|
|
26
|
-
"import": "./dist/esm/ai/index.js",
|
|
27
|
-
"require": "./dist/cjs/ai/index.js",
|
|
28
|
-
"types": "./dist/esm/ai/index.d.ts"
|
|
29
|
-
},
|
|
30
|
-
"./core": {
|
|
31
|
-
"import": "./dist/esm/core/index.js",
|
|
32
|
-
"require": "./dist/cjs/core/index.js",
|
|
33
|
-
"types": "./dist/esm/core/index.d.ts"
|
|
34
|
-
},
|
|
35
|
-
"./casing": {
|
|
36
|
-
"import": "./dist/esm/casing/index.js",
|
|
37
|
-
"require": "./dist/cjs/casing/index.js",
|
|
38
|
-
"types": "./dist/esm/casing/index.d.ts"
|
|
23
|
+
"require": "./dist/cjs/index.js"
|
|
39
24
|
}
|
|
40
25
|
},
|
|
41
26
|
"devDependencies": {
|
package/dist/cjs/index.cjs.d.ts
DELETED
package/dist/cjs/index.cjs.js
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./ai/domain"), exports);
|
|
18
|
-
__exportStar(require("./ai/transport"), exports);
|
|
19
|
-
__exportStar(require("./core/transport"), exports);
|
|
20
|
-
__exportStar(require("./casing"), exports);
|
package/dist/cjs/index.esm.d.ts
DELETED
package/dist/cjs/index.esm.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Casing = exports.Core = exports.AITransport = exports.AIDomain = void 0;
|
|
4
|
-
exports.AIDomain = require("./ai/domain");
|
|
5
|
-
exports.AITransport = require("./ai/transport");
|
|
6
|
-
exports.Core = require("./core");
|
|
7
|
-
exports.Casing = require("./casing");
|
package/dist/esm/index.cjs.d.ts
DELETED
package/dist/esm/index.cjs.js
DELETED
package/dist/esm/index.esm.d.ts
DELETED
package/dist/esm/index.esm.js
DELETED