Skip to content

Releases: boxwise/boxtribute

v2.4.3

11 Apr 06:06
v2.4.3
fccc586
Compare
Choose a tag to compare

Changelog of GraphQL API

Removed

  • remove redundant Metrics.movedStockOverview field (superseded by movedBoxes query)

v2.4.0

06 Feb 15:55
v2.4.0
Compare
Choose a tag to compare

Changelog of GraphQL API

Added

  • new comment field for Product type

v2.3.0

18 Jan 10:22
v2.3.0
826621e
Compare
Choose a tag to compare

Changelog of GraphQL API

Added

  • new NotDelivered value in BoxState enum
  • new TargetType enum
  • new boxes(baseId: ID!, ...) query to fetch all undeleted boxes of a base
  • new Product.deletedOn field
  • more filter fields for FilterBoxInput
  • new Shipment.labelIdentifier field
  • six queries to fetch statistics about stock and beneficiaries

v2.2.0

04 Sep 20:41
v2.2.0
9239a0d
Compare
Choose a tag to compare

Changelog of GraphQL API

Added

  • new InTransit value in BoxState enum
  • new fields sourceQuantity, targetQuantity in ShipmentDetail type

Changed

  • Box.product and Box.location return null instead of raising an authorization error if the user is not authorized for the base that the product/location belongs to

v2.1.4

18 May 21:07
v2.1.4
87a03ae
Compare
Choose a tag to compare

Changelog of GraphQL API

Added

  • new shipmentDetail field in Box type
  • new fields sourceSize, targetSize, removedBy, removedOn, lostBy, lostOn, receivedBy, receivedOn in ShipmentDetail type

Changed

  • in the BoxState enum, the value Received is renamed to Receiving

Removed

  • the fields deletedBy, deletedOn in ShipmentDetail type

v2.1.3

28 Mar 16:20
v2.1.3
2295e5c
Compare
Choose a tag to compare

Changelog of GraphQL API

Added

  • new receivingStartedBy and receivingStartedOn fields in Shipment type
  • new Receiving value in ShipmentState enum

Changed

  • QrCode.box returns null if no box associated with the QR code
  • SendingTo and ReceivingFrom values in TransferAgreementType enum instead of Unidirectional value

v2.1.0

23 Dec 09:54
v2.1.0
7e26160
Compare
Choose a tag to compare

Changelog of GraphQL API

Added

  • Box.history returns list of formatted box history entries (type HistoryEntry)

v2.0.7

26 Nov 18:49
v2.0.7
e320c52
Compare
Choose a tag to compare

Changelog of GraphQL API

Added

  • Base.tags(resourceType: TaggableResourceType) returns non-deleted tags of the parent base

Changed

  • Base.products returns only non-deleted products
  • Base.locations returns only non-deleted locations
  • User.email is only available to the user themselves

Fixed

  • Auto-completion when typing queries in GraphQL playground now works. Docs can be inspected from the tabs on the right
  • The Server cannot be reached message has been removed

v2.0.6

12 Oct 09:12
v2.0.6
f18d6e7
Compare
Choose a tag to compare

Changelog of GraphQL API

Fixed

  • the locations query only returns ClassicLocations (fixed in 5306a71)

v2.0.4

13 Sep 10:34
v2.0.4
1cc212f
Compare
Choose a tag to compare

Changelog of GraphQL API

Added

  • a new data type for Tag
  • new queries for fetching information about tags (single tag by ID, multiple tags), also the Box.tags and Beneficiary.tags fields
  • a new data type for product Size holding two fields: ID and label
  • data types and queries for mobile distributions

Updated

Location type

  • now is an interface, implemented by ClassicLocation and DistributionSpot types

Box type

  • now derives from the ItemsCollection interface
  • the location field refers to the Location interface
  • the items field is renamed to numberOfItems
  • the size field refers to the Size type

SizeRange type

  • the sizes field returns a list of Sizes instead of strings

Removed

Product type

  • the sizes field has been removed. Use Product.sizeRange.sizes instead