SeedCompany / cord-api-v3

Bible translation project management API
MIT License
18 stars 4 forks source link

Drop preset inventory #3158

Closed CarsonF closed 5 months ago

github-actions[bot] commented 5 months ago

🗞 GraphQL Summary

View schema changes ```diff @@ -861,9 +861,8 @@ name: String! """Other location IDs""" otherLocationIds: [ID!] - presetInventory: Boolean """A primary location ID""" primaryLocationId: ID @@ -2213,17 +2212,8 @@ pinned: Boolean! """List of posts belonging to the parent node.""" posts(input: PostListInput = {count: 25, order: DESC, page: 1, sort: "createdAt"}): SecuredPostList! - - """ - Whether or not this project and its associated languages (via engagements) - are a part of our "Preset Inventory". - - This indicates the project/language(s) will be exposed to major investors to directly fund. - It also means the project is committed to having quality, consistent reporting. - """ - presetInventory: SecuredBoolean! primaryLocation: SecuredLocation! """The root filesystem directory of this project""" rootDirectory: SecuredDirectory! @@ -2325,17 +2315,8 @@ """List of posts belonging to the parent node.""" posts(input: PostListInput = {count: 25, order: DESC, page: 1, sort: "createdAt"}): SecuredPostList! - """ - Whether or not this language is a part of our "Preset Inventory". - - This is true if any engaged, non-closed, projects opt-in to this "Preset Inventory". - - This indicates the language & mention projects will be exposed to major investors. - """ - presetInventory: SecuredBoolean! - """The list of projects the language is engagement in.""" projects(input: ProjectListInput = {count: 25, filter: {}, order: ASC, page: 1, sort: "name"}): SecuredTranslationProjectList! """ @@ -2451,13 +2432,8 @@ """Only languages that are pinned/unpinned by the requesting user""" pinned: Boolean - """ - Only languages that are (not) in the "Preset Inventory" - """ - presetInventory: Boolean - """Only languages with these sensitivities""" sensitivity: [Sensitivity!] } @@ -4189,17 +4165,8 @@ pinned: Boolean! """List of posts belonging to the parent node.""" posts(input: PostListInput = {count: 25, order: DESC, page: 1, sort: "createdAt"}): SecuredPostList! - - """ - Whether or not this project and its associated languages (via engagements) - are a part of our "Preset Inventory". - - This indicates the project/language(s) will be exposed to major investors to directly fund. - It also means the project is committed to having quality, consistent reporting. - """ - presetInventory: SecuredBoolean! primaryLocation: SecuredLocation! """The root filesystem directory of this project""" rootDirectory: SecuredDirectory! @@ -4287,13 +4254,8 @@ """Only projects that are pinned/unpinned by the requesting user""" pinned: Boolean - """ - Only projects that are (not) in the "Preset Inventory" - """ - presetInventory: Boolean - """Only projects with these sensitivities""" sensitivity: [Sensitivity!] """Only projects matching these statuses""" @@ -6374,17 +6336,8 @@ pinned: Boolean! """List of posts belonging to the parent node.""" posts(input: PostListInput = {count: 25, order: DESC, page: 1, sort: "createdAt"}): SecuredPostList! - - """ - Whether or not this project and its associated languages (via engagements) - are a part of our "Preset Inventory". - - This indicates the project/language(s) will be exposed to major investors to directly fund. - It also means the project is committed to having quality, consistent reporting. - """ - presetInventory: SecuredBoolean! primaryLocation: SecuredLocation! """The root filesystem directory of this project""" rootDirectory: SecuredDirectory! @@ -6984,9 +6937,8 @@ marketingRegionOverrideId: ID mouEnd: Date mouStart: Date name: String - presetInventory: Boolean """A primary location ID""" primaryLocationId: ID ```

🚨 Breaking Changes