@crowdedkingdoms/crowdyjs 1.0.1 → 6.1.1

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/MIGRATION.md CHANGED
@@ -1,10 +1,15 @@
1
- # CrowdyJS 1.0.0 — npm org rename
1
+ # CrowdyJS — npm org rename (v6 version line kept)
2
2
 
3
- The package moved to the **`@crowdedkingdoms`** npm organization and its version
4
- line was reset:
3
+ The package moved to the **`@crowdedkingdoms`** npm organization. The version line
4
+ is **unchanged** — it continues the v6 series:
5
5
 
6
6
  - **Old:** `@crowdedkingdomstudios/crowdyjs@6.1.0`
7
- - **New:** `@crowdedkingdoms/crowdyjs@1.0.0` — **identical code**, new package name.
7
+ - **New:** `@crowdedkingdoms/crowdyjs@6.1.1` — **identical code**, new package name.
8
+
9
+ > During the org move the version was briefly reset to `1.0.0` / `1.0.1`. That was a
10
+ > versioning mistake: the docs and the rest of the platform track the v6 line, so the
11
+ > published SDK was restored to it. `6.1.1` (which is `latest`) supersedes the `1.0.x`
12
+ > publishes — those remain installable but are the *same code* as `6.1.1`.
8
13
 
9
14
  To upgrade, change your install and imports:
10
15
 
@@ -21,7 +26,7 @@ import { createCrowdyClient } from '@crowdedkingdoms/crowdyjs';
21
26
 
22
27
  No API, behavior, or type changes vs `@crowdedkingdomstudios/crowdyjs@6.1.0`. The
23
28
  old package is deprecated and points here. The notes below (kept for history)
24
- describe the feature set as of the former 6.x line, which `1.0.0` ships as-is.
29
+ describe the feature set as of the 6.x line, which `6.1.1` ships as-is.
25
30
 
26
31
  # CrowdyJS v6.1 Notes
27
32
 
package/README.md CHANGED
@@ -8,7 +8,7 @@ The official browser-first TypeScript SDK for **Crowded Kingdoms**. CrowdyJS giv
8
8
  npm install @crowdedkingdoms/crowdyjs
9
9
  ```
10
10
 
11
- > **Renamed package.** This SDK moved to the `@crowdedkingdoms` npm org. `@crowdedkingdoms/crowdyjs@1.0.0` is the **same code** as the former `@crowdedkingdomstudios/crowdyjs@6.1.0` — only the package name changed. See [MIGRATION.md](MIGRATION.md).
11
+ > **Renamed package, same version line.** This SDK moved to the `@crowdedkingdoms` npm org but **kept its v6 version line**. `@crowdedkingdoms/crowdyjs@6.1.1` continues directly from the former `@crowdedkingdomstudios/crowdyjs@6.1.0` — same code, new package name. (Two interim `1.0.x` publishes during the org move reset the version by mistake; they remain on npm but are superseded by `6.1.1`, which is `latest`.) See [MIGRATION.md](MIGRATION.md).
12
12
 
13
13
  CrowdyJS v4 targets browsers by default and uses native `fetch`, `WebSocket`, `crypto`, `btoa`, and `atob`. Node tools can still use the SDK, but must provide browser-compatible globals when opening realtime connections.
14
14
 
package/dist/index.d.ts CHANGED
@@ -41,7 +41,7 @@
41
41
  * or internal tooling, never an untrusted browser.
42
42
  */
43
43
  /** The published package version. Mirrors `package.json`. */
44
- export declare const VERSION = "1.0.1";
44
+ export declare const VERSION = "6.1.1";
45
45
  export { CrowdyClient, createCrowdyClient, type CrowdyClientConfig, } from './crowdy-client.js';
46
46
  export { BrowserLocalStorageTokenStore, SessionStore, type SessionListener, type TokenStore, } from './session.js';
47
47
  export { GraphQLClient, GraphQLTransport, type GraphQLClientConfig, } from './client.js';
package/dist/index.js CHANGED
@@ -41,7 +41,7 @@
41
41
  * or internal tooling, never an untrusted browser.
42
42
  */
43
43
  /** The published package version. Mirrors `package.json`. */
44
- export const VERSION = '1.0.1';
44
+ export const VERSION = '6.1.1';
45
45
  export { CrowdyClient, createCrowdyClient, } from './crowdy-client.js';
46
46
  export { BrowserLocalStorageTokenStore, SessionStore, } from './session.js';
47
47
  export { GraphQLClient, GraphQLTransport, } from './client.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crowdedkingdoms/crowdyjs",
3
- "version": "1.0.1",
3
+ "version": "6.1.1",
4
4
  "description": "Client SDK for Crowded Kingdoms GraphQL API with UDP proxy support",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",