@vorionsys/shared-constants 1.0.1 → 1.0.3
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/CHANGELOG.md +39 -0
- package/LICENSE +190 -0
- package/README.md +418 -44
- package/dist/api-versions.d.ts +91 -0
- package/dist/capabilities.cjs +4 -3
- package/dist/capabilities.d.cts +3 -2
- package/dist/capabilities.d.ts +56 -0
- package/dist/capabilities.js +1 -1
- package/dist/chunk-CJQJGJZ6.js +216 -0
- package/dist/chunk-JOS3AHBL.js +176 -0
- package/dist/{chunk-IKLCEYZT.js → chunk-OEEPW54O.js} +4 -6
- package/dist/domains.cjs +4 -6
- package/dist/domains.d.cts +4 -8
- package/dist/domains.d.ts +246 -0
- package/dist/domains.js +1 -1
- package/dist/error-codes.d.ts +633 -0
- package/dist/index.cjs +349 -12
- package/dist/index.d.cts +119 -4
- package/dist/index.d.ts +169 -0
- package/dist/index.js +330 -5
- package/dist/products.cjs +1 -1
- package/dist/products.d.ts +80 -0
- package/dist/products.js +1 -1
- package/dist/rate-limits.d.ts +80 -0
- package/dist/themes.d.ts +85 -0
- package/dist/tiers.d.ts +75 -0
- package/package.json +30 -8
- package/dist/chunk-F2R6HBF5.js +0 -253
- package/dist/chunk-PHL3CB53.js +0 -159
- package/src/api-versions.ts +0 -250
- package/src/capabilities.ts +0 -272
- package/src/domains.ts +0 -216
- package/src/error-codes.ts +0 -494
- package/src/index.ts +0 -206
- package/src/products.ts +0 -285
- package/src/rate-limits.ts +0 -334
- package/src/themes.ts +0 -380
- package/src/tiers.ts +0 -239
- package/tsconfig.json +0 -25
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @vorionsys/shared-constants - Domain Configuration
|
|
3
|
+
*
|
|
4
|
+
* Single source of truth for all Vorion ecosystem domains and URLs
|
|
5
|
+
* Used across all products and sites for consistent linking
|
|
6
|
+
*
|
|
7
|
+
* @see https://vorion.org
|
|
8
|
+
*/
|
|
9
|
+
declare const VORION_DOMAINS: {
|
|
10
|
+
/** Main Vorion organization site */
|
|
11
|
+
readonly main: "https://vorion.org";
|
|
12
|
+
/** BASIS specification and documentation */
|
|
13
|
+
readonly basis: "https://basis.vorion.org";
|
|
14
|
+
/** CAR ID specification */
|
|
15
|
+
readonly carId: "https://carid.vorion.org";
|
|
16
|
+
/** ATSF (Agent Trust & Safety Framework) */
|
|
17
|
+
readonly atsf: "https://atsf.vorion.org";
|
|
18
|
+
/** Learning and educational resources (primary) */
|
|
19
|
+
readonly learn: "https://learn.vorion.org";
|
|
20
|
+
/** Kaizen - Interactive AI Learning Experience (mirrors learn) */
|
|
21
|
+
readonly kaizen: "https://kaizen.vorion.org";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Domain aliases - maps alternate domains to primary
|
|
25
|
+
* Used for domain detection and routing
|
|
26
|
+
*/
|
|
27
|
+
declare const DOMAIN_ALIASES: {
|
|
28
|
+
readonly 'kaizen.vorion.org': "learn.vorion.org";
|
|
29
|
+
};
|
|
30
|
+
declare const AGENTANCHOR_DOMAINS: {
|
|
31
|
+
/** Main Agent Anchor AI site */
|
|
32
|
+
readonly main: "https://agentanchorai.com";
|
|
33
|
+
/** Agent Anchor Trust - Trust verification and certification */
|
|
34
|
+
readonly trust: "https://trust.agentanchorai.com";
|
|
35
|
+
/** Agent Anchor Logic - Policy engine and governance logic */
|
|
36
|
+
readonly logic: "https://logic.agentanchorai.com";
|
|
37
|
+
/** Status page */
|
|
38
|
+
readonly status: "https://status.agentanchorai.com";
|
|
39
|
+
/** Agent trust verification portal */
|
|
40
|
+
readonly verify: "https://verify.agentanchorai.com";
|
|
41
|
+
};
|
|
42
|
+
declare const COGNIGATE_DOMAINS: {
|
|
43
|
+
/** Cognigate main site and documentation */
|
|
44
|
+
readonly main: "https://cognigate.dev";
|
|
45
|
+
/** Cognigate API documentation */
|
|
46
|
+
readonly docs: "https://cognigate.dev/docs";
|
|
47
|
+
};
|
|
48
|
+
declare const API_ENDPOINTS: {
|
|
49
|
+
/** Cognigate Production API */
|
|
50
|
+
readonly cognigate: {
|
|
51
|
+
readonly production: "https://cognigate.dev/v1";
|
|
52
|
+
readonly staging: "https://staging.cognigate.dev/v1";
|
|
53
|
+
};
|
|
54
|
+
/** Agent Anchor AI Production API */
|
|
55
|
+
readonly agentAnchor: {
|
|
56
|
+
readonly production: "https://api.agentanchorai.com/v1";
|
|
57
|
+
readonly staging: "https://staging-api.agentanchorai.com/v1";
|
|
58
|
+
readonly sandbox: "https://sandbox.agentanchorai.com/v1";
|
|
59
|
+
};
|
|
60
|
+
/** Trust API */
|
|
61
|
+
readonly trust: {
|
|
62
|
+
readonly production: "https://trust.agentanchorai.com/v1";
|
|
63
|
+
readonly staging: "https://staging.trust.agentanchorai.com/v1";
|
|
64
|
+
};
|
|
65
|
+
/** Logic/Policy API */
|
|
66
|
+
readonly logic: {
|
|
67
|
+
readonly production: "https://logic.agentanchorai.com/v1";
|
|
68
|
+
readonly staging: "https://staging.logic.agentanchorai.com/v1";
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
declare const VORION_EMAILS: {
|
|
72
|
+
/** General inquiries */
|
|
73
|
+
readonly info: "info@vorion.org";
|
|
74
|
+
/** Security reports */
|
|
75
|
+
readonly security: "security@vorion.org";
|
|
76
|
+
/** Legal inquiries */
|
|
77
|
+
readonly legal: "legal@vorion.org";
|
|
78
|
+
/** Community and contributions */
|
|
79
|
+
readonly community: "community@vorion.org";
|
|
80
|
+
/** Contributing */
|
|
81
|
+
readonly contribute: "contribute@vorion.org";
|
|
82
|
+
};
|
|
83
|
+
declare const AGENTANCHOR_EMAILS: {
|
|
84
|
+
/** General support */
|
|
85
|
+
readonly support: "support@agentanchorai.com";
|
|
86
|
+
/** Sales inquiries */
|
|
87
|
+
readonly sales: "sales@agentanchorai.com";
|
|
88
|
+
/** Partner program */
|
|
89
|
+
readonly partners: "partners@agentanchorai.com";
|
|
90
|
+
/** API support */
|
|
91
|
+
readonly apiSupport: "api-support@agentanchorai.com";
|
|
92
|
+
/** Enterprise inquiries */
|
|
93
|
+
readonly enterprise: "enterprise@agentanchorai.com";
|
|
94
|
+
/** Compliance */
|
|
95
|
+
readonly compliance: "compliance@agentanchorai.com";
|
|
96
|
+
/** Team */
|
|
97
|
+
readonly team: "team@agentanchorai.com";
|
|
98
|
+
};
|
|
99
|
+
declare const GITHUB: {
|
|
100
|
+
/** Vorion organization */
|
|
101
|
+
readonly vorion: {
|
|
102
|
+
readonly org: "https://github.com/voriongit";
|
|
103
|
+
readonly mainRepo: "https://github.com/voriongit/vorion";
|
|
104
|
+
};
|
|
105
|
+
/** Agent Anchor AI (if separate) */
|
|
106
|
+
readonly agentAnchor: {
|
|
107
|
+
readonly org: "https://github.com/agentanchorai";
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
declare const NPM_PACKAGES: {
|
|
111
|
+
/** Open source packages (@vorionsys) */
|
|
112
|
+
readonly vorion: {
|
|
113
|
+
readonly basis: "@vorionsys/basis";
|
|
114
|
+
readonly contracts: "@vorionsys/contracts";
|
|
115
|
+
readonly carSpec: "@vorionsys/car-spec";
|
|
116
|
+
readonly atsfCore: "@vorionsys/atsf-core";
|
|
117
|
+
readonly cognigate: "@vorionsys/cognigate";
|
|
118
|
+
readonly sharedConstants: "@vorionsys/shared-constants";
|
|
119
|
+
};
|
|
120
|
+
/** Commercial packages (@agentanchor) */
|
|
121
|
+
readonly agentAnchor: {
|
|
122
|
+
readonly sdk: "@agentanchor/sdk";
|
|
123
|
+
readonly trust: "@agentanchor/trust";
|
|
124
|
+
readonly logic: "@agentanchor/logic";
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
declare const ALL_DOMAINS: {
|
|
128
|
+
readonly vorion: {
|
|
129
|
+
/** Main Vorion organization site */
|
|
130
|
+
readonly main: "https://vorion.org";
|
|
131
|
+
/** BASIS specification and documentation */
|
|
132
|
+
readonly basis: "https://basis.vorion.org";
|
|
133
|
+
/** CAR ID specification */
|
|
134
|
+
readonly carId: "https://carid.vorion.org";
|
|
135
|
+
/** ATSF (Agent Trust & Safety Framework) */
|
|
136
|
+
readonly atsf: "https://atsf.vorion.org";
|
|
137
|
+
/** Learning and educational resources (primary) */
|
|
138
|
+
readonly learn: "https://learn.vorion.org";
|
|
139
|
+
/** Kaizen - Interactive AI Learning Experience (mirrors learn) */
|
|
140
|
+
readonly kaizen: "https://kaizen.vorion.org";
|
|
141
|
+
};
|
|
142
|
+
readonly agentAnchor: {
|
|
143
|
+
/** Main Agent Anchor AI site */
|
|
144
|
+
readonly main: "https://agentanchorai.com";
|
|
145
|
+
/** Agent Anchor Trust - Trust verification and certification */
|
|
146
|
+
readonly trust: "https://trust.agentanchorai.com";
|
|
147
|
+
/** Agent Anchor Logic - Policy engine and governance logic */
|
|
148
|
+
readonly logic: "https://logic.agentanchorai.com";
|
|
149
|
+
/** Status page */
|
|
150
|
+
readonly status: "https://status.agentanchorai.com";
|
|
151
|
+
/** Agent trust verification portal */
|
|
152
|
+
readonly verify: "https://verify.agentanchorai.com";
|
|
153
|
+
};
|
|
154
|
+
readonly cognigate: {
|
|
155
|
+
/** Cognigate main site and documentation */
|
|
156
|
+
readonly main: "https://cognigate.dev";
|
|
157
|
+
/** Cognigate API documentation */
|
|
158
|
+
readonly docs: "https://cognigate.dev/docs";
|
|
159
|
+
};
|
|
160
|
+
readonly api: {
|
|
161
|
+
/** Cognigate Production API */
|
|
162
|
+
readonly cognigate: {
|
|
163
|
+
readonly production: "https://cognigate.dev/v1";
|
|
164
|
+
readonly staging: "https://staging.cognigate.dev/v1";
|
|
165
|
+
};
|
|
166
|
+
/** Agent Anchor AI Production API */
|
|
167
|
+
readonly agentAnchor: {
|
|
168
|
+
readonly production: "https://api.agentanchorai.com/v1";
|
|
169
|
+
readonly staging: "https://staging-api.agentanchorai.com/v1";
|
|
170
|
+
readonly sandbox: "https://sandbox.agentanchorai.com/v1";
|
|
171
|
+
};
|
|
172
|
+
/** Trust API */
|
|
173
|
+
readonly trust: {
|
|
174
|
+
readonly production: "https://trust.agentanchorai.com/v1";
|
|
175
|
+
readonly staging: "https://staging.trust.agentanchorai.com/v1";
|
|
176
|
+
};
|
|
177
|
+
/** Logic/Policy API */
|
|
178
|
+
readonly logic: {
|
|
179
|
+
readonly production: "https://logic.agentanchorai.com/v1";
|
|
180
|
+
readonly staging: "https://staging.logic.agentanchorai.com/v1";
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
readonly emails: {
|
|
184
|
+
readonly vorion: {
|
|
185
|
+
/** General inquiries */
|
|
186
|
+
readonly info: "info@vorion.org";
|
|
187
|
+
/** Security reports */
|
|
188
|
+
readonly security: "security@vorion.org";
|
|
189
|
+
/** Legal inquiries */
|
|
190
|
+
readonly legal: "legal@vorion.org";
|
|
191
|
+
/** Community and contributions */
|
|
192
|
+
readonly community: "community@vorion.org";
|
|
193
|
+
/** Contributing */
|
|
194
|
+
readonly contribute: "contribute@vorion.org";
|
|
195
|
+
};
|
|
196
|
+
readonly agentAnchor: {
|
|
197
|
+
/** General support */
|
|
198
|
+
readonly support: "support@agentanchorai.com";
|
|
199
|
+
/** Sales inquiries */
|
|
200
|
+
readonly sales: "sales@agentanchorai.com";
|
|
201
|
+
/** Partner program */
|
|
202
|
+
readonly partners: "partners@agentanchorai.com";
|
|
203
|
+
/** API support */
|
|
204
|
+
readonly apiSupport: "api-support@agentanchorai.com";
|
|
205
|
+
/** Enterprise inquiries */
|
|
206
|
+
readonly enterprise: "enterprise@agentanchorai.com";
|
|
207
|
+
/** Compliance */
|
|
208
|
+
readonly compliance: "compliance@agentanchorai.com";
|
|
209
|
+
/** Team */
|
|
210
|
+
readonly team: "team@agentanchorai.com";
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
readonly github: {
|
|
214
|
+
/** Vorion organization */
|
|
215
|
+
readonly vorion: {
|
|
216
|
+
readonly org: "https://github.com/voriongit";
|
|
217
|
+
readonly mainRepo: "https://github.com/voriongit/vorion";
|
|
218
|
+
};
|
|
219
|
+
/** Agent Anchor AI (if separate) */
|
|
220
|
+
readonly agentAnchor: {
|
|
221
|
+
readonly org: "https://github.com/agentanchorai";
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
readonly npm: {
|
|
225
|
+
/** Open source packages (@vorionsys) */
|
|
226
|
+
readonly vorion: {
|
|
227
|
+
readonly basis: "@vorionsys/basis";
|
|
228
|
+
readonly contracts: "@vorionsys/contracts";
|
|
229
|
+
readonly carSpec: "@vorionsys/car-spec";
|
|
230
|
+
readonly atsfCore: "@vorionsys/atsf-core";
|
|
231
|
+
readonly cognigate: "@vorionsys/cognigate";
|
|
232
|
+
readonly sharedConstants: "@vorionsys/shared-constants";
|
|
233
|
+
};
|
|
234
|
+
/** Commercial packages (@agentanchor) */
|
|
235
|
+
readonly agentAnchor: {
|
|
236
|
+
readonly sdk: "@agentanchor/sdk";
|
|
237
|
+
readonly trust: "@agentanchor/trust";
|
|
238
|
+
readonly logic: "@agentanchor/logic";
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
type VorionDomain = keyof typeof VORION_DOMAINS;
|
|
243
|
+
type AgentAnchorDomain = keyof typeof AGENTANCHOR_DOMAINS;
|
|
244
|
+
type CognigateDomain = keyof typeof COGNIGATE_DOMAINS;
|
|
245
|
+
|
|
246
|
+
export { AGENTANCHOR_DOMAINS, AGENTANCHOR_EMAILS, ALL_DOMAINS, API_ENDPOINTS, type AgentAnchorDomain, COGNIGATE_DOMAINS, type CognigateDomain, DOMAIN_ALIASES, GITHUB, NPM_PACKAGES, VORION_DOMAINS, VORION_EMAILS, type VorionDomain };
|