From 79c481f4aa75b36436c9e7f275f3618533a42928 Mon Sep 17 00:00:00 2001 From: Cameron Gilbert Date: Tue, 6 Feb 2024 08:59:19 -0500 Subject: [PATCH 1/2] fix: pull latest schema --- src/gql/utils/defaultObjects.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gql/utils/defaultObjects.ts b/src/gql/utils/defaultObjects.ts index ea27c3ff..af78f9f1 100644 --- a/src/gql/utils/defaultObjects.ts +++ b/src/gql/utils/defaultObjects.ts @@ -469,6 +469,7 @@ export const defaultNibiruTweet: GQLNibiruTweet = { export const defaultLike: GQLLike = { nibiruTweet: defaultNibiruTweet, user: defaultTwitterUser, + creationTimestamp: "", } export const defaultTweet: GQLTweet = { From c53ccb9e341a2a3e34b9910057e766b1c9acd36c Mon Sep 17 00:00:00 2001 From: Cameron Gilbert Date: Tue, 6 Feb 2024 09:06:41 -0500 Subject: [PATCH 2/2] fix: fix test failure --- src/gql/heart-monitor/heart-monitor.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gql/heart-monitor/heart-monitor.test.ts b/src/gql/heart-monitor/heart-monitor.test.ts index 5663db6d..7cc55f90 100644 --- a/src/gql/heart-monitor/heart-monitor.test.ts +++ b/src/gql/heart-monitor/heart-monitor.test.ts @@ -469,8 +469,11 @@ const testMarketingMutation = async ( test.skip("marketingMutation", async () => { await testMarketingMutation({ input: { - id: "800528778854182912", + creationTimestamp: new Date().toString(), + userId: "800528778854182912", nibiAddress: "nibi1p6luzkxeufy29reymgjqnl5mv6a6gae07cphed", + displayName: "WildFyre", + username: "wildfyreapp", }, }) })