@kodiak-finance/orderly-react-app 2.9.3 → 2.9.4
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1267,8 +1267,23 @@ function useCanTrade() {
|
|
|
1267
1267
|
}
|
|
1268
1268
|
|
|
1269
1269
|
// src/constants/changesets.ts
|
|
1270
|
-
var SDK_VERSION = "2.9.
|
|
1270
|
+
var SDK_VERSION = "2.9.4";
|
|
1271
1271
|
var CHANGESETS = {
|
|
1272
|
+
"2.9.4": {
|
|
1273
|
+
date: "2026-06-15",
|
|
1274
|
+
title: "Marketplace CLI: public plugin search, production endpoints, and hardened auth",
|
|
1275
|
+
summary: "Overhauled the orderly-devkit Marketplace CLI with a new public `search` command for discovering plugins, a clear split between public read commands and login-gated owner actions, a move to the production Marketplace API/web endpoints, and hardened credential storage and browser-login handling. Shared table-rendering and submission-validation logic were extracted into reusable internal modules, removing large amounts of duplicated command code.",
|
|
1276
|
+
highlights: [
|
|
1277
|
+
"New `search` command to discover public Marketplace plugins by keyword and tag \u2014 no login required, with sortable/paginated results and a `--json` mode for agent and script consumption",
|
|
1278
|
+
"Commands split into public reads (`search`, `view`) that work without auth and owner-scoped actions (`submit`, `list`, `update`, `delete`, `disable`) gated behind a shared `requireAuth` check",
|
|
1279
|
+
"Migrated to the production Marketplace endpoints (marketplace-api.orderly.network / marketplace.orderly.network), replacing the previous Vercel preview URLs",
|
|
1280
|
+
"Hardened credential storage \u2014 auth.json is now written with 0600 permissions and falls back to a temp directory when no home directory is available",
|
|
1281
|
+
"More robust browser login \u2014 the local callback server cancels cleanly on timeout, Ctrl+C, or duplicate callbacks, with correct process exit codes",
|
|
1282
|
+
"Extracted shared table rendering (with clickable terminal links to npm/GitHub) and backend-aligned submission/update validation into reusable internal modules"
|
|
1283
|
+
],
|
|
1284
|
+
packages: ["kodiak-orderly-devkit"],
|
|
1285
|
+
type: "feature"
|
|
1286
|
+
},
|
|
1272
1287
|
"2.9.3": {
|
|
1273
1288
|
date: "2026-06-05",
|
|
1274
1289
|
title: "Orderly SDK 3.1.0 sync with right-to-left language support",
|