breaking: rename package names to be consistent and under @medusajs scope (#9580)

This commit is contained in:
Harminder Virk
2024-10-16 22:28:09 +05:30
committed by GitHub
parent cc1a25abb2
commit 68560787e5
289 changed files with 483 additions and 474 deletions
@@ -0,0 +1,29 @@
export default `
type StockLocationAddress {
id: ID
address_1: String!
address_2: String
company: String
country_code: String!
city: String
phone: String
postal_code: String
province: String
metadata: JSON
created_at: DateTime!
updated_at: DateTime!
deleted_at: DateTime
}
type StockLocation {
id: ID!
name: String!
metadata: JSON
address_id: ID!
address: StockLocationAddress
created_at: DateTime!
updated_at: DateTime!
deleted_at: DateTime
}
`