@dcl/js-runtime 7.1.17-5094501595.commit-ac35286 → 7.1.17-5113526518.commit-8fed9cd
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/apis.d.ts +10 -0
- package/package.json +2 -2
package/apis.d.ts
CHANGED
|
@@ -1285,9 +1285,19 @@ declare module "~system/SignedFetch" {
|
|
|
1285
1285
|
url: string;
|
|
1286
1286
|
init?: FlatFetchInit | undefined;
|
|
1287
1287
|
}
|
|
1288
|
+
export interface GetHeadersResponse {
|
|
1289
|
+
headers: {
|
|
1290
|
+
[key: string]: string;
|
|
1291
|
+
};
|
|
1292
|
+
}
|
|
1293
|
+
export interface GetHeadersResponse_HeadersEntry {
|
|
1294
|
+
key: string;
|
|
1295
|
+
value: string;
|
|
1296
|
+
}
|
|
1288
1297
|
|
|
1289
1298
|
// Function declaration section
|
|
1290
1299
|
export function signedFetch(body: SignedFetchRequest): Promise<FlatFetchResponse>;
|
|
1300
|
+
export function getHeaders(body: SignedFetchRequest): Promise<GetHeadersResponse>;
|
|
1291
1301
|
|
|
1292
1302
|
}
|
|
1293
1303
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/js-runtime",
|
|
3
3
|
"description": "JavaScript runtime definitions for Decentraland environments",
|
|
4
|
-
"version": "7.1.17-
|
|
4
|
+
"version": "7.1.17-5113526518.commit-8fed9cd",
|
|
5
5
|
"author": "",
|
|
6
6
|
"files": [
|
|
7
7
|
"index.d.ts",
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
},
|
|
21
21
|
"types": "./index.d.ts",
|
|
22
22
|
"typings": "./index.d.ts",
|
|
23
|
-
"commit": "
|
|
23
|
+
"commit": "8fed9cda7ea4e4e605f545ef3b09a7c0ec16686a"
|
|
24
24
|
}
|