Skip to content

Commit

Permalink
fix(exp): document expirationTimestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
whitneypurdum committed Aug 10, 2022
1 parent ff6886c commit c7c5b17
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/api/interfaces/modules_claims.IssueClaimOptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ___

`Optional` **expirationTimestamp**: `number`

Defines how long the claim is valid.
A Unix timestamp expressed in milliseconds of when the claim expires.

___

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ___

`Optional` **expirationTimestamp**: `number`

Defines how long the claim is valid.
A Unix timestamp expressed in milliseconds of when the claim expires.

___

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ___

`Optional` **expirationTimestamp**: `number`

Defines how long the claim is valid.
A Unix timestamp expressed in milliseconds of when the claim expires.

___

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ___

`Optional` **expirationTimestamp**: `number`

Defines how long the claim is valid.
A Unix timestamp expressed in milliseconds of when the claim expires.

___

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

`Optional` **expirationTimestamp**: `number`

Defines how long the claim is valid.
A Unix timestamp expressed in milliseconds of when the claim expires.

___

Expand Down
8 changes: 4 additions & 4 deletions src/modules/claims/claims.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export interface IssueClaimRequestOptions {
*/
credentialStatusOverride?: StatusList2021Entry;

/** Defines how long the claim is valid. */
/** A Unix timestamp expressed in milliseconds of when the claim expires. */
expirationTimestamp?: number;
}

Expand All @@ -224,7 +224,7 @@ export interface RegisterOnchainOptions {
/** DID of the claim subject */
subject?: string;

/** Defines how long the claim is valid. */
/** A Unix timestamp expressed in milliseconds of when the claim expires. */
expirationTimestamp?: number;
}

Expand Down Expand Up @@ -269,7 +269,7 @@ export interface IssueClaimOptions {
*/
credentialStatusOverride?: StatusList2021Entry;

/** Defines how long the claim is valid. */
/** A Unix timestamp expressed in milliseconds of when the claim expires. */
expirationTimestamp?: number;
}

Expand Down Expand Up @@ -337,7 +337,7 @@ export interface IssueVerifiablePresentationOptions {
*/
credentialStatus?: StatusList2021Entry;

/** Defines how long the claim is valid. */
/** A Unix timestamp expressed in milliseconds of when the claim expires. */
expirationTimestamp?: number;
}

Expand Down
2 changes: 1 addition & 1 deletion src/modules/did-registry/did.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export interface IssuePublicClaimOptions {
/* Public claim data object */
publicClaim?: IPublicClaim;

/** Defines how long the claim is valid. */
/** A Unix timestamp expressed in milliseconds of when the claim expires. */
expirationTimestamp?: number;
}

Expand Down

0 comments on commit c7c5b17

Please sign in to comment.