@nautical-commerce/graphql-schema 3.6.2 → 3.6.4

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.
@@ -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. Use this for debugging or accessing fields not yet in Nautical schema.
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 and how they were transformed to Nautical format. Compare with validation_errors to see which fields had issues.
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}}. Severity: 'warning' (non-critical), 'error' (needs fixing), 'critical' (blocks creation).
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']. Use this to track what Nautical entities were created from the Shopify webhook.
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"""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v3.6.2",
3
+ "version": "v3.6.4",
4
4
  "description": "Traide API GraphQL Schema",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {