-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: single-step IPNS setup #285
Changes from all commits
3687901
ab903bd
f27fdc3
2244af8
cc7889e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"presets": ["next/babel"], | ||
"plugins": [["styled-components", { "ssr": true }]] | ||
"plugins": [["styled-components", { "ssr": true, "displayName": true }]] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,15 +104,6 @@ export type AccessConditionOutput = { | |
token?: Maybe<Erc20OwnershipOutput>; | ||
}; | ||
|
||
export type AchRequest = { | ||
ethereumAddress: Scalars['EthereumAddress']; | ||
freeTextHandle?: InputMaybe<Scalars['Boolean']>; | ||
handle?: InputMaybe<Scalars['CreateHandle']>; | ||
overrideAlreadyClaimed: Scalars['Boolean']; | ||
overrideTradeMark: Scalars['Boolean']; | ||
secret: Scalars['String']; | ||
}; | ||
Comment on lines
-107
to
-114
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does it make sense to change generated files? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These were changed after doing |
||
|
||
/** The request object to add interests to a profile */ | ||
export type AddProfileInterestsRequest = { | ||
/** The profile interest to add */ | ||
|
@@ -934,10 +925,6 @@ export type CreateUnfollowBroadcastItemResult = { | |
typedData: CreateBurnEip712TypedData; | ||
}; | ||
|
||
export type CurRequest = { | ||
secret: Scalars['String']; | ||
}; | ||
|
||
/** The custom filters types */ | ||
export enum CustomFiltersTypes { | ||
Gardeners = 'GARDENERS' | ||
|
@@ -1541,12 +1528,6 @@ export type HasTxHashBeenIndexedRequest = { | |
txId?: InputMaybe<Scalars['TxId']>; | ||
}; | ||
|
||
export type HelRequest = { | ||
handle: Scalars['Handle']; | ||
remove: Scalars['Boolean']; | ||
secret: Scalars['String']; | ||
}; | ||
|
||
export type HidePublicationRequest = { | ||
/** Publication id */ | ||
publicationId: Scalars['InternalPublicationId']; | ||
|
@@ -1863,7 +1844,6 @@ export type ModuleInfo = { | |
|
||
export type Mutation = { | ||
__typename?: 'Mutation'; | ||
ach?: Maybe<Scalars['Void']>; | ||
/** Adds profile interests to the given profile */ | ||
addProfileInterests?: Maybe<Scalars['Void']>; | ||
addReaction?: Maybe<Scalars['Void']>; | ||
|
@@ -1890,7 +1870,6 @@ export type Mutation = { | |
createSetProfileMetadataViaDispatcher: RelayResult; | ||
createToggleFollowTypedData: CreateToggleFollowBroadcastItemResult; | ||
createUnfollowTypedData: CreateUnfollowBroadcastItemResult; | ||
hel?: Maybe<Scalars['Void']>; | ||
hidePublication?: Maybe<Scalars['Void']>; | ||
idKitPhoneVerifyWebhook: IdKitPhoneVerifyWebhookResultStatusType; | ||
proxyAction: Scalars['ProxyActionId']; | ||
|
@@ -1902,11 +1881,6 @@ export type Mutation = { | |
}; | ||
|
||
|
||
export type MutationAchArgs = { | ||
request: AchRequest; | ||
}; | ||
|
||
|
||
export type MutationAddProfileInterestsArgs = { | ||
request: AddProfileInterestsRequest; | ||
}; | ||
|
@@ -2046,11 +2020,6 @@ export type MutationCreateUnfollowTypedDataArgs = { | |
}; | ||
|
||
|
||
export type MutationHelArgs = { | ||
request: HelRequest; | ||
}; | ||
|
||
|
||
export type MutationHidePublicationArgs = { | ||
request: HidePublicationRequest; | ||
}; | ||
|
@@ -3089,7 +3058,6 @@ export type Query = { | |
challenge: AuthChallengeResult; | ||
claimableHandles: ClaimableHandles; | ||
claimableStatus: ClaimStatus; | ||
cur: Array<Scalars['String']>; | ||
defaultProfile?: Maybe<Profile>; | ||
doesFollow: Array<DoesFollowResponse>; | ||
enabledModuleCurrencies: Array<Erc20>; | ||
|
@@ -3127,7 +3095,6 @@ export type Query = { | |
publicationRevenue?: Maybe<PublicationRevenue>; | ||
publications: PaginatedPublicationResult; | ||
recommendedProfiles: Array<Profile>; | ||
rel?: Maybe<Scalars['Void']>; | ||
search: SearchResult; | ||
/** @deprecated You should be using feed, this will not be supported after 15th November 2021, please migrate. */ | ||
timeline: PaginatedTimelineResult; | ||
|
@@ -3156,11 +3123,6 @@ export type QueryChallengeArgs = { | |
}; | ||
|
||
|
||
export type QueryCurArgs = { | ||
request: CurRequest; | ||
}; | ||
|
||
|
||
export type QueryDefaultProfileArgs = { | ||
request: DefaultProfileRequest; | ||
}; | ||
|
@@ -3316,11 +3278,6 @@ export type QueryRecommendedProfilesArgs = { | |
}; | ||
|
||
|
||
export type QueryRelArgs = { | ||
request: RelRequest; | ||
}; | ||
|
||
|
||
export type QuerySearchArgs = { | ||
request: SearchQueryRequest; | ||
}; | ||
|
@@ -3413,11 +3370,6 @@ export type RefreshRequest = { | |
refreshToken: Scalars['Jwt']; | ||
}; | ||
|
||
export type RelRequest = { | ||
ethereumAddress: Scalars['EthereumAddress']; | ||
secret: Scalars['String']; | ||
}; | ||
|
||
export type RelayError = { | ||
__typename?: 'RelayError'; | ||
reason: RelayErrorReasons; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes ryanseddon/react-frame-component#236