Skip to content

Commit

Permalink
Merge branch 'develop' into silasneo-additions
Browse files Browse the repository at this point in the history
  • Loading branch information
silasneo authored Feb 1, 2025
2 parents 3d926ab + 9a203d7 commit c08114e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions packages/client-twitter/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export async function buildConversationThread(
text: currentTweet.text,
source: "twitter",
url: currentTweet.permanentUrl,
imageUrls: currentTweet.photos.map((p) => p.url) || [],
inReplyTo: currentTweet.inReplyToStatusId
? stringToUuid(
currentTweet.inReplyToStatusId +
Expand Down Expand Up @@ -278,6 +279,7 @@ export async function sendTweet(
text: tweet.text,
source: "twitter",
url: tweet.permanentUrl,
imageUrls: tweet.photos.map((p) => p.url) || [],
inReplyTo: tweet.inReplyToStatusId
? stringToUuid(
tweet.inReplyToStatusId + "-" + client.runtime.agentId
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-cosmos/src/templates/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Respond with a JSON markdown block containing only the extracted values. All fie
"chainName": string // The chain name.
\`\`\`
Example reponse for the input: "Make transfer 0.0001 OM to mantra1pcnw46km8m5amvf7jlk2ks5std75k73aralhcf on mantrachaintestnet2", the response should be:
Example response for the input: "Make transfer 0.0001 OM to mantra1pcnw46km8m5amvf7jlk2ks5std75k73aralhcf on mantrachaintestnet2", the response should be:
\`\`\`json
{
"symbol": "OM",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-email/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The following settings will be declared on your environment variable or inside y
## IMAP Section

- `EMAIL_INCOMING_SERVICE`: "imap"
- `EMAIL_INCOMING_HOST`: IMAP Hostname or IP to conenct to
- `EMAIL_INCOMING_HOST`: IMAP Hostname or IP to connect to
- `EMAIL_INCOMING_PORT`: the port to connect to (defaults to 993)
- `EMAIL_INCOMING_USER`: Username
- `EMAIL_INCOMING_PASS`: Password
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class GoplusSecurityService extends Service implements IGoplusSecuritySer
checkResult = await goPlusManage.dappSecurityAndPhishingSite(obj.url);
break;
default:
throw new Error("type is invaild")
throw new Error("type is invalid")
}

elizaLogger.log("checkResult text", checkResult);
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-story/src/types/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export enum RESOURCE_TYPE {
LATEST_TRANSACTIONS = "transactions/latest",
}

export enum RESPOURCE_REPONSE_TYPE {
export enum RESOURCE_RESPONSE_TYPE {
LICENSE_TOKEN = "LICENSETOKEN", // new version
LICENSE_TEMPLATES = "LICENSETEMPLATE", // new version
LICENSE_TERMS = "LICENSETERM", // new version
Expand Down Expand Up @@ -556,4 +556,4 @@ export type LicenseTerms = {
licenseTemplate: Address;
blockNumber: string;
blockTime: string;
};
};

0 comments on commit c08114e

Please sign in to comment.