@nautical-commerce/graphql-schema 4.5.1 → 4.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -175,6 +175,7 @@ enum AccountErrorCode {
175
175
  DELETE_STAFF_ACCOUNT
176
176
  DELETE_SUPERUSER_ACCOUNT
177
177
  GRAPHQL_ERROR
178
+ INTERNAL_ERROR
178
179
  INVALID
179
180
  INVALID_PHONE
180
181
  INVALID_PASSWORD
@@ -602,6 +603,7 @@ type AgreementError {
602
603
  """An enumeration of possible error codes for agreement operations."""
603
604
  enum AgreementErrorCode {
604
605
  GRAPHQL_ERROR
606
+ INTERNAL_ERROR
605
607
  INVALID
606
608
  NOT_FOUND
607
609
  PERMISSION_DENIED
@@ -1103,6 +1105,7 @@ enum AnalyticsExportErrorCode {
1103
1105
  INVALID_DATE_RANGE
1104
1106
  PERMISSION_DENIED
1105
1107
  EXPORT_TYPE_NOT_AVAILABLE
1108
+ INTERNAL_ERROR
1106
1109
  INVALID
1107
1110
  }
1108
1111
 
@@ -1302,6 +1305,7 @@ type AppError {
1302
1305
  enum AppErrorCode {
1303
1306
  FORBIDDEN
1304
1307
  GRAPHQL_ERROR
1308
+ INTERNAL_ERROR
1305
1309
  INVALID
1306
1310
  INVALID_STATUS
1307
1311
  INVALID_PERMISSION
@@ -5458,6 +5462,7 @@ type DesignerError {
5458
5462
  enum DesignerErrorCode {
5459
5463
  CANNOT_ASSIGN_NODE
5460
5464
  GRAPHQL_ERROR
5465
+ INTERNAL_ERROR
5461
5466
  INVALID
5462
5467
  NOT_FOUND
5463
5468
  REQUIRED
@@ -5964,6 +5969,7 @@ enum DocumentErrorCode {
5964
5969
  NUMBER_NOT_SET
5965
5970
  INVALID_STATUS
5966
5971
  NOT_FOUND
5972
+ INTERNAL_ERROR
5967
5973
  INVALID
5968
5974
  GRAPHQL_ERROR
5969
5975
  UNSUPPORTED_FILE_TYPE
@@ -6546,6 +6552,7 @@ type ExportError {
6546
6552
  """An enumeration of possible error codes for export operations."""
6547
6553
  enum ExportErrorCode {
6548
6554
  FORBIDDEN
6555
+ INTERNAL_ERROR
6549
6556
  INVALID
6550
6557
  NOT_FOUND
6551
6558
  REQUIRED
@@ -6792,6 +6799,7 @@ type FinancialError {
6792
6799
  """An enumeration of possible error codes for financial operations."""
6793
6800
  enum FinancialErrorCode {
6794
6801
  GRAPHQL_ERROR
6802
+ INTERNAL_ERROR
6795
6803
  INVALID
6796
6804
  NOT_FOUND
6797
6805
  REQUIRED
@@ -6994,6 +7002,15 @@ type FulfillmentCountableEdge {
6994
7002
  node: Fulfillment!
6995
7003
  }
6996
7004
 
7005
+ """
7006
+ How a catalog entity is fulfilled (SPEC-029). Source of truth for isDigital/isShippingRequired, which are derived projections.
7007
+ """
7008
+ enum FulfillmentKind {
7009
+ SHIPMENT
7010
+ DIGITAL_FILE
7011
+ SERVICE
7012
+ }
7013
+
6997
7014
  """Represents a line in a fulfillment."""
6998
7015
  type FulfillmentLine implements Node {
6999
7016
  """The Globally Unique ID of this object"""
@@ -7285,6 +7302,7 @@ type ImportError {
7285
7302
  """An enumeration of possible error codes for import operations."""
7286
7303
  enum ImportErrorCode {
7287
7304
  FORBIDDEN
7305
+ INTERNAL_ERROR
7288
7306
  INVALID
7289
7307
  NOT_FOUND
7290
7308
  REQUIRED
@@ -8242,6 +8260,11 @@ type MarketplaceConfiguration {
8242
8260
  """Supported countries for the marketplace."""
8243
8261
  supportedCountries: [String!]!
8244
8262
 
8263
+ """
8264
+ Which fulfillment kinds this marketplace allows on catalog entities (SPEC-029).
8265
+ """
8266
+ enabledFulfillmentKinds: [FulfillmentKind!]!
8267
+
8245
8268
  """The default country for the marketplace."""
8246
8269
  defaultCountry: String!
8247
8270
 
@@ -8460,6 +8483,7 @@ An enumeration of possible error codes for marketplace configuration operations.
8460
8483
  """
8461
8484
  enum MarketplaceConfigurationErrorCode {
8462
8485
  GRAPHQL_ERROR
8486
+ INTERNAL_ERROR
8463
8487
  INVALID
8464
8488
  }
8465
8489
 
@@ -8483,6 +8507,11 @@ input MarketplaceConfigurationInput {
8483
8507
  automaticFulfillmentDigitalProducts: Boolean = null
8484
8508
  defaultDigitalMaxDownloads: Int = null
8485
8509
  defaultDigitalUrlValidDays: Int = null
8510
+
8511
+ """
8512
+ Which fulfillment kinds this marketplace allows on catalog entities (SPEC-029).
8513
+ """
8514
+ enabledFulfillmentKinds: [FulfillmentKind!] = null
8486
8515
  trackInventoryByDefault: Boolean = null
8487
8516
  name: String = null
8488
8517
  description: String = null
@@ -9148,6 +9177,7 @@ type MetadataError {
9148
9177
  """An enumeration of possible error codes for metadata operations."""
9149
9178
  enum MetadataErrorCode {
9150
9179
  GRAPHQL_ERROR
9180
+ INTERNAL_ERROR
9151
9181
  INVALID
9152
9182
  NOT_FOUND
9153
9183
  PERMISSION_DENIED
@@ -10578,6 +10608,7 @@ An enumeration of possible error codes for nautical configuration operations.
10578
10608
  """
10579
10609
  enum NauticalConfigurationErrorCode {
10580
10610
  GRAPHQL_ERROR
10611
+ INTERNAL_ERROR
10581
10612
  INVALID
10582
10613
  }
10583
10614
 
@@ -11402,6 +11433,7 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
11402
11433
  variantName: String!
11403
11434
  productSku: String
11404
11435
  isShippingRequired: Boolean!
11436
+ fulfillmentKind: OrdersNauticalOrderLineFulfillmentKindEnum!
11405
11437
  quantity: Int!
11406
11438
  quantityFulfilled: Int!
11407
11439
  currency: String!
@@ -11734,6 +11766,7 @@ type NotificationError {
11734
11766
  """An enumeration of possible error codes for notification operations."""
11735
11767
  enum NotificationErrorCode {
11736
11768
  GRAPHQL_ERROR
11769
+ INTERNAL_ERROR
11737
11770
  NOT_FOUND
11738
11771
  REQUIRED
11739
11772
  INVALID
@@ -12650,6 +12683,7 @@ type OrderLine implements Node & ObjectWithMetadata {
12650
12683
  variantName: String!
12651
12684
  productSku: String
12652
12685
  isShippingRequired: Boolean!
12686
+ fulfillmentKind: OrderOrderLineFulfillmentKindEnum!
12653
12687
  quantity: Int!
12654
12688
  quantityFulfilled: Int!
12655
12689
  quantityDeclined: Int!
@@ -12817,6 +12851,36 @@ type OrderMetrics {
12817
12851
  bySeller: [PieChartSegment!]
12818
12852
  }
12819
12853
 
12854
+ """order line | fulfillment kind"""
12855
+ enum OrderOrderLineFulfillmentKindEnum {
12856
+ """Shipment"""
12857
+ shipment
12858
+
12859
+ """Digital file"""
12860
+ digital_file
12861
+
12862
+ """Service"""
12863
+ service
12864
+
12865
+ """License key"""
12866
+ license_key
12867
+
12868
+ """Code"""
12869
+ code
12870
+
12871
+ """Gift card"""
12872
+ gift_card
12873
+
12874
+ """External provisioning"""
12875
+ external
12876
+
12877
+ """Booking"""
12878
+ booking
12879
+
12880
+ """Ticket"""
12881
+ ticket
12882
+ }
12883
+
12820
12884
  """Order source values."""
12821
12885
  enum OrderOrderSource {
12822
12886
  CHECKOUT
@@ -13119,6 +13183,36 @@ type OrdersByStatusType {
13119
13183
  count: Int
13120
13184
  }
13121
13185
 
13186
+ """nautical order line | fulfillment kind"""
13187
+ enum OrdersNauticalOrderLineFulfillmentKindEnum {
13188
+ """Shipment"""
13189
+ shipment
13190
+
13191
+ """Digital file"""
13192
+ digital_file
13193
+
13194
+ """Service"""
13195
+ service
13196
+
13197
+ """License key"""
13198
+ license_key
13199
+
13200
+ """Code"""
13201
+ code
13202
+
13203
+ """Gift card"""
13204
+ gift_card
13205
+
13206
+ """External provisioning"""
13207
+ external
13208
+
13209
+ """Booking"""
13210
+ booking
13211
+
13212
+ """Ticket"""
13213
+ ticket
13214
+ }
13215
+
13122
13216
  """
13123
13217
  A static page that can be manually added by a shop operator through the dashboard.
13124
13218
  """
@@ -13219,6 +13313,7 @@ type PageError {
13219
13313
  """An enumeration of possible error codes for page operations."""
13220
13314
  enum PageErrorCode {
13221
13315
  GRAPHQL_ERROR
13316
+ INTERNAL_ERROR
13222
13317
  INVALID
13223
13318
  NOT_FOUND
13224
13319
  REQUIRED
@@ -14026,6 +14121,7 @@ enum PermissionGroupErrorCode {
14026
14121
  ASSIGN_NON_STAFF_MEMBER
14027
14122
  DUPLICATED_INPUT_ITEM
14028
14123
  CANNOT_REMOVE_FROM_LAST_GROUP
14124
+ INTERNAL_ERROR
14029
14125
  LEFT_NOT_MANAGEABLE_PERMISSION
14030
14126
  OUT_OF_SCOPE_PERMISSION
14031
14127
  OUT_OF_SCOPE_USER
@@ -14375,6 +14471,7 @@ type PolicyError {
14375
14471
  """An enumeration of possible error codes for policy operations."""
14376
14472
  enum PolicyErrorCode {
14377
14473
  GRAPHQL_ERROR
14474
+ INTERNAL_ERROR
14378
14475
  INVALID
14379
14476
  NOT_FOUND
14380
14477
  REQUIRED
@@ -14582,6 +14679,11 @@ type Product implements Node & ObjectWithMetadata {
14582
14679
  """
14583
14680
  timeline(kinds: [TimelineEntryKind!] = null): [TimelineEntry!]!
14584
14681
 
14682
+ """
14683
+ Typed fulfillment kind (SPEC-029) — source of truth for isDigital/isShippingRequired
14684
+ """
14685
+ fulfillmentKind: FulfillmentKind!
14686
+
14585
14687
  """Sort order of the product"""
14586
14688
  sortOrder: Int
14587
14689
 
@@ -14885,6 +14987,11 @@ input ProductBulkCreateInput {
14885
14987
  """Set whether this product is digital."""
14886
14988
  isDigital: Boolean = null
14887
14989
 
14990
+ """
14991
+ Typed fulfillment kind (SPEC-029). Takes precedence over isDigital/isShippingRequired.
14992
+ """
14993
+ fulfillmentKind: FulfillmentKind = null
14994
+
14888
14995
  """Set whether this product allows price overrides."""
14889
14996
  isPriceOverrideAllowed: Boolean = null
14890
14997
  weight: WeightScalar = null
@@ -15081,6 +15188,11 @@ input ProductCreateInput {
15081
15188
  """
15082
15189
  isDigital: Boolean = null
15083
15190
 
15191
+ """
15192
+ Typed fulfillment kind (SPEC-029). Takes precedence over isDigital/isShippingRequired, which become derived projections of it.
15193
+ """
15194
+ fulfillmentKind: FulfillmentKind = null
15195
+
15084
15196
  """
15085
15197
  Set whether this product allows price overrides by default, will be controlled by product type if provided.
15086
15198
  """
@@ -15226,7 +15338,7 @@ enum ProductFieldEnum {
15226
15338
  }
15227
15339
 
15228
15340
  """
15229
- Product(id, publication_date, is_published, private_metadata, metadata, description, description_html, deleted_at, deleted_by_user, deleted_by_app, deletion_batch_uuid, external_id, external_source, external_inventory_id, tenant, seller, seo_title, seo_description, product_type, name, slug, search_vector, category, currency, minimal_variant_price_amount, updated_at, created_at, charge_taxes, weight, available_for_purchase, visible_in_listings, default_variant, cumulative_price_amount, override_price, override_currency, status, sub_status, is_price_override_allowed, is_shipping_required, is_digital, is_bundle, warnings, product_source, allow_seller_variants, minimal_variant_price, cumulative_price)
15341
+ Product(id, publication_date, is_published, private_metadata, metadata, description, description_html, deleted_at, deleted_by_user, deleted_by_app, deletion_batch_uuid, external_id, external_source, external_inventory_id, tenant, seller, seo_title, seo_description, product_type, name, slug, search_vector, category, currency, minimal_variant_price_amount, updated_at, created_at, charge_taxes, weight, available_for_purchase, visible_in_listings, default_variant, cumulative_price_amount, override_price, override_currency, status, sub_status, is_price_override_allowed, is_shipping_required, is_digital, fulfillment_kind, is_bundle, warnings, product_source, allow_seller_variants, minimal_variant_price, cumulative_price)
15230
15342
  """
15231
15343
  input ProductFilterInput {
15232
15344
  isPublished: Boolean
@@ -15564,6 +15676,11 @@ input ProductInput {
15564
15676
  """
15565
15677
  isDigital: Boolean = null
15566
15678
 
15679
+ """
15680
+ Typed fulfillment kind (SPEC-029). Takes precedence over isDigital/isShippingRequired, which become derived projections of it.
15681
+ """
15682
+ fulfillmentKind: FulfillmentKind = null
15683
+
15567
15684
  """
15568
15685
  Set whether this product allows price overrides by default, will be controlled by product type if provided.
15569
15686
  """
@@ -15820,6 +15937,11 @@ type ProductType implements Node & ObjectWithMetadata {
15820
15937
  last: Int = null
15821
15938
  ): ProductTypeAuditEventCountableConnection!
15822
15939
 
15940
+ """
15941
+ Typed fulfillment kind (SPEC-029) — source of truth for isDigital/isShippingRequired
15942
+ """
15943
+ fulfillmentKind: FulfillmentKind!
15944
+
15823
15945
  """Legacy indicator, always true"""
15824
15946
  hasVariants: Boolean!
15825
15947
 
@@ -15996,7 +16118,7 @@ enum ProductTypeEnum {
15996
16118
  }
15997
16119
 
15998
16120
  """
15999
- ProductType(id, private_metadata, metadata, description, description_html, external_id, external_source, external_inventory_id, tenant, name, slug, is_shipping_required, is_locked, is_digital, externally_managed, weight, is_price_override_allowed, created_by)
16121
+ ProductType(id, private_metadata, metadata, description, description_html, external_id, external_source, external_inventory_id, tenant, name, slug, is_shipping_required, is_locked, is_digital, fulfillment_kind, externally_managed, weight, is_price_override_allowed, created_by)
16000
16122
  """
16001
16123
  input ProductTypeFilterInput {
16002
16124
  isDigital: Boolean
@@ -16022,6 +16144,7 @@ input ProductTypeInput {
16022
16144
  variantAttributes: [ID!] = null
16023
16145
  isShippingRequired: Boolean = null
16024
16146
  isDigital: Boolean = null
16147
+ fulfillmentKind: FulfillmentKind = null
16025
16148
  weight: WeightScalar = null
16026
16149
  taxCode: String = null
16027
16150
 
@@ -16177,6 +16300,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
16177
16300
  """
16178
16301
  currency: String!
16179
16302
 
16303
+ """
16304
+ Typed fulfillment kind (SPEC-029) — source of truth for isDigital/isShippingRequired
16305
+ """
16306
+ fulfillmentKind: FulfillmentKind!
16307
+
16180
16308
  """Status of the variant"""
16181
16309
  status: ProductVariantStatus!
16182
16310
 
@@ -16404,6 +16532,11 @@ input ProductVariantBulkCreateInput {
16404
16532
  """Set whether this variant is digital."""
16405
16533
  isDigital: Boolean = null
16406
16534
 
16535
+ """
16536
+ Typed fulfillment kind (SPEC-029). Takes precedence over isDigital/isShippingRequired.
16537
+ """
16538
+ fulfillmentKind: FulfillmentKind = null
16539
+
16407
16540
  """Set whether this variant allows price overrides."""
16408
16541
  isPriceOverrideAllowed: Boolean = null
16409
16542
 
@@ -16520,6 +16653,11 @@ input ProductVariantCreateInput {
16520
16653
  """
16521
16654
  isDigital: Boolean = null
16522
16655
 
16656
+ """
16657
+ Typed fulfillment kind (SPEC-029). Takes precedence over isDigital/isShippingRequired, which become derived projections of it.
16658
+ """
16659
+ fulfillmentKind: FulfillmentKind = null
16660
+
16523
16661
  """
16524
16662
  Set whether this variant allows price overrides by default, will be overridden by product type attached to product if available.
16525
16663
  """
@@ -16552,7 +16690,7 @@ type ProductVariantDelete {
16552
16690
  }
16553
16691
 
16554
16692
  """
16555
- ProductVariant(id, sort_order, private_metadata, metadata, created_at, updated_at, deleted_at, deleted_by_user, deleted_by_app, deletion_batch_uuid, external_id, external_source, external_inventory_id, tenant, seo_title, seo_description, sku, name, is_user_defined_name, nautical_stock_number, status, sub_status, currency, price_amount, product, track_inventory, cost_price_amount, weight, seller, published_at, is_published, override_currency, search_vector, allow_backorders, is_price_override_allowed, is_shipping_required, is_digital, warnings, price, cost_price)
16693
+ ProductVariant(id, sort_order, private_metadata, metadata, created_at, updated_at, deleted_at, deleted_by_user, deleted_by_app, deletion_batch_uuid, external_id, external_source, external_inventory_id, tenant, seo_title, seo_description, sku, name, is_user_defined_name, nautical_stock_number, status, sub_status, currency, price_amount, product, track_inventory, cost_price_amount, weight, seller, published_at, is_published, override_currency, search_vector, allow_backorders, is_price_override_allowed, is_shipping_required, is_digital, fulfillment_kind, warnings, price, cost_price)
16556
16694
  """
16557
16695
  input ProductVariantFilterInput {
16558
16696
  isPublished: Boolean
@@ -16689,6 +16827,11 @@ input ProductVariantInput {
16689
16827
  """
16690
16828
  isDigital: Boolean = null
16691
16829
 
16830
+ """
16831
+ Typed fulfillment kind (SPEC-029). Takes precedence over isDigital/isShippingRequired, which become derived projections of it.
16832
+ """
16833
+ fulfillmentKind: FulfillmentKind = null
16834
+
16692
16835
  """
16693
16836
  Set whether this variant allows price overrides by default, will be overridden by product type attached to product if available.
16694
16837
  """
@@ -17087,6 +17230,7 @@ enum ProductWarningEnum {
17087
17230
  VARIANT_ATTRIBUTE_VALUE_REQUIRED
17088
17231
  DEFAULT_VARIANT_REQUIRED
17089
17232
  SELLER_PAUSED
17233
+ SELLER_DIGITAL_SUSPENDED
17090
17234
  }
17091
17235
 
17092
17236
  """Result of products export mutation."""
@@ -19562,6 +19706,9 @@ type Seller implements Node & ObjectWithMetadata {
19562
19706
  """List of seller identification values (e.g., tax IDs)"""
19563
19707
  identification: [String!]
19564
19708
 
19709
+ """Whether this seller may sell digital-kind products (SPEC-029)"""
19710
+ digitalSalesStatus: SellersSellerDigitalSalesStatusEnum!
19711
+
19565
19712
  """Reason for agreement decision"""
19566
19713
  agreementDecisionReason: String!
19567
19714
 
@@ -20133,6 +20280,15 @@ type SellerDataUpdate {
20133
20280
  sellerErrors: [SellerError!]!
20134
20281
  }
20135
20282
 
20283
+ """
20284
+ Whether a seller may sell digital-kind products (SPEC-029). SUSPENDED unpublishes the seller's digital products with a stamped warning.
20285
+ """
20286
+ enum SellerDigitalSalesStatus {
20287
+ NOT_REQUESTED
20288
+ APPROVED
20289
+ SUSPENDED
20290
+ }
20291
+
20136
20292
  """Represents errors from seller operations."""
20137
20293
  type SellerError {
20138
20294
  field: String
@@ -20223,7 +20379,7 @@ enum SellerExternalPayoutSource {
20223
20379
  }
20224
20380
 
20225
20381
  """
20226
- Seller(id, private_metadata, metadata, created_at, updated_at, tenant, external_payout_account_id, external_payout_source, external_payout_onboarding_url, company_name, slug, is_marketplace_seller, logo, identification, default_shipping_address, default_billing_address, owner, default_currency, fulfilled_by_marketplace, status, agreement_decision_reason, banner, store_description, external_payouts_enabled, external_payout_schedule, external_payout_status_synced_at)
20382
+ Seller(id, private_metadata, metadata, created_at, updated_at, tenant, external_payout_account_id, external_payout_source, external_payout_onboarding_url, company_name, slug, is_marketplace_seller, logo, identification, default_shipping_address, default_billing_address, owner, default_currency, fulfilled_by_marketplace, status, digital_sales_status, agreement_decision_reason, banner, store_description, external_payouts_enabled, external_payout_schedule, external_payout_status_synced_at)
20227
20383
  """
20228
20384
  input SellerFilterInput {
20229
20385
  AND: SellerFilterInput
@@ -20637,6 +20793,11 @@ input SellerUpdateInput {
20637
20793
  """New seller status"""
20638
20794
  status: String = null
20639
20795
 
20796
+ """
20797
+ Whether this seller may sell digital-kind products (SPEC-029). Requires MANAGE_MARKETPLACE. SUSPENDED unpublishes the seller's digital products with a stamped warning.
20798
+ """
20799
+ digitalSalesStatus: SellerDigitalSalesStatus = null
20800
+
20640
20801
  """ID of user to set as owner"""
20641
20802
  user: ID = null
20642
20803
 
@@ -20727,6 +20888,18 @@ type SellerWithOwnerCreate {
20727
20888
  sellerErrors: [SellerError!]!
20728
20889
  }
20729
20890
 
20891
+ """seller | digital sales status"""
20892
+ enum SellersSellerDigitalSalesStatusEnum {
20893
+ """Not Requested"""
20894
+ NOT_REQUESTED
20895
+
20896
+ """Approved"""
20897
+ APPROVED
20898
+
20899
+ """Suspended"""
20900
+ SUSPENDED
20901
+ }
20902
+
20730
20903
  input SeoInput {
20731
20904
  title: String = null
20732
20905
  description: String = null
@@ -21147,6 +21320,7 @@ enum ShopErrorCode {
21147
21320
  ALREADY_EXISTS
21148
21321
  CANNOT_FETCH_TAX_RATES
21149
21322
  GRAPHQL_ERROR
21323
+ INTERNAL_ERROR
21150
21324
  INVALID
21151
21325
  NOT_FOUND
21152
21326
  PERMISSION_DENIED
@@ -23747,6 +23921,7 @@ enum WarehouseErrorCode {
23747
23921
  ALREADY_EXISTS
23748
23922
  FORBIDDEN
23749
23923
  GRAPHQL_ERROR
23924
+ INTERNAL_ERROR
23750
23925
  INVALID
23751
23926
  NOT_FOUND
23752
23927
  REQUIRED
@@ -23937,6 +24112,7 @@ type WebhookError {
23937
24112
  """An enumeration of possible error codes for webhook operations."""
23938
24113
  enum WebhookErrorCode {
23939
24114
  GRAPHQL_ERROR
24115
+ INTERNAL_ERROR
23940
24116
  INVALID
23941
24117
  NOT_FOUND
23942
24118
  REQUIRED
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "4.5.1",
3
+ "version": "4.6.0",
4
4
  "description": "Traide API GraphQL Schema",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {