@unwanted/matrix-sdk-mini 34.12.0-6 → 34.12.0-8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unwanted/matrix-sdk-mini",
3
- "version": "34.12.0-6",
3
+ "version": "34.12.0-8",
4
4
  "description": "Matrix Client-Server mini SDK for Javascript",
5
5
  "engines": {
6
6
  "node": ">=20.0.0"
@@ -130,4 +130,4 @@
130
130
  "relativePaths": true
131
131
  },
132
132
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
133
- }
133
+ }
@@ -17,7 +17,7 @@ limitations under the License.
17
17
 
18
18
  import { IClientWellKnown, IWellKnownConfig, IServerVersions } from "./client.ts";
19
19
  import { logger } from "./logger.ts";
20
- import { MatrixError, Method, timeoutSignal, VersionsPrefix } from "./http-api/index.ts";
20
+ import { MatrixError, Method, timeoutSignal } from "./http-api/index.ts";
21
21
  import { SUPPORTED_MATRIX_VERSIONS } from "./version-support.ts";
22
22
 
23
23
  // Dev note: Auto discovery is part of the spec.
@@ -179,7 +179,7 @@ export class AutoDiscovery {
179
179
  }
180
180
 
181
181
  // Step 3: Make sure the homeserver URL points to a homeserver.
182
- const hsVersions = await this.fetchWellKnownObject<IServerVersions>(`${hsUrl}${VersionsPrefix}`);
182
+ const hsVersions = await this.fetchWellKnownObject<IServerVersions>(`${hsUrl}/_matrix/client/versions`);
183
183
  if (!hsVersions || !Array.isArray(hsVersions.raw?.["versions"])) {
184
184
  logger.error("Invalid /versions response");
185
185
  clientConfig["m.homeserver"].error = AutoDiscovery.ERROR_INVALID_HOMESERVER;
package/src/client.ts CHANGED
@@ -60,7 +60,6 @@ import {
60
60
  Upload,
61
61
  UploadOpts,
62
62
  UploadResponse,
63
- VersionsPrefix,
64
63
  } from "./http-api/index.ts";
65
64
  import { User, UserEvent, UserEventHandlerMap } from "./models/user.ts";
66
65
  import { getHttpUriForMxc } from "./content-repo.ts";
@@ -5020,7 +5019,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
5020
5019
 
5021
5020
  // We send an authenticated request as of MSC4026
5022
5021
  this.serverVersionsPromise = this.http
5023
- .authedRequest<IServerVersions>(Method.Get, VersionsPrefix, undefined, undefined, {
5022
+ .authedRequest<IServerVersions>(Method.Get, "/_matrix/client/versions", undefined, undefined, {
5024
5023
  prefix: "",
5025
5024
  })
5026
5025
  .catch((e) => {
@@ -18,33 +18,31 @@ export enum ClientPrefix {
18
18
  /**
19
19
  * A constant representing the URI path for Client-Server API endpoints versioned at v1.
20
20
  */
21
- V1 = "/im/_matrix/client/v1",
21
+ V1 = "/_matrix/client/v1",
22
22
  /**
23
23
  * A constant representing the URI path for Client-Server API endpoints versioned at v3.
24
24
  */
25
- V3 = "/im/_matrix/client/v3",
25
+ V3 = "/_matrix/client/v3",
26
26
  /**
27
27
  * A constant representing the URI path for as-yet unspecified Client-Server HTTP APIs.
28
28
  */
29
- Unstable = "/im/_matrix/client/unstable",
29
+ Unstable = "/_matrix/client/unstable",
30
30
  }
31
31
 
32
32
  export enum IdentityPrefix {
33
33
  /**
34
34
  * URI path for the v2 identity API
35
35
  */
36
- V2 = "/im/_matrix/identity/v2",
36
+ V2 = "/_matrix/identity/v2",
37
37
  }
38
38
 
39
39
  export enum MediaPrefix {
40
40
  /**
41
41
  * A constant representing the URI path for Client-Server API Media endpoints versioned at v1.
42
42
  */
43
- V1 = "/im/_matrix/media/v1",
43
+ V1 = "/_matrix/media/v1",
44
44
  /**
45
45
  * A constant representing the URI path for Client-Server API Media endpoints versioned at v3.
46
46
  */
47
- V3 = "/im/_matrix/media/v3",
47
+ V3 = "/_matrix/media/v3",
48
48
  }
49
-
50
- export const VersionsPrefix = "/im/_matrix/client/versions";
package/src/sync.ts CHANGED
@@ -48,7 +48,7 @@ import {
48
48
  IToDeviceEvent,
49
49
  } from "./sync-accumulator.ts";
50
50
  import { MatrixEvent } from "./models/event.ts";
51
- import { MatrixError, Method, VersionsPrefix } from "./http-api/index.ts";
51
+ import { MatrixError, Method } from "./http-api/index.ts";
52
52
  import { ISavedSync } from "./store/index.ts";
53
53
  import { EventType } from "./@types/event.ts";
54
54
  import { IPushRules } from "./@types/PushRules.ts";
@@ -1508,7 +1508,7 @@ export class SyncApi {
1508
1508
  this.client.http
1509
1509
  .request(
1510
1510
  Method.Get,
1511
- VersionsPrefix,
1511
+ "/_matrix/client/versions",
1512
1512
  undefined, // queryParams
1513
1513
  undefined, // data
1514
1514
  {