feat!: rename BlueprintMembershipType to BlueprintEntityType + add storage to BlueprintDefinition#1037
Merged
pyramation merged 1 commit intomainfrom Apr 29, 2026
Merged
Conversation
…rage to BlueprintDefinition BREAKING: BlueprintMembershipType is now BlueprintEntityType, and the blueprint JSON key is 'entity_types' instead of 'membership_types'. Also adds 'storage?: BlueprintStorageConfig' to BlueprintDefinition for app-level bucket seeding and storage configuration from blueprints. Updates JSDoc reference from BlueprintMembershipType to BlueprintEntityType in BlueprintEntityTableProvision.
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
TypeScript type updates matching the SQL-level rename in constructive-db #956.
Changes
BlueprintMembershipType→BlueprintEntityType— interface renamed in codegen source and regenerated outputmembership_types→entity_types— the property onBlueprintDefinitionnow matches the SQL keystorage?: BlueprintStorageConfig— new optional property onBlueprintDefinitionfor app-level storage configuration (bucket seeds, policies, expiry overrides, CORS)BlueprintEntityTableProvisiondoc now referencesBlueprintEntityTypeinstead ofBlueprintMembershipTypeFiles changed
graphql/node-type-registry/src/codegen/generate-types.ts— codegen sourcegraphql/node-type-registry/src/blueprint-types.generated.ts— regenerated outputReview & Testing Checklist for Human
BlueprintEntityTypeinterface has all the same properties as the oldBlueprintMembershipTypeBlueprintDefinition.entity_typesautocomplete works in IDEBlueprintDefinition.storageshowsBlueprintStorageConfigshape in autocompleteNotes
fullTextSearchcomposite filter tounifiedSearch#956 (renames the SQL key and adds Phase 0.5 storage logic)Link to Devin session: https://app.devin.ai/sessions/58b40b3f63804c20b86643cc873ba844
Requested by: @pyramation