Skip to content

Commit

Permalink
Merge pull request #19 from holaplex/rename
Browse files Browse the repository at this point in the history
rebrand drips to subscription drops
  • Loading branch information
kespinola authored Aug 29, 2023
2 parents 8dd4ff7 + 3da9f10 commit b91fb06
Show file tree
Hide file tree
Showing 13 changed files with 844 additions and 249 deletions.
4 changes: 2 additions & 2 deletions @types/graphql.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ declare module '*/drop.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const MintNft: DocumentNode;
export const GetDrop: DocumentNode;
export const GetDrops: DocumentNode;

export default defaultDocument;
Expand Down Expand Up @@ -46,7 +45,8 @@ export const GetSubscription: DocumentNode;
declare module '*/airdrops.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const GetPastDrips: DocumentNode;
export const GetPastAirdrops: DocumentNode;
export const GetAirdrop: DocumentNode;

export default defaultDocument;
}
Expand Down
2 changes: 1 addition & 1 deletion codegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dotenv.config();

const config: CodegenConfig = {
overwrite: true,
documents: ["**/*.graphql"],
documents: ["./src/**/*.graphql"],
schema: [
{
[process.env.HOLAPLEX_API_ENDPOINT as string]: {
Expand Down
Loading

0 comments on commit b91fb06

Please sign in to comment.