Skip to content

Commit

Permalink
Update everything to new schema
Browse files Browse the repository at this point in the history
  • Loading branch information
tintinthong committed Jan 14, 2025
1 parent 651302e commit 63222a9
Show file tree
Hide file tree
Showing 52 changed files with 59 additions and 62 deletions.
2 changes: 1 addition & 1 deletion packages/base/fields/base64-image.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Base64 Image Field",
"description": "A field capable of representing an image via base64 encoding.",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/base64-image",
"name": "Base64ImageField"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/biginteger-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Bigint Field",
"description": "A field that captures big int values",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/big-integer",
"name": "default"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/boolean-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Boolean Field",
"description": "A field that captures boolean values (true/false)",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/boolean",
"name": "default"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/code-ref-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Code Reference Field",
"description": "A field that captures a reference to a card or field type",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/code-ref",
"name": "default"
Expand Down
4 changes: 2 additions & 2 deletions packages/base/fields/date-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"attributes": {
"title": "Date Field",
"description": "A field that captures date values",
"isField": true,
"ref": {
"module": "https://cardstack.com/base/date",
"name": "default"
}
},
"type": "field"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/datetime-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Date-time Field",
"description": "A field that captures date-time values",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/datetime",
"name": "default"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/ethereum-address-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Ethereum Address Field",
"description": "A field that captures checksum ethereum addresses",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/ethereum-address",
"name": "default"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "General Field",
"description": "A general field that can contain any field type.",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/card-api",
"name": "FieldDef"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/markdown-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Markdown Field",
"description": "A field that captures markdown values",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/markdown",
"name": "default"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/number-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Number Field",
"description": "A field that captures number values",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/number",
"name": "default"
Expand Down
1 change: 1 addition & 0 deletions packages/base/fields/skill-card.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"attributes": {
"title": "Skill Card",
"description": "A card with instructions to teach a skill to the AI bot",
"type": "card",
"ref": {
"module": "https://cardstack.com/base/skill-card",
"name": "SkillCard"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/string-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "String Field",
"description": "A field that captures string values",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/string",
"name": "default"
Expand Down
2 changes: 1 addition & 1 deletion packages/base/fields/text-area-field.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Text Area Field",
"description": "A field that can capture string values in a multi-line input format. Useful for capturing a large body of text.",
"isField": true,
"type": "field",
"ref": {
"module": "https://cardstack.com/base/text-area",
"name": "default"
Expand Down
9 changes: 1 addition & 8 deletions packages/experiments-realm/CatalogEntry/1.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,12 @@
"attributes": {
"title": "Person",
"description": "Catalog entry for Person card",
"isField": false,
"type": "card",
"ref": {
"module": "../person",
"name": "Person"
}
},
"relationships": {
"demo.pet": {
"links": {
"self": "../Pet/1"
}
}
},
"meta": {
"adoptsFrom": {
"module": "https://cardstack.com/base/catalog-entry",
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/10.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Friends from ../friends",
"description": "Catalog entry for Friends from ../friends",
"isField": false,
"type": "card",
"ref": {
"module": "../friends",
"name": "Friends"
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/11.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "ContactCard",
"description": "Catalog entry for ContactCard",
"isField": false,
"type": "card",
"ref": {
"module": "../contact-card",
"name": "ContactCard"
Expand Down
4 changes: 2 additions & 2 deletions packages/experiments-realm/CatalogEntry/2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"attributes": {
"title": "Pet",
"description": "Catalog entry for Pet card",
"isField": false,
"ref": {
"module": "../pet",
"name": "Pet"
}
},
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/6.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Friend from /friend",
"description": "Catalog entry for Friend from /friend",
"isField": false,
"type": "card",
"ref": {
"module": "../friend",
"name": "Friend"
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/7.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Booking Card",
"description": "Catalog entry for Booking Card",
"isField": false,
"type": "card",
"ref": {
"module": "../booking",
"name": "Booking"
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "AppCard",
"description": "Catalog entry for AppCard",
"isField": false,
"type": "app",
"ref": {
"module": "../app-card",
"name": "AppCard"
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/author.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Author",
"module": "../author"
},
"isField": false
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/blog-post.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "BlogPost",
"description": "Catalog entry for BlogPost",
"isField": false,
"type": "card",
"ref": {
"module": "../blog-post",
"name": "BlogPost"
Expand Down
4 changes: 2 additions & 2 deletions packages/experiments-realm/CatalogEntry/blog.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"attributes": {
"title": "Blog",
"description": "Catalog entry for Blog App card",
"isField": false,
"ref": {
"module": "../blog-app",
"name": "BlogApp"
}
},
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/crm-app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "CrmApp",
"description": "Catalog entry for CRM App",
"isField": false,
"type": "app",
"ref": {
"module": "../crm-app",
"name": "CrmApp"
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/plant-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Plant Info",
"description": "Catalog entry for Plant Info card",
"isField": false,
"type": "card",
"ref": {
"module": "../plant-info",
"name": "PlantInfo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Product Requirement Document",
"description": "Catalog entry for product requirement documents",
"isField": false,
"type": "card",
"ref": {
"module": "../product-requirement-document",
"name": "ProductRequirementDocument"
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/puppy.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Puppy",
"description": "Catalog entry for Puppy card",
"isField": false,
"type": "card",
"ref": {
"module": "../puppy-card",
"name": "PuppyCard"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Sprint Planner",
"description": "Catalog entry for Sprint Planner App card",
"isField": false,
"type": "app",
"ref": {
"module": "../sprint-planner",
"name": "SprintPlanner"
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/sprint-task.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "SprintTask",
"module": "../sprint-task"
},
"isField": false
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Tag",
"module": "../tag"
},
"isField": false
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Task",
"module": "../task"
},
"isField": false
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/team-member.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "TeamMember",
"module": "../sprint-task"
},
"isField": false
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/team.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Team",
"module": "../sprint-task"
},
"isField": false
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experiments-realm/CatalogEntry/todo.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Todo",
"module": "../todo"
},
"isField": false
"type": "card"
},
"meta": {
"adoptsFrom": {
Expand Down
2 changes: 1 addition & 1 deletion packages/seed-realm/CatalogEntry/blog.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Blog App",
"description": "Catalog entry for Blog App card",
"isField": false,
"type": "card",
"ref": {
"module": "../blog-app",
"name": "BlogApp"
Expand Down
2 changes: 1 addition & 1 deletion packages/seed-realm/CatalogEntry/hello-world.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Hello World",
"description": "Catalog entry for Hello World card",
"isField": false,
"type": "card",
"ref": {
"module": "../hello-world",
"name": "HelloWorld"
Expand Down
2 changes: 1 addition & 1 deletion packages/seed-realm/CatalogEntry/mortgage-calculator.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Mortgage Calculator",
"description": "Catalog entry for Mortgage Calculator card",
"isField": false,
"type": "card",
"ref": {
"module": "../mortgage-calculator",
"name": "MortgageCalculator"
Expand Down
2 changes: 1 addition & 1 deletion packages/seed-realm/CatalogEntry/product-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Product List",
"description": "Catalog entry for Product List card",
"isField": false,
"type": "card",
"ref": {
"module": "../product-list",
"name": "ProductList"
Expand Down
2 changes: 1 addition & 1 deletion packages/seed-realm/CatalogEntry/product-with-video.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Product with Video",
"description": "Catalog entry for Product with Video card",
"isField": false,
"type": "card",
"ref": {
"module": "../product-with-video",
"name": "ProductWithVideo"
Expand Down
2 changes: 1 addition & 1 deletion packages/seed-realm/CatalogEntry/product.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Product",
"description": "Catalog entry for Product card",
"isField": false,
"type": "card",
"ref": {
"module": "../product",
"name": "Product"
Expand Down
2 changes: 1 addition & 1 deletion packages/seed-realm/CatalogEntry/review-blog.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attributes": {
"title": "Review Blog",
"description": "Catalog entry for Review Blog card",
"isField": false,
"type": "card",
"ref": {
"module": "../review-blog",
"name": "ReviewBlog"
Expand Down
Loading

0 comments on commit 63222a9

Please sign in to comment.