0.23.4 • Published 1 day ago

@sphereon/ssi-sdk.contact-manager v0.23.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 day ago

Warning: This package still is in very early development. Breaking changes without notice will happen at this point!


A Veramo contact manager plugin. This plugin manages contacts and identity configurations to third parties and persists them. These configurations can then be used to establish a connection.

Supported identity connection types

For now the following connection types are supported:

  • OpenID Connect
  • Self Issued OpenID v2

Available functions

  • cmGetContact
  • cmGetContacts
  • cmAddContact
  • cmUpdateContact
  • cmRemoveContact
  • cmGetIdentity
  • cmGetIdentities
  • cmAddIdentity
  • cmUpdateIdentity
  • cmRemoveIdentity

Usage

Adding the plugin to an agent:

import { migrations, Entities } from '@veramo/data-store'
import DataStoreConnectionEntities from '@sphereon/ssi-sdk.contact-manager'
import { ContactStore, DataStoreMigrations } from '@sphereon/ssi-sdk.data-store'

const dbConnection = createConnection({
  type: 'react-native',
  database: 'app.sqlite',
  location: 'default',
  logging: false,
  synchronize: false,
  migrationsRun: true,
  migrations: [...DataStoreMigrations, ...migrations],
  entities: [...DataStoreConnectionEntities, ...Entities],
})

const agent = createAgent<IContactManager>({
  plugins: [
    new ContactManager({
      store: new ContactStore(dbConnection),
    }),
  ],
})

Get a contact:

const contactId = '8efb937f-4e90-4056-9a4d-7185ce8dc173'
const result = await agent.cmGetContact({
  contactId,
})

Get contacts:

const result = await agent.cmGetContacts()

Add a contact:

const result = await agent.cmAddContact({ name: 'contact_name', alias: 'contact_alias' })

Update a contact:

const contactId = '8efb937f-4e90-4056-9a4d-7185ce8dc173'
const contact = await agent
  .cmGetContact({
    contact,
  })
  .then((contact) => {
    return { ...contact, name: 'new_name' }
  })

const result = await agent.cmUpdateContact({ contact })

Remove a contact:

const contactId = 'ef6e13b2-a520-4bb6-9a13-9be529ce22b8'
const result = await agent.cmRemoveContact({ contactId })

Get an identity:

const identityId = 'cdfd231c-6d40-4e43-9bd0-e8c97262ffe1'
const result = await agent.cmGetIdentity({
  identityId,
})

Get identities:

const contactId = '00492d95-22b9-41c1-b475-90bf1667ae52'
const result = await agent.cmGetIdentities({ contactId })

Add an identity:

const contactId = 'a4a47842-43a7-4741-9562-0fb3a973ec98'
const identity = {
  alias: correlationId,
  identifier: {
    type: CorrelationIdentifierEnum.URL,
    correlationId,
  },
  connection: {
    type: ConnectionTypeEnum.DIDAUTH,
    config: {
      identifier: {
        did: 'did:test:138d7bf8-c930-4c6e-b928-97d3a4928b01',
        provider: 'test_provider',
        keys: [],
        services: [],
      },
      redirectUrl: 'https://example.com',
      stateId: 'e91f3510-5ce9-42ee-83b7-fa68ff323d27',
      sessionId: 'https://example.com/did:test:138d7bf8-c930-4c6e-b928-97d3a4928b01',
    },
  },
  metadata: [
    {
      label: 'Authorization URL',
      value: 'https://example.com',
    },
    {
      label: 'Scope',
      value: 'Authorization',
    },
  ],
}

const result = await agent.cmAddIdentity({
  contactId,
  identity,
})

Update an identity:

const identityId = 'cdfd231c-6d40-4e43-9bd0-e8c97262ffe1'
const identity = await agent
  .cmGetIdentity({
    identityId,
  })
  .then((identity) => {
    return { ...identity, alias: 'new_alias' }
  })
const result = await agent.cmUpdateIdentity({ identity })

Remove an identity:

const identityId = 'cdfd231c-6d40-4e43-9bd0-e8c97262ffe1'
await agent.cmRemoveIdentity({
  identityId,
})

Installation

yarn add @sphereon/ssi-sdk.contact-manager

Build

yarn build
0.23.5-next.12

6 days ago

0.23.5-next.11

7 days ago

0.23.5-next.10

9 days ago

0.23.1-next.7

14 days ago

0.23.3-next.3

14 days ago

0.23.4

14 days ago

0.23.2-next.4

14 days ago

0.23.1-next.2

14 days ago

0.23.0

15 days ago

0.21.2-next.25

15 days ago

0.21.2-next.23

27 days ago

0.21.2-next.8

