@nautical-commerce/graphql-schema 3.6.3 → 3.6.5
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.
- package/nautical/schema.graphql +13 -25
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -8337,7 +8337,7 @@ type Mutation {
|
|
|
8337
8337
|
nauticalOrderCancel(id: ID!): NauticalOrderCancel!
|
|
8338
8338
|
|
|
8339
8339
|
"""
|
|
8340
|
-
Marks a fully fulfilled order as delivered. Requires MANAGE_MARKETPLACE
|
|
8340
|
+
Marks a fully fulfilled order as delivered. Requires MANAGE_MARKETPLACE and MANAGE_ORDERS permissions.
|
|
8341
8341
|
"""
|
|
8342
8342
|
orderMarkAsDelivered(id: ID!): OrderMarkAsDelivered!
|
|
8343
8343
|
|
|
@@ -8431,12 +8431,12 @@ type Mutation {
|
|
|
8431
8431
|
nauticalDraftOrderLinePriceOverride(id: ID!, input: OrderLinePriceOverrideInput!): NauticalDraftOrderLinePriceOverride!
|
|
8432
8432
|
|
|
8433
8433
|
"""
|
|
8434
|
-
Creates a new order fee. Requires MANAGE_PAYOUTS, MANAGE_MARKETPLACE,
|
|
8434
|
+
Creates a new order fee. Requires MANAGE_PAYOUTS, MANAGE_MARKETPLACE, and MANAGE_AGREEMENTS permissions.
|
|
8435
8435
|
"""
|
|
8436
8436
|
orderFeeCreate(input: OrderFeeInput!): OrderFeeCreate!
|
|
8437
8437
|
|
|
8438
8438
|
"""
|
|
8439
|
-
Deletes an order fee. Requires MANAGE_PAYOUTS, MANAGE_MARKETPLACE,
|
|
8439
|
+
Deletes an order fee. Requires MANAGE_PAYOUTS, MANAGE_MARKETPLACE, and MANAGE_AGREEMENTS permissions.
|
|
8440
8440
|
"""
|
|
8441
8441
|
orderFeeDelete(id: ID!): OrderFeeDelete!
|
|
8442
8442
|
|
|
@@ -18998,53 +18998,41 @@ type ShopifyWebhookTransaction implements Node & Job {
|
|
|
18998
18998
|
shopifyWebhookId: String
|
|
18999
18999
|
|
|
19000
19000
|
"""
|
|
19001
|
-
Complete unmodified Shopify webhook payload. Preserves ALL fields from Shopify, including unmapped ones.
|
|
19001
|
+
Complete unmodified Shopify webhook payload. Preserves ALL fields from Shopify, including unmapped ones.
|
|
19002
19002
|
"""
|
|
19003
19003
|
rawPayload: JSONString
|
|
19004
19004
|
|
|
19005
19005
|
"""
|
|
19006
|
-
Data after field mapping transformation applied. Shows what values were extracted from raw_payload
|
|
19006
|
+
Data after field mapping transformation applied. Shows what values were extracted from raw_payload.
|
|
19007
19007
|
"""
|
|
19008
19008
|
mappedData: JSONString
|
|
19009
19009
|
|
|
19010
|
-
"""
|
|
19011
|
-
Shopify fields that don't have Nautical field mappings. Preserved for future use. If you see important data here, you can configure custom field mappings in your plugin settings.
|
|
19012
|
-
"""
|
|
19010
|
+
"""Shopify fields that don't have Nautical field mappings."""
|
|
19013
19011
|
unmappedFields: JSONString
|
|
19014
19012
|
|
|
19015
19013
|
"""
|
|
19016
|
-
Per-field validation errors with severity levels. Format: {field_name: {message, severity, value}}.
|
|
19014
|
+
Per-field validation errors with severity levels. Format: {field_name: {message, severity, value}}.
|
|
19017
19015
|
"""
|
|
19018
19016
|
validationErrors: JSONString
|
|
19019
19017
|
|
|
19020
|
-
"""
|
|
19021
|
-
Version of Shopify field mapping configuration used (e.g., '1.0.0'). Used to track schema evolution. If mappings change, you can identify which webhooks used old vs new mappings.
|
|
19022
|
-
"""
|
|
19018
|
+
"""Version of Shopify field mapping configuration used (e.g., '1.0.0')."""
|
|
19023
19019
|
fieldMappingVersion: String
|
|
19024
19020
|
|
|
19025
|
-
"""
|
|
19026
|
-
Shopify-specific processing context. Includes: API version, processing time, retry count, etc. Useful for performance analysis and debugging.
|
|
19027
|
-
"""
|
|
19021
|
+
"""Shopify-specific processing context (API version, timing, retries)."""
|
|
19028
19022
|
processingMetadata: JSONString
|
|
19029
19023
|
|
|
19030
19024
|
"""
|
|
19031
|
-
List of successfully created entities. Format: ['product:uuid-123', 'variant:uuid-456', 'stock:uuid-789'].
|
|
19025
|
+
List of successfully created entities. Format: ['product:uuid-123', 'variant:uuid-456', 'stock:uuid-789'].
|
|
19032
19026
|
"""
|
|
19033
19027
|
entitiesCreated: [String!]
|
|
19034
19028
|
|
|
19035
|
-
"""
|
|
19036
|
-
List of entities that failed creation with error details. Format: [{type, shopify_id, error, details}]. Review this to understand why some entities couldn't be created.
|
|
19037
|
-
"""
|
|
19029
|
+
"""List of entities that failed creation with error details."""
|
|
19038
19030
|
entitiesFailed: JSONString
|
|
19039
19031
|
|
|
19040
|
-
"""
|
|
19041
|
-
True if webhook processing succeeded for some but not all entities. Example: Product created but 2 out of 5 variants failed validation. Check entities_failed for details on what went wrong.
|
|
19042
|
-
"""
|
|
19032
|
+
"""True if webhook processing succeeded for some but not all entities."""
|
|
19043
19033
|
isPartialSuccess: Boolean
|
|
19044
19034
|
|
|
19045
|
-
"""
|
|
19046
|
-
Link to primary created marketplace entity (e.g., '/products/123'). Use this to navigate directly to the created entity in the Dashboard.
|
|
19047
|
-
"""
|
|
19035
|
+
"""Link to primary created marketplace entity (e.g., '/products/123')."""
|
|
19048
19036
|
marketplaceEntityLink: String
|
|
19049
19037
|
|
|
19050
19038
|
"""Product ID if this webhook created/updated a product"""
|