Skip to content

Commit

Permalink
fix: BadgeGrantedEvent export (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega authored Aug 27, 2024
1 parent 7dfeaeb commit 35b14ee
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
25 changes: 24 additions & 1 deletion report/schemas.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,30 @@ export namespace AvatarInfo {
validate: ValidateFunction<AvatarInfo>;
}

// Warning: (ae-missing-release-tag) "BadgeGrantedEvent" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
// Warning: (ae-missing-release-tag) "BadgeGrantedEvent" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type BadgeGrantedEvent = BaseEvent & {
type: Events.Type.BADGE;
subType: Events.SubType.Badge.GRANTED;
metadata: {
badgeId: string;
badgeTierId?: string;
badgeName: string;
badgeImageUrl: string;
address: string;
};
};

// @public (undocumented)
export namespace BadgeGrantedEvent {
const // (undocumented)
schema: JSONSchema<BadgeGrantedEvent>;
const // (undocumented)
validate: ValidateFunction<BadgeGrantedEvent>;
}

// Warning: (ae-missing-release-tag) "BaseBid" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
Expand Down Expand Up @@ -1018,7 +1042,6 @@ export namespace EthAddress {
validate: ValidateFunction<EthAddress>;
}

// Warning: (ae-forgotten-export) The symbol "BadgeGrantedEvent" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "Event" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
Expand Down
1 change: 1 addition & 0 deletions src/platform/events/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ export * from './catalyst'
export * from './client'
export * from './marketplace'
export * from './rewards'
export * from './services'

0 comments on commit 35b14ee

Please sign in to comment.