29 days ago

0.21.2-next.7

29 days ago

0.21.2-next.6

29 days ago

0.21.2-next.17

28 days ago

0.21.1

1 month ago

0.22.0

1 month ago

0.21.1-next.8

1 month ago

0.21.1-next.4

1 month ago

0.21.1-unstable.5

2 months ago

0.19.1-next.125

2 months ago

0.19.1-next.126

2 months ago

0.21.0

2 months ago

0.19.1-next.119

2 months ago

0.19.1-next.135

2 months ago

0.21.1-next.2

2 months ago

0.19.1-next.117

2 months ago

0.19.1-next.113

2 months ago

0.19.1-next.114

2 months ago

0.19.1-next.115

2 months ago

0.19.1-next.116

2 months ago

0.19.1-next.111

2 months ago

0.19.1-next.112

2 months ago

0.19.1-next.105

2 months ago

0.19.1-next.110

2 months ago

0.19.1-next.106

2 months ago

0.19.1-next.108

2 months ago

0.19.1-next.109

2 months ago

0.19.1-next.98

2 months ago

0.19.1-next.99

2 months ago

0.19.1-next.102

2 months ago

0.19.1-next.100

2 months ago

0.19.1-next.101

2 months ago

0.19.1-next.96

2 months ago

0.19.1-unstable.88

2 months ago

0.19.1-unstable.89

2 months ago

0.19.1-unstable.86

2 months ago

0.19.1-unstable.87

2 months ago

0.19.1-unstable.93

2 months ago

0.19.1-unstable.94

2 months ago

0.19.1-unstable.91

2 months ago

0.19.1-unstable.92

2 months ago

0.19.1-unstable.90

2 months ago

0.19.1-unstable.84

2 months ago

0.19.1-unstable.85

2 months ago

0.19.1-unstable.82

2 months ago

0.19.1-unstable.80

2 months ago

0.19.1-unstable.81

2 months ago

0.19.1-unstable.78

2 months ago

0.19.1-unstable.77

2 months ago

0.19.1-unstable.75

2 months ago

0.19.1-next.75

2 months ago

0.19.1-unstable.73

2 months ago

0.19.1-unstable.74

2 months ago

0.19.1-unstable.69

2 months ago

0.19.1-unstable.67

2 months ago

0.19.1-unstable.65

2 months ago

0.19.1-unstable.63

2 months ago

0.19.1-next.2

2 months ago

0.18.2-unstable.98

2 months ago

0.19.1-next.24

2 months ago

0.19.0

2 months ago

0.18.2-next.96

2 months ago

0.18.2-unstable.57

2 months ago

0.18.2-unstable.97

2 months ago

0.18.2-next.95

2 months ago

0.18.2-next.94

2 months ago

0.18.2-next.92

2 months ago

0.18.2-unstable.96

2 months ago

0.18.2-unstable.95

2 months ago

0.18.2-unstable.55

2 months ago

0.18.2-unstable.89

2 months ago

0.18.2-unstable.88

2 months ago

0.18.2-unstable.90

2 months ago

0.18.2-unstable.87

2 months ago

0.18.2-unstable.85

2 months ago

0.18.2-next.58

3 months ago

0.18.2-next.62

3 months ago

0.18.2-unstable.12

3 months ago

0.18.2-unstable.61

3 months ago

0.18.2-next.77

3 months ago

0.18.2-unstable.56

3 months ago

0.18.2-unstable.53

3 months ago

0.18.2-unstable.67

3 months ago

0.18.2-next.57

3 months ago

0.18.2-unstable.64

3 months ago

0.18.2-unstable.59

3 months ago

0.18.2-unstable.60

3 months ago

0.18.2-next.47

3 months ago

0.18.2-next.15

3 months ago

0.18.2-next.17

3 months ago

0.18.2-unstable.54

3 months ago

0.18.2-unstable.51

3 months ago

0.18.2-unstable.50

3 months ago

0.18.2-next.14

3 months ago

0.18.2-unstable.22

3 months ago

0.18.2-next.12

3 months ago

0.18.2-unstable.46

3 months ago

0.18.2-next.9

3 months ago

0.18.2-unstable.14

3 months ago

0.18.2-unstable.13

3 months ago

0.18.2-unstable.44

3 months ago

0.18.2-unstable.34

3 months ago

0.18.2-unstable.36

3 months ago

0.18.2-unstable.35

3 months ago

0.18.2-unstable.33

3 months ago

0.18.2-unstable.32

3 months ago

0.18.2-unstable.30

3 months ago

0.18.2-unstable.5

3 months ago

0.18.2-unstable.6

3 months ago

0.18.2-unstable.7

