@unwanted/matrix-sdk-mini 34.12.0-7 → 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/git-revision.txt +1 -1
- package/lib/autodiscovery.js +3 -3
- package/lib/autodiscovery.js.map +1 -1
- package/lib/client.d.ts.map +1 -1
- package/lib/client.js +10 -10
- package/lib/client.js.map +1 -1
- package/lib/content-repo.js +2 -2
- package/lib/content-repo.js.map +1 -1
- package/lib/http-api/prefix.d.ts +6 -7
- package/lib/http-api/prefix.d.ts.map +1 -1
- package/lib/http-api/prefix.js +6 -7
- package/lib/http-api/prefix.js.map +1 -1
- package/lib/sync.js +2 -2
- package/lib/sync.js.map +1 -1
- package/package.json +2 -2
- package/src/autodiscovery.ts +3 -3
- package/src/client.ts +9 -10
- package/src/content-repo.ts +2 -2
- package/src/http-api/prefix.ts +6 -8
- package/src/sync.ts +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@unwanted/matrix-sdk-mini",
|
3
|
-
"version": "34.12.0-
|
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
|
+
}
|
package/src/autodiscovery.ts
CHANGED
@@ -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
|
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}
|
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;
|
@@ -244,7 +244,7 @@ export class AutoDiscovery {
|
|
244
244
|
|
245
245
|
// Step 5b: Verify there is an identity server listening on the provided
|
246
246
|
// URL.
|
247
|
-
const isResponse = await this.fetchWellKnownObject(`${isUrl}/
|
247
|
+
const isResponse = await this.fetchWellKnownObject(`${isUrl}/_matrix/identity/v2`);
|
248
248
|
if (!isResponse?.raw || isResponse.action !== AutoDiscoveryAction.SUCCESS) {
|
249
249
|
logger.error("Invalid /v2 response");
|
250
250
|
failingClientConfig["m.identity_server"].error = AutoDiscovery.ERROR_INVALID_IDENTITY_SERVER;
|
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";
|
@@ -1694,7 +1693,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
|
1694
1693
|
});
|
1695
1694
|
const options =
|
1696
1695
|
msc3391DeleteAccountDataServerSupport === ServerSupport.Unstable
|
1697
|
-
? { prefix: "/
|
1696
|
+
? { prefix: "/_matrix/client/unstable/org.matrix.msc3391" }
|
1698
1697
|
: undefined;
|
1699
1698
|
return await this.http.authedRequest(Method.Delete, path, undefined, undefined, options);
|
1700
1699
|
}
|
@@ -3900,7 +3899,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
|
3900
3899
|
prefix:
|
3901
3900
|
Thread.hasServerSideListSupport === FeatureSupport.Stable
|
3902
3901
|
? ClientPrefix.V1
|
3903
|
-
: "/
|
3902
|
+
: "/_matrix/client/unstable/org.matrix.msc3856",
|
3904
3903
|
};
|
3905
3904
|
|
3906
3905
|
return this.http
|
@@ -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,
|
5022
|
+
.authedRequest<IServerVersions>(Method.Get, "/_matrix/client/versions", undefined, undefined, {
|
5024
5023
|
prefix: "",
|
5025
5024
|
})
|
5026
5025
|
.catch((e) => {
|
@@ -5219,7 +5218,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
|
5219
5218
|
case SERVICE_TYPES.IS:
|
5220
5219
|
return this.http.getUrl("/terms", undefined, IdentityPrefix.V2, baseUrl);
|
5221
5220
|
case SERVICE_TYPES.IM:
|
5222
|
-
return this.http.getUrl("/terms", undefined, "/
|
5221
|
+
return this.http.getUrl("/terms", undefined, "/_matrix/integrations/v1", baseUrl);
|
5223
5222
|
default:
|
5224
5223
|
throw new Error("Unsupported service type");
|
5225
5224
|
}
|
@@ -6056,7 +6055,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
|
6056
6055
|
if (await this.doesServerSupportUnstableFeature("uk.tcpip.msc4133.stable")) {
|
6057
6056
|
return ClientPrefix.V3;
|
6058
6057
|
}
|
6059
|
-
return "/
|
6058
|
+
return "/_matrix/client/unstable/uk.tcpip.msc4133";
|
6060
6059
|
}
|
6061
6060
|
|
6062
6061
|
/**
|
@@ -7175,7 +7174,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
|
7175
7174
|
if (e.errcode === "M_UNRECOGNIZED") {
|
7176
7175
|
// fall back to the prefixed hierarchy API.
|
7177
7176
|
return this.http.authedRequest<IRoomHierarchy>(Method.Get, path, queryParams, undefined, {
|
7178
|
-
prefix: "/
|
7177
|
+
prefix: "/_matrix/client/unstable/org.matrix.msc2946",
|
7179
7178
|
});
|
7180
7179
|
}
|
7181
7180
|
|
@@ -7269,7 +7268,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
|
7269
7268
|
const clientTimeout = req.clientTimeout;
|
7270
7269
|
delete req.clientTimeout;
|
7271
7270
|
return this.http.authedRequest<MSC3575SlidingSyncResponse>(Method.Post, "/sync", qps, req, {
|
7272
|
-
prefix: "/
|
7271
|
+
prefix: "/_matrix/client/unstable/org.matrix.msc3575",
|
7273
7272
|
baseUrl: proxyBaseUrl,
|
7274
7273
|
localTimeoutMs: clientTimeout,
|
7275
7274
|
abortSignal,
|
@@ -7301,7 +7300,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
|
7301
7300
|
*/
|
7302
7301
|
public async getRoomSummary(roomIdOrAlias: string, via?: string[]): Promise<RoomSummary> {
|
7303
7302
|
const paramOpts = {
|
7304
|
-
prefix: "/
|
7303
|
+
prefix: "/_matrix/client/unstable/im.nheko.summary",
|
7305
7304
|
};
|
7306
7305
|
try {
|
7307
7306
|
const path = utils.encodeUri("/summary/$roomid", { $roomid: roomIdOrAlias });
|
@@ -7403,7 +7402,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
|
7403
7402
|
(<MatrixError>err).httpStatus === 405)
|
7404
7403
|
) {
|
7405
7404
|
return await this.http.authedRequest(Method.Get, path, queryParams, undefined, {
|
7406
|
-
prefix: "/
|
7405
|
+
prefix: "/_matrix/client/unstable/org.matrix.msc3030",
|
7407
7406
|
});
|
7408
7407
|
}
|
7409
7408
|
|
package/src/content-repo.ts
CHANGED
@@ -91,9 +91,9 @@ export function getHttpUriForMxc(
|
|
91
91
|
const isThumbnailRequest = !!width || !!height || !!resizeMethod;
|
92
92
|
const verb = isThumbnailRequest ? "thumbnail" : "download";
|
93
93
|
if (useAuthentication) {
|
94
|
-
prefix = `/
|
94
|
+
prefix = `/_matrix/client/v1/media/${verb}`;
|
95
95
|
} else {
|
96
|
-
prefix = `/
|
96
|
+
prefix = `/_matrix/media/v3/${verb}`;
|
97
97
|
}
|
98
98
|
|
99
99
|
const url = new URL(`${prefix}/${serverName}/${mediaId}`, baseUrl);
|
package/src/http-api/prefix.ts
CHANGED
@@ -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 = "/
|
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 = "/
|
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 = "/
|
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 = "/
|
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 = "/
|
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 = "/
|
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
|
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
|
-
|
1511
|
+
"/_matrix/client/versions",
|
1512
1512
|
undefined, // queryParams
|
1513
1513
|
undefined, // data
|
1514
1514
|
{
|