Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed May 3, 2023
1 parent 039af5d commit 7c370ff
Show file tree
Hide file tree
Showing 59 changed files with 149 additions and 59 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v1.15.2](https://github.com/masa-finance/masa-sdk/compare/v1.15.1...v1.15.2)

> 3 May 2023
- Bump typedoc-plugin-markdown from 3.15.2 to 3.15.3 [`#67`](https://github.com/masa-finance/masa-sdk/pull/67)
- Bump @types/chai from 4.3.4 to 4.3.5 [`#66`](https://github.com/masa-finance/masa-sdk/pull/66)
- Bump axios from 1.3.6 to 1.4.0 [`#68`](https://github.com/masa-finance/masa-sdk/pull/68)
- added generic access methods to masa-client [`8e6b3ad`](https://github.com/masa-finance/masa-sdk/commit/8e6b3ad3ea3df30970b0392f562c775b6c333c11)
- update docs [`2e365ab`](https://github.com/masa-finance/masa-sdk/commit/2e365ab43c784722dbfad84fdd4e8dfaa14fca2b)
- update readme [`71a3833`](https://github.com/masa-finance/masa-sdk/commit/71a3833fd50a3e720788339e19d0dfcdb3cbd0ef)

#### [v1.15.1](https://github.com/masa-finance/masa-sdk/compare/v1.15.0...v1.15.1)

> 28 April 2023
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/ContractFactory.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ContractFactory
- v1.15.2](../README.md) / [Exports](../modules.md) / ContractFactory

# Class: ContractFactory

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/CreditScore.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / CreditScore
- v1.15.2](../README.md) / [Exports](../modules.md) / CreditScore

# Class: CreditScore

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/ERC20__factory.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ERC20\_\_factory
- v1.15.2](../README.md) / [Exports](../modules.md) / ERC20\_\_factory

# Class: ERC20\_\_factory

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/Green.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / Green
- v1.15.2](../README.md) / [Exports](../modules.md) / Green

# Class: Green

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/Identity.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / Identity
- v1.15.2](../README.md) / [Exports](../modules.md) / Identity

# Class: Identity

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/Masa.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / Masa
- v1.15.2](../README.md) / [Exports](../modules.md) / Masa

# Class: Masa

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaAccount.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaAccount
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaAccount

# Class: MasaAccount

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaArweave.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaArweave
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaArweave

# Class: MasaArweave

Expand Down
81 changes: 80 additions & 1 deletion docs/classes/MasaClient.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaClient
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaClient

# Class: MasaClient

Expand Down Expand Up @@ -30,6 +30,12 @@

- [cookie](MasaClient.md#cookie)

### Methods

- [get](MasaClient.md#get)
- [patch](MasaClient.md#patch)
- [post](MasaClient.md#post)

## Constructors

### constructor
Expand Down Expand Up @@ -145,3 +151,76 @@ ___
#### Returns

`undefined` \| `string`

## Methods

### get

**get**<`Result`\>(`endpoint`, `silent?`): `Promise`<`undefined` \| `Result`\>

#### Type parameters

| Name |
| :------ |
| `Result` |

#### Parameters

| Name | Type | Default value |
| :------ | :------ | :------ |
| `endpoint` | `string` | `undefined` |
| `silent` | `boolean` | `false` |

#### Returns

`Promise`<`undefined` \| `Result`\>

___

### patch

**patch**<`Payload`, `Result`\>(`endpoint`, `data`, `silent?`): `Promise`<`undefined` \| `Result`\>

#### Type parameters

| Name |
| :------ |
| `Payload` |
| `Result` |

#### Parameters

| Name | Type | Default value |
| :------ | :------ | :------ |
| `endpoint` | `string` | `undefined` |
| `data` | `Payload` | `undefined` |
| `silent` | `boolean` | `false` |

#### Returns

`Promise`<`undefined` \| `Result`\>

___

### post

**post**<`Payload`, `Result`\>(`endpoint`, `data`, `silent?`): `Promise`<`undefined` \| `Result`\>

#### Type parameters

| Name |
| :------ |
| `Payload` |
| `Result` |

#### Parameters

| Name | Type | Default value |
| :------ | :------ | :------ |
| `endpoint` | `string` | `undefined` |
| `data` | `Payload` | `undefined` |
| `silent` | `boolean` | `false` |

#### Returns

`Promise`<`undefined` \| `Result`\>
2 changes: 1 addition & 1 deletion docs/classes/MasaContracts.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaContracts
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaContracts

# Class: MasaContracts

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaCreditScore.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaCreditScore
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaCreditScore

# Class: MasaCreditScore

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaGreen.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaGreen
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaGreen

# Class: MasaGreen

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaIdentity.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaIdentity
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaIdentity

# Class: MasaIdentity

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaModuleBase.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaModuleBase
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaModuleBase

# Class: MasaModuleBase

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaSBT.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaSBT
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaSBT

# Class: MasaSBT

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaSession.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaSession
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaSession

# Class: MasaSession

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaSoulLinker.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaSoulLinker
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaSoulLinker

# Class: MasaSoulLinker

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MasaSoulName.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / MasaSoulName
- v1.15.2](../README.md) / [Exports](../modules.md) / MasaSoulName

# Class: MasaSoulName

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/SBT.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / SBT
- v1.15.2](../README.md) / [Exports](../modules.md) / SBT

# Class: SBT

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/SoulLinker.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / SoulLinker
- v1.15.2](../README.md) / [Exports](../modules.md) / SoulLinker

# Class: SoulLinker

Expand Down
2 changes: 1 addition & 1 deletion docs/classes/SoulName.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / SoulName
- v1.15.2](../README.md) / [Exports](../modules.md) / SoulName

# Class: SoulName

Expand Down
2 changes: 1 addition & 1 deletion docs/enums/SoulNameErrorCodes.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / SoulNameErrorCodes
- v1.15.2](../README.md) / [Exports](../modules.md) / SoulNameErrorCodes