3 months ago

0.18.2-unstable.8

3 months ago

0.18.2-unstable.10

3 months ago

0.17.6-unstable.79

3 months ago

0.18.2-next.3

4 months ago

0.18.2-unstable.25

4 months ago

0.18.2-unstable.24

4 months ago

0.18.1

4 months ago

0.18.1-next.8

4 months ago

0.18.1-next.3

4 months ago

0.18.1-next.2

4 months ago

0.18.1-next.4

4 months ago

0.17.6-next.61

4 months ago

0.18.0

4 months ago

0.17.6-next.58

4 months ago

0.17.6-unstable.74

4 months ago

0.17.6-unstable.72

4 months ago

0.17.6-unstable.73

4 months ago

0.17.6-unstable.71

4 months ago

0.17.6-next.57

4 months ago

0.17.6-next.56

5 months ago

0.17.6-next.52

5 months ago

0.17.6-unstable.69

5 months ago

0.17.6-unstable.54

5 months ago

0.17.6-unstable.55

5 months ago

0.17.6-unstable.23

5 months ago

0.17.2

7 months ago

0.14.2-unstable.13

9 months ago

0.17.3

7 months ago

0.17.4

7 months ago

0.17.5

7 months ago

0.16.1-next.3

7 months ago

0.17.0

7 months ago

0.17.1

7 months ago

0.17.2-next.2

7 months ago

0.17.2-next.4

7 months ago

0.14.2-unstable.31

9 months ago

0.14.2-unstable.32

9 months ago

0.17.6-unstable.4

7 months ago

0.15.2-next.96

8 months ago

0.17.6-unstable.3

7 months ago

0.15.2-next.95

8 months ago

0.15.2-next.97

8 months ago

0.17.6-unstable.8

6 months ago

0.15.2-unstable.24

9 months ago

0.17.6-unstable.6

7 months ago

0.15.2-unstable.26

9 months ago

0.17.6-unstable.5

7 months ago

0.15.2-unstable.25

9 months ago

0.13.1-next.3

10 months ago

0.13.1-next.4

10 months ago

0.13.1-next.5

10 months ago

0.13.1-next.6

10 months ago

0.13.1-next.7

10 months ago

0.13.1-next.8

10 months ago

0.15.2-unstable.17

9 months ago

0.15.2-unstable.16

9 months ago

0.15.2-unstable.11

9 months ago

0.15.2-unstable.10

9 months ago

0.15.2-unstable.13

9 months ago

0.15.2-unstable.15

9 months ago

0.13.1-next.32

9 months ago

0.17.1-next.2

7 months ago

0.13.1-next.33

9 months ago

0.15.0

9 months ago

0.15.1

9 months ago

0.13.1-next.17

10 months ago

0.13.1-next.14

10 months ago

0.13.1-next.15

10 months ago

0.13.1-next.10

10 months ago

0.13.1-next.18

10 months ago

0.16.0

7 months ago

0.13.1-next.27

10 months ago

0.13.1-next.28

9 months ago

0.13.1-next.25

10 months ago

0.13.1-next.26

10 months ago

0.13.1-next.23

10 months ago

0.13.1-next.24

10 months ago

0.15.1-next.2

9 months ago

0.17.3-next.2

7 months ago

0.15.2-next.39

8 months ago

0.15.2-next.32

8 months ago

0.15.2-next.33

8 months ago

0.15.2-unstable.8

9 months ago

0.15.2-unstable.7

9 months ago

0.15.2-unstable.9

9 months ago

0.13.1-unstable.10

10 months ago

0.13.1-unstable.13

10 months ago

0.13.1-unstable.12

10 months ago

0.13.1-unstable.11

10 months ago

0.13.1-unstable.18

9 months ago

0.13.1-unstable.15

10 months ago

0.15.2-unstable.76

8 months ago

0.15.2-next.113

8 months ago

0.15.2-next.110

8 months ago

0.15.2-next.111

8 months ago

0.17.6-next.7

7 months ago

0.17.6-next.6

7 months ago

0.17.6-next.9

6 months ago

0.17.6-next.3

7 months ago

0.17.6-next.2

7 months ago

0.17.6-next.5

7 months ago

0.17.6-next.4

7 months ago

0.14.2-next.28

9 months ago

0.14.2-next.27

9 months ago

0.14.2-next.29

9 months ago

0.14.2-next.23

9 months ago

0.15.2-next.103

8 months ago

0.14.2-next.26

9 months ago

0.15.2-next.104

8 months ago

0.14.2-next.25

9 months ago

0.14.0

9 months ago

0.15.2-next.109

8 months ago

0.14.1

9 months ago

0.15.2-unstable.91

