mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 14:39:28 -07:00
Release 0.17.2
This commit is contained in:
parent
fcc62a6025
commit
a0c1bdaa90
5 changed files with 28 additions and 12 deletions
|
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.17.2] - 2022-10-27
|
||||||
|
### Fixed
|
||||||
|
- Proxy verification options
|
||||||
|
|
||||||
## [0.17.1] - 2022-10-25
|
## [0.17.1] - 2022-10-25
|
||||||
### Fixed
|
### Fixed
|
||||||
- ActivityPub definition
|
- ActivityPub definition
|
||||||
|
|
28
dist/doip.js
vendored
28
dist/doip.js
vendored
|
@ -38808,7 +38808,7 @@ module.exports.default = exports.default;
|
||||||
},{"./util/assertString":323}],329:[function(require,module,exports){
|
},{"./util/assertString":323}],329:[function(require,module,exports){
|
||||||
module.exports={
|
module.exports={
|
||||||
"name": "doipjs",
|
"name": "doipjs",
|
||||||
"version": "0.17.1",
|
"version": "0.17.2",
|
||||||
"description": "Decentralized Online Identity Proofs library in Node.js",
|
"description": "Decentralized Online Identity Proofs library in Node.js",
|
||||||
"main": "./src/index.js",
|
"main": "./src/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -40995,17 +40995,22 @@ const E = require('./enums')
|
||||||
* @property {string|null} proxy.hostname - The hostname of the proxy
|
* @property {string|null} proxy.hostname - The hostname of the proxy
|
||||||
* @property {string} proxy.policy - The policy that defines when to use a proxy ({@link module:enums~ProxyPolicy|here})
|
* @property {string} proxy.policy - The policy that defines when to use a proxy ({@link module:enums~ProxyPolicy|here})
|
||||||
* @property {object} claims - Options related to claim verification
|
* @property {object} claims - Options related to claim verification
|
||||||
|
* @property {object} claims.activitypub - Options related to the verification of activitypub claims
|
||||||
|
* @property {string|null} claims.activitypub.url - The URL of the verifier account
|
||||||
|
* @property {string|null} claims.activitypub.privateKey - The private key to sign the request
|
||||||
* @property {object} claims.irc - Options related to the verification of IRC claims
|
* @property {object} claims.irc - Options related to the verification of IRC claims
|
||||||
* @property {string|null} claims.irc.nick - The nick that the library uses to connect to the IRC server
|
* @property {string|null} claims.irc.nick - The nick that the library uses to connect to the IRC server
|
||||||
* @property {object} claims.matrix - Options related to the verification of Matrix claims
|
* @property {object} claims.matrix - Options related to the verification of Matrix claims
|
||||||
* @property {string|null} claims.matrix.instance - The server hostname on which the library can log in
|
* @property {string|null} claims.matrix.instance - The server hostname on which the library can log in
|
||||||
* @property {string|null} claims.matrix.accessToken - The access token required to identify the library ({@link https://www.matrix.org/docs/guides/client-server-api|Matrix docs})
|
* @property {string|null} claims.matrix.accessToken - The access token required to identify the library ({@link https://www.matrix.org/docs/guides/client-server-api|Matrix docs})
|
||||||
|
* @property {object} claims.telegram - Options related to the verification of Telegram claims
|
||||||
|
* @property {string|null} claims.telegram.token - The Telegram API's token ({@link https://core.telegram.org/bots/api#authorizing-your-bot|Telegram docs})
|
||||||
|
* @property {object} claims.twitter - Options related to the verification of Twitter claims
|
||||||
|
* @property {string|null} claims.twitter.bearerToken - The Twitter API's bearer token ({@link https://developer.twitter.com/en/docs/authentication/oauth-2-0/bearer-tokens|Twitter docs})
|
||||||
* @property {object} claims.xmpp - Options related to the verification of XMPP claims
|
* @property {object} claims.xmpp - Options related to the verification of XMPP claims
|
||||||
* @property {string|null} claims.xmpp.service - The server hostname on which the library can log in
|
* @property {string|null} claims.xmpp.service - The server hostname on which the library can log in
|
||||||
* @property {string|null} claims.xmpp.username - The username used to log in
|
* @property {string|null} claims.xmpp.username - The username used to log in
|
||||||
* @property {string|null} claims.xmpp.password - The password used to log in
|
* @property {string|null} claims.xmpp.password - The password used to log in
|
||||||
* @property {object} claims.twitter - Options related to the verification of Twitter claims
|
|
||||||
* @property {string|null} claims.twitter.bearerToken - The Twitter API's bearer token ({@link https://developer.twitter.com/en/docs/authentication/oauth-2-0/bearer-tokens|Twitter docs})
|
|
||||||
*/
|
*/
|
||||||
const opts = {
|
const opts = {
|
||||||
proxy: {
|
proxy: {
|
||||||
|
@ -41013,6 +41018,10 @@ const opts = {
|
||||||
policy: E.ProxyPolicy.NEVER
|
policy: E.ProxyPolicy.NEVER
|
||||||
},
|
},
|
||||||
claims: {
|
claims: {
|
||||||
|
activitypub: {
|
||||||
|
url: null,
|
||||||
|
privateKey: null
|
||||||
|
},
|
||||||
irc: {
|
irc: {
|
||||||
nick: null
|
nick: null
|
||||||
},
|
},
|
||||||
|
@ -41020,17 +41029,16 @@ const opts = {
|
||||||
instance: null,
|
instance: null,
|
||||||
accessToken: null
|
accessToken: null
|
||||||
},
|
},
|
||||||
xmpp: {
|
telegram: {
|
||||||
service: null,
|
token: null
|
||||||
username: null,
|
|
||||||
password: null
|
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
bearerToken: null
|
bearerToken: null
|
||||||
},
|
},
|
||||||
activitypub: {
|
xmpp: {
|
||||||
acct: null,
|
service: null,
|
||||||
privateKey: null
|
username: null,
|
||||||
|
password: null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
2
dist/doip.min.js
vendored
2
dist/doip.min.js
vendored
File diff suppressed because one or more lines are too long
4
docker/proxy/README.md
Normal file
4
docker/proxy/README.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# doip-proxy
|
||||||
|
|
||||||
|
Documentation on how to use this container:
|
||||||
|
https://docs.keyoxide.org/advanced/self-hosting/
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "doipjs",
|
"name": "doipjs",
|
||||||
"version": "0.17.1",
|
"version": "0.17.2",
|
||||||
"description": "Decentralized Online Identity Proofs library in Node.js",
|
"description": "Decentralized Online Identity Proofs library in Node.js",
|
||||||
"main": "./src/index.js",
|
"main": "./src/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
Loading…
Reference in a new issue