# Enumeration: SoulNameErrorCodes

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/Addresses.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / Addresses
- v1.15.2](../README.md) / [Exports](../modules.md) / Addresses

# Interface: Addresses

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/ApprovalEventObject.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ApprovalEventObject
- v1.15.2](../README.md) / [Exports](../modules.md) / ApprovalEventObject

# Interface: ApprovalEventObject

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/Attribute.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / Attribute
- v1.15.2](../README.md) / [Exports](../modules.md) / Attribute

# Interface: Attribute

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/BaseResult.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / BaseResult
- v1.15.2](../README.md) / [Exports](../modules.md) / BaseResult

# Interface: BaseResult

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/ChallengeResult.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ChallengeResult
- v1.15.2](../README.md) / [Exports](../modules.md) / ChallengeResult

# Interface: ChallengeResult

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/ChallengeResultWithCookie.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ChallengeResultWithCookie
- v1.15.2](../README.md) / [Exports](../modules.md) / ChallengeResultWithCookie

# Interface: ChallengeResultWithCookie

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/ContractInfo.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ContractInfo
- v1.15.2](../README.md) / [Exports](../modules.md) / ContractInfo

# Interface: ContractInfo

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/CreateSoulNameResult.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / CreateSoulNameResult
- v1.15.2](../README.md) / [Exports](../modules.md) / CreateSoulNameResult

# Interface: CreateSoulNameResult

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/CreditScoreDetails.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / CreditScoreDetails
- v1.15.2](../README.md) / [Exports](../modules.md) / CreditScoreDetails

# Interface: CreditScoreDetails

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/ERC20.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ERC20
- v1.15.2](../README.md) / [Exports](../modules.md) / ERC20

# Interface: ERC20

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/ERC20Interface.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ERC20Interface
- v1.15.2](../README.md) / [Exports](../modules.md) / ERC20Interface

# Interface: ERC20Interface

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/GenerateCreditScoreResult.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / GenerateCreditScoreResult
- v1.15.2](../README.md) / [Exports](../modules.md) / GenerateCreditScoreResult

# Interface: GenerateCreditScoreResult

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/GenerateGreenResult.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / GenerateGreenResult
- v1.15.2](../README.md) / [Exports](../modules.md) / GenerateGreenResult

# Interface: GenerateGreenResult

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/GreenDetails.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / GreenDetails
- v1.15.2](../README.md) / [Exports](../modules.md) / GreenDetails

# Interface: GreenDetails

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/ICreditScore.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / ICreditScore
- v1.15.2](../README.md) / [Exports](../modules.md) / ICreditScore

# Interface: ICreditScore

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/IGreen.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / IGreen
- v1.15.2](../README.md) / [Exports](../modules.md) / IGreen

# Interface: IGreen

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/IIdentity.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / IIdentity
- v1.15.2](../README.md) / [Exports](../modules.md) / IIdentity

# Interface: IIdentity

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/IIdentityContracts.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / IIdentityContracts
- v1.15.2](../README.md) / [Exports](../modules.md) / IIdentityContracts

# Interface: IIdentityContracts

Expand Down
2 changes: 1 addition & 1 deletion docs/interfaces/IPassport.md
@@ -1,5 +1,5 @@
[# Masa SDK
- v1.15.1](../README.md) / [Exports](../modules.md) / IPassport
- v1.15.2](../README.md) / [Exports](../modules.md) / IPassport

# Interface: IPassport

Expand Down

0 comments on commit 7c370ff

Please sign in to comment.