8 months ago

0.15.2-unstable.93

8 months ago

0.15.2-next.124

7 months ago

0.15.2-unstable.92

8 months ago

0.15.2-next.121

7 months ago

0.15.2-next.29

8 months ago

0.14.2-next.18

9 months ago

0.15.2-next.116

8 months ago

0.15.2-unstable.97

8 months ago

0.15.2-next.117

8 months ago

0.15.2-next.114

8 months ago

0.15.2-unstable.99

8 months ago

0.15.2-unstable.98

8 months ago

0.14.2-next.14

9 months ago

0.15.2-next.118

8 months ago

0.14.2-next.40

9 months ago

0.17.6-unstable.18

6 months ago

0.15.2-next.4

9 months ago

0.15.2-next.5

9 months ago

0.15.2-next.6

9 months ago

0.14.2-unstable.57

9 months ago

0.14.2-next.49

9 months ago

0.14.2-unstable.56

9 months ago

0.14.2-next.45

9 months ago

0.14.2-next.48

9 months ago

0.14.2-next.47

9 months ago

0.15.2-next.77

8 months ago

0.14.2-next.43

9 months ago

0.15.2-next.101

8 months ago

0.15.2-unstable.38

8 months ago

0.14.2-next.39

9 months ago

0.14.2-next.38

9 months ago

0.14.1-next.2

9 months ago

0.17.6-unstable.16

7 months ago

0.14.2-next.35

9 months ago

0.14.2-next.34

9 months ago

0.17.6-unstable.14

5 months ago

0.14.2-next.37

9 months ago

0.17.6-unstable.15

7 months ago

0.14.2-next.36

9 months ago

0.17.6-unstable.12

7 months ago

0.14.2-next.31

9 months ago

0.17.6-unstable.13

5 months ago

0.14.2-next.30

9 months ago

0.17.6-unstable.10

6 months ago

0.15.2-unstable.37

8 months ago

0.14.2-next.33

9 months ago

0.17.6-unstable.11

7 months ago

0.15.2-unstable.36

8 months ago

0.14.2-next.32

9 months ago

0.14.2-next.51

9 months ago

0.14.2-next.50

9 months ago

0.17.6-next.16

5 months ago

0.15.2-next.3

9 months ago

0.13.1-unstable.6

10 months ago

0.13.1-unstable.7

10 months ago

0.13.1-unstable.8

10 months ago

0.14.2-next.58

9 months ago

0.13.1-unstable.9

10 months ago

0.13.0

11 months ago

0.12.1-unstable.18

11 months ago

0.12.1-unstable.19

11 months ago

0.12.1-unstable.17

11 months ago

0.12.1-next.21

11 months ago

0.12.1-next.20

11 months ago

0.12.1-next.19

11 months ago

0.12.1-unstable.16

11 months ago

0.12.1-unstable.15

11 months ago

0.12.1-unstable.14

11 months ago

0.12.0

11 months ago

0.11.1-next.154

11 months ago

0.11.1-next.153

11 months ago

0.11.1-unstable.163

11 months ago

0.11.1-next.152

11 months ago

0.11.1-next.162

11 months ago

0.11.1-unstable.161

11 months ago

0.11.1-unstable.160

11 months ago

0.11.1-next.151

11 months ago

0.11.1-unstable.153

11 months ago

0.11.1-unstable.152

11 months ago

0.11.1-unstable.151

11 months ago

0.11.1-unstable.150

11 months ago

0.11.1-next.150

11 months ago

0.11.1-next.149

11 months ago

0.11.1-next.148

11 months ago

0.11.1-next.147

11 months ago

0.11.1-next.146

11 months ago

0.11.1-unstable.149

11 months ago

0.11.1-next.145

11 months ago

0.11.1-next.144

11 months ago

0.11.1-next.142

11 months ago

0.11.1-next.141

11 months ago

0.11.1-next.140

11 months ago

0.11.1-next.131

11 months ago

0.11.1-unstable.130

11 months ago

0.11.1-unstable.121

11 months ago

0.11.1-unstable.117

11 months ago

0.11.1-next.112

11 months ago

0.11.1-unstable.111

11 months ago

0.11.1-unstable.110

11 months ago

0.11.1-unstable.109

11 months ago

0.11.1-unstable.73

11 months ago

0.11.1-next.106

11 months ago

0.11.1-unstable.105

11 months ago

0.11.1-unstable.104

11 months ago

0.11.1-unstable.103

11 months ago

0.11.1-unstable.102

11 months ago

0.11.1-unstable.101

11 months ago

0.11.1-next.72

12 months ago

0.11.1-next.70

12 months ago

0.11.1-next.65

1 year ago