Skip to content

Commit

Permalink
test pr
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsayo committed Jan 6, 2025
1 parent 76d9e61 commit f68c66f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@elizaos/plugin-aptos": "workspace:*",
"@elizaos/plugin-avail": "workspace:*",
"@elizaos/plugin-bootstrap": "workspace:*",
"@elizaos/plugin-cosmos": "workspace:*",
"@ai16z/plugin-cosmos": "workspace:*",
"@elizaos/plugin-intiface": "workspace:*",
"@elizaos/plugin-coinbase": "workspace:*",
"@elizaos/plugin-conflux": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dominos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@ai16z/eliza": "workspace:*",
"@elizaos/core": "workspace:*",
"dominos": "^3.3.1",
"tsup": "8.3.5"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dominos/src/actions/confirmOrder.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Action, IAgentRuntime, Memory } from "@ai16z/eliza";
import { Action, IAgentRuntime, Memory } from "@elizaos/core";
import { PizzaOrderManager } from "../PizzaOrderManager";
import { OrderStatus } from "../types";

Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dominos/src/actions/endOrder.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Action, ActionExample, IAgentRuntime, Memory } from "@ai16z/eliza";
import { Action, ActionExample, IAgentRuntime, Memory } from "@elizaos/core";
import { PizzaOrderManager } from "../PizzaOrderManager";

export const endOrder: Action = {
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dominos/src/actions/startOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Memory,
ModelClass,
State,
} from "@ai16z/eliza";
} from "@elizaos/core";
import { Customer, Item, Order } from "dominos";
import { PizzaCrust, PizzaSize } from "../types";

Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dominos/src/actions/updateCustomer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Memory,
ModelClass,
State,
} from "@ai16z/eliza";
} from "@elizaos/core";
import { Customer, Payment } from "dominos";
import { z } from "zod";
import { PizzaOrderManager } from "../PizzaOrderManager";
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dominos/src/actions/updateOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Memory,
ModelClass,
State,
} from "@ai16z/eliza";
} from "@elizaos/core";
import { Item } from "dominos";
import { PizzaCrust, PizzaSize, ToppingPortion } from "../types";

Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dominos/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Plugin } from "@ai16z/eliza";
import { Plugin } from "@elizaos/core";
import { startOrder } from "./actions/startOrder.ts";
import { pizzaOrderProvider } from "./providers/pizzaOrder.ts";
import { endOrder } from "./actions/endOrder.ts";
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dominos/src/providers/pizzaOrder.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IAgentRuntime, Memory, Provider } from "@ai16z/eliza";
import { IAgentRuntime, Memory, Provider } from "@elizaos/core";
import { PizzaOrderManager } from "../PizzaOrderManager";
import { OrderStatus, PaymentStatus } from "../types";

Expand Down

0 comments on commit f68c66f

Please sign in to comment.