From cf4331fc8b5ba42ec07736246069190712bb67b9 Mon Sep 17 00:00:00 2001 From: Thomas De Meyer Date: Tue, 22 Oct 2024 12:22:45 +0200 Subject: [PATCH 1/4] feat: added additional fields to shipping method resource --- .gitignore | 1 + commercelayer/resource_shipping_method.go | 40 ++- .../resource_shipping_method_test.go | 20 +- docs/resources/address.md | 2 - docs/resources/adyen_gateway.md | 2 - docs/resources/bing_geocoder.md | 2 - docs/resources/braintree_gateway.md | 2 - docs/resources/checkout_com_gateway.md | 2 - docs/resources/customer_group.md | 8 +- docs/resources/delivery_lead_time.md | 2 - docs/resources/external_gateway.md | 10 +- docs/resources/external_tax_calculator.md | 2 - docs/resources/google_geocoder.md | 2 - docs/resources/inventory_model.md | 2 - docs/resources/inventory_return_location.md | 2 - docs/resources/inventory_stock_location.md | 2 - docs/resources/klarna_gateway.md | 2 - docs/resources/manual_gateway.md | 2 - docs/resources/manual_tax_calculator.md | 2 - docs/resources/market.md | 2 - docs/resources/merchant.md | 2 - docs/resources/payment_method.md | 2 - docs/resources/paypal_gateway.md | 2 - docs/resources/price_list.md | 10 +- docs/resources/shipping_category.md | 2 - docs/resources/shipping_method.md | 7 +- docs/resources/shipping_zone.md | 2 - docs/resources/stock_location.md | 2 - docs/resources/stripe_gateway.md | 2 - docs/resources/taxjar_accounts.md | 2 - docs/resources/webhook.md | 2 - go.mod | 102 +++--- go.sum | 296 +++++++++--------- 33 files changed, 274 insertions(+), 268 deletions(-) diff --git a/.gitignore b/.gitignore index 0614356..b529570 100644 --- a/.gitignore +++ b/.gitignore @@ -85,3 +85,4 @@ fabric.properties /token.json /local +/go.work* diff --git a/commercelayer/resource_shipping_method.go b/commercelayer/resource_shipping_method.go index 11ee768..49ebf5a 100644 --- a/commercelayer/resource_shipping_method.go +++ b/commercelayer/resource_shipping_method.go @@ -40,9 +40,10 @@ func resourceShippingMethod() *schema.Resource { Required: true, }, "scheme": { - Description: "The shipping method's scheme, one of 'flat' or 'weight_tiered'.", + Description: "The shipping method's scheme, one of 'flat', 'weight_tiered' or 'external'.", Type: schema.TypeString, Optional: true, + Default: "flat", }, "currency_code": { Description: "The international 3-letter currency code as defined by the ISO " + @@ -51,6 +52,11 @@ func resourceShippingMethod() *schema.Resource { Optional: true, ValidateDiagFunc: currencyCodeValidation, }, + "external_prices_url": { + Description: "Required, if external scheme", + Type: schema.TypeString, + Optional: true, + }, "price_amount_cents": { Description: "The price of this shipping method, in cents.", Type: schema.TypeInt, @@ -61,6 +67,12 @@ func resourceShippingMethod() *schema.Resource { Type: schema.TypeInt, Optional: true, }, + "use_subtotal": { + Description: "Send this attribute if you want to compare the free over amount with order's subtotal (excluding discounts, if any).", + Type: schema.TypeBool, + Optional: true, + Default: false, + }, "min_weight": { Description: "The minimum weight for which this shipping method is available.", Type: schema.TypeFloat, @@ -76,6 +88,12 @@ func resourceShippingMethod() *schema.Resource { Type: schema.TypeString, Optional: true, }, + "enabled": { + Description: "Whether the resource is enabled", + Type: schema.TypeBool, + Optional: true, + Default: true, + }, "reference": { Description: "A string that you can use to add any external identifier to the resource. This " + "can be useful for integrating the resource to an external system, like an ERP, a " + @@ -176,8 +194,10 @@ func resourceShippingMethodCreateFunc(ctx context.Context, d *schema.ResourceDat Name: attributes["name"].(string), Scheme: stringRef(attributes["scheme"]), CurrencyCode: stringRef(attributes["currency_code"]), + ExternalPricesUrl: stringRef(attributes["external_prices_url"]), PriceAmountCents: int32(attributes["price_amount_cents"].(int)), FreeOverAmountCents: intToInt32Ref(attributes["free_over_amount_cents"]), + UseSubtotal: boolRef(attributes["use_subtotal"]), MinWeight: float64ToFloat32Ref(attributes["min_weight"]), MaxWeight: float64ToFloat32Ref(attributes["max_weight"]), UnitOfWeight: stringRef(attributes["unit_of_weight"]), @@ -189,6 +209,12 @@ func resourceShippingMethodCreateFunc(ctx context.Context, d *schema.ResourceDat }, } + if !attributes["enabled"].(bool) { + shippingMethodCreate.Data.Attributes.Disable = true + } else { + shippingMethodCreate.Data.Attributes.Enable = true + } + marketId := stringRef(relationships["market_id"]) if marketId != nil { shippingMethodCreate.Data.Relationships.Market = &commercelayer.BillingInfoValidationRuleCreateDataRelationshipsMarket{ @@ -209,7 +235,7 @@ func resourceShippingMethodCreateFunc(ctx context.Context, d *schema.ResourceDat shippingCategoryId := stringRef(relationships["shipping_category_id"]) if shippingCategoryId != nil { - shippingMethodCreate.Data.Relationships.ShippingCategory = &commercelayer.ShippingMethodCreateDataRelationshipsShippingCategory{ + shippingMethodCreate.Data.Relationships.ShippingCategory = &commercelayer.ShipmentCreateDataRelationshipsShippingCategory{ Data: commercelayer.ShipmentDataRelationshipsShippingCategoryData{ Type: stringRef(shippingCategoryType), Id: shippingCategoryId, @@ -270,8 +296,10 @@ func resourceShippingMethodUpdateFunc(ctx context.Context, d *schema.ResourceDat Name: stringRef(attributes["name"]), Scheme: stringRef(attributes["scheme"]), CurrencyCode: stringRef(attributes["currency_code"]), + ExternalPricesUrl: stringRef(attributes["external_prices_url"]), PriceAmountCents: intToInt32Ref(attributes["price_amount_cents"]), FreeOverAmountCents: intToInt32Ref(attributes["free_over_amount_cents"]), + UseSubtotal: boolRef(attributes["use_subtotal"]), MinWeight: float64ToFloat32Ref(attributes["min_weight"]), MaxWeight: float64ToFloat32Ref(attributes["max_weight"]), UnitOfWeight: stringRef(attributes["unit_of_weight"]), @@ -283,6 +311,12 @@ func resourceShippingMethodUpdateFunc(ctx context.Context, d *schema.ResourceDat }, } + if !attributes["enabled"].(bool) { + shippingMethodUpdate.Data.Attributes.Disable = true + } else { + shippingMethodUpdate.Data.Attributes.Enable = true + } + marketId := stringRef(relationships["market_id"]) if marketId != nil { shippingMethodUpdate.Data.Relationships.Market = &commercelayer.BillingInfoValidationRuleCreateDataRelationshipsMarket{ @@ -303,7 +337,7 @@ func resourceShippingMethodUpdateFunc(ctx context.Context, d *schema.ResourceDat shippingCategoryId := stringRef(relationships["shipping_category_id"]) if shippingCategoryId != nil { - shippingMethodUpdate.Data.Relationships.ShippingCategory = &commercelayer.ShippingMethodCreateDataRelationshipsShippingCategory{ + shippingMethodUpdate.Data.Relationships.ShippingCategory = &commercelayer.ShipmentCreateDataRelationshipsShippingCategory{ Data: commercelayer.ShipmentDataRelationshipsShippingCategoryData{ Type: stringRef(shippingCategoryType), Id: shippingCategoryId, diff --git a/commercelayer/resource_shipping_method_test.go b/commercelayer/resource_shipping_method_test.go index d397aba..2a31a55 100644 --- a/commercelayer/resource_shipping_method_test.go +++ b/commercelayer/resource_shipping_method_test.go @@ -41,7 +41,7 @@ func (s *AcceptanceSuite) TestAccShippingMethod_basic() { Config: testAccShippingMethodCreate(resourceName), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr(resourceName, "type", shippingMethodType), - resource.TestCheckResourceAttr(resourceName, "attributes.0.name", "Incentro Shipping Method"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.name", "Incentro Test Shipping Method"), resource.TestCheckResourceAttr(resourceName, "attributes.0.scheme", "flat"), resource.TestCheckResourceAttr(resourceName, "attributes.0.currency_code", "EUR"), resource.TestCheckResourceAttr(resourceName, "attributes.0.price_amount_cents", "1000"), @@ -50,20 +50,25 @@ func (s *AcceptanceSuite) TestAccShippingMethod_basic() { resource.TestCheckResourceAttr(resourceName, "attributes.0.max_weight", "10"), resource.TestCheckResourceAttr(resourceName, "attributes.0.unit_of_weight", "kg"), resource.TestCheckResourceAttr(resourceName, "attributes.0.metadata.foo", "bar"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.enabled", "true"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.use_subtotal", "false"), ), }, { Config: testAccShippingMethodUpdate(resourceName), Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr(resourceName, "attributes.0.name", "Incentro Shipping Method Updated"), - resource.TestCheckResourceAttr(resourceName, "attributes.0.scheme", "weight_tiered"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.name", "Incentro Test Shipping Method Updated"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.scheme", "external"), resource.TestCheckResourceAttr(resourceName, "attributes.0.currency_code", "CHF"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.external_prices_url", "https://api.commercelayer.io/v1/prices"), resource.TestCheckResourceAttr(resourceName, "attributes.0.price_amount_cents", "1"), resource.TestCheckResourceAttr(resourceName, "attributes.0.free_over_amount_cents", "1"), resource.TestCheckResourceAttr(resourceName, "attributes.0.min_weight", "1"), resource.TestCheckResourceAttr(resourceName, "attributes.0.max_weight", "20"), resource.TestCheckResourceAttr(resourceName, "attributes.0.unit_of_weight", "oz"), resource.TestCheckResourceAttr(resourceName, "attributes.0.metadata.bar", "foo"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.enabled", "false"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.use_subtotal", "true"), ), }, }, @@ -74,7 +79,7 @@ func testAccShippingMethodCreate(testName string) string { return hclTemplate(` resource "commercelayer_shipping_method" "incentro_shipping_method" { attributes { - name = "Incentro Shipping Method" + name = "Incentro Test Shipping Method" scheme = "flat" currency_code = "EUR" price_amount_cents = 1000 @@ -95,14 +100,17 @@ func testAccShippingMethodUpdate(testName string) string { return hclTemplate(` resource "commercelayer_shipping_method" "incentro_shipping_method" { attributes { - name = "Incentro Shipping Method Updated" - scheme = "weight_tiered" + name = "Incentro Test Shipping Method Updated" + scheme = "external" currency_code = "CHF" + external_prices_url = "https://api.commercelayer.io/v1/prices" price_amount_cents = 1 free_over_amount_cents = 1 min_weight = 1 max_weight = 20 unit_of_weight = "oz" + enabled = false + use_subtotal = true metadata = { bar : "foo" testName: "{{.testName}}" diff --git a/docs/resources/address.md b/docs/resources/address.md index 5ab8144..3a4eceb 100644 --- a/docs/resources/address.md +++ b/docs/resources/address.md @@ -78,5 +78,3 @@ Optional: Optional: - `geocoder_id` (String) The associated geocoder id. - - diff --git a/docs/resources/adyen_gateway.md b/docs/resources/adyen_gateway.md index 63b32e1..3872dc7 100644 --- a/docs/resources/adyen_gateway.md +++ b/docs/resources/adyen_gateway.md @@ -58,5 +58,3 @@ Optional: - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - `webhook_endpoint_secret` (String) The gateway webhook endpoint secret, generated by Adyen customer area. - - diff --git a/docs/resources/bing_geocoder.md b/docs/resources/bing_geocoder.md index c71c39a..ec9557b 100644 --- a/docs/resources/bing_geocoder.md +++ b/docs/resources/bing_geocoder.md @@ -49,5 +49,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/braintree_gateway.md b/docs/resources/braintree_gateway.md index 9c7a4bf..a79182c 100644 --- a/docs/resources/braintree_gateway.md +++ b/docs/resources/braintree_gateway.md @@ -55,5 +55,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/checkout_com_gateway.md b/docs/resources/checkout_com_gateway.md index 063db58..211c077 100644 --- a/docs/resources/checkout_com_gateway.md +++ b/docs/resources/checkout_com_gateway.md @@ -48,5 +48,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/customer_group.md b/docs/resources/customer_group.md index 8394e1a..788ce16 100644 --- a/docs/resources/customer_group.md +++ b/docs/resources/customer_group.md @@ -4,9 +4,9 @@ page_title: "commercelayer_customer_group Resource - terraform-provider-commerce subcategory: "" description: |- A customer group is a resource that can be used to organize customers into groups. - When you associate a customer group to a market, that market becomes private and can be accessed - only by the customers belonging to the group. You can use customer groups to manage B2B customers, - B2C loyalty programs, private sales, and more. + When you associate a customer group to a market, that market becomes private and can be accessed + only by the customers belonging to the group. You can use customer groups to manage B2B customers, + B2C loyalty programs, private sales, and more. --- # commercelayer_customer_group (Resource) @@ -50,5 +50,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/delivery_lead_time.md b/docs/resources/delivery_lead_time.md index c5eeabd..0f399d1 100644 --- a/docs/resources/delivery_lead_time.md +++ b/docs/resources/delivery_lead_time.md @@ -103,5 +103,3 @@ Required: - `shipping_method_id` (String) The associated shipping method id. - `stock_location_id` (String) The associated stock location id. - - diff --git a/docs/resources/external_gateway.md b/docs/resources/external_gateway.md index 84f51d4..a5bfeaa 100644 --- a/docs/resources/external_gateway.md +++ b/docs/resources/external_gateway.md @@ -4,10 +4,10 @@ page_title: "commercelayer_external_gateway Resource - terraform-provider-commer subcategory: "" description: |- Price lists are collections of SKU prices, - defined by currency and market. When a list of SKUs is fetched, - only SKUs with a price defined in the market's price list and at least - a stock item in one of the market stock locations will be returned. - A user can create price lists to manage international business or B2B/B2C models. + defined by currency and market. When a list of SKUs is fetched, + only SKUs with a price defined in the market's price list and at least + a stock item in one of the market stock locations will be returned. + A user can create price lists to manage international business or B2B/B2C models. --- # commercelayer_external_gateway (Resource) @@ -62,5 +62,3 @@ Optional: - `refund_url` (String) The endpoint used by the external gateway to refund payments. - `token_url` (String) The endpoint used by the external gateway to create a customer payment token. - `void_url` (String) The endpoint used by the external gateway to void payments. - - diff --git a/docs/resources/external_tax_calculator.md b/docs/resources/external_tax_calculator.md index 8c5a563..d624245 100644 --- a/docs/resources/external_tax_calculator.md +++ b/docs/resources/external_tax_calculator.md @@ -46,5 +46,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/google_geocoder.md b/docs/resources/google_geocoder.md index 3797af8..a6bcc89 100644 --- a/docs/resources/google_geocoder.md +++ b/docs/resources/google_geocoder.md @@ -49,5 +49,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/inventory_model.md b/docs/resources/inventory_model.md index 5a30a04..e4c058d 100644 --- a/docs/resources/inventory_model.md +++ b/docs/resources/inventory_model.md @@ -48,5 +48,3 @@ Optional: - `reference_origin` (String) Any identifier of the third party system that defines the reference code - `stock_locations_cutoff` (Number) The maximum number of stock locations used for inventory computation - `strategy` (String) The inventory model's shipping strategy: one between 'no_split' (default), 'split_shipments', 'split_by_line_items', 'ship_from_primary' and 'ship_from_first_available_or_primary'. - - diff --git a/docs/resources/inventory_return_location.md b/docs/resources/inventory_return_location.md index 07af5d3..1fd408e 100644 --- a/docs/resources/inventory_return_location.md +++ b/docs/resources/inventory_return_location.md @@ -92,5 +92,3 @@ Required: - `inventory_model_id` (String) The associated inventory model id. - `stock_location_id` (String) The associated stock location id. - - diff --git a/docs/resources/inventory_stock_location.md b/docs/resources/inventory_stock_location.md index a90ef91..7582983 100644 --- a/docs/resources/inventory_stock_location.md +++ b/docs/resources/inventory_stock_location.md @@ -106,5 +106,3 @@ Required: - `inventory_model_id` (String) The associated inventory model id. - `stock_location_id` (String) The associated stock location id. - - diff --git a/docs/resources/klarna_gateway.md b/docs/resources/klarna_gateway.md index cb5509c..7e3c568 100644 --- a/docs/resources/klarna_gateway.md +++ b/docs/resources/klarna_gateway.md @@ -50,5 +50,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/manual_gateway.md b/docs/resources/manual_gateway.md index 72404bc..cc9d835 100644 --- a/docs/resources/manual_gateway.md +++ b/docs/resources/manual_gateway.md @@ -47,5 +47,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/manual_tax_calculator.md b/docs/resources/manual_tax_calculator.md index 7683122..48d11d0 100644 --- a/docs/resources/manual_tax_calculator.md +++ b/docs/resources/manual_tax_calculator.md @@ -44,5 +44,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/market.md b/docs/resources/market.md index 3d81ca4..384f6d9 100644 --- a/docs/resources/market.md +++ b/docs/resources/market.md @@ -111,5 +111,3 @@ Optional: - `customer_group_id` (String) The associated customer group id. - `tax_calculator_id` (String) The associated tax calculator id. - - diff --git a/docs/resources/merchant.md b/docs/resources/merchant.md index 3b70338..03a2630 100644 --- a/docs/resources/merchant.md +++ b/docs/resources/merchant.md @@ -71,5 +71,3 @@ Optional: Required: - `address_id` (String) The associated address id. - - diff --git a/docs/resources/payment_method.md b/docs/resources/payment_method.md index 258a0d3..ee20189 100644 --- a/docs/resources/payment_method.md +++ b/docs/resources/payment_method.md @@ -76,5 +76,3 @@ Required: Optional: - `market_id` (String) The associated market. - - diff --git a/docs/resources/paypal_gateway.md b/docs/resources/paypal_gateway.md index 540fc3a..1ec6d03 100644 --- a/docs/resources/paypal_gateway.md +++ b/docs/resources/paypal_gateway.md @@ -48,5 +48,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/price_list.md b/docs/resources/price_list.md index cb5aab7..6a09569 100644 --- a/docs/resources/price_list.md +++ b/docs/resources/price_list.md @@ -4,10 +4,10 @@ page_title: "commercelayer_price_list Resource - terraform-provider-commercelaye subcategory: "" description: |- Price lists are collections of SKU prices, - defined by currency and market. When a list of SKUs is fetched, - only SKUs with a price defined in the market's price list and at least - a stock item in one of the market stock locations will be returned. - A user can create price lists to manage international business or B2B/B2C models. + defined by currency and market. When a list of SKUs is fetched, + only SKUs with a price defined in the market's price list and at least + a stock item in one of the market stock locations will be returned. + A user can create price lists to manage international business or B2B/B2C models. --- # commercelayer_price_list (Resource) @@ -55,5 +55,3 @@ Optional: - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - `tax_included` (Boolean) Indicates if the associated prices include taxes. - - diff --git a/docs/resources/shipping_category.md b/docs/resources/shipping_category.md index db1676e..6088f5c 100644 --- a/docs/resources/shipping_category.md +++ b/docs/resources/shipping_category.md @@ -44,5 +44,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/shipping_method.md b/docs/resources/shipping_method.md index 6e16a61..f867108 100644 --- a/docs/resources/shipping_method.md +++ b/docs/resources/shipping_method.md @@ -54,14 +54,17 @@ Required: Optional: - `currency_code` (String) The international 3-letter currency code as defined by the ISO 4217 standard. +- `enabled` (Boolean) Whether the resource is enabled +- `external_prices_url` (String) Required, if external scheme - `free_over_amount_cents` (Number) Apply free shipping if the order amount is over this value, in cents. - `max_weight` (Number) The maximum weight for which this shipping method is available. - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `min_weight` (Number) The minimum weight for which this shipping method is available. - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code -- `scheme` (String) The shipping method's scheme, one of 'flat' or 'weight_tiered'. +- `scheme` (String) The shipping method's scheme, one of 'flat', 'weight_tiered' or 'external'. - `unit_of_weight` (String) Can be one of 'gr', 'lb', or 'oz' +- `use_subtotal` (Boolean) Send this attribute if you want to compare the free over amount with order's subtotal (excluding discounts, if any). @@ -74,5 +77,3 @@ Optional: - `shipping_method_tier_ids` (List of String) The associated shipping method tiers (meaningful when billing_scheme != 'flat'). - `shipping_zone_id` (String) The shipping zone that is used to match the order shipping address. - `stock_location_id` (String) The stock location for which this shipping method is available. - - diff --git a/docs/resources/shipping_zone.md b/docs/resources/shipping_zone.md index 0663219..2092c64 100644 --- a/docs/resources/shipping_zone.md +++ b/docs/resources/shipping_zone.md @@ -56,5 +56,3 @@ Optional: - `reference_origin` (String) Any identifier of the third party system that defines the reference code - `state_code_regex` (String) The regex that will be evaluated to match the shipping address state code. - `zip_code_regex` (String) The regex that will be evaluated to match the shipping address zip code. - - diff --git a/docs/resources/stock_location.md b/docs/resources/stock_location.md index 14e96c3..4c7078f 100644 --- a/docs/resources/stock_location.md +++ b/docs/resources/stock_location.md @@ -75,5 +75,3 @@ Optional: Required: - `address_id` (String) The associated address id. - - diff --git a/docs/resources/stripe_gateway.md b/docs/resources/stripe_gateway.md index 99d7a95..8a3fdc8 100644 --- a/docs/resources/stripe_gateway.md +++ b/docs/resources/stripe_gateway.md @@ -47,5 +47,3 @@ Optional: - `publishable_key` (String) The gateway publishable API key. - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/taxjar_accounts.md b/docs/resources/taxjar_accounts.md index af26e75..dc821d3 100644 --- a/docs/resources/taxjar_accounts.md +++ b/docs/resources/taxjar_accounts.md @@ -46,5 +46,3 @@ Optional: - `metadata` (Map of String) Set of key-value pairs that you can attach to the resource. This can be useful for storing additional information about the resource in a structured format - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/docs/resources/webhook.md b/docs/resources/webhook.md index 3cb37ce..0e6f797 100644 --- a/docs/resources/webhook.md +++ b/docs/resources/webhook.md @@ -54,5 +54,3 @@ Optional: - `name` (String) Unique name for the webhook. - `reference` (String) A string that you can use to add any external identifier to the resource. This can be useful for integrating the resource to an external system, like an ERP, a marketing tool, a CRM, or whatever. - `reference_origin` (String) Any identifier of the third party system that defines the reference code - - diff --git a/go.mod b/go.mod index 84e4f84..18e9285 100644 --- a/go.mod +++ b/go.mod @@ -1,55 +1,60 @@ module github.com/incentro-dc/terraform-provider-commercelayer -go 1.18 +go 1.23 require ( github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 - github.com/hashicorp/terraform-plugin-docs v0.14.1 - github.com/hashicorp/terraform-plugin-sdk/v2 v2.26.1 + github.com/hashicorp/terraform-plugin-docs v0.19.4 + github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 github.com/incentro-dc/go-commercelayer-sdk v0.0.5 - github.com/ladydascalie/currency v1.6.0 - github.com/stretchr/testify v1.7.2 - golang.org/x/oauth2 v0.8.0 + github.com/ladydascalie/currency v1.8.0 + github.com/stretchr/testify v1.9.0 + golang.org/x/oauth2 v0.23.0 ) require ( + dario.cat/mergo v1.0.1 // indirect + github.com/BurntSushi/toml v1.4.0 // indirect + github.com/Kunde21/markdownfmt/v3 v3.1.0 // indirect github.com/Masterminds/goutils v1.1.1 // indirect - github.com/Masterminds/semver/v3 v3.2.1 // indirect - github.com/Masterminds/sprig/v3 v3.2.3 // indirect - github.com/ProtonMail/go-crypto v0.0.0-20230528122434-6f98819771a1 // indirect + github.com/Masterminds/semver/v3 v3.3.0 // indirect + github.com/Masterminds/sprig/v3 v3.3.0 // indirect + github.com/ProtonMail/go-crypto v1.1.0-beta.0-proton // indirect github.com/agext/levenshtein v1.2.3 // indirect - github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect + github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect github.com/armon/go-radix v1.0.0 // indirect - github.com/bgentry/speakeasy v0.1.0 // indirect - github.com/cloudflare/circl v1.3.3 // indirect + github.com/bgentry/speakeasy v0.2.0 // indirect + github.com/bmatcuk/doublestar/v4 v4.7.1 // indirect + github.com/cloudflare/circl v1.5.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/fatih/color v1.15.0 // indirect - github.com/golang/protobuf v1.5.3 // indirect - github.com/google/go-cmp v0.5.9 // indirect - github.com/google/uuid v1.3.0 // indirect + github.com/fatih/color v1.18.0 // indirect + github.com/golang/protobuf v1.5.4 // indirect + github.com/google/go-cmp v0.6.0 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/hashicorp/cli v1.1.6 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-checkpoint v0.5.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-hclog v1.5.0 // indirect + github.com/hashicorp/go-hclog v1.6.3 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect - github.com/hashicorp/go-plugin v1.4.9 // indirect + github.com/hashicorp/go-plugin v1.6.2 // indirect + github.com/hashicorp/go-retryablehttp v0.7.7 // indirect github.com/hashicorp/go-uuid v1.0.3 // indirect - github.com/hashicorp/go-version v1.6.0 // indirect - github.com/hashicorp/hc-install v0.5.2 // indirect - github.com/hashicorp/hcl/v2 v2.17.0 // indirect + github.com/hashicorp/go-version v1.7.0 // indirect + github.com/hashicorp/hc-install v0.9.0 // indirect + github.com/hashicorp/hcl/v2 v2.22.0 // indirect github.com/hashicorp/logutils v1.0.0 // indirect - github.com/hashicorp/terraform-exec v0.18.1 // indirect - github.com/hashicorp/terraform-json v0.16.0 // indirect - github.com/hashicorp/terraform-plugin-go v0.15.0 // indirect + github.com/hashicorp/terraform-exec v0.21.0 // indirect + github.com/hashicorp/terraform-json v0.22.1 // indirect + github.com/hashicorp/terraform-plugin-go v0.24.0 // indirect github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect - github.com/hashicorp/terraform-registry-address v0.2.0 // indirect - github.com/hashicorp/terraform-svchost v0.1.0 // indirect - github.com/hashicorp/yamux v0.1.1 // indirect - github.com/huandu/xstrings v1.4.0 // indirect - github.com/imdario/mergo v0.3.16 // indirect + github.com/hashicorp/terraform-registry-address v0.2.3 // indirect + github.com/hashicorp/terraform-svchost v0.1.1 // indirect + github.com/hashicorp/yamux v0.1.2 // indirect + github.com/huandu/xstrings v1.5.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.19 // indirect - github.com/mitchellh/cli v1.1.5 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/mattn/go-runewidth v0.0.16 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/go-testing-interface v1.14.1 // indirect github.com/mitchellh/go-wordwrap v1.0.1 // indirect @@ -58,21 +63,28 @@ require ( github.com/oklog/run v1.1.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/posener/complete v1.2.3 // indirect - github.com/russross/blackfriday v1.6.0 // indirect - github.com/shopspring/decimal v1.3.1 // indirect - github.com/spf13/cast v1.5.1 // indirect + github.com/rivo/uniseg v0.4.7 // indirect + github.com/shopspring/decimal v1.4.0 // indirect + github.com/spf13/cast v1.7.0 // indirect github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect - github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect + github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect - github.com/zclconf/go-cty v1.13.2 // indirect - golang.org/x/crypto v0.9.0 // indirect - golang.org/x/mod v0.10.0 // indirect - golang.org/x/net v0.10.0 // indirect - golang.org/x/sys v0.8.0 // indirect - golang.org/x/text v0.9.0 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect - google.golang.org/grpc v1.55.0 // indirect - google.golang.org/protobuf v1.30.0 // indirect + github.com/yuin/goldmark v1.7.8 // indirect + github.com/yuin/goldmark-meta v1.1.0 // indirect + github.com/zclconf/go-cty v1.15.0 // indirect + go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect + golang.org/x/crypto v0.28.0 // indirect + golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect + golang.org/x/mod v0.21.0 // indirect + golang.org/x/net v0.30.0 // indirect + golang.org/x/sync v0.8.0 // indirect + golang.org/x/sys v0.26.0 // indirect + golang.org/x/text v0.19.0 // indirect + golang.org/x/tools v0.26.0 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect + google.golang.org/grpc v1.67.1 // indirect + google.golang.org/protobuf v1.35.1 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index 115fad2..56ac800 100644 --- a/go.sum +++ b/go.sum @@ -1,55 +1,69 @@ +dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s= +dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= +github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0= +github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho= +github.com/Kunde21/markdownfmt/v3 v3.1.0 h1:KiZu9LKs+wFFBQKhrZJrFZwtLnCCWJahL+S+E/3VnM0= +github.com/Kunde21/markdownfmt/v3 v3.1.0/go.mod h1:tPXN1RTyOzJwhfHoon9wUr4HGYmWgVxSQN6VBJDkrVc= github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI= github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU= -github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= -github.com/Masterminds/semver/v3 v3.2.0/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= -github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0= -github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= -github.com/Masterminds/sprig/v3 v3.2.1/go.mod h1:UoaO7Yp8KlPnJIYWTFkMaqPUYKTfGFPhxNuwnnxkKlk= -github.com/Masterminds/sprig/v3 v3.2.3 h1:eL2fZNezLomi0uOLqjQoN6BfsDD+fyLtgbJMAj9n6YA= -github.com/Masterminds/sprig/v3 v3.2.3/go.mod h1:rXcFaZ2zZbLRJv/xSysmlgIM1u11eBaRMhvYXJNkGuM= -github.com/Microsoft/go-winio v0.5.2 h1:a9IhgEQBCUEk6QCdml9CiJGhAws+YwffDHEMp1VMrpA= -github.com/ProtonMail/go-crypto v0.0.0-20230528122434-6f98819771a1 h1:JMDGhoQvXNTqH6Y3MC0IUw6tcZvaUdujNqzK2HYWZc8= -github.com/ProtonMail/go-crypto v0.0.0-20230528122434-6f98819771a1/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= -github.com/acomagu/bufpipe v1.0.4 h1:e3H4WUzM3npvo5uv95QuJM3cQspFNtFBzvJ2oNjKIDQ= +github.com/Masterminds/semver/v3 v3.3.0 h1:B8LGeaivUe71a5qox1ICM/JLl0NqZSW5CHyL+hmvYS0= +github.com/Masterminds/semver/v3 v3.3.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM= +github.com/Masterminds/sprig/v3 v3.3.0 h1:mQh0Yrg1XPo6vjYXgtf5OtijNAKJRNcTdOOGZe3tPhs= +github.com/Masterminds/sprig/v3 v3.3.0/go.mod h1:Zy1iXRYNqNLUolqCpL4uhk6SHUMAOSCzdgBfDb35Lz0= +github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= +github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= +github.com/ProtonMail/go-crypto v1.1.0-beta.0-proton h1:ZGewsAoeSirbUS5cO8L0FMQA+iSop9xR1nmFYifDBPo= +github.com/ProtonMail/go-crypto v1.1.0-beta.0-proton/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE= github.com/agext/levenshtein v1.2.3 h1:YB2fHEn0UJagG8T1rrWknE3ZQzWM06O8AMAatNn7lmo= github.com/agext/levenshtein v1.2.3/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558= github.com/apparentlymart/go-textseg/v12 v12.0.0/go.mod h1:S/4uRK2UtaQttw1GenVJEynmyUenKwP++x/+DdGV/Ec= -github.com/apparentlymart/go-textseg/v13 v13.0.0 h1:Y+KvPE1NYz0xl601PVImeQfFyEy6iT90AvPUL1NNfNw= -github.com/apparentlymart/go-textseg/v13 v13.0.0/go.mod h1:ZK2fH7c4NqDTLtiYLvIkEghdlcqw7yxLeM89kiTRPUo= -github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew1u1fNQOlOtuGxQY= +github.com/apparentlymart/go-textseg/v15 v15.0.0/go.mod h1:K8XmNZdhEBkdlyDdvbmmsvpAG721bKi0joRfFdHIWJ4= github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY= -github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= -github.com/cloudflare/circl v1.3.3 h1:fE/Qz0QdIGqeWfnwq0RE0R7MI51s0M2E4Ga9kq5AEMs= -github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= +github.com/bgentry/speakeasy v0.2.0 h1:tgObeVOf8WAvtuAX6DhJ4xks4CFNwPDZiqzGqIHE51E= +github.com/bgentry/speakeasy v0.2.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= +github.com/bmatcuk/doublestar/v4 v4.7.1 h1:fdDeAqgT47acgwd9bd9HxJRDmc9UAmPpc+2m0CXv75Q= +github.com/bmatcuk/doublestar/v4 v4.7.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc= +github.com/bufbuild/protocompile v0.4.0 h1:LbFKd2XowZvQ/kajzguUp2DC9UEIQhIq77fZZlaQsNA= +github.com/bufbuild/protocompile v0.4.0/go.mod h1:3v93+mbWn/v3xzN+31nwkJfrEpAUwp+BagBSZWx+TP8= +github.com/cloudflare/circl v1.5.0 h1:hxIWksrX6XN5a1L2TI/h53AGPhNHoUBo+TD1ms9+pys= +github.com/cloudflare/circl v1.5.0/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZh3pJrofs= +github.com/cyphar/filepath-securejoin v0.2.4 h1:Ugdm7cg7i6ZK6x3xDF1oEu1nfkyfH53EtKeQYTC3kyg= +github.com/cyphar/filepath-securejoin v0.2.4/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= -github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= -github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw= -github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= -github.com/go-git/gcfg v1.5.0 h1:Q5ViNfGF8zFgyJWPqYwA7qGFoMTEiBmdlkcfRmpIMa4= -github.com/go-git/go-billy/v5 v5.4.1 h1:Uwp5tDRkPr+l/TnbHOQzp+tmJfLceOlbVucgpTz8ix4= -github.com/go-git/go-git/v5 v5.6.1 h1:q4ZRqQl4pR/ZJHc1L5CFjGA1a10u76aV1iC+nh+bHsk= +github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM= +github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU= +github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= +github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= +github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI= +github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic= +github.com/go-git/go-billy/v5 v5.5.0 h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU= +github.com/go-git/go-billy/v5 v5.5.0/go.mod h1:hmexnoNsr2SJU1Ju67OaNz5ASJY3+sHgFRpCtpDCKow= +github.com/go-git/go-git/v5 v5.12.0 h1:7Md+ndsjrzZxbddRDZjF14qK+NN56sy6wkqaVrjZtys= +github.com/go-git/go-git/v5 v5.12.0/go.mod h1:FTM9VKtnI2m65hNI/TenDDDnUf2Q9FHnXYjuz9i5OEY= github.com/go-test/deep v1.0.3 h1:ZrJSEWsXzPOxaZnFteGEfooLba+ju3FYIbOrS+rQd68= +github.com/go-test/deep v1.0.3/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/protobuf v1.1.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/hashicorp/cli v1.1.6 h1:CMOV+/LJfL1tXCOKrgAX0uRKnzjj/mpmqNXloRSy2K8= +github.com/hashicorp/cli v1.1.6/go.mod h1:MPon5QYlgjjo0BSoAiN0ESeT5fRzDjVRp+uioJ0piz4= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -60,78 +74,74 @@ github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9n github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 h1:1/D3zfFHttUKaCaGKZ/dR2roBXv0vKbSCnssIldfQdI= github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320/go.mod h1:EiZBMaudVLy8fmjf9Npq1dq9RalhveqZG5w/yz3mHWs= -github.com/hashicorp/go-hclog v1.5.0 h1:bI2ocEMgcVlz55Oj1xZNBsVi900c7II+fWDyV9o+13c= -github.com/hashicorp/go-hclog v1.5.0/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= +github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= +github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= -github.com/hashicorp/go-plugin v1.4.9 h1:ESiK220/qE0aGxWdzKIvRH69iLiuN/PjoLTm69RoWtU= -github.com/hashicorp/go-plugin v1.4.9/go.mod h1:viDMjcLJuDui6pXb8U4HVfb8AamCWhHGUjr2IrTF67s= +github.com/hashicorp/go-plugin v1.6.2 h1:zdGAEd0V1lCaU0u+MxWQhtSDQmahpkwOun8U8EiRVog= +github.com/hashicorp/go-plugin v1.6.2/go.mod h1:CkgLQ5CZqNmdL9U9JzM532t8ZiYQ35+pj3b1FD37R0Q= +github.com/hashicorp/go-retryablehttp v0.7.7 h1:C8hUCYzor8PIfXHa4UrZkU4VvK8o9ISHxT2Q8+VepXU= +github.com/hashicorp/go-retryablehttp v0.7.7/go.mod h1:pkQpWZeYWskR+D1tR2O5OcBFOxfA7DoAO6xtkuQnHTk= github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8= github.com/hashicorp/go-uuid v1.0.3/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek= -github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= -github.com/hashicorp/hc-install v0.5.2 h1:SfwMFnEXVVirpwkDuSF5kymUOhrUxrTq3udEseZdOD0= -github.com/hashicorp/hc-install v0.5.2/go.mod h1:9QISwe6newMWIfEiXpzuu1k9HAGtQYgnSH8H9T8wmoI= -github.com/hashicorp/hcl/v2 v2.17.0 h1:z1XvSUyXd1HP10U4lrLg5e0JMVz6CPaJvAgxM0KNZVY= -github.com/hashicorp/hcl/v2 v2.17.0/go.mod h1:gJyW2PTShkJqQBKpAmPO3yxMxIuoXkOF2TpqXzrQyx4= +github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKeRZfjY= +github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= +github.com/hashicorp/hc-install v0.9.0 h1:2dIk8LcvANwtv3QZLckxcjyF5w8KVtiMxu6G6eLhghE= +github.com/hashicorp/hc-install v0.9.0/go.mod h1:+6vOP+mf3tuGgMApVYtmsnDoKWMDcFXeTxCACYZ8SFg= +github.com/hashicorp/hcl/v2 v2.22.0 h1:hkZ3nCtqeJsDhPRFz5EA9iwcG1hNWGePOTw6oyul12M= +github.com/hashicorp/hcl/v2 v2.22.0/go.mod h1:62ZYHrXgPoX8xBnzl8QzbWq4dyDsDtfCRgIq1rbJEvA= github.com/hashicorp/logutils v1.0.0 h1:dLEQVugN8vlakKOUE3ihGLTZJRB4j+M2cdTm/ORI65Y= github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= -github.com/hashicorp/terraform-exec v0.18.1 h1:LAbfDvNQU1l0NOQlTuudjczVhHj061fNX5H8XZxHlH4= -github.com/hashicorp/terraform-exec v0.18.1/go.mod h1:58wg4IeuAJ6LVsLUeD2DWZZoc/bYi6dzhLHzxM41980= -github.com/hashicorp/terraform-json v0.16.0 h1:UKkeWRWb23do5LNAFlh/K3N0ymn1qTOO8c+85Albo3s= -github.com/hashicorp/terraform-json v0.16.0/go.mod h1:v0Ufk9jJnk6tcIZvScHvetlKfiNTC+WS21mnXIlc0B0= -github.com/hashicorp/terraform-plugin-docs v0.14.1 h1:MikFi59KxrP/ewrZoaowrB9he5Vu4FtvhamZFustiA4= -github.com/hashicorp/terraform-plugin-docs v0.14.1/go.mod h1:k2NW8+t113jAus6bb5tQYQgEAX/KueE/u8X2Z45V1GM= -github.com/hashicorp/terraform-plugin-go v0.15.0 h1:1BJNSUFs09DS8h/XNyJNJaeusQuWc/T9V99ylU9Zwp0= -github.com/hashicorp/terraform-plugin-go v0.15.0/go.mod h1:tk9E3/Zx4RlF/9FdGAhwxHExqIHHldqiQGt20G6g+nQ= +github.com/hashicorp/terraform-exec v0.21.0 h1:uNkLAe95ey5Uux6KJdua6+cv8asgILFVWkd/RG0D2XQ= +github.com/hashicorp/terraform-exec v0.21.0/go.mod h1:1PPeMYou+KDUSSeRE9szMZ/oHf4fYUmB923Wzbq1ICg= +github.com/hashicorp/terraform-json v0.22.1 h1:xft84GZR0QzjPVWs4lRUwvTcPnegqlyS7orfb5Ltvec= +github.com/hashicorp/terraform-json v0.22.1/go.mod h1:JbWSQCLFSXFFhg42T7l9iJwdGXBYV8fmmD6o/ML4p3A= +github.com/hashicorp/terraform-plugin-docs v0.19.4 h1:G3Bgo7J22OMtegIgn8Cd/CaSeyEljqjH3G39w28JK4c= +github.com/hashicorp/terraform-plugin-docs v0.19.4/go.mod h1:4pLASsatTmRynVzsjEhbXZ6s7xBlUw/2Kt0zfrq8HxA= +github.com/hashicorp/terraform-plugin-go v0.24.0 h1:2WpHhginCdVhFIrWHxDEg6RBn3YaWzR2o6qUeIEat2U= +github.com/hashicorp/terraform-plugin-go v0.24.0/go.mod h1:tUQ53lAsOyYSckFGEefGC5C8BAaO0ENqzFd3bQeuYQg= github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0= github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow= -github.com/hashicorp/terraform-plugin-sdk/v2 v2.26.1 h1:G9WAfb8LHeCxu7Ae8nc1agZlQOSCUWsb610iAogBhCs= -github.com/hashicorp/terraform-plugin-sdk/v2 v2.26.1/go.mod h1:xcOSYlRVdPLmDUoqPhO9fiO/YCN/l6MGYeTzGt5jgkQ= -github.com/hashicorp/terraform-registry-address v0.2.0 h1:92LUg03NhfgZv44zpNTLBGIbiyTokQCDcdH5BhVHT3s= -github.com/hashicorp/terraform-registry-address v0.2.0/go.mod h1:478wuzJPzdmqT6OGbB/iH82EDcI8VFM4yujknh/1nIs= -github.com/hashicorp/terraform-svchost v0.1.0 h1:0+RcgZdZYNd81Vw7tu62g9JiLLvbOigp7QtyNh6CjXk= -github.com/hashicorp/terraform-svchost v0.1.0/go.mod h1:ut8JaH0vumgdCfJaihdcZULqkAwHdQNwNH7taIDdsZM= -github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE= -github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ= -github.com/huandu/xstrings v1.3.1/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= -github.com/huandu/xstrings v1.3.2/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= -github.com/huandu/xstrings v1.3.3/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= -github.com/huandu/xstrings v1.4.0 h1:D17IlohoQq4UcpqD7fDk80P7l+lwAmlFaBHgOipl2FU= -github.com/huandu/xstrings v1.4.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= -github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/imdario/mergo v0.3.16 h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4= -github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= -github.com/incentro-dc/go-commercelayer-sdk v0.0.4/go.mod h1:7o1L5RRkJ6Fw04+Hvjqt/dCDonYA+it1Leug5rtE+/s= +github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 h1:kJiWGx2kiQVo97Y5IOGR4EMcZ8DtMswHhUuFibsCQQE= +github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0/go.mod h1:sl/UoabMc37HA6ICVMmGO+/0wofkVIRxf+BMb/dnoIg= +github.com/hashicorp/terraform-registry-address v0.2.3 h1:2TAiKJ1A3MAkZlH1YI/aTVcLZRu7JseiXNRHbOAyoTI= +github.com/hashicorp/terraform-registry-address v0.2.3/go.mod h1:lFHA76T8jfQteVfT7caREqguFrW3c4MFSPhZB7HHgUM= +github.com/hashicorp/terraform-svchost v0.1.1 h1:EZZimZ1GxdqFRinZ1tpJwVxxt49xc/S52uzrw4x0jKQ= +github.com/hashicorp/terraform-svchost v0.1.1/go.mod h1:mNsjQfZyf/Jhz35v6/0LWcv26+X7JPS+buii2c9/ctc= +github.com/hashicorp/yamux v0.1.2 h1:XtB8kyFOyHXYVFnwT5C3+Bdo8gArse7j2AQ0DA0Uey8= +github.com/hashicorp/yamux v0.1.2/go.mod h1:C+zze2n6e/7wshOZep2A70/aQU6QBRWJO/G6FT1wIns= +github.com/huandu/xstrings v1.5.0 h1:2ag3IFq9ZDANvthTwTiqSSZLjDc+BedvHPAp5tJy2TI= +github.com/huandu/xstrings v1.5.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= github.com/incentro-dc/go-commercelayer-sdk v0.0.5 h1:+LoAMtNHGyEFWnYXvOLfLtjWaUu0CbZss2fu8P+sLK0= github.com/incentro-dc/go-commercelayer-sdk v0.0.5/go.mod h1:7o1L5RRkJ6Fw04+Hvjqt/dCDonYA+it1Leug5rtE+/s= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= -github.com/jhump/protoreflect v1.6.0 h1:h5jfMVslIg6l29nsMs0D8Wj17RDVdNYti0vDN/PZZoE= +github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= +github.com/jhump/protoreflect v1.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c= +github.com/jhump/protoreflect v1.15.1/go.mod h1:jD/2GMKKE6OqX8qTjhADU1e6DShO+gavG9e0Q693nKo= github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= +github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= -github.com/ladydascalie/currency v1.6.0 h1:r5s/TMCYcpn6jPRHLV3F8nI7YjpY8trvstfuixxiHns= -github.com/ladydascalie/currency v1.6.0/go.mod h1:C9eil8e6tthhBb5yhwoH1U0LT5hm1BP/g+v/V82KYjY= -github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/ladydascalie/currency v1.8.0 h1:dGPliIMwQ5OogcQRHSj8Teau8QuWO3s5E9PJAuW9ysI= +github.com/ladydascalie/currency v1.8.0/go.mod h1:C9eil8e6tthhBb5yhwoH1U0LT5hm1BP/g+v/V82KYjY= github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= -github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= -github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= -github.com/mitchellh/cli v1.1.5 h1:OxRIeJXpAMztws/XHlN2vu6imG5Dpq+j61AzAX5fLng= -github.com/mitchellh/cli v1.1.5/go.mod h1:v8+iFts2sPIKUV1ltktPXMCC8fumSKFItNcD2cLtRR4= -github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc= +github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s= github.com/mitchellh/go-testing-interface v1.14.1 h1:jrgshOhYAUVNMAJiKbEu7EqAwgJJ2JqpQmpLJOu07cU= @@ -140,77 +150,77 @@ github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQ github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/reflectwalk v1.0.0/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= github.com/oklog/run v1.1.0 h1:GEenZ1cK0+q0+wsJew9qUg/DyD8k3JzYsZAi5gYi2mA= github.com/oklog/run v1.1.0/go.mod h1:sVPdnTZT1zYwAJeCMu2Th4T21pA3FPOQRfWjQlk7DVU= github.com/pjbgf/sha1cd v0.3.0 h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4= +github.com/pjbgf/sha1cd v0.3.0/go.mod h1:nZ1rrWOcGJ5uZgEEVL1VUM9iRQiZvWdbZjkKyFzPPsI= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/posener/complete v1.2.3 h1:NP0eAhjcjImqslEwo/1hq7gpajME0fTLTezBKDqfXqo= github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= -github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= -github.com/russross/blackfriday v1.6.0 h1:KqfZb0pUVN2lYqZUYRddxF4OR8ZMURnJIG5Y3VRLtww= -github.com/russross/blackfriday v1.6.0/go.mod h1:ti0ldHuxg49ri4ksnFxlkCfN+hvslNlmVHqNRXXJNAY= -github.com/sergi/go-diff v1.2.0 h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ= -github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= -github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8= -github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= -github.com/skeema/knownhosts v1.1.0 h1:Wvr9V0MxhjRbl3f9nMnKnFfiWTJmtECJ9Njkea3ysW0= -github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA= -github.com/spf13/cast v1.5.1/go.mod h1:b9PdjNptOpzXr7Rq1q9gJML/2cdGQAo69NKzQ10KN48= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ= +github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= +github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= +github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= +github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k= +github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+DMd9qYNcwME= +github.com/skeema/knownhosts v1.2.2 h1:Iug2P4fLmDw9f41PB6thxUkNUkJzB5i+1/exaj40L3A= +github.com/skeema/knownhosts v1.2.2/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= +github.com/spf13/cast v1.7.0 h1:ntdiHjuueXFgm5nzDRdOS4yfT43P5Fnud6DH50rz/7w= +github.com/spf13/cast v1.7.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.2 h1:4jaiDzPyXQvSd7D0EjG45355tLlV3VOECpq10pLC+8s= github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/vmihailenco/msgpack v3.3.3+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk= github.com/vmihailenco/msgpack v4.0.4+incompatible h1:dSLoQfGFAo3F6OoNhwUmLwVgaUXK79GlxNBwueZn0xI= github.com/vmihailenco/msgpack v4.0.4+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk= -github.com/vmihailenco/msgpack/v5 v5.3.5 h1:5gO0H1iULLWGhs2H5tbAHIZTV8/cYafcFOr9znI5mJU= -github.com/vmihailenco/msgpack/v5 v5.3.5/go.mod h1:7xyJ9e+0+9SaZT0Wt1RGleJXzli6Q/V5KbhBonMG9jc= +github.com/vmihailenco/msgpack/v5 v5.4.1 h1:cQriyiUvjTwOHg8QZaPihLWeRAAVoCpE00IUPn0Bjt8= +github.com/vmihailenco/msgpack/v5 v5.4.1/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok= github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g= github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= +github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -github.com/zclconf/go-cty v1.13.2 h1:4GvrUxe/QUDYuJKAav4EYqdM47/kZa672LwmXFmEKT0= -github.com/zclconf/go-cty v1.13.2/go.mod h1:YKQzy/7pZ7iq2jNFzy5go57xdxdWoLLpaEp4u238AE0= +github.com/yuin/goldmark v1.7.8 h1:iERMLn0/QJeHFhxSt3p6PeN9mGnvIKSpG9YYorDMnic= +github.com/yuin/goldmark v1.7.8/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E= +github.com/yuin/goldmark-meta v1.1.0 h1:pWw+JLHGZe8Rk0EGsMVssiNb/AaPMHfSRszZeUeiOUc= +github.com/yuin/goldmark-meta v1.1.0/go.mod h1:U4spWENafuA7Zyg+Lj5RqK/MF+ovMYtBvXi1lBb2VP0= +github.com/zclconf/go-cty v1.15.0 h1:tTCRWxsexYUmtt/wVxgDClUe+uQusuI443uL6e+5sXQ= +github.com/zclconf/go-cty v1.15.0/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE= +github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo= +github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM= +go.abhg.dev/goldmark/frontmatter v0.2.0 h1:P8kPG0YkL12+aYk2yU3xHv4tcXzeVnN+gU0tJ5JnxRw= +go.abhg.dev/goldmark/frontmatter v0.2.0/go.mod h1:XqrEkZuM57djk7zrlRUB02x8I5J0px76YjkOzhB4YlU= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20200414173820-0848c9571904/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= -golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= -golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g= -golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= +golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw= +golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U= +golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c h1:7dEasQXItcW1xKJ2+gg5VOiBnqWrJc+rq0DPKyvvdbY= +golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c/go.mod h1:NQtJDoLvd6faHhE7m4T/1IY708gDefGGjR/iUW8yQQ8= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk= -golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.21.0 h1:vvrHzRwRfVKSiLrG+d4FMl/Qi4ukBCE6kZlTUkDYRT0= +golang.org/x/mod v0.21.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= -golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M= -golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/oauth2 v0.8.0 h1:6dkIjl3j3LtZ/O3sTgZTMsLKSftL/B8Zgq4huOIIUu8= -golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= +golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4= +golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU= +golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs= +golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= +golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -221,49 +231,43 @@ golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= -golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo= +golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM= +golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.26.0 h1:v/60pFQmzmT9ExmjDv2gGIfi3OqfKoEP6I5+umXlbnQ= +golang.org/x/tools v0.26.0/go.mod h1:TPVVj70c7JJ3WCazhD8OdXcZg/og+b9+tH/KxylGwH0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc h1:XSJ8Vk1SWuNr8S18z1NZSziL0CPIXLCCMDOEFtHBOFc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/grpc v1.55.0 h1:3Oj82/tFSCeUrRTg/5E/7d/W5A1tj6Ky1ABAuZuv5ag= -google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 h1:zciRKQ4kBpFgpfC5QQCVtnnNAcLIqweL7plyZRQHVpI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/grpc v1.67.1 h1:zWnc1Vrcno+lHZCOofnIMvycFcc0QRGIzm9dhnDX68E= +google.golang.org/grpc v1.67.1/go.mod h1:1gLDyUQU7CTLJI90u3nXZ9ekeghjeM7pTDZlqFNg2AA= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= -google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.35.1 h1:m3LfL6/Ca+fqnjnlqQXNpFPABW1UD7mjh8KO2mKFytA= +google.golang.org/protobuf v1.35.1/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= +gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= From 1d4353d68129c919572c98d7d0ff43d9f05b279b Mon Sep 17 00:00:00 2001 From: Thomas De Meyer Date: Thu, 24 Oct 2024 16:31:54 +0200 Subject: [PATCH 2/4] feat: updated go.mod --- go.mod | 2 +- go.sum | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 18e9285..48d2a96 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ require ( github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 github.com/hashicorp/terraform-plugin-docs v0.19.4 github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 - github.com/incentro-dc/go-commercelayer-sdk v0.0.5 + github.com/incentro-dc/go-commercelayer-sdk v0.0.6 github.com/ladydascalie/currency v1.8.0 github.com/stretchr/testify v1.9.0 golang.org/x/oauth2 v0.23.0 diff --git a/go.sum b/go.sum index 56ac800..37dfdfd 100644 --- a/go.sum +++ b/go.sum @@ -114,8 +114,8 @@ github.com/hashicorp/yamux v0.1.2 h1:XtB8kyFOyHXYVFnwT5C3+Bdo8gArse7j2AQ0DA0Uey8 github.com/hashicorp/yamux v0.1.2/go.mod h1:C+zze2n6e/7wshOZep2A70/aQU6QBRWJO/G6FT1wIns= github.com/huandu/xstrings v1.5.0 h1:2ag3IFq9ZDANvthTwTiqSSZLjDc+BedvHPAp5tJy2TI= github.com/huandu/xstrings v1.5.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= -github.com/incentro-dc/go-commercelayer-sdk v0.0.5 h1:+LoAMtNHGyEFWnYXvOLfLtjWaUu0CbZss2fu8P+sLK0= -github.com/incentro-dc/go-commercelayer-sdk v0.0.5/go.mod h1:7o1L5RRkJ6Fw04+Hvjqt/dCDonYA+it1Leug5rtE+/s= +github.com/incentro-dc/go-commercelayer-sdk v0.0.6 h1:5etaXt2KvelanAO6jsO4BnjoknqJ6Ou+KeTKmlrrh68= +github.com/incentro-dc/go-commercelayer-sdk v0.0.6/go.mod h1:B6W62jgA65x+INJx5NvC0PyidLM18VFPWy7OxQJj7K0= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= github.com/jhump/protoreflect v1.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c= @@ -163,8 +163,8 @@ github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSg github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ= github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= -github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= -github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= +github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII= +github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k= @@ -262,8 +262,9 @@ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ google.golang.org/protobuf v1.35.1 h1:m3LfL6/Ca+fqnjnlqQXNpFPABW1UD7mjh8KO2mKFytA= google.golang.org/protobuf v1.35.1/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= From 12b79b39e32b90fe9d2fd6688275cd77d5211e8c Mon Sep 17 00:00:00 2001 From: Thomas De Meyer Date: Thu, 24 Oct 2024 17:57:05 +0200 Subject: [PATCH 3/4] feat: refreshed recorded stubs --- commercelayer/resource_checkout_com_test.go | 2 + commercelayer/resource_payment_method_test.go | 10 ++--- docker-compose.yml | 8 +++- ...-184cb485-be00-4590-af90-6524d31e6338.json | 40 +++++++++++++++++ ...-1cdf04a4-a664-428f-88bd-44d9991cd823.json | 40 +++++++++++++++++ ...-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json | 40 +++++++++++++++++ ...-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json | 40 +++++++++++++++++ ...-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json | 40 +++++++++++++++++ ...-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json | 40 +++++++++++++++++ ...-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json | 40 +++++++++++++++++ ...-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json | 38 ++++++++++++++++ ...-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json | 32 +++++++++++++ ...-702b83aa-beb1-43a0-8db8-045e75e30b02.json | 38 ++++++++++++++++ ...-84bb3e51-cd54-4890-879a-1f965aef5588.json | 40 +++++++++++++++++ ...-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json | 36 +++++++++++++++ ...-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json | 38 ++++++++++++++++ ...-51616306-4952-4db5-9eba-1d4b0af93ab5.json | 36 +++++++++++++++ ...-5219acae-078d-47d5-975c-b3701741b752.json | 32 +++++++++++++ ...-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json | 38 ++++++++++++++++ ...-a5ed938c-498c-4161-b650-34fa3ba00c83.json | 38 ++++++++++++++++ ...-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json | 38 ++++++++++++++++ ...-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json | 38 ++++++++++++++++ ...-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json | 38 ++++++++++++++++ ...-a528706c-5cf0-4a59-a8be-60569adf8081.json | 32 +++++++++++++ ...-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json | 37 +++++++++++++++ ...-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json | 36 +++++++++++++++ ...-62c20dd8-2870-4417-b596-4fb176cfb377.json | 32 +++++++++++++ ...-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json | 38 ++++++++++++++++ ...-c22bc5ea-12bd-4491-8808-e805d23e929e.json | 38 ++++++++++++++++ ...-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json | 38 ++++++++++++++++ ...-32efe943-750b-4a6b-b710-ba844e059f32.json | 38 ++++++++++++++++ ...-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json | 37 +++++++++++++++ ...-869313a5-5279-4e94-b7c4-c7c01fdf2161.json | 32 +++++++++++++ ...-86d5413b-2a85-4926-9b65-9070041b471d.json | 38 ++++++++++++++++ ...-0cda247c-05a2-4b99-bb5d-885db5710ea4.json | 38 ++++++++++++++++ ...-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json | 32 +++++++++++++ ...-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json | 37 +++++++++++++++ ...-ff5e84a9-3151-45db-8033-5935b02c2838.json | 38 ++++++++++++++++ ...-168afcac-c58b-434d-bd68-af28b2a87023.json | 38 ++++++++++++++++ ...-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json | 32 +++++++++++++ ...-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json | 38 ++++++++++++++++ ...-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json | 37 +++++++++++++++ ...-1951ffa5-fb14-4e22-960f-072d26f88ab8.json | 40 +++++++++++++++++ ...-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json | 40 +++++++++++++++++ ...-4298d60c-1077-498b-b71d-0d991d2f97cd.json | 38 ++++++++++++++++ ...-638ff192-a608-4203-9d87-f959b656ce38.json | 38 ++++++++++++++++ ...-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json | 40 +++++++++++++++++ ...-946715e8-e818-424d-9ad8-e5afe9449325.json | 36 +++++++++++++++ ...-b059e544-8b22-458a-b96b-51759af06f0e.json | 32 +++++++++++++ ...-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json | 38 ++++++++++++++++ ...-023161d7-1588-4ac2-b760-2fd7797bf189.json | 38 ++++++++++++++++ ...-4d92824f-0c17-4087-afc2-d7f143a2feec.json | 38 ++++++++++++++++ ...-63504a6f-b242-4d46-a43d-64a184c69189.json | 38 ++++++++++++++++ ...-7ef30764-8a25-46ee-a0d0-79f611d521cc.json | 32 +++++++++++++ ...-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json | 36 +++++++++++++++ ...-25a61be3-f6a6-403f-bab6-7d86ba14b9df.json | 45 ------------------- ...-2f37dc65-d82f-41f4-bd04-2a0e81d4e4e5.json | 45 ------------------- ...-7112a321-6692-43ba-a92d-093a56e49891.json | 45 ------------------- ...-d92285bb-0c54-40c0-bbc1-29f22e4d69e1.json | 45 ------------------- ...-e5340646-83a7-4069-9479-8d9e8d7f6abd.json | 45 ------------------- ...-eee94f55-882b-47fc-847c-f0cfe371d21c.json | 45 ------------------- ...-f308acfb-17d8-4c63-a275-74105444d299.json | 45 ------------------- ...-16977d61-78e4-4496-aeba-5b729135daff.json | 42 ----------------- ...-7bdbdd50-b89f-485c-a732-6ad99a9dc51e.json | 43 ------------------ ...-8403a2b2-f948-4ef3-b233-ead9108ebc02.json | 37 --------------- ...-f2c4f137-08da-4a53-9d01-8ff15b0a03fb.json | 43 ------------------ ...-56702f72-2a25-43ce-aec4-d0e5ece43594.json | 43 ------------------ ...-7d6dc891-3f13-4531-9194-3c0f274e709a.json | 43 ------------------ ...-a9bc5064-7ae8-432a-aa16-921a96c0d7a6.json | 37 --------------- ...-c94c8140-916b-4f90-a92c-3ccd1760a42a.json | 42 ----------------- ...-0f3efcca-58fc-4630-9979-e6f9ed14228b.json | 43 ------------------ ...-47dc04a6-f19e-47e1-a214-edbfc7b680f4.json | 43 ------------------ ...-639d713f-a440-42af-81b5-25cc3b6005b2.json | 43 ------------------ ...-86abf6a5-96a8-4be6-a587-87677ff8b7f0.json | 37 --------------- ...-91edd378-2687-43ea-a8a9-033a73515e05.json | 29 ------------ ...-5ddc7d3f-e8b0-482d-b358-835904e45f88.json | 37 --------------- ...-9d118ae4-e2ce-4921-a86f-10df9516193e.json | 42 ----------------- ...-a8b46919-9be0-421d-b8bf-cbb39eb83005.json | 43 ------------------ ...-fd76c9a4-9132-4418-9b44-79990e9ed310.json | 43 ------------------ ...-bb69d6ed-2dcc-4987-80b1-39c64deaeb3b.json | 37 --------------- ...-90c97cd3-7172-42ba-ae23-a34928965860.json | 37 --------------- ...-0076f173-b51e-4a01-ad16-3a619d67dabc.json | 42 ----------------- ...-844811e1-1634-4616-abba-6b26bf0ce3d0.json | 43 ------------------ ...-e12bb6cc-476a-48a3-95b7-995c7c791044.json | 43 ------------------ ...-f51da104-ac77-4896-9819-375058591af2.json | 37 --------------- ...-1a88a5d0-fe3c-4bc7-b026-d545ccad6625.json | 43 ------------------ ...-258a9146-190d-4fea-b3d8-52eef2f6a467.json | 29 ------------ ...-81f31cae-321e-4e70-a487-4f195f2fb118.json | 43 ------------------ ...-aa326fc8-dc07-4b8b-8e81-6e8683219642.json | 37 --------------- ...-c23a2eb7-75d5-45cb-9f36-5639d8c1ce7b.json | 43 ------------------ ...-d5851a20-c7de-4f79-9eee-120456c1bcf6.json | 45 ------------------- ...-268f07e8-b9df-4041-a17c-941b20d9efa0.json | 43 ------------------ ...-2f1862cc-02ed-4c18-8959-11c1ab3ae192.json | 43 ------------------ ...-560d038f-94d8-4fd1-9f9e-9f493758b413.json | 29 ------------ ...-695cdb6d-d976-4ad3-9ca8-2d0bebf11e9d.json | 43 ------------------ ...-e35e467a-7b87-4a98-bd8c-0bce4ba1ab34.json | 37 --------------- ...-621039b5-4c8d-4848-8425-a455edc424c6.json | 38 ---------------- ...-c8b743c4-6af9-4088-8b67-fa301c4462fd.json | 45 ------------------- ...-12960e84-c7bc-4288-b60d-354aa2ecda71.json | 36 --------------- ...-28a058ea-bb52-4655-92af-59a4977adeba.json | 34 -------------- ...-4308c025-0363-4f0f-8de0-e0adb7b2021a.json | 38 ---------------- ...-bb8edc71-0b10-418c-92f1-f702135e26ce.json | 36 --------------- ...-eab7c0ee-e5ff-4e04-a760-d900b129b7ec.json | 30 ------------- ...-fb4f8bc5-d542-40dd-ae3e-7acb2e4c130c.json | 36 --------------- ...-097f9a1a-3842-455e-a06a-159f05bd6c45.json | 43 ------------------ ...-212cb7ae-2c49-4581-9fac-3c2a8b9f8977.json | 43 ------------------ ...-603eaf2f-f091-4ea3-b875-01ebaf7e72d8.json | 43 ------------------ ...-68e2e854-fad2-427d-8c6a-43f03a3b7200.json | 41 ----------------- ...-a32ad473-c230-45a5-940f-608e9fab4ddc.json | 37 --------------- ...-2d23db11-9254-48a1-9aa8-14554a21bacd.json | 45 ------------------- ...-5539dd6e-6c4b-45c5-860b-605b9f85a024.json | 43 ------------------ ...-7062b32c-1e49-4ca8-a8f2-d8f1049d4961.json | 45 ------------------- ...-80eec3e9-4aba-4baf-a067-84b398054b98.json | 29 ------------ ...-918c3e37-3bdb-41ca-8344-ac63083bf5bd.json | 43 ------------------ ...-d207a45c-6c5f-4412-9c68-bf16f741443f.json | 43 ------------------ ...-f53bf002-b613-4e66-ba83-5583092d60f7.json | 37 --------------- ...-e8f96715-79d1-4b55-9957-0fcd8f1e88ed.json | 45 ------------------- ...-100b314d-eb36-43d5-87b2-097143df4d64.json | 45 ------------------- ...-3484dc4f-6896-4e1a-bdde-bf5bdcbaada2.json | 43 ------------------ ...-5b2eb3f3-84f7-4a60-9e79-df72bdf2a959.json | 37 --------------- ...-79737898-d52e-4194-bfff-ac28e5d6a089.json | 29 ------------ ...-a8c3f972-f5c6-492b-8d0b-d3712847214b.json | 43 ------------------ ...-dc938ecd-fc31-4550-a591-9dbb11846e1a.json | 43 ------------------ ...-e113d6da-e5c2-461e-88d7-0f0ca961c8f3.json | 45 ------------------- ...-066057a3-b253-4a83-a693-d9147395315d.json | 29 ------------ ...-070e1243-66fd-4bed-a25d-1da3215d8319.json | 43 ------------------ ...-08f5d13e-2613-4123-9283-f59c176df452.json | 43 ------------------ ...-26a41511-f6d1-4a73-8958-578244518c46.json | 37 --------------- ...-2a1677de-8567-465e-8dc1-9f70c0ec0d2b.json | 43 ------------------ ...-7a822efe-1fa1-470e-b0f2-6339eed70614.json | 45 ------------------- ...-e16e9b84-5285-442e-a0ac-77fd9a387cba.json | 45 ------------------- ...-0faa0959-e7de-4e87-ae7f-8cf1a6c0d44d.json | 37 --------------- ...-8c6c84ef-f21a-4765-a814-7fa369ef0e54.json | 43 ------------------ ...-a483b005-e976-470f-a04a-5b99e70326d9.json | 29 ------------ ...-af54d9e4-99a6-47d5-b9f6-168739c49f81.json | 43 ------------------ ...-cf31a45d-1008-4783-b3dc-a29889920c3a.json | 43 ------------------ ...-d3720782-9327-4a09-99b2-de038a48ddd0.json | 45 ------------------- ...-b16371b2-dd4d-41cf-bbbb-53c707faa8f7.json | 45 ------------------- ...-0ef7dff1-0147-44fb-bcb1-26750da3c1a8.json | 29 ------------ ...-67e53939-2694-4577-9f08-d991f054a3c3.json | 43 ------------------ ...-90825a4a-2663-4a68-99f7-f47977982abf.json | 43 ------------------ ...-9bfbb82b-f9ab-4415-825d-f2d92a28d12c.json | 37 --------------- ...-aea73f3c-f678-4edc-8f7e-62a2d37a8666.json | 45 ------------------- ...-c9a2ed9c-5fef-46c9-bc4d-0941cba07f79.json | 43 ------------------ ...-a3e52a1b-513d-427e-a68f-b77e7de71276.json | 45 ------------------- ...-3c14ed0c-f9db-4c5b-b37e-08a64c982b42.json | 43 ------------------ ...-4d64cb69-0b63-4507-b245-c97a60f8a579.json | 43 ------------------ ...-55d80429-dab9-4d47-91b8-b0db0030fb54.json | 43 ------------------ ...-b2c46411-a7e9-4fed-9da9-39d373b7572e.json | 45 ------------------- ...-cc685792-2c98-4b78-85ad-13303cf9d565.json | 29 ------------ ...-d00e453f-8f4f-4d13-9087-7d4a157462e8.json | 43 ------------------ ...-e2f1f9e5-379c-4536-a50d-c062fec806e9.json | 43 ------------------ ...-e9350814-dd16-48ee-b44d-d033413e579a.json | 45 ------------------- ...-f46e8d06-a8fa-4250-b501-bf0d592bd220.json | 37 --------------- ...-864b9686-039f-43c7-8261-d3ea51126437.json | 45 ------------------- ...-cea22f02-8bf8-4caf-9752-203b67824d90.json | 45 ------------------- ...-191acf94-6496-4232-8c69-4b7583cba45e.json | 45 ------------------- ...-28bf57ab-89b7-4a21-bd2b-6f7ecee52aa5.json | 37 --------------- ...-8b7824f0-3d3d-4009-8fb7-9b3a0b8915b8.json | 43 ------------------ ...-95ba1085-13d5-4c49-a0b4-8d2c10a15530.json | 43 ------------------ ...-a8a60b10-2a5b-4b0d-805f-7c16c63155e5.json | 43 ------------------ ...-cf3085dc-9224-4e06-a43a-2e5779f50680.json | 29 ------------ ...-47849fdf-19dc-4e61-814a-06cb16921928.json | 37 --------------- ...-6c500a21-afd1-46c7-826c-75e810a07f10.json | 43 ------------------ ...-d0b16e33-0107-47cc-be30-99d66392307b.json | 42 ----------------- ...-fa9b3e2d-ef1f-44e6-9343-77b57924986d.json | 43 ------------------ ...-c56c2237-888b-4ce0-82c9-15fc433190af.json | 45 ------------------- ...-6caf9df7-62f2-4495-9e1e-608f402958e4.json | 37 --------------- ...-7ad4c770-2354-4029-be59-68b6a8a02f39.json | 43 ------------------ ...-8151ce4f-2440-41db-b2bc-716b6645dd10.json | 29 ------------ ...-935c3efc-7aa2-45f1-81bd-217d3f559677.json | 43 ------------------ ...-c68059e3-21cd-4cbf-b578-ab0052a33d21.json | 43 ------------------ ...-cc7d3848-3470-40f5-b0ca-6ae8d2e6bc45.json | 45 ------------------- ...-5a109196-5a4d-4b09-bbc2-b0e2520db331.json | 45 ------------------- ...-94b2c558-347f-4c44-a2f3-e2954d942c3f.json | 45 ------------------- ...-bedd7f38-5d9a-4c84-b1b3-69e54f48573e.json | 45 ------------------- ...-d95db2cb-06ab-40db-af2a-88dcf5934a98.json | 45 ------------------- ...-f2a8cb9f-3ade-4632-ae75-5240ea02a269.json | 37 --------------- ...-1f6e3fb8-3841-48c2-9d71-637297294397.json | 44 ------------------ ...-2f9a72ed-9edd-4131-9697-0d917ee55cc2.json | 44 ------------------ ...-5bca1590-b914-48db-877c-00548a09c45f.json | 44 ------------------ ...-92c7725f-6087-47b7-8b96-9798f4f34492.json | 45 ------------------- ...-ec130d19-98fd-4e06-b354-9d3bc0c79fc9.json | 44 ------------------ ...-fa03e5b7-7560-43ad-aa12-c48fcd81f770.json | 29 ------------ ...-fbb528ae-9019-4584-9b51-871a6ea136dd.json | 37 --------------- ...-07ac51ca-5765-48d3-9cdb-172fbf9b836b.json | 43 ------------------ ...-58d1fe92-5e4d-40c5-aefa-9059e0a1a68d.json | 44 ------------------ ...-6ad6f144-da7d-46f3-8c52-0f2d124abce8.json | 44 ------------------ ...-6e52c58d-09b4-453a-9847-788c6664ee4a.json | 37 --------------- ...-8fe15a75-1d0a-45fa-8d44-fd0dfaa2e58e.json | 37 --------------- ...-1e6aea21-ae68-4e18-9930-b26584b622e4.json | 37 --------------- ...-422072e2-0b36-4a91-9dba-2e6b881b8749.json | 44 ------------------ ...-4220b055-95bd-4565-94d3-f42b7791bca5.json | 43 ------------------ ...-63c34fa3-662d-4034-80ca-b39bf9cd7756.json | 44 ------------------ ...-3533ec97-599d-428a-92b9-14b7366e526f.json | 44 ------------------ ...-51405b3d-edcf-4542-acdc-cbfb417a7e88.json | 43 ------------------ ...-aa16d6e2-7191-4c12-ab35-bbb3d3d4ecec.json | 44 ------------------ ...-c64972f9-cea5-4c35-af5e-e526db122466.json | 37 --------------- ...-528a525c-c075-495a-ada4-a4e521ec7d9d.json | 45 ------------------- ...-03149b5e-c716-4cb2-97de-b9bb97a7a90f.json | 43 ------------------ ...-3c50b3fd-faa2-4c9f-b0a5-f8931991cc5c.json | 43 ------------------ ...-44d7e38a-23f9-4d6b-a49b-b4a743a56e48.json | 43 ------------------ ...-472a92e2-d052-4a8a-ba32-8debdc36b091.json | 45 ------------------- ...-a5fabdc9-4721-44de-8bcb-5bbf404576c4.json | 29 ------------ ...-f3b38f69-82d7-44f7-be21-28acbb787248.json | 37 --------------- ...-0214ebad-deb8-44f9-8df2-d85e662dc16c.json | 45 ------------------- ...-25127a56-850a-4feb-9479-07bffbd320fc.json | 37 --------------- ...-94d41b5a-6e7f-48f6-ba70-2b619c9cccb8.json | 29 ------------ ...-a3c0f827-0df6-484c-b589-d49e280c0cba.json | 43 ------------------ ...-ce9ab1f9-acab-4d2f-a759-558906f9a64b.json | 45 ------------------- ...-d1a7bbdc-f900-499b-a569-16b60b33b36e.json | 43 ------------------ ...-d7eba83a-0b98-4659-988f-4cb033411421.json | 43 ------------------ ...-94e2b9e6-a645-4e18-b705-b5dcffa092f3.json | 45 ------------------- ...-05cf4ccc-35db-4dee-b1c6-b3a0df9935dc.json | 29 ------------ ...-6812f523-3ac4-4a8e-a101-d4fb2bb0e827.json | 43 ------------------ ...-70ce6a02-769f-4915-9cf1-a5ab30ddd3ba.json | 37 --------------- ...-94e1997a-36b0-4bbd-afc3-1c3b500a40bb.json | 43 ------------------ ...-a92c514a-a3cd-4d1c-9083-4302ac3f2341.json | 43 ------------------ ...-bb703941-bf69-41f6-89ba-057aed10541c.json | 45 ------------------- ...-2fa2b109-6984-4015-835e-7cb74b9c1505.json | 45 ------------------- ...-062563ba-413a-4c0c-abe0-c0571a952542.json | 43 ------------------ ...-15463325-b2f7-4455-896a-7316a88c9e78.json | 43 ------------------ ...-8d454db1-8ccf-466e-91d6-74aa94a3abda.json | 37 --------------- ...-bd619945-ee42-46b7-94de-5a90016e80cf.json | 43 ------------------ ...-c35dae24-9006-4f59-ae65-491d330f5aa2.json | 29 ------------ ...-c7a08499-eb30-4180-9691-9d68b6c7dc1b.json | 45 ------------------- ...-dfa8f01b-0dfe-4ef2-ba9c-9c81d8166136.json | 45 ------------------- ...-0fa21d8b-2810-4b8d-90a9-e091e902454e.json | 43 ------------------ ...-206b12f8-7a5e-41c1-9d5c-490c84b6f6e6.json | 29 ------------ ...-2bff6c22-9f47-4e32-b370-fbc57f7dfe65.json | 37 --------------- ...-87eeb010-4bbd-44c4-9d4f-2826f7f6cff8.json | 43 ------------------ ...-b44ae255-b7fb-4e49-8b0a-f9ecd3a8bfc9.json | 45 ------------------- ...-b989707c-ee60-46c2-a3da-d637a4f5f5ca.json | 43 ------------------ ...-fb4ad115-000f-4990-af5a-8791534719bf.json | 45 ------------------- ...-1ef1efa7-4960-44dc-9563-8bab193977dc.json | 44 ------------------ ...-36609b43-f6cc-419d-9de1-9f757dad740d.json | 44 ------------------ ...-6dc4cfee-fdaa-4ea8-8b81-3060898f812a.json | 44 ------------------ ...-78390b15-f2f4-45db-982b-68db146067d2.json | 45 ------------------- ...-d47ec8b3-507c-453e-8bce-a8196a3fbb9c.json | 42 ----------------- ...-f0b9a1d5-d675-4b19-b293-9ede309e7bf4.json | 37 --------------- ...-06aada02-1bd0-40e7-bf89-a1f336a97c79.json | 37 --------------- ...-dbaa185d-640b-4a35-9554-fbda06ed2191.json | 29 ------------ ...-0feb3097-e9b1-4304-b2f5-e1b62213327b.json | 45 ------------------- ...-4956f8ea-adc5-44be-9f5e-956143d88e28.json | 45 ------------------- ...-41b09d25-51a6-4292-b44d-602d9dae8bfb.json | 37 --------------- ...-78084daf-481d-4fa4-b2f5-39f51bba0ed3.json | 37 --------------- ...-040cdc45-42ce-4b15-8f4b-1f72d2cad893.json | 43 ------------------ ...-1cd7f304-3fd7-4719-9657-467df0573826.json | 43 ------------------ ...-48096250-fd31-45c4-aac5-f56aa2df872a.json | 45 ------------------- ...-9d59242a-20a4-457b-9777-996c5c976c2b.json | 43 ------------------ ...-aea00c4c-6fd7-4e1e-ba0f-d4925798b594.json | 37 --------------- ...-c5430b6a-5f3e-4005-a02e-443ede2e6fd3.json | 29 ------------ ...-3208e015-864d-44c7-911c-493be21b92fd.json | 43 ------------------ ...-669be6ce-657a-4c9c-beef-b250d58a2c2c.json | 42 ----------------- ...-737d514f-c481-4fea-aacf-8631af573443.json | 37 --------------- ...-acd49536-c91a-4e6b-a8ad-89f051a6571f.json | 43 ------------------ ...-58acae4f-e109-4141-a4ba-1530c14ad278.json | 45 ------------------- ...-8f4df94f-e7d6-4f95-8903-cd794cebff61.json | 43 ------------------ ...-924d621f-a43e-443f-95f8-b901ac84fc3b.json | 37 --------------- ...-b831936c-d60a-41c3-95f9-42599acbad80.json | 43 ------------------ ...-c33407f3-a1aa-452b-a019-1d944db13b73.json | 45 ------------------- ...-c38b230b-7211-49a4-8618-6345e26b846a.json | 41 ----------------- ...-df202dc1-d340-4e78-9262-73fec3f45ead.json | 43 ------------------ ...-dfe48b11-07d9-436a-9b61-489f81014d21.json | 45 ------------------- ...-04d73d89-d2ea-4e1f-b605-7f16a5d0e6be.json | 37 --------------- ...-252c4cfd-15da-46ce-8403-1169205c0384.json | 45 ------------------- ...-7681a57a-b32a-4131-9429-db47b5d5a614.json | 43 ------------------ ...-8512ea0d-060d-4f45-a4e0-a1117fe9e412.json | 43 ------------------ ...-dcef915b-9a82-4820-bb8b-e90db2d7888d.json | 43 ------------------ ...-edf07213-b3c4-4e75-8ad9-a64fa22e1854.json | 29 ------------ ...-0263a08b-a36c-41cd-9de8-266fbf5bc579.json | 45 ------------------- ...-39857f59-85e3-4c1e-8d6c-06f6121fdede.json | 45 ------------------- ...-0a14812d-940b-4999-a507-e9ddbc1f76a0.json | 37 --------------- ...-20040aeb-bd2c-4c30-aef0-992a97d2b0e1.json | 44 ------------------ ...-75e6b904-dc0a-4aa0-87e1-9440407bdabc.json | 43 ------------------ ...-b2e705e8-30de-4395-8251-60e546bcedf9.json | 37 --------------- ...-c9cbbd51-97d2-48db-820b-a02acb1f8d9f.json | 44 ------------------ ...-0b81927d-d20c-4b6e-95fd-4ecd283ca9f5.json | 44 ------------------ ...-3979ebb4-0d20-4b11-9960-0c4516ad1584.json | 44 ------------------ ...-5244886e-c186-403d-84c0-9fc3a768f98b.json | 37 --------------- ...-6e6dc866-0815-4de7-8294-b33c65f5ced4.json | 45 ------------------- ...-6f568bde-b7c3-4878-8d1f-73ba6523558e.json | 44 ------------------ ...-c1d30110-8c63-46cc-bb93-5a154d65633c.json | 29 ------------ ...-8f012d3b-d238-46d3-93b2-e438c217944a.json | 37 --------------- ...-5e57effb-1ce3-4a7c-bc5e-fef4a43fc23c.json | 45 ------------------- ...-1bc5d3bf-6a3b-4ff7-bfa1-ddb18b00244b.json | 43 ------------------ ...-796f9fe4-e933-487b-a67c-6653f89ad72a.json | 37 --------------- ...-a53b0bc0-db10-4a79-ae70-1d96c0647951.json | 43 ------------------ ...-c351b018-c4ce-431f-bad4-30beaa18c7c2.json | 29 ------------ ...-f3f6c6a8-ee15-4253-a824-1e6bf41fb41f.json | 45 ------------------- ...-fc77fd13-2b05-4713-a00e-f138eb4b8299.json | 43 ------------------ ...-445f70c6-e8a2-40e3-a64a-94c9e278f3e9.json | 45 ------------------- ...-fe2248f9-b29a-473c-8bcb-de1ee99c1cc4.json | 45 ------------------- ...-0f13d9ce-f161-4118-bdc4-6880a9eacfb1.json | 43 ------------------ ...-486235dd-5360-40eb-acc3-e655599acbd5.json | 43 ------------------ ...-74b9ce52-37f0-4549-b33a-72f3a79495f8.json | 43 ------------------ ...-8bc9f5f7-d552-4f79-b87d-20d70a2295bd.json | 30 ------------- ...-9a631482-5915-4b49-bcc9-7d398f053cb1.json | 37 --------------- ...-d844ab9e-edde-4536-9f21-7025ea89302c.json | 29 ------------ ...-0b08a101-9b71-49f4-a3bf-260f3bb0c1ae.json | 43 ------------------ ...-3c529c3c-efd5-4e5c-8a49-d3151f09dd4f.json | 43 ------------------ ...-66772f92-3935-4336-abc7-7099f60f841f.json | 43 ------------------ ...-a0957576-933b-46d9-af2b-d81113d21289.json | 29 ------------ ...-a28e803c-6ce6-477f-a368-61453d2a38ac.json | 45 ------------------- ...-fdcacb6f-a44c-449a-8fb4-105d3d605136.json | 37 --------------- ...-64974b47-ae6c-48c0-bce9-5bbe76cea989.json | 45 ------------------- ...-141747a9-5a37-42c5-8817-6aa8916ddafc.json | 37 --------------- ...-1735f6cf-d58f-40b1-92fe-856b76fc9751.json | 43 ------------------ ...-246145de-a33c-4f22-b998-26937fdf7f70.json | 45 ------------------- ...-4722c413-1757-40b3-be40-d4cc3ce938e4.json | 43 ------------------ ...-8ab7de58-8aa0-4204-8975-da460ae23e4c.json | 43 ------------------ ...-b6fd73ad-d164-462d-8996-41c5741a9c33.json | 29 ------------ ...-905df695-0241-4ca1-a3b4-37ad2f17986d.json | 45 ------------------- ...-9cd570da-13d5-49b3-a4e6-0cb2afecca45.json | 45 ------------------- ...-edcfeda0-4096-4a87-8da7-cd8198e0d9d4.json | 45 ------------------- ...-f6ae3e05-7de7-46b4-a484-a39ec11cb01b.json | 45 ------------------- ...-35b87c5f-8eb5-46eb-8fda-f3f05bcb591e.json | 44 ------------------ ...-4427112a-f47e-45e4-841b-24bc77c380fe.json | 29 ------------ ...-502800a7-aea9-4a42-ae7a-3052cadc203b.json | 37 --------------- ...-5cccc81c-0c90-4d65-828c-1843aaaaf990.json | 44 ------------------ ...-f2e8f76b-ab4a-4d85-9a41-cd98821c7bce.json | 44 ------------------ ...-f7fb408d-1eb4-4cc4-983f-027fc7daf69c.json | 45 ------------------- ...-1909f122-f60f-4d34-bd76-ca5ba6f6aa89.json | 43 ------------------ ...-4087cf12-0688-4805-9407-371e87501290.json | 44 ------------------ ...-f049cb17-140a-47bb-a509-78a80f05684c.json | 44 ------------------ ...-f1844c8e-18bb-4e54-8458-0c011c3ffc8f.json | 37 --------------- ...-36e8eab3-279d-443f-95d1-6e8bff5b634c.json | 37 --------------- ...-4130e644-00e9-47fd-b6b4-a1fce31b0ac8.json | 44 ------------------ ...-4b963220-dcef-483b-ad09-befab301b4e7.json | 44 ------------------ ...-c8cd8c35-7f9e-458d-9567-2a5d2bc9030c.json | 43 ------------------ ...-038a44d4-1c90-4e05-a54b-773aca24f1d6.json | 44 ------------------ ...-44b6ac62-a315-440e-813a-50deeb970643.json | 43 ------------------ ...-c6aea864-a075-48bf-b557-4b77e30bf0b7.json | 37 --------------- ...-d132a39f-6c01-4370-a500-0848be2fdf32.json | 44 ------------------ ...-452f5673-010c-4ce0-90be-ef608e40cd64.json | 45 ------------------- ...-1cd69cc9-67ca-46bf-ba8f-a82cf2093892.json | 43 ------------------ ...-35a31595-66ac-41f2-bb68-68d590abfafa.json | 37 --------------- ...-82a63f92-bf26-4fab-9996-eead7073e0ec.json | 45 ------------------- ...-9988e98b-1b83-494f-a725-0a69d7506e40.json | 43 ------------------ ...-ab781670-df8a-4a89-9000-7fa7cddd2dc4.json | 29 ------------ ...-c7c2ad03-f759-4dcd-b6f0-cf12ce83f489.json | 43 ------------------ ...-4b91812c-6cfe-4da0-9ee6-769af63280ae.json | 45 ------------------- ...-4a128e27-accd-444c-aab3-89b2098c7122.json | 43 ------------------ ...-50419596-0f25-4432-8c6f-1eb89b17a26c.json | 37 --------------- ...-6d8024f5-963c-4808-a234-52b99c3267df.json | 43 ------------------ ...-a0b57cfd-97e8-4d80-bb26-07af39a62dd2.json | 45 ------------------- ...-cb796109-a422-4bfc-9634-966ab1d43a28.json | 43 ------------------ ...-e1e94af4-eb0f-4590-93e5-a60eec21f538.json | 29 ------------ ...-abf9f816-ac2f-40e6-ac2a-fffaa2320f55.json | 45 ------------------- ...-1147d069-a5bf-4066-88e2-7fddad7075d3.json | 45 ------------------- ...-5e25f72f-c716-4454-b94a-28a50f6505fd.json | 43 ------------------ ...-66a407b9-5fb6-4a42-8754-8bc6ea6f3718.json | 29 ------------ ...-66e8551a-a941-4c02-86d5-93d623d89ec5.json | 43 ------------------ ...-73b2e9a9-67cb-4fbf-93e4-a62f23fea092.json | 37 --------------- ...-a7517a00-361a-4ff4-a856-dcf7d5e297be.json | 43 ------------------ ...-c31a8768-24d3-4412-9968-33d8c67d8286.json | 43 ------------------ ...-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json | 40 +++++++++++++++++ ...-16371e28-1401-4ac7-a81c-a0988cb4b54d.json | 40 +++++++++++++++++ ...-465eed74-eb0b-43f9-8484-13c1b7f3c833.json | 38 ++++++++++++++++ ...-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json | 32 +++++++++++++ ...-6a4a021e-845e-4059-ae6c-eeef7061e107.json | 38 ++++++++++++++++ ...-735d2578-1567-4bc4-ba9b-0d4f036a36be.json | 36 +++++++++++++++ ...-75081597-4c25-40a5-90e8-7f671ead5f6c.json | 38 ++++++++++++++++ ...-18b1fcc0-7c37-4d6d-93a3-855411622e62.json | 40 +++++++++++++++++ ...-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json | 38 ++++++++++++++++ ...-0971fd9e-eb22-4c87-989e-cda5738d0858.json | 38 ++++++++++++++++ ...-0d07ae32-151f-42f2-975f-3eeb1fceec35.json | 38 ++++++++++++++++ ...-52e93e92-527d-4cb6-824c-6713dd08147c.json | 40 +++++++++++++++++ ...-83e3238b-d012-4526-9104-401fcaafd2b1.json | 36 +++++++++++++++ ...-ba50887e-11cc-4939-8438-1016d435b267.json | 32 +++++++++++++ ...-7014a1ce-5d68-4649-a5e4-3e4476be520a.json | 40 +++++++++++++++++ ...-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json | 36 +++++++++++++++ ...-3c3d864a-6c42-4cfd-b366-3133054c42e9.json | 38 ++++++++++++++++ ...-50fb8902-6164-491e-b20f-1e5d894cd652.json | 32 +++++++++++++ ...-75800631-5c7d-4848-abe3-65f861be3963.json | 38 ++++++++++++++++ ...-e2e8478d-ac07-493a-868d-8a48a521e561.json | 40 +++++++++++++++++ ...-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json | 38 ++++++++++++++++ ...-7c0e6478-4d03-47c4-ae11-70119f779b4b.json | 40 +++++++++++++++++ ...-4229326a-6840-4aa1-888e-dd1567c701e0.json | 39 ++++++++++++++++ ...-7e9e1c7e-2540-46ed-abf1-144b867ce032.json | 40 +++++++++++++++++ ...-84fb75a5-98f7-4e10-bb40-71f33c455a94.json | 39 ++++++++++++++++ ...-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json | 39 ++++++++++++++++ ...-d744ba63-05b5-45de-aa94-8bf2762c9212.json | 32 +++++++++++++ ...-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json | 37 +++++++++++++++ ...-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json | 40 +++++++++++++++++ ...-176afc29-2c80-4871-bb2f-01cd533b81e2.json | 40 +++++++++++++++++ ...-52d84087-7ffc-4083-9714-812daa9aa817.json | 38 ++++++++++++++++ ...-5a8571ce-677f-4668-a3b4-9257076280e0.json | 38 ++++++++++++++++ ...-62023398-28ff-488f-9e24-c959cb5895af.json | 32 +++++++++++++ ...-660f7e8d-5dfc-4311-92df-246b274ca44e.json | 36 +++++++++++++++ ...-aa452eed-2253-45f2-a26c-575a0bc98e8e.json | 38 ++++++++++++++++ ...-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json | 38 ++++++++++++++++ ...-d71df068-9300-4b57-a734-5271a334aaa5.json | 38 ++++++++++++++++ ...-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json | 40 +++++++++++++++++ ...-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json | 40 +++++++++++++++++ ...-a002e74d-4717-48c1-a39a-98bc639b8f0a.json | 40 +++++++++++++++++ ...-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json | 38 ++++++++++++++++ ...-439da122-c274-46fb-8cc4-7931c4812e77.json | 38 ++++++++++++++++ ...-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json | 38 ++++++++++++++++ ...-ac23b896-4758-494d-ad8c-eb85959da17b.json | 32 +++++++++++++ ...-d313976b-5cbb-4248-936e-fb2378ed5218.json | 40 +++++++++++++++++ ...-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json | 36 +++++++++++++++ ...-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json | 37 +++++++++++++++ ...-18b75e7a-85d5-40c9-8341-082db0370dc5.json | 38 ++++++++++++++++ ...-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json | 38 ++++++++++++++++ ...-d4155d36-7cfa-4910-811c-62b15611e606.json | 32 +++++++++++++ ...-eda82c55-8c77-481e-83bd-693066fc8c94.json | 40 +++++++++++++++++ ...-6a416c14-34f8-481f-a946-f08d106562b1.json | 38 ++++++++++++++++ ...-73583ba6-0a14-4d3d-8b4a-f64b83668615.json | 36 +++++++++++++++ ...-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json | 38 ++++++++++++++++ ...-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json | 38 ++++++++++++++++ ...-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json | 40 +++++++++++++++++ ...-efb838be-f6ca-438d-bf56-8aca2f9224e3.json | 32 +++++++++++++ ...-5993645f-6ab5-4af3-9411-69228ea8b0bd.json | 40 +++++++++++++++++ ...-6073c1a5-bf59-4484-a253-387724986156.json | 40 +++++++++++++++++ ...-6175c756-71e5-4f30-ab47-98420a36b6d8.json | 40 +++++++++++++++++ ...-d2d297e5-4ec7-4901-886b-a7c86f530e32.json | 40 +++++++++++++++++ ...-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json | 38 ++++++++++++++++ ...-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json | 39 ++++++++++++++++ ...-7bf60a76-a018-40eb-bb98-60a28abc28d1.json | 32 +++++++++++++ ...-b51fc668-2cac-45d8-ab3c-8bec37515adc.json | 39 ++++++++++++++++ ...-27a39738-cc62-44d6-b487-55759d0d8ce8.json | 38 ++++++++++++++++ ...-437793c9-5f9d-421d-9bc1-906882042d40.json | 39 ++++++++++++++++ ...-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json | 39 ++++++++++++++++ ...-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json | 32 +++++++++++++ ...-1f5648fe-e885-4d15-b6b5-308b50a7f282.json | 39 ++++++++++++++++ ...-880ec645-9481-4237-8f39-298d9ed19e9c.json | 38 ++++++++++++++++ ...-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json | 39 ++++++++++++++++ ...-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json | 32 +++++++++++++ ...-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json | 39 ++++++++++++++++ ...-64440d62-8ad5-48d6-80f8-fbff121a2128.json | 32 +++++++++++++ ...-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json | 39 ++++++++++++++++ ...-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json | 40 +++++++++++++++++ ...-c42cae13-2afc-47ef-baab-74f4549a0c91.json | 37 +++++++++++++++ ...-da2e5490-4c78-458d-80c2-31b6cd168c05.json | 39 ++++++++++++++++ ...-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json | 40 +++++++++++++++++ ...-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json | 40 +++++++++++++++++ ...-46f79876-f8dd-4de2-a912-d0f3098144e9.json | 32 +++++++++++++ ...-79755483-1d1a-434a-8e12-b5d131a81786.json | 38 ++++++++++++++++ ...-7eb45641-0128-4743-81a1-af728c9d140b.json | 38 ++++++++++++++++ ...-c10eb423-9e4c-409d-9ce4-b620788a9aed.json | 38 ++++++++++++++++ ...-f515149b-a447-4f94-b548-e5942a056da9.json | 36 +++++++++++++++ ...-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json | 40 +++++++++++++++++ ...-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json | 36 +++++++++++++++ ...-8662f5be-10bd-417d-b89c-d185f47d3e31.json | 32 +++++++++++++ ...-a5627136-0910-48e7-bd87-87d0b759e5dc.json | 38 ++++++++++++++++ ...-ae1807ca-b068-40c8-bed1-2f65899c9d15.json | 38 ++++++++++++++++ ...-c73118b0-c1a9-48d7-8ee3-15951416b76f.json | 40 +++++++++++++++++ ...-f7584548-1269-4442-88b2-8f62080f4e03.json | 38 ++++++++++++++++ ...-8c90af06-c170-4a30-9b30-c936f52612f3.json | 40 +++++++++++++++++ ...-590ca422-50b6-427e-a292-fbb91ca4d126.json | 32 +++++++++++++ ...-6df381d7-cf5b-483b-8187-029fd14f8be0.json | 36 +++++++++++++++ ...-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json | 38 ++++++++++++++++ ...-9a24225b-8194-4c95-a22b-78cf50603ae0.json | 38 ++++++++++++++++ ...-f80b6c98-10e3-485b-ad92-a5dc757551df.json | 38 ++++++++++++++++ ...-f96b0cde-70f8-42ad-93e4-558dc0925d35.json | 40 +++++++++++++++++ ...-d3622803-a267-474a-8f8b-5b9268069b0e.json | 40 +++++++++++++++++ ...-38d4f538-b44f-407c-bb99-61f23abd17a8.json | 38 ++++++++++++++++ ...-cc81a913-7a1e-4e65-8185-6d74dcefc615.json | 40 +++++++++++++++++ ...-cf7b7100-a786-4f64-aecc-532b7ed13548.json | 38 ++++++++++++++++ ...-db32005d-382f-43d4-9835-afb951d4113c.json | 38 ++++++++++++++++ ...-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json | 36 +++++++++++++++ ...-fdd3d488-e259-4164-a702-bb60afdaa07e.json | 32 +++++++++++++ ...-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json | 40 +++++++++++++++++ ...-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json | 38 ++++++++++++++++ ...-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json | 38 ++++++++++++++++ ...-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json | 38 ++++++++++++++++ ...-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json | 36 +++++++++++++++ ...-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json | 40 +++++++++++++++++ ...-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json | 32 +++++++++++++ ...-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json | 40 +++++++++++++++++ ...-3942aa83-8d03-431a-918a-fc11435415dd.json | 39 ++++++++++++++++ ...-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json | 39 ++++++++++++++++ ...-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json | 39 ++++++++++++++++ ...-779594c5-6309-4cd8-b8e5-9c860d56af67.json | 40 +++++++++++++++++ ...-db4cca06-bf19-4c77-9816-47f41c996816.json | 37 +++++++++++++++ ...-ec677699-f440-47be-b662-b24e3ad09fdb.json | 32 +++++++++++++ ...-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json | 40 +++++++++++++++++ ...-f862cb11-79fb-4849-8dc5-ab53304cfccc.json | 40 +++++++++++++++++ ...-affb452e-c3ea-4e41-804b-b574ac90ad8a.json | 32 +++++++++++++ ...-bbc19227-afdd-431d-bca0-b71194911169.json | 38 ++++++++++++++++ ...-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json | 38 ++++++++++++++++ ...-c38de940-4b0c-446f-ad2a-78fc78342033.json | 37 +++++++++++++++ ...-16f65432-4b51-4f33-9e22-900c95d15ba4.json | 36 +++++++++++++++ ...-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json | 38 ++++++++++++++++ ...-275de801-77d9-46b1-b0c3-5c09bf7ec676.json | 40 +++++++++++++++++ ...-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json | 38 ++++++++++++++++ ...-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json | 32 +++++++++++++ ...-ed9577ad-34cf-4d64-8512-507568760010.json | 38 ++++++++++++++++ ...-461ec5eb-7afc-4e5a-b0f5-afd97103ec86.json | 42 ----------------- ...-d1c94c81-7b2a-4385-b232-7b37c265255d.json | 40 +++++++++++++++++ ...-093f8f69-985c-462e-89fc-69a46096856f.json | 32 +++++++++++++ ...-53d1c651-a1a3-47ec-af04-671296453348.json | 38 ++++++++++++++++ ...-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json | 38 ++++++++++++++++ ...-b1f1837c-af9d-472d-a78e-e1c4741406eb.json | 36 +++++++++++++++ ...-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json | 40 +++++++++++++++++ ...-d181f089-a311-416e-9ccb-e629e5b8743f.json | 38 ++++++++++++++++ ...-55519fa8-16e1-419b-833a-993c8be014e3.json | 40 +++++++++++++++++ ...-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json | 29 ++++++++++++ ...-51c345dd-7ba8-444e-8737-e4f1a4bce845.json | 32 +++++++++++++ ...-6e4c2502-405b-4635-951a-256ff31022aa.json | 40 +++++++++++++++++ ...-b22aac35-2569-45e3-867c-325c1a3e3025.json | 38 ++++++++++++++++ ...-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json | 36 +++++++++++++++ ...-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json | 38 ++++++++++++++++ ...-edc679b6-624c-4d51-a627-8bbd3bc0373b.json | 38 ++++++++++++++++ ...-8192612f-1dd3-4b33-a3eb-4f548818daa6.json | 40 +++++++++++++++++ ...-f804d51d-1493-4cff-b644-4526ea147c43.json | 40 +++++++++++++++++ ...-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json | 38 ++++++++++++++++ ...-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json | 32 +++++++++++++ ...-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json | 39 ++++++++++++++++ ...-b760ce36-eeea-4a16-a826-df745cf55ee1.json | 39 ++++++++++++++++ ...-11f10920-f791-464e-9375-5275360a1fd4.json | 39 ++++++++++++++++ ...-74b55a1d-12a3-43f8-b165-257430af426a.json | 32 +++++++++++++ ...-76d1145b-ed14-47c8-bbff-114aab364c8b.json | 37 +++++++++++++++ ...-84715bce-e82f-4507-a8c6-b3c2c516ea72.json | 39 ++++++++++++++++ ...-854ff045-a298-4574-9d2b-553cfe2cc4c4.json | 39 ++++++++++++++++ ...-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json | 40 +++++++++++++++++ ...-3a89b7e7-372d-4a02-95da-f025168f7c4a.json | 40 +++++++++++++++++ ...-10a04027-1d06-4136-a2c8-509f2fa915b7.json | 40 +++++++++++++++++ ...-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json | 38 ++++++++++++++++ ...-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json | 32 +++++++++++++ ...-408a24db-193f-4979-be1d-bba839acdf4f.json | 38 ++++++++++++++++ ...-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json | 36 +++++++++++++++ ...-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json | 38 ++++++++++++++++ ...-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json | 40 +++++++++++++++++ ...-15d31379-0a42-4667-bcf5-7c90563c3028.json | 40 +++++++++++++++++ ...-12145955-1d6e-4c70-b364-893a13f3b57e.json | 40 +++++++++++++++++ ...-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json | 32 +++++++++++++ ...-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json | 39 ++++++++++++++++ ...-7a7184ed-15bd-4613-8653-894aee50fd3d.json | 39 ++++++++++++++++ ...-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json | 37 +++++++++++++++ ...-e0c92868-59ae-4324-9202-c913cd2b149a.json | 39 ++++++++++++++++ ...-14b8db65-0273-4b45-a670-f4e9a21b5666.json | 39 ++++++++++++++++ ...-4dfed22a-45de-4d63-bc3d-26c39407b01e.json | 32 +++++++++++++ ...-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json | 38 ++++++++++++++++ ...-7f30fb03-a0ef-466b-aef4-33139aea7227.json | 37 +++++++++++++++ ...-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json | 39 ++++++++++++++++ ...-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json | 39 ++++++++++++++++ ...-d95c6987-72d9-4998-b692-833c165dbf9d.json | 40 +++++++++++++++++ ...-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json | 40 +++++++++++++++++ ...-0da83c66-d888-4134-a3f1-89c62a57657f.json | 32 +++++++++++++ ...-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json | 38 ++++++++++++++++ ...-927fd378-cd26-4238-b127-951ff99290d5.json | 38 ++++++++++++++++ ...-bd9c9d43-94e3-457d-9419-c3158e0d0362.json | 38 ++++++++++++++++ ...-dfef547f-6604-45af-8e31-808c0a573b3c.json | 36 +++++++++++++++ ...-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json | 40 +++++++++++++++++ ...-d730271e-e618-4dd8-af9e-edc244602dcb.json | 40 +++++++++++++++++ ...-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json | 40 +++++++++++++++++ ...-f94a6c29-5446-4fc7-9857-7d0178580e68.json | 40 +++++++++++++++++ ...-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json | 32 +++++++++++++ ...-60a49051-d491-4c78-8242-220aa743ec50.json | 39 ++++++++++++++++ ...-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json | 39 ++++++++++++++++ ...-c185c581-52d4-4f0c-97eb-841f963cad6d.json | 38 ++++++++++++++++ ...-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json | 39 ++++++++++++++++ ...-b665ee32-0657-42ca-83bd-11883854e6c3.json | 39 ++++++++++++++++ ...-bb16c65f-d84b-4655-808c-d51fd7ef956f.json | 32 +++++++++++++ ...-c0043439-e0e4-435b-aef9-110381ecc4bd.json | 38 ++++++++++++++++ ...-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json | 38 ++++++++++++++++ ...-94f54298-cfc8-4f88-ba4b-8d1412171286.json | 39 ++++++++++++++++ ...-956ff1f4-b530-4337-9b54-2d37b71bf096.json | 39 ++++++++++++++++ ...-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json | 32 +++++++++++++ ...-158cd75d-739d-4b7f-86d2-a519006a893c.json | 40 +++++++++++++++++ ...-29a47602-f959-423b-8abd-729a4890d3e8.json | 32 +++++++++++++ ...-6c4f7873-a681-4339-a0c5-929662bba461.json | 39 ++++++++++++++++ ...-b59f2a00-610f-490c-b399-afbb424841b7.json | 39 ++++++++++++++++ ...-f4d11818-49ba-4c90-b84d-573241e8e1e1.json | 39 ++++++++++++++++ ...-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json | 37 +++++++++++++++ ...-44d939ca-4a54-459e-901a-df3eae051476.json | 40 +++++++++++++++++ ...-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json | 38 ++++++++++++++++ ...-7eb5c230-1642-497a-86cc-f81bd7217cfb.json | 38 ++++++++++++++++ ...-81fb0ed1-62d8-44f6-ac98-13106b51684b.json | 36 +++++++++++++++ ...-93a5764d-0689-4fda-a31a-366e5a265190.json | 38 ++++++++++++++++ ...-e04d3158-431f-4d9b-b050-f5591cc7ccea.json | 40 +++++++++++++++++ ...-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json | 32 +++++++++++++ ...-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json | 40 +++++++++++++++++ ...-215a324c-cf6a-44c1-8777-af57fa28a70f.json | 36 +++++++++++++++ ...-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json | 40 +++++++++++++++++ ...-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json | 38 ++++++++++++++++ ...-d0c22512-542d-437b-a696-a96780a082d5.json | 38 ++++++++++++++++ ...-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json | 32 +++++++++++++ ...-f38da734-a436-4c58-b40a-e969eec120f9.json | 38 ++++++++++++++++ ...-48ba9633-eb4f-4342-8cff-6821113f0bac.json | 40 +++++++++++++++++ ...-15b09980-bc6c-4b56-bfe6-a0a38418c001.json | 38 ++++++++++++++++ ...-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json | 36 +++++++++++++++ ...-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json | 38 ++++++++++++++++ ...-a1fbb10d-de25-495d-bd9f-a57f24648559.json | 40 +++++++++++++++++ ...-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json | 38 ++++++++++++++++ ...-b1926da9-ec00-4bb2-95e7-01c07b532a99.json | 38 ++++++++++++++++ ...-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json | 32 +++++++++++++ 589 files changed, 10649 insertions(+), 12363 deletions(-) create mode 100644 mock/mappings/addresses-184cb485-be00-4590-af90-6524d31e6338.json create mode 100644 mock/mappings/addresses-1cdf04a4-a664-428f-88bd-44d9991cd823.json create mode 100644 mock/mappings/addresses-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json create mode 100644 mock/mappings/addresses-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json create mode 100644 mock/mappings/addresses-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json create mode 100644 mock/mappings/addresses-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json create mode 100644 mock/mappings/addresses-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json create mode 100644 mock/mappings/addresses_bazyuqxgqj-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json create mode 100644 mock/mappings/addresses_bazyuqxgqj-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json create mode 100644 mock/mappings/addresses_bazyuqxgqj-702b83aa-beb1-43a0-8db8-045e75e30b02.json create mode 100644 mock/mappings/addresses_bazyuqxgqj-84bb3e51-cd54-4890-879a-1f965aef5588.json create mode 100644 mock/mappings/addresses_bazyuqxgqj-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json create mode 100644 mock/mappings/addresses_bazyuqxgqj-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json create mode 100644 mock/mappings/addresses_bkzqueglkr-51616306-4952-4db5-9eba-1d4b0af93ab5.json create mode 100644 mock/mappings/addresses_bkzqueglkr-5219acae-078d-47d5-975c-b3701741b752.json create mode 100644 mock/mappings/addresses_bkzqueglkr-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json create mode 100644 mock/mappings/addresses_bkzqueglkr-a5ed938c-498c-4161-b650-34fa3ba00c83.json create mode 100644 mock/mappings/addresses_bkzqueglkr-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json create mode 100644 mock/mappings/addresses_bkzqueglle-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json create mode 100644 mock/mappings/addresses_bkzqueglle-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json create mode 100644 mock/mappings/addresses_bkzqueglle-a528706c-5cf0-4a59-a8be-60569adf8081.json create mode 100644 mock/mappings/addresses_bkzqueglle-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json create mode 100644 mock/mappings/addresses_boelupqapl-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json create mode 100644 mock/mappings/addresses_boelupqapl-62c20dd8-2870-4417-b596-4fb176cfb377.json create mode 100644 mock/mappings/addresses_boelupqapl-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json create mode 100644 mock/mappings/addresses_boelupqapl-c22bc5ea-12bd-4491-8808-e805d23e929e.json create mode 100644 mock/mappings/addresses_boelupqapl-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json create mode 100644 mock/mappings/addresses_bzkoumknnk-32efe943-750b-4a6b-b710-ba844e059f32.json create mode 100644 mock/mappings/addresses_bzkoumknnk-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json create mode 100644 mock/mappings/addresses_bzkoumknnk-869313a5-5279-4e94-b7c4-c7c01fdf2161.json create mode 100644 mock/mappings/addresses_bzkoumknnk-86d5413b-2a85-4926-9b65-9070041b471d.json create mode 100644 mock/mappings/addresses_djekumglnx-0cda247c-05a2-4b99-bb5d-885db5710ea4.json create mode 100644 mock/mappings/addresses_djekumglnx-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json create mode 100644 mock/mappings/addresses_djekumglnx-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json create mode 100644 mock/mappings/addresses_djekumglnx-ff5e84a9-3151-45db-8033-5935b02c2838.json create mode 100644 mock/mappings/addresses_djekumgyyo-168afcac-c58b-434d-bd68-af28b2a87023.json create mode 100644 mock/mappings/addresses_djekumgyyo-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json create mode 100644 mock/mappings/addresses_djekumgyyo-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json create mode 100644 mock/mappings/addresses_djekumgyyo-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json create mode 100644 mock/mappings/adyen_gateways-1951ffa5-fb14-4e22-960f-072d26f88ab8.json create mode 100644 mock/mappings/adyen_gateways-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json create mode 100644 mock/mappings/adyen_gateways_nknmksokbj-4298d60c-1077-498b-b71d-0d991d2f97cd.json create mode 100644 mock/mappings/adyen_gateways_nknmksokbj-638ff192-a608-4203-9d87-f959b656ce38.json create mode 100644 mock/mappings/adyen_gateways_nknmksokbj-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json create mode 100644 mock/mappings/adyen_gateways_nknmksokbj-946715e8-e818-424d-9ad8-e5afe9449325.json create mode 100644 mock/mappings/adyen_gateways_nknmksokbj-b059e544-8b22-458a-b96b-51759af06f0e.json create mode 100644 mock/mappings/adyen_gateways_nknmksokbj-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json create mode 100644 mock/mappings/adyen_gateways_pkaqrsdyzk-023161d7-1588-4ac2-b760-2fd7797bf189.json create mode 100644 mock/mappings/adyen_gateways_pkaqrsdyzk-4d92824f-0c17-4087-afc2-d7f143a2feec.json create mode 100644 mock/mappings/adyen_gateways_pkaqrsdyzk-63504a6f-b242-4d46-a43d-64a184c69189.json create mode 100644 mock/mappings/adyen_gateways_pkaqrsdyzk-7ef30764-8a25-46ee-a0d0-79f611d521cc.json create mode 100644 mock/mappings/adyen_gateways_pkaqrsdyzk-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json delete mode 100644 mock/mappings/api_addresses-25a61be3-f6a6-403f-bab6-7d86ba14b9df.json delete mode 100644 mock/mappings/api_addresses-2f37dc65-d82f-41f4-bd04-2a0e81d4e4e5.json delete mode 100644 mock/mappings/api_addresses-7112a321-6692-43ba-a92d-093a56e49891.json delete mode 100644 mock/mappings/api_addresses-d92285bb-0c54-40c0-bbc1-29f22e4d69e1.json delete mode 100644 mock/mappings/api_addresses-e5340646-83a7-4069-9479-8d9e8d7f6abd.json delete mode 100644 mock/mappings/api_addresses-eee94f55-882b-47fc-847c-f0cfe371d21c.json delete mode 100644 mock/mappings/api_addresses-f308acfb-17d8-4c63-a275-74105444d299.json delete mode 100644 mock/mappings/api_addresses_bexaumrakr-16977d61-78e4-4496-aeba-5b729135daff.json delete mode 100644 mock/mappings/api_addresses_bexaumrakr-7bdbdd50-b89f-485c-a732-6ad99a9dc51e.json delete mode 100644 mock/mappings/api_addresses_bexaumrakr-8403a2b2-f948-4ef3-b233-ead9108ebc02.json delete mode 100644 mock/mappings/api_addresses_bexaumrakr-f2c4f137-08da-4a53-9d01-8ff15b0a03fb.json delete mode 100644 mock/mappings/api_addresses_blrkujvzqr-56702f72-2a25-43ce-aec4-d0e5ece43594.json delete mode 100644 mock/mappings/api_addresses_blrkujvzqr-7d6dc891-3f13-4531-9194-3c0f274e709a.json delete mode 100644 mock/mappings/api_addresses_blrkujvzqr-a9bc5064-7ae8-432a-aa16-921a96c0d7a6.json delete mode 100644 mock/mappings/api_addresses_blrkujvzqr-c94c8140-916b-4f90-a92c-3ccd1760a42a.json delete mode 100644 mock/mappings/api_addresses_bnnguqqjwe-0f3efcca-58fc-4630-9979-e6f9ed14228b.json delete mode 100644 mock/mappings/api_addresses_bnnguqqjwe-47dc04a6-f19e-47e1-a214-edbfc7b680f4.json delete mode 100644 mock/mappings/api_addresses_bnnguqqjwe-639d713f-a440-42af-81b5-25cc3b6005b2.json delete mode 100644 mock/mappings/api_addresses_bnnguqqjwe-86abf6a5-96a8-4be6-a587-87677ff8b7f0.json delete mode 100644 mock/mappings/api_addresses_bnnguqqjwe-91edd378-2687-43ea-a8a9-033a73515e05.json delete mode 100644 mock/mappings/api_addresses_bxwvuwzjmj-5ddc7d3f-e8b0-482d-b358-835904e45f88.json delete mode 100644 mock/mappings/api_addresses_bxwvuwzjmj-9d118ae4-e2ce-4921-a86f-10df9516193e.json delete mode 100644 mock/mappings/api_addresses_bxwvuwzjmj-a8b46919-9be0-421d-b8bf-cbb39eb83005.json delete mode 100644 mock/mappings/api_addresses_bxwvuwzjmj-fd76c9a4-9132-4418-9b44-79990e9ed310.json delete mode 100644 mock/mappings/api_addresses_dajxuvndak-bb69d6ed-2dcc-4987-80b1-39c64deaeb3b.json delete mode 100644 mock/mappings/api_addresses_ddqwuqoejy-90c97cd3-7172-42ba-ae23-a34928965860.json delete mode 100644 mock/mappings/api_addresses_dejouzlqdx-0076f173-b51e-4a01-ad16-3a619d67dabc.json delete mode 100644 mock/mappings/api_addresses_dejouzlqdx-844811e1-1634-4616-abba-6b26bf0ce3d0.json delete mode 100644 mock/mappings/api_addresses_dejouzlqdx-e12bb6cc-476a-48a3-95b7-995c7c791044.json delete mode 100644 mock/mappings/api_addresses_dejouzlqdx-f51da104-ac77-4896-9819-375058591af2.json delete mode 100644 mock/mappings/api_addresses_dxwvuwxaje-1a88a5d0-fe3c-4bc7-b026-d545ccad6625.json delete mode 100644 mock/mappings/api_addresses_dxwvuwxaje-258a9146-190d-4fea-b3d8-52eef2f6a467.json delete mode 100644 mock/mappings/api_addresses_dxwvuwxaje-81f31cae-321e-4e70-a487-4f195f2fb118.json delete mode 100644 mock/mappings/api_addresses_dxwvuwxaje-aa326fc8-dc07-4b8b-8e81-6e8683219642.json delete mode 100644 mock/mappings/api_addresses_dxwvuwxaje-c23a2eb7-75d5-45cb-9f36-5639d8c1ce7b.json delete mode 100644 mock/mappings/api_addresses_dxwvuwxaje-d5851a20-c7de-4f79-9eee-120456c1bcf6.json delete mode 100644 mock/mappings/api_addresses_wlplualvpg-268f07e8-b9df-4041-a17c-941b20d9efa0.json delete mode 100644 mock/mappings/api_addresses_wlplualvpg-2f1862cc-02ed-4c18-8959-11c1ab3ae192.json delete mode 100644 mock/mappings/api_addresses_wlplualvpg-560d038f-94d8-4fd1-9f9e-9f493758b413.json delete mode 100644 mock/mappings/api_addresses_wlplualvpg-695cdb6d-d976-4ad3-9ca8-2d0bebf11e9d.json delete mode 100644 mock/mappings/api_addresses_wlplualvpg-e35e467a-7b87-4a98-bd8c-0bce4ba1ab34.json delete mode 100644 mock/mappings/api_adyen_gateways-621039b5-4c8d-4848-8425-a455edc424c6.json delete mode 100644 mock/mappings/api_adyen_gateways-c8b743c4-6af9-4088-8b67-fa301c4462fd.json delete mode 100644 mock/mappings/api_adyen_gateways_dxgweszzmx-12960e84-c7bc-4288-b60d-354aa2ecda71.json delete mode 100644 mock/mappings/api_adyen_gateways_dxgweszzmx-28a058ea-bb52-4655-92af-59a4977adeba.json delete mode 100644 mock/mappings/api_adyen_gateways_dxgweszzmx-4308c025-0363-4f0f-8de0-e0adb7b2021a.json delete mode 100644 mock/mappings/api_adyen_gateways_dxgweszzmx-bb8edc71-0b10-418c-92f1-f702135e26ce.json delete mode 100644 mock/mappings/api_adyen_gateways_dxgweszzmx-eab7c0ee-e5ff-4e04-a760-d900b129b7ec.json delete mode 100644 mock/mappings/api_adyen_gateways_dxgweszzmx-fb4f8bc5-d542-40dd-ae3e-7acb2e4c130c.json delete mode 100644 mock/mappings/api_adyen_gateways_pvdxlsppov-097f9a1a-3842-455e-a06a-159f05bd6c45.json delete mode 100644 mock/mappings/api_adyen_gateways_pvdxlsppov-212cb7ae-2c49-4581-9fac-3c2a8b9f8977.json delete mode 100644 mock/mappings/api_adyen_gateways_pvdxlsppov-603eaf2f-f091-4ea3-b875-01ebaf7e72d8.json delete mode 100644 mock/mappings/api_adyen_gateways_pvdxlsppov-68e2e854-fad2-427d-8c6a-43f03a3b7200.json delete mode 100644 mock/mappings/api_adyen_gateways_pvdxlsppov-a32ad473-c230-45a5-940f-608e9fab4ddc.json delete mode 100644 mock/mappings/api_bing_geocoders-2d23db11-9254-48a1-9aa8-14554a21bacd.json delete mode 100644 mock/mappings/api_bing_geocoders_ynvaqsrrer-5539dd6e-6c4b-45c5-860b-605b9f85a024.json delete mode 100644 mock/mappings/api_bing_geocoders_ynvaqsrrer-7062b32c-1e49-4ca8-a8f2-d8f1049d4961.json delete mode 100644 mock/mappings/api_bing_geocoders_ynvaqsrrer-80eec3e9-4aba-4baf-a067-84b398054b98.json delete mode 100644 mock/mappings/api_bing_geocoders_ynvaqsrrer-918c3e37-3bdb-41ca-8344-ac63083bf5bd.json delete mode 100644 mock/mappings/api_bing_geocoders_ynvaqsrrer-d207a45c-6c5f-4412-9c68-bf16f741443f.json delete mode 100644 mock/mappings/api_bing_geocoders_ynvaqsrrer-f53bf002-b613-4e66-ba83-5583092d60f7.json delete mode 100644 mock/mappings/api_braintree_gateways-e8f96715-79d1-4b55-9957-0fcd8f1e88ed.json delete mode 100644 mock/mappings/api_braintree_gateways_rxplwslanx-100b314d-eb36-43d5-87b2-097143df4d64.json delete mode 100644 mock/mappings/api_braintree_gateways_rxplwslanx-3484dc4f-6896-4e1a-bdde-bf5bdcbaada2.json delete mode 100644 mock/mappings/api_braintree_gateways_rxplwslanx-5b2eb3f3-84f7-4a60-9e79-df72bdf2a959.json delete mode 100644 mock/mappings/api_braintree_gateways_rxplwslanx-79737898-d52e-4194-bfff-ac28e5d6a089.json delete mode 100644 mock/mappings/api_braintree_gateways_rxplwslanx-a8c3f972-f5c6-492b-8d0b-d3712847214b.json delete mode 100644 mock/mappings/api_braintree_gateways_rxplwslanx-dc938ecd-fc31-4550-a591-9dbb11846e1a.json delete mode 100644 mock/mappings/api_checkout_com_gateways-e113d6da-e5c2-461e-88d7-0f0ca961c8f3.json delete mode 100644 mock/mappings/api_checkout_com_gateways_ejqbrsogbk-066057a3-b253-4a83-a693-d9147395315d.json delete mode 100644 mock/mappings/api_checkout_com_gateways_ejqbrsogbk-070e1243-66fd-4bed-a25d-1da3215d8319.json delete mode 100644 mock/mappings/api_checkout_com_gateways_ejqbrsogbk-08f5d13e-2613-4123-9283-f59c176df452.json delete mode 100644 mock/mappings/api_checkout_com_gateways_ejqbrsogbk-26a41511-f6d1-4a73-8958-578244518c46.json delete mode 100644 mock/mappings/api_checkout_com_gateways_ejqbrsogbk-2a1677de-8567-465e-8dc1-9f70c0ec0d2b.json delete mode 100644 mock/mappings/api_checkout_com_gateways_ejqbrsogbk-7a822efe-1fa1-470e-b0f2-6339eed70614.json delete mode 100644 mock/mappings/api_customer_groups-e16e9b84-5285-442e-a0ac-77fd9a387cba.json delete mode 100644 mock/mappings/api_customer_groups_rdxoahpjpj-0faa0959-e7de-4e87-ae7f-8cf1a6c0d44d.json delete mode 100644 mock/mappings/api_customer_groups_rdxoahpjpj-8c6c84ef-f21a-4765-a814-7fa369ef0e54.json delete mode 100644 mock/mappings/api_customer_groups_rdxoahpjpj-a483b005-e976-470f-a04a-5b99e70326d9.json delete mode 100644 mock/mappings/api_customer_groups_rdxoahpjpj-af54d9e4-99a6-47d5-b9f6-168739c49f81.json delete mode 100644 mock/mappings/api_customer_groups_rdxoahpjpj-cf31a45d-1008-4783-b3dc-a29889920c3a.json delete mode 100644 mock/mappings/api_customer_groups_rdxoahpjpj-d3720782-9327-4a09-99b2-de038a48ddd0.json delete mode 100644 mock/mappings/api_delivery_lead_times-b16371b2-dd4d-41cf-bbbb-53c707faa8f7.json delete mode 100644 mock/mappings/api_delivery_lead_times_mxlamfyqdp-0ef7dff1-0147-44fb-bcb1-26750da3c1a8.json delete mode 100644 mock/mappings/api_delivery_lead_times_mxlamfyqdp-67e53939-2694-4577-9f08-d991f054a3c3.json delete mode 100644 mock/mappings/api_delivery_lead_times_mxlamfyqdp-90825a4a-2663-4a68-99f7-f47977982abf.json delete mode 100644 mock/mappings/api_delivery_lead_times_mxlamfyqdp-9bfbb82b-f9ab-4415-825d-f2d92a28d12c.json delete mode 100644 mock/mappings/api_delivery_lead_times_mxlamfyqdp-aea73f3c-f678-4edc-8f7e-62a2d37a8666.json delete mode 100644 mock/mappings/api_delivery_lead_times_mxlamfyqdp-c9a2ed9c-5fef-46c9-bc4d-0941cba07f79.json delete mode 100644 mock/mappings/api_external_gateways-a3e52a1b-513d-427e-a68f-b77e7de71276.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-3c14ed0c-f9db-4c5b-b37e-08a64c982b42.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-4d64cb69-0b63-4507-b245-c97a60f8a579.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-55d80429-dab9-4d47-91b8-b0db0030fb54.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-b2c46411-a7e9-4fed-9da9-39d373b7572e.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-cc685792-2c98-4b78-85ad-13303cf9d565.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-d00e453f-8f4f-4d13-9087-7d4a157462e8.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-e2f1f9e5-379c-4536-a50d-c062fec806e9.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-e9350814-dd16-48ee-b44d-d033413e579a.json delete mode 100644 mock/mappings/api_external_gateways_ejqbrsnvzk-f46e8d06-a8fa-4250-b501-bf0d592bd220.json delete mode 100644 mock/mappings/api_external_tax_calculators-864b9686-039f-43c7-8261-d3ea51126437.json delete mode 100644 mock/mappings/api_external_tax_calculators-cea22f02-8bf8-4caf-9752-203b67824d90.json delete mode 100644 mock/mappings/api_external_tax_calculators_pyepwtrlqz-191acf94-6496-4232-8c69-4b7583cba45e.json delete mode 100644 mock/mappings/api_external_tax_calculators_pyepwtrlqz-28bf57ab-89b7-4a21-bd2b-6f7ecee52aa5.json delete mode 100644 mock/mappings/api_external_tax_calculators_pyepwtrlqz-8b7824f0-3d3d-4009-8fb7-9b3a0b8915b8.json delete mode 100644 mock/mappings/api_external_tax_calculators_pyepwtrlqz-95ba1085-13d5-4c49-a0b4-8d2c10a15530.json delete mode 100644 mock/mappings/api_external_tax_calculators_pyepwtrlqz-a8a60b10-2a5b-4b0d-805f-7c16c63155e5.json delete mode 100644 mock/mappings/api_external_tax_calculators_pyepwtrlqz-cf3085dc-9224-4e06-a43a-2e5779f50680.json delete mode 100644 mock/mappings/api_external_tax_calculators_xqombtgken-47849fdf-19dc-4e61-814a-06cb16921928.json delete mode 100644 mock/mappings/api_external_tax_calculators_xqombtgken-6c500a21-afd1-46c7-826c-75e810a07f10.json delete mode 100644 mock/mappings/api_external_tax_calculators_xqombtgken-d0b16e33-0107-47cc-be30-99d66392307b.json delete mode 100644 mock/mappings/api_external_tax_calculators_xqombtgken-fa9b3e2d-ef1f-44e6-9343-77b57924986d.json delete mode 100644 mock/mappings/api_google_geocoders-c56c2237-888b-4ce0-82c9-15fc433190af.json delete mode 100644 mock/mappings/api_google_geocoders_znalxsbreq-6caf9df7-62f2-4495-9e1e-608f402958e4.json delete mode 100644 mock/mappings/api_google_geocoders_znalxsbreq-7ad4c770-2354-4029-be59-68b6a8a02f39.json delete mode 100644 mock/mappings/api_google_geocoders_znalxsbreq-8151ce4f-2440-41db-b2bc-716b6645dd10.json delete mode 100644 mock/mappings/api_google_geocoders_znalxsbreq-935c3efc-7aa2-45f1-81bd-217d3f559677.json delete mode 100644 mock/mappings/api_google_geocoders_znalxsbreq-c68059e3-21cd-4cbf-b578-ab0052a33d21.json delete mode 100644 mock/mappings/api_google_geocoders_znalxsbreq-cc7d3848-3470-40f5-b0ca-6ae8d2e6bc45.json delete mode 100644 mock/mappings/api_inventory_models-5a109196-5a4d-4b09-bbc2-b0e2520db331.json delete mode 100644 mock/mappings/api_inventory_models-94b2c558-347f-4c44-a2f3-e2954d942c3f.json delete mode 100644 mock/mappings/api_inventory_models-bedd7f38-5d9a-4c84-b1b3-69e54f48573e.json delete mode 100644 mock/mappings/api_inventory_models-d95db2cb-06ab-40db-af2a-88dcf5934a98.json delete mode 100644 mock/mappings/api_inventory_models_azdjrsdkyw-f2a8cb9f-3ade-4632-ae75-5240ea02a269.json delete mode 100644 mock/mappings/api_inventory_models_dwngysyngl-1f6e3fb8-3841-48c2-9d71-637297294397.json delete mode 100644 mock/mappings/api_inventory_models_dwngysyngl-2f9a72ed-9edd-4131-9697-0d917ee55cc2.json delete mode 100644 mock/mappings/api_inventory_models_dwngysyngl-5bca1590-b914-48db-877c-00548a09c45f.json delete mode 100644 mock/mappings/api_inventory_models_dwngysyngl-92c7725f-6087-47b7-8b96-9798f4f34492.json delete mode 100644 mock/mappings/api_inventory_models_dwngysyngl-ec130d19-98fd-4e06-b354-9d3bc0c79fc9.json delete mode 100644 mock/mappings/api_inventory_models_dwngysyngl-fa03e5b7-7560-43ad-aa12-c48fcd81f770.json delete mode 100644 mock/mappings/api_inventory_models_dwngysyngl-fbb528ae-9019-4584-9b51-871a6ea136dd.json delete mode 100644 mock/mappings/api_inventory_models_ewgkrsjvyw-07ac51ca-5765-48d3-9cdb-172fbf9b836b.json delete mode 100644 mock/mappings/api_inventory_models_ewgkrsjvyw-58d1fe92-5e4d-40c5-aefa-9059e0a1a68d.json delete mode 100644 mock/mappings/api_inventory_models_ewgkrsjvyw-6ad6f144-da7d-46f3-8c52-0f2d124abce8.json delete mode 100644 mock/mappings/api_inventory_models_ewgkrsjvyw-6e52c58d-09b4-453a-9847-788c6664ee4a.json delete mode 100644 mock/mappings/api_inventory_models_jlzqxsdxyw-8fe15a75-1d0a-45fa-8d44-fd0dfaa2e58e.json delete mode 100644 mock/mappings/api_inventory_models_jzbejsvqpl-1e6aea21-ae68-4e18-9930-b26584b622e4.json delete mode 100644 mock/mappings/api_inventory_models_jzbejsvqpl-422072e2-0b36-4a91-9dba-2e6b881b8749.json delete mode 100644 mock/mappings/api_inventory_models_jzbejsvqpl-4220b055-95bd-4565-94d3-f42b7791bca5.json delete mode 100644 mock/mappings/api_inventory_models_jzbejsvqpl-63c34fa3-662d-4034-80ca-b39bf9cd7756.json delete mode 100644 mock/mappings/api_inventory_models_lwlwdsbjra-3533ec97-599d-428a-92b9-14b7366e526f.json delete mode 100644 mock/mappings/api_inventory_models_lwlwdsbjra-51405b3d-edcf-4542-acdc-cbfb417a7e88.json delete mode 100644 mock/mappings/api_inventory_models_lwlwdsbjra-aa16d6e2-7191-4c12-ab35-bbb3d3d4ecec.json delete mode 100644 mock/mappings/api_inventory_models_lwlwdsbjra-c64972f9-cea5-4c35-af5e-e526db122466.json delete mode 100644 mock/mappings/api_inventory_return_locations-528a525c-c075-495a-ada4-a4e521ec7d9d.json delete mode 100644 mock/mappings/api_inventory_return_locations_ewpgdindrl-03149b5e-c716-4cb2-97de-b9bb97a7a90f.json delete mode 100644 mock/mappings/api_inventory_return_locations_ewpgdindrl-3c50b3fd-faa2-4c9f-b0a5-f8931991cc5c.json delete mode 100644 mock/mappings/api_inventory_return_locations_ewpgdindrl-44d7e38a-23f9-4d6b-a49b-b4a743a56e48.json delete mode 100644 mock/mappings/api_inventory_return_locations_ewpgdindrl-472a92e2-d052-4a8a-ba32-8debdc36b091.json delete mode 100644 mock/mappings/api_inventory_return_locations_ewpgdindrl-a5fabdc9-4721-44de-8bcb-5bbf404576c4.json delete mode 100644 mock/mappings/api_inventory_return_locations_ewpgdindrl-f3b38f69-82d7-44f7-be21-28acbb787248.json delete mode 100644 mock/mappings/api_inventory_stock_locations-0214ebad-deb8-44f9-8df2-d85e662dc16c.json delete mode 100644 mock/mappings/api_inventory_stock_locations_ezwpjslqaj-25127a56-850a-4feb-9479-07bffbd320fc.json delete mode 100644 mock/mappings/api_inventory_stock_locations_ezwpjslqaj-94d41b5a-6e7f-48f6-ba70-2b619c9cccb8.json delete mode 100644 mock/mappings/api_inventory_stock_locations_ezwpjslqaj-a3c0f827-0df6-484c-b589-d49e280c0cba.json delete mode 100644 mock/mappings/api_inventory_stock_locations_ezwpjslqaj-ce9ab1f9-acab-4d2f-a759-558906f9a64b.json delete mode 100644 mock/mappings/api_inventory_stock_locations_ezwpjslqaj-d1a7bbdc-f900-499b-a569-16b60b33b36e.json delete mode 100644 mock/mappings/api_inventory_stock_locations_ezwpjslqaj-d7eba83a-0b98-4659-988f-4cb033411421.json delete mode 100644 mock/mappings/api_klarna_gateways-94e2b9e6-a645-4e18-b705-b5dcffa092f3.json delete mode 100644 mock/mappings/api_klarna_gateways_wvwnjsnzwx-05cf4ccc-35db-4dee-b1c6-b3a0df9935dc.json delete mode 100644 mock/mappings/api_klarna_gateways_wvwnjsnzwx-6812f523-3ac4-4a8e-a101-d4fb2bb0e827.json delete mode 100644 mock/mappings/api_klarna_gateways_wvwnjsnzwx-70ce6a02-769f-4915-9cf1-a5ab30ddd3ba.json delete mode 100644 mock/mappings/api_klarna_gateways_wvwnjsnzwx-94e1997a-36b0-4bbd-afc3-1c3b500a40bb.json delete mode 100644 mock/mappings/api_klarna_gateways_wvwnjsnzwx-a92c514a-a3cd-4d1c-9083-4302ac3f2341.json delete mode 100644 mock/mappings/api_klarna_gateways_wvwnjsnzwx-bb703941-bf69-41f6-89ba-057aed10541c.json delete mode 100644 mock/mappings/api_manual_gateways-2fa2b109-6984-4015-835e-7cb74b9c1505.json delete mode 100644 mock/mappings/api_manual_gateways_axyqyswyrx-062563ba-413a-4c0c-abe0-c0571a952542.json delete mode 100644 mock/mappings/api_manual_gateways_axyqyswyrx-15463325-b2f7-4455-896a-7316a88c9e78.json delete mode 100644 mock/mappings/api_manual_gateways_axyqyswyrx-8d454db1-8ccf-466e-91d6-74aa94a3abda.json delete mode 100644 mock/mappings/api_manual_gateways_axyqyswyrx-bd619945-ee42-46b7-94de-5a90016e80cf.json delete mode 100644 mock/mappings/api_manual_gateways_axyqyswyrx-c35dae24-9006-4f59-ae65-491d330f5aa2.json delete mode 100644 mock/mappings/api_manual_gateways_axyqyswyrx-c7a08499-eb30-4180-9691-9d68b6c7dc1b.json delete mode 100644 mock/mappings/api_manual_tax_calculators-dfa8f01b-0dfe-4ef2-ba9c-9c81d8166136.json delete mode 100644 mock/mappings/api_manual_tax_calculators_kyzeltgdqe-0fa21d8b-2810-4b8d-90a9-e091e902454e.json delete mode 100644 mock/mappings/api_manual_tax_calculators_kyzeltgdqe-206b12f8-7a5e-41c1-9d5c-490c84b6f6e6.json delete mode 100644 mock/mappings/api_manual_tax_calculators_kyzeltgdqe-2bff6c22-9f47-4e32-b370-fbc57f7dfe65.json delete mode 100644 mock/mappings/api_manual_tax_calculators_kyzeltgdqe-87eeb010-4bbd-44c4-9d4f-2826f7f6cff8.json delete mode 100644 mock/mappings/api_manual_tax_calculators_kyzeltgdqe-b44ae255-b7fb-4e49-8b0a-f9ecd3a8bfc9.json delete mode 100644 mock/mappings/api_manual_tax_calculators_kyzeltgdqe-b989707c-ee60-46c2-a3da-d637a4f5f5ca.json delete mode 100644 mock/mappings/api_markets-fb4ad115-000f-4990-af5a-8791534719bf.json delete mode 100644 mock/mappings/api_markets_blydjhmzeg-1ef1efa7-4960-44dc-9563-8bab193977dc.json delete mode 100644 mock/mappings/api_markets_blydjhmzeg-36609b43-f6cc-419d-9de1-9f757dad740d.json delete mode 100644 mock/mappings/api_markets_blydjhmzeg-6dc4cfee-fdaa-4ea8-8b81-3060898f812a.json delete mode 100644 mock/mappings/api_markets_blydjhmzeg-78390b15-f2f4-45db-982b-68db146067d2.json delete mode 100644 mock/mappings/api_markets_blydjhmzeg-d47ec8b3-507c-453e-8bce-a8196a3fbb9c.json delete mode 100644 mock/mappings/api_markets_blydjhmzeg-f0b9a1d5-d675-4b19-b293-9ede309e7bf4.json delete mode 100644 mock/mappings/api_markets_koajyhqkzj-06aada02-1bd0-40e7-bf89-a1f336a97c79.json delete mode 100644 mock/mappings/api_markets_koajyhqkzj-dbaa185d-640b-4a35-9554-fbda06ed2191.json delete mode 100644 mock/mappings/api_merchants-0feb3097-e9b1-4304-b2f5-e1b62213327b.json delete mode 100644 mock/mappings/api_merchants-4956f8ea-adc5-44be-9f5e-956143d88e28.json delete mode 100644 mock/mappings/api_merchants_bbjrlhrggb-41b09d25-51a6-4292-b44d-602d9dae8bfb.json delete mode 100644 mock/mappings/api_merchants_dbdevhkddm-78084daf-481d-4fa4-b2f5-39f51bba0ed3.json delete mode 100644 mock/mappings/api_merchants_rbalrhevex-040cdc45-42ce-4b15-8f4b-1f72d2cad893.json delete mode 100644 mock/mappings/api_merchants_rbalrhevex-1cd7f304-3fd7-4719-9657-467df0573826.json delete mode 100644 mock/mappings/api_merchants_rbalrhevex-48096250-fd31-45c4-aac5-f56aa2df872a.json delete mode 100644 mock/mappings/api_merchants_rbalrhevex-9d59242a-20a4-457b-9777-996c5c976c2b.json delete mode 100644 mock/mappings/api_merchants_rbalrhevex-aea00c4c-6fd7-4e1e-ba0f-d4925798b594.json delete mode 100644 mock/mappings/api_merchants_rbalrhevex-c5430b6a-5f3e-4005-a02e-443ede2e6fd3.json delete mode 100644 mock/mappings/api_merchants_zbaobhqyyn-3208e015-864d-44c7-911c-493be21b92fd.json delete mode 100644 mock/mappings/api_merchants_zbaobhqyyn-669be6ce-657a-4c9c-beef-b250d58a2c2c.json delete mode 100644 mock/mappings/api_merchants_zbaobhqyyn-737d514f-c481-4fea-aacf-8631af573443.json delete mode 100644 mock/mappings/api_merchants_zbaobhqyyn-acd49536-c91a-4e6b-a8ad-89f051a6571f.json delete mode 100644 mock/mappings/api_payment_methods-58acae4f-e109-4141-a4ba-1530c14ad278.json delete mode 100644 mock/mappings/api_payment_methods_dmeydsgoom-8f4df94f-e7d6-4f95-8903-cd794cebff61.json delete mode 100644 mock/mappings/api_payment_methods_dmeydsgoom-924d621f-a43e-443f-95f8-b901ac84fc3b.json delete mode 100644 mock/mappings/api_payment_methods_dmeydsgoom-b831936c-d60a-41c3-95f9-42599acbad80.json delete mode 100644 mock/mappings/api_payment_methods_dmeydsgoom-c33407f3-a1aa-452b-a019-1d944db13b73.json delete mode 100644 mock/mappings/api_payment_methods_dmeydsgoom-c38b230b-7211-49a4-8618-6345e26b846a.json delete mode 100644 mock/mappings/api_payment_methods_dmeydsgoom-df202dc1-d340-4e78-9262-73fec3f45ead.json delete mode 100644 mock/mappings/api_paypal_gateways-dfe48b11-07d9-436a-9b61-489f81014d21.json delete mode 100644 mock/mappings/api_paypal_gateways_bjzlvsambx-04d73d89-d2ea-4e1f-b605-7f16a5d0e6be.json delete mode 100644 mock/mappings/api_paypal_gateways_bjzlvsambx-252c4cfd-15da-46ce-8403-1169205c0384.json delete mode 100644 mock/mappings/api_paypal_gateways_bjzlvsambx-7681a57a-b32a-4131-9429-db47b5d5a614.json delete mode 100644 mock/mappings/api_paypal_gateways_bjzlvsambx-8512ea0d-060d-4f45-a4e0-a1117fe9e412.json delete mode 100644 mock/mappings/api_paypal_gateways_bjzlvsambx-dcef915b-9a82-4820-bb8b-e90db2d7888d.json delete mode 100644 mock/mappings/api_paypal_gateways_bjzlvsambx-edf07213-b3c4-4e75-8ad9-a64fa22e1854.json delete mode 100644 mock/mappings/api_price_lists-0263a08b-a36c-41cd-9de8-266fbf5bc579.json delete mode 100644 mock/mappings/api_price_lists-39857f59-85e3-4c1e-8d6c-06f6121fdede.json delete mode 100644 mock/mappings/api_price_lists_akebycovrl-0a14812d-940b-4999-a507-e9ddbc1f76a0.json delete mode 100644 mock/mappings/api_price_lists_jloxzcyaxl-20040aeb-bd2c-4c30-aef0-992a97d2b0e1.json delete mode 100644 mock/mappings/api_price_lists_jloxzcyaxl-75e6b904-dc0a-4aa0-87e1-9440407bdabc.json delete mode 100644 mock/mappings/api_price_lists_jloxzcyaxl-b2e705e8-30de-4395-8251-60e546bcedf9.json delete mode 100644 mock/mappings/api_price_lists_jloxzcyaxl-c9cbbd51-97d2-48db-820b-a02acb1f8d9f.json delete mode 100644 mock/mappings/api_price_lists_qlkxecdexl-0b81927d-d20c-4b6e-95fd-4ecd283ca9f5.json delete mode 100644 mock/mappings/api_price_lists_qlkxecdexl-3979ebb4-0d20-4b11-9960-0c4516ad1584.json delete mode 100644 mock/mappings/api_price_lists_qlkxecdexl-5244886e-c186-403d-84c0-9fc3a768f98b.json delete mode 100644 mock/mappings/api_price_lists_qlkxecdexl-6e6dc866-0815-4de7-8294-b33c65f5ced4.json delete mode 100644 mock/mappings/api_price_lists_qlkxecdexl-6f568bde-b7c3-4878-8d1f-73ba6523558e.json delete mode 100644 mock/mappings/api_price_lists_qlkxecdexl-c1d30110-8c63-46cc-bb93-5a154d65633c.json delete mode 100644 mock/mappings/api_price_lists_vlmqxcqjzl-8f012d3b-d238-46d3-93b2-e438c217944a.json delete mode 100644 mock/mappings/api_shipping_categories-5e57effb-1ce3-4a7c-bc5e-fef4a43fc23c.json delete mode 100644 mock/mappings/api_shipping_categories_vwoxgfyqqk-1bc5d3bf-6a3b-4ff7-bfa1-ddb18b00244b.json delete mode 100644 mock/mappings/api_shipping_categories_vwoxgfyqqk-796f9fe4-e933-487b-a67c-6653f89ad72a.json delete mode 100644 mock/mappings/api_shipping_categories_vwoxgfyqqk-a53b0bc0-db10-4a79-ae70-1d96c0647951.json delete mode 100644 mock/mappings/api_shipping_categories_vwoxgfyqqk-c351b018-c4ce-431f-bad4-30beaa18c7c2.json delete mode 100644 mock/mappings/api_shipping_categories_vwoxgfyqqk-f3f6c6a8-ee15-4253-a824-1e6bf41fb41f.json delete mode 100644 mock/mappings/api_shipping_categories_vwoxgfyqqk-fc77fd13-2b05-4713-a00e-f138eb4b8299.json delete mode 100644 mock/mappings/api_shipping_methods-445f70c6-e8a2-40e3-a64a-94c9e278f3e9.json delete mode 100644 mock/mappings/api_shipping_methods-fe2248f9-b29a-473c-8bcb-de1ee99c1cc4.json delete mode 100644 mock/mappings/api_shipping_methods_mnbjpfaygn-0f13d9ce-f161-4118-bdc4-6880a9eacfb1.json delete mode 100644 mock/mappings/api_shipping_methods_mnbjpfaygn-486235dd-5360-40eb-acc3-e655599acbd5.json delete mode 100644 mock/mappings/api_shipping_methods_mnbjpfaygn-74b9ce52-37f0-4549-b33a-72f3a79495f8.json delete mode 100644 mock/mappings/api_shipping_methods_mnbjpfaygn-8bc9f5f7-d552-4f79-b87d-20d70a2295bd.json delete mode 100644 mock/mappings/api_shipping_methods_mnbjpfaygn-9a631482-5915-4b49-bcc9-7d398f053cb1.json delete mode 100644 mock/mappings/api_shipping_methods_mnbjpfaygn-d844ab9e-edde-4536-9f21-7025ea89302c.json delete mode 100644 mock/mappings/api_shipping_methods_xemvpfpego-0b08a101-9b71-49f4-a3bf-260f3bb0c1ae.json delete mode 100644 mock/mappings/api_shipping_methods_xemvpfpego-3c529c3c-efd5-4e5c-8a49-d3151f09dd4f.json delete mode 100644 mock/mappings/api_shipping_methods_xemvpfpego-66772f92-3935-4336-abc7-7099f60f841f.json delete mode 100644 mock/mappings/api_shipping_methods_xemvpfpego-a0957576-933b-46d9-af2b-d81113d21289.json delete mode 100644 mock/mappings/api_shipping_methods_xemvpfpego-a28e803c-6ce6-477f-a368-61453d2a38ac.json delete mode 100644 mock/mappings/api_shipping_methods_xemvpfpego-fdcacb6f-a44c-449a-8fb4-105d3d605136.json delete mode 100644 mock/mappings/api_shipping_zones-64974b47-ae6c-48c0-bce9-5bbe76cea989.json delete mode 100644 mock/mappings/api_shipping_zones_wkwxdtjxjv-141747a9-5a37-42c5-8817-6aa8916ddafc.json delete mode 100644 mock/mappings/api_shipping_zones_wkwxdtjxjv-1735f6cf-d58f-40b1-92fe-856b76fc9751.json delete mode 100644 mock/mappings/api_shipping_zones_wkwxdtjxjv-246145de-a33c-4f22-b998-26937fdf7f70.json delete mode 100644 mock/mappings/api_shipping_zones_wkwxdtjxjv-4722c413-1757-40b3-be40-d4cc3ce938e4.json delete mode 100644 mock/mappings/api_shipping_zones_wkwxdtjxjv-8ab7de58-8aa0-4204-8975-da460ae23e4c.json delete mode 100644 mock/mappings/api_shipping_zones_wkwxdtjxjv-b6fd73ad-d164-462d-8996-41c5741a9c33.json delete mode 100644 mock/mappings/api_stock_locations-905df695-0241-4ca1-a3b4-37ad2f17986d.json delete mode 100644 mock/mappings/api_stock_locations-9cd570da-13d5-49b3-a4e6-0cb2afecca45.json delete mode 100644 mock/mappings/api_stock_locations-edcfeda0-4096-4a87-8da7-cd8198e0d9d4.json delete mode 100644 mock/mappings/api_stock_locations-f6ae3e05-7de7-46b4-a484-a39ec11cb01b.json delete mode 100644 mock/mappings/api_stock_locations_bgoxpumabk-35b87c5f-8eb5-46eb-8fda-f3f05bcb591e.json delete mode 100644 mock/mappings/api_stock_locations_bgoxpumabk-4427112a-f47e-45e4-841b-24bc77c380fe.json delete mode 100644 mock/mappings/api_stock_locations_bgoxpumabk-502800a7-aea9-4a42-ae7a-3052cadc203b.json delete mode 100644 mock/mappings/api_stock_locations_bgoxpumabk-5cccc81c-0c90-4d65-828c-1843aaaaf990.json delete mode 100644 mock/mappings/api_stock_locations_bgoxpumabk-f2e8f76b-ab4a-4d85-9a41-cd98821c7bce.json delete mode 100644 mock/mappings/api_stock_locations_bgoxpumabk-f7fb408d-1eb4-4cc4-983f-027fc7daf69c.json delete mode 100644 mock/mappings/api_stock_locations_dngepundwk-1909f122-f60f-4d34-bd76-ca5ba6f6aa89.json delete mode 100644 mock/mappings/api_stock_locations_dngepundwk-4087cf12-0688-4805-9407-371e87501290.json delete mode 100644 mock/mappings/api_stock_locations_dngepundwk-f049cb17-140a-47bb-a509-78a80f05684c.json delete mode 100644 mock/mappings/api_stock_locations_dngepundwk-f1844c8e-18bb-4e54-8458-0c011c3ffc8f.json delete mode 100644 mock/mappings/api_stock_locations_pmrpouqzwg-36e8eab3-279d-443f-95d1-6e8bff5b634c.json delete mode 100644 mock/mappings/api_stock_locations_pmrpouqzwg-4130e644-00e9-47fd-b6b4-a1fce31b0ac8.json delete mode 100644 mock/mappings/api_stock_locations_pmrpouqzwg-4b963220-dcef-483b-ad09-befab301b4e7.json delete mode 100644 mock/mappings/api_stock_locations_pmrpouqzwg-c8cd8c35-7f9e-458d-9567-2a5d2bc9030c.json delete mode 100644 mock/mappings/api_stock_locations_qkxoeumqqg-038a44d4-1c90-4e05-a54b-773aca24f1d6.json delete mode 100644 mock/mappings/api_stock_locations_qkxoeumqqg-44b6ac62-a315-440e-813a-50deeb970643.json delete mode 100644 mock/mappings/api_stock_locations_qkxoeumqqg-c6aea864-a075-48bf-b557-4b77e30bf0b7.json delete mode 100644 mock/mappings/api_stock_locations_qkxoeumqqg-d132a39f-6c01-4370-a500-0848be2fdf32.json delete mode 100644 mock/mappings/api_stripe_gateways-452f5673-010c-4ce0-90be-ef608e40cd64.json delete mode 100644 mock/mappings/api_stripe_gateways_axyqyswamx-1cd69cc9-67ca-46bf-ba8f-a82cf2093892.json delete mode 100644 mock/mappings/api_stripe_gateways_axyqyswamx-35a31595-66ac-41f2-bb68-68d590abfafa.json delete mode 100644 mock/mappings/api_stripe_gateways_axyqyswamx-82a63f92-bf26-4fab-9996-eead7073e0ec.json delete mode 100644 mock/mappings/api_stripe_gateways_axyqyswamx-9988e98b-1b83-494f-a725-0a69d7506e40.json delete mode 100644 mock/mappings/api_stripe_gateways_axyqyswamx-ab781670-df8a-4a89-9000-7fa7cddd2dc4.json delete mode 100644 mock/mappings/api_stripe_gateways_axyqyswamx-c7c2ad03-f759-4dcd-b6f0-cf12ce83f489.json delete mode 100644 mock/mappings/api_taxjar_accounts-4b91812c-6cfe-4da0-9ee6-769af63280ae.json delete mode 100644 mock/mappings/api_taxjar_accounts_ynlrjtdoqm-4a128e27-accd-444c-aab3-89b2098c7122.json delete mode 100644 mock/mappings/api_taxjar_accounts_ynlrjtdoqm-50419596-0f25-4432-8c6f-1eb89b17a26c.json delete mode 100644 mock/mappings/api_taxjar_accounts_ynlrjtdoqm-6d8024f5-963c-4808-a234-52b99c3267df.json delete mode 100644 mock/mappings/api_taxjar_accounts_ynlrjtdoqm-a0b57cfd-97e8-4d80-bb26-07af39a62dd2.json delete mode 100644 mock/mappings/api_taxjar_accounts_ynlrjtdoqm-cb796109-a422-4bfc-9634-966ab1d43a28.json delete mode 100644 mock/mappings/api_taxjar_accounts_ynlrjtdoqm-e1e94af4-eb0f-4590-93e5-a60eec21f538.json delete mode 100644 mock/mappings/api_webhooks-abf9f816-ac2f-40e6-ac2a-fffaa2320f55.json delete mode 100644 mock/mappings/api_webhooks_mlqvncbwrp-1147d069-a5bf-4066-88e2-7fddad7075d3.json delete mode 100644 mock/mappings/api_webhooks_mlqvncbwrp-5e25f72f-c716-4454-b94a-28a50f6505fd.json delete mode 100644 mock/mappings/api_webhooks_mlqvncbwrp-66a407b9-5fb6-4a42-8754-8bc6ea6f3718.json delete mode 100644 mock/mappings/api_webhooks_mlqvncbwrp-66e8551a-a941-4c02-86d5-93d623d89ec5.json delete mode 100644 mock/mappings/api_webhooks_mlqvncbwrp-73b2e9a9-67cb-4fbf-93e4-a62f23fea092.json delete mode 100644 mock/mappings/api_webhooks_mlqvncbwrp-a7517a00-361a-4ff4-a856-dcf7d5e297be.json delete mode 100644 mock/mappings/api_webhooks_mlqvncbwrp-c31a8768-24d3-4412-9968-33d8c67d8286.json create mode 100644 mock/mappings/bing_geocoders-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json create mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-16371e28-1401-4ac7-a81c-a0988cb4b54d.json create mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-465eed74-eb0b-43f9-8484-13c1b7f3c833.json create mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json create mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-6a4a021e-845e-4059-ae6c-eeef7061e107.json create mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-735d2578-1567-4bc4-ba9b-0d4f036a36be.json create mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-75081597-4c25-40a5-90e8-7f671ead5f6c.json create mode 100644 mock/mappings/braintree_gateways-18b1fcc0-7c37-4d6d-93a3-855411622e62.json create mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json create mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-0971fd9e-eb22-4c87-989e-cda5738d0858.json create mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-0d07ae32-151f-42f2-975f-3eeb1fceec35.json create mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-52e93e92-527d-4cb6-824c-6713dd08147c.json create mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-83e3238b-d012-4526-9104-401fcaafd2b1.json create mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-ba50887e-11cc-4939-8438-1016d435b267.json create mode 100644 mock/mappings/customer_groups-7014a1ce-5d68-4649-a5e4-3e4476be520a.json create mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json create mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-3c3d864a-6c42-4cfd-b366-3133054c42e9.json create mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-50fb8902-6164-491e-b20f-1e5d894cd652.json create mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-75800631-5c7d-4848-abe3-65f861be3963.json create mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-e2e8478d-ac07-493a-868d-8a48a521e561.json create mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json create mode 100644 mock/mappings/delivery_lead_times-7c0e6478-4d03-47c4-ae11-70119f779b4b.json create mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-4229326a-6840-4aa1-888e-dd1567c701e0.json create mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-7e9e1c7e-2540-46ed-abf1-144b867ce032.json create mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-84fb75a5-98f7-4e10-bb40-71f33c455a94.json create mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json create mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-d744ba63-05b5-45de-aa94-8bf2762c9212.json create mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json create mode 100644 mock/mappings/external_gateways-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-176afc29-2c80-4871-bb2f-01cd533b81e2.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-52d84087-7ffc-4083-9714-812daa9aa817.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-5a8571ce-677f-4668-a3b4-9257076280e0.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-62023398-28ff-488f-9e24-c959cb5895af.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-660f7e8d-5dfc-4311-92df-246b274ca44e.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-aa452eed-2253-45f2-a26c-575a0bc98e8e.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-d71df068-9300-4b57-a734-5271a334aaa5.json create mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json create mode 100644 mock/mappings/external_tax_calculators-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json create mode 100644 mock/mappings/external_tax_calculators-a002e74d-4717-48c1-a39a-98bc639b8f0a.json create mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json create mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-439da122-c274-46fb-8cc4-7931c4812e77.json create mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json create mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-ac23b896-4758-494d-ad8c-eb85959da17b.json create mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-d313976b-5cbb-4248-936e-fb2378ed5218.json create mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json create mode 100644 mock/mappings/external_tax_calculators_rvmjltrxpq-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json create mode 100644 mock/mappings/external_tax_calculators_rvmjltrxpq-18b75e7a-85d5-40c9-8341-082db0370dc5.json create mode 100644 mock/mappings/external_tax_calculators_rvmjltrxpq-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json create mode 100644 mock/mappings/external_tax_calculators_rvmjltrxpq-d4155d36-7cfa-4910-811c-62b15611e606.json create mode 100644 mock/mappings/google_geocoders-eda82c55-8c77-481e-83bd-693066fc8c94.json create mode 100644 mock/mappings/google_geocoders_mgwalsandn-6a416c14-34f8-481f-a946-f08d106562b1.json create mode 100644 mock/mappings/google_geocoders_mgwalsandn-73583ba6-0a14-4d3d-8b4a-f64b83668615.json create mode 100644 mock/mappings/google_geocoders_mgwalsandn-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json create mode 100644 mock/mappings/google_geocoders_mgwalsandn-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json create mode 100644 mock/mappings/google_geocoders_mgwalsandn-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json create mode 100644 mock/mappings/google_geocoders_mgwalsandn-efb838be-f6ca-438d-bf56-8aca2f9224e3.json create mode 100644 mock/mappings/inventory_models-5993645f-6ab5-4af3-9411-69228ea8b0bd.json create mode 100644 mock/mappings/inventory_models-6073c1a5-bf59-4484-a253-387724986156.json create mode 100644 mock/mappings/inventory_models-6175c756-71e5-4f30-ab47-98420a36b6d8.json create mode 100644 mock/mappings/inventory_models-d2d297e5-4ec7-4901-886b-a7c86f530e32.json create mode 100644 mock/mappings/inventory_models_lwlwdsayma-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json create mode 100644 mock/mappings/inventory_models_lwlwdsayma-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json create mode 100644 mock/mappings/inventory_models_lwlwdsayma-7bf60a76-a018-40eb-bb98-60a28abc28d1.json create mode 100644 mock/mappings/inventory_models_lwlwdsayma-b51fc668-2cac-45d8-ab3c-8bec37515adc.json create mode 100644 mock/mappings/inventory_models_qwgbzsxopa-27a39738-cc62-44d6-b487-55759d0d8ce8.json create mode 100644 mock/mappings/inventory_models_qwgbzsxopa-437793c9-5f9d-421d-9bc1-906882042d40.json create mode 100644 mock/mappings/inventory_models_qwgbzsxopa-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json create mode 100644 mock/mappings/inventory_models_qwgbzsxopa-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json create mode 100644 mock/mappings/inventory_models_xlazqspzez-1f5648fe-e885-4d15-b6b5-308b50a7f282.json create mode 100644 mock/mappings/inventory_models_xlazqspzez-880ec645-9481-4237-8f39-298d9ed19e9c.json create mode 100644 mock/mappings/inventory_models_xlazqspzez-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json create mode 100644 mock/mappings/inventory_models_xlazqspzez-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json create mode 100644 mock/mappings/inventory_models_xwqxqspqea-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json create mode 100644 mock/mappings/inventory_models_xwqxqspqea-64440d62-8ad5-48d6-80f8-fbff121a2128.json create mode 100644 mock/mappings/inventory_models_xwqxqspqea-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json create mode 100644 mock/mappings/inventory_models_xwqxqspqea-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json create mode 100644 mock/mappings/inventory_models_xwqxqspqea-c42cae13-2afc-47ef-baab-74f4549a0c91.json create mode 100644 mock/mappings/inventory_models_xwqxqspqea-da2e5490-4c78-458d-80c2-31b6cd168c05.json create mode 100644 mock/mappings/inventory_return_locations-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json create mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json create mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-46f79876-f8dd-4de2-a912-d0f3098144e9.json create mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-79755483-1d1a-434a-8e12-b5d131a81786.json create mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-7eb45641-0128-4743-81a1-af728c9d140b.json create mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-c10eb423-9e4c-409d-9ce4-b620788a9aed.json create mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-f515149b-a447-4f94-b548-e5942a056da9.json create mode 100644 mock/mappings/inventory_stock_locations-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json create mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json create mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-8662f5be-10bd-417d-b89c-d185f47d3e31.json create mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-a5627136-0910-48e7-bd87-87d0b759e5dc.json create mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-ae1807ca-b068-40c8-bed1-2f65899c9d15.json create mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-c73118b0-c1a9-48d7-8ee3-15951416b76f.json create mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-f7584548-1269-4442-88b2-8f62080f4e03.json create mode 100644 mock/mappings/klarna_gateways-8c90af06-c170-4a30-9b30-c936f52612f3.json create mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-590ca422-50b6-427e-a292-fbb91ca4d126.json create mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-6df381d7-cf5b-483b-8187-029fd14f8be0.json create mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json create mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-9a24225b-8194-4c95-a22b-78cf50603ae0.json create mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-f80b6c98-10e3-485b-ad92-a5dc757551df.json create mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-f96b0cde-70f8-42ad-93e4-558dc0925d35.json create mode 100644 mock/mappings/manual_gateways-d3622803-a267-474a-8f8b-5b9268069b0e.json create mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-38d4f538-b44f-407c-bb99-61f23abd17a8.json create mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-cc81a913-7a1e-4e65-8185-6d74dcefc615.json create mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-cf7b7100-a786-4f64-aecc-532b7ed13548.json create mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-db32005d-382f-43d4-9835-afb951d4113c.json create mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json create mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-fdd3d488-e259-4164-a702-bb60afdaa07e.json create mode 100644 mock/mappings/manual_tax_calculators-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json create mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json create mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json create mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json create mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json create mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json create mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json create mode 100644 mock/mappings/markets-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json create mode 100644 mock/mappings/markets_rjepzhzyro-3942aa83-8d03-431a-918a-fc11435415dd.json create mode 100644 mock/mappings/markets_rjepzhzyro-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json create mode 100644 mock/mappings/markets_rjepzhzyro-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json create mode 100644 mock/mappings/markets_rjepzhzyro-779594c5-6309-4cd8-b8e5-9c860d56af67.json create mode 100644 mock/mappings/markets_rjepzhzyro-db4cca06-bf19-4c77-9816-47f41c996816.json create mode 100644 mock/mappings/markets_rjepzhzyro-ec677699-f440-47be-b662-b24e3ad09fdb.json create mode 100644 mock/mappings/merchants-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json create mode 100644 mock/mappings/merchants-f862cb11-79fb-4849-8dc5-ab53304cfccc.json create mode 100644 mock/mappings/merchants_dbdevhrvam-affb452e-c3ea-4e41-804b-b574ac90ad8a.json create mode 100644 mock/mappings/merchants_dbdevhrvam-bbc19227-afdd-431d-bca0-b71194911169.json create mode 100644 mock/mappings/merchants_dbdevhrvam-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json create mode 100644 mock/mappings/merchants_dbdevhrvam-c38de940-4b0c-446f-ad2a-78fc78342033.json create mode 100644 mock/mappings/merchants_vxzdbhveom-16f65432-4b51-4f33-9e22-900c95d15ba4.json create mode 100644 mock/mappings/merchants_vxzdbhveom-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json create mode 100644 mock/mappings/merchants_vxzdbhveom-275de801-77d9-46b1-b0c3-5c09bf7ec676.json create mode 100644 mock/mappings/merchants_vxzdbhveom-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json create mode 100644 mock/mappings/merchants_vxzdbhveom-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json create mode 100644 mock/mappings/merchants_vxzdbhveom-ed9577ad-34cf-4d64-8512-507568760010.json delete mode 100644 mock/mappings/oauth_token-461ec5eb-7afc-4e5a-b0f5-afd97103ec86.json create mode 100644 mock/mappings/payment_methods-d1c94c81-7b2a-4385-b232-7b37c265255d.json create mode 100644 mock/mappings/payment_methods_pmwzdsrdde-093f8f69-985c-462e-89fc-69a46096856f.json create mode 100644 mock/mappings/payment_methods_pmwzdsrdde-53d1c651-a1a3-47ec-af04-671296453348.json create mode 100644 mock/mappings/payment_methods_pmwzdsrdde-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json create mode 100644 mock/mappings/payment_methods_pmwzdsrdde-b1f1837c-af9d-472d-a78e-e1c4741406eb.json create mode 100644 mock/mappings/payment_methods_pmwzdsrdde-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json create mode 100644 mock/mappings/payment_methods_pmwzdsrdde-d181f089-a311-416e-9ccb-e629e5b8743f.json create mode 100644 mock/mappings/paypal_gateways-55519fa8-16e1-419b-833a-993c8be014e3.json create mode 100644 mock/mappings/paypal_gateways_jklbysepav-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json create mode 100644 mock/mappings/paypal_gateways_jklbysepav-51c345dd-7ba8-444e-8737-e4f1a4bce845.json create mode 100644 mock/mappings/paypal_gateways_jklbysepav-6e4c2502-405b-4635-951a-256ff31022aa.json create mode 100644 mock/mappings/paypal_gateways_jklbysepav-b22aac35-2569-45e3-867c-325c1a3e3025.json create mode 100644 mock/mappings/paypal_gateways_jklbysepav-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json create mode 100644 mock/mappings/paypal_gateways_jklbysepav-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json create mode 100644 mock/mappings/paypal_gateways_jklbysepav-edc679b6-624c-4d51-a627-8bbd3bc0373b.json create mode 100644 mock/mappings/price_lists-8192612f-1dd3-4b33-a3eb-4f548818daa6.json create mode 100644 mock/mappings/price_lists-f804d51d-1493-4cff-b644-4526ea147c43.json create mode 100644 mock/mappings/price_lists_akebycwjml-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json create mode 100644 mock/mappings/price_lists_akebycwjml-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json create mode 100644 mock/mappings/price_lists_akebycwjml-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json create mode 100644 mock/mappings/price_lists_akebycwjml-b760ce36-eeea-4a16-a826-df745cf55ee1.json create mode 100644 mock/mappings/price_lists_nlnwecrekb-11f10920-f791-464e-9375-5275360a1fd4.json create mode 100644 mock/mappings/price_lists_nlnwecrekb-74b55a1d-12a3-43f8-b165-257430af426a.json create mode 100644 mock/mappings/price_lists_nlnwecrekb-76d1145b-ed14-47c8-bbff-114aab364c8b.json create mode 100644 mock/mappings/price_lists_nlnwecrekb-84715bce-e82f-4507-a8c6-b3c2c516ea72.json create mode 100644 mock/mappings/price_lists_nlnwecrekb-854ff045-a298-4574-9d2b-553cfe2cc4c4.json create mode 100644 mock/mappings/price_lists_nlnwecrekb-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json create mode 100644 mock/mappings/shipping_categories-3a89b7e7-372d-4a02-95da-f025168f7c4a.json create mode 100644 mock/mappings/shipping_categories_enbljfzglw-10a04027-1d06-4136-a2c8-509f2fa915b7.json create mode 100644 mock/mappings/shipping_categories_enbljfzglw-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json create mode 100644 mock/mappings/shipping_categories_enbljfzglw-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json create mode 100644 mock/mappings/shipping_categories_enbljfzglw-408a24db-193f-4979-be1d-bba839acdf4f.json create mode 100644 mock/mappings/shipping_categories_enbljfzglw-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json create mode 100644 mock/mappings/shipping_categories_enbljfzglw-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json create mode 100644 mock/mappings/shipping_methods-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json create mode 100644 mock/mappings/shipping_methods-15d31379-0a42-4667-bcf5-7c90563c3028.json create mode 100644 mock/mappings/shipping_methods_avqkgfqjjo-12145955-1d6e-4c70-b364-893a13f3b57e.json create mode 100644 mock/mappings/shipping_methods_avqkgfqjjo-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json create mode 100644 mock/mappings/shipping_methods_avqkgfqjjo-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json create mode 100644 mock/mappings/shipping_methods_avqkgfqjjo-7a7184ed-15bd-4613-8653-894aee50fd3d.json create mode 100644 mock/mappings/shipping_methods_avqkgfqjjo-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json create mode 100644 mock/mappings/shipping_methods_avqkgfqjjo-e0c92868-59ae-4324-9202-c913cd2b149a.json create mode 100644 mock/mappings/shipping_methods_mvjqofzjyn-14b8db65-0273-4b45-a670-f4e9a21b5666.json create mode 100644 mock/mappings/shipping_methods_mvjqofzjyn-4dfed22a-45de-4d63-bc3d-26c39407b01e.json create mode 100644 mock/mappings/shipping_methods_mvjqofzjyn-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json create mode 100644 mock/mappings/shipping_methods_mvjqofzjyn-7f30fb03-a0ef-466b-aef4-33139aea7227.json create mode 100644 mock/mappings/shipping_methods_mvjqofzjyn-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json create mode 100644 mock/mappings/shipping_methods_mvjqofzjyn-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json create mode 100644 mock/mappings/shipping_zones-d95c6987-72d9-4998-b692-833c165dbf9d.json create mode 100644 mock/mappings/shipping_zones_ekvlvtjyxq-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json create mode 100644 mock/mappings/shipping_zones_ekvlvtjyxq-0da83c66-d888-4134-a3f1-89c62a57657f.json create mode 100644 mock/mappings/shipping_zones_ekvlvtjyxq-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json create mode 100644 mock/mappings/shipping_zones_ekvlvtjyxq-927fd378-cd26-4238-b127-951ff99290d5.json create mode 100644 mock/mappings/shipping_zones_ekvlvtjyxq-bd9c9d43-94e3-457d-9419-c3158e0d0362.json create mode 100644 mock/mappings/shipping_zones_ekvlvtjyxq-dfef547f-6604-45af-8e31-808c0a573b3c.json create mode 100644 mock/mappings/stock_locations-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json create mode 100644 mock/mappings/stock_locations-d730271e-e618-4dd8-af9e-edc244602dcb.json create mode 100644 mock/mappings/stock_locations-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json create mode 100644 mock/mappings/stock_locations-f94a6c29-5446-4fc7-9857-7d0178580e68.json create mode 100644 mock/mappings/stock_locations_bkeequwyyk-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json create mode 100644 mock/mappings/stock_locations_bkeequwyyk-60a49051-d491-4c78-8242-220aa743ec50.json create mode 100644 mock/mappings/stock_locations_bkeequwyyk-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json create mode 100644 mock/mappings/stock_locations_bkeequwyyk-c185c581-52d4-4f0c-97eb-841f963cad6d.json create mode 100644 mock/mappings/stock_locations_ekbqqudzmg-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json create mode 100644 mock/mappings/stock_locations_ekbqqudzmg-b665ee32-0657-42ca-83bd-11883854e6c3.json create mode 100644 mock/mappings/stock_locations_ekbqqudzmg-bb16c65f-d84b-4655-808c-d51fd7ef956f.json create mode 100644 mock/mappings/stock_locations_ekbqqudzmg-c0043439-e0e4-435b-aef9-110381ecc4bd.json create mode 100644 mock/mappings/stock_locations_qkpoyuxerg-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json create mode 100644 mock/mappings/stock_locations_qkpoyuxerg-94f54298-cfc8-4f88-ba4b-8d1412171286.json create mode 100644 mock/mappings/stock_locations_qkpoyuxerg-956ff1f4-b530-4337-9b54-2d37b71bf096.json create mode 100644 mock/mappings/stock_locations_qkpoyuxerg-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json create mode 100644 mock/mappings/stock_locations_rneebuyjln-158cd75d-739d-4b7f-86d2-a519006a893c.json create mode 100644 mock/mappings/stock_locations_rneebuyjln-29a47602-f959-423b-8abd-729a4890d3e8.json create mode 100644 mock/mappings/stock_locations_rneebuyjln-6c4f7873-a681-4339-a0c5-929662bba461.json create mode 100644 mock/mappings/stock_locations_rneebuyjln-b59f2a00-610f-490c-b399-afbb424841b7.json create mode 100644 mock/mappings/stock_locations_rneebuyjln-f4d11818-49ba-4c90-b84d-573241e8e1e1.json create mode 100644 mock/mappings/stock_locations_rneebuyjln-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json create mode 100644 mock/mappings/stripe_gateways-44d939ca-4a54-459e-901a-df3eae051476.json create mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json create mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-7eb5c230-1642-497a-86cc-f81bd7217cfb.json create mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-81fb0ed1-62d8-44f6-ac98-13106b51684b.json create mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-93a5764d-0689-4fda-a31a-366e5a265190.json create mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-e04d3158-431f-4d9b-b050-f5591cc7ccea.json create mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json create mode 100644 mock/mappings/taxjar_accounts-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json create mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-215a324c-cf6a-44c1-8777-af57fa28a70f.json create mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json create mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json create mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-d0c22512-542d-437b-a696-a96780a082d5.json create mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json create mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-f38da734-a436-4c58-b40a-e969eec120f9.json create mode 100644 mock/mappings/webhooks-48ba9633-eb4f-4342-8cff-6821113f0bac.json create mode 100644 mock/mappings/webhooks_epqzocjdyk-15b09980-bc6c-4b56-bfe6-a0a38418c001.json create mode 100644 mock/mappings/webhooks_epqzocjdyk-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json create mode 100644 mock/mappings/webhooks_epqzocjdyk-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json create mode 100644 mock/mappings/webhooks_epqzocjdyk-a1fbb10d-de25-495d-bd9f-a57f24648559.json create mode 100644 mock/mappings/webhooks_epqzocjdyk-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json create mode 100644 mock/mappings/webhooks_epqzocjdyk-b1926da9-ec00-4bb2-95e7-01c07b532a99.json create mode 100644 mock/mappings/webhooks_epqzocjdyk-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json diff --git a/commercelayer/resource_checkout_com_test.go b/commercelayer/resource_checkout_com_test.go index f8d3948..ef2da4f 100644 --- a/commercelayer/resource_checkout_com_test.go +++ b/commercelayer/resource_checkout_com_test.go @@ -31,6 +31,8 @@ func testAccCheckCheckoutComGatewayDestroy(s *terraform.State) error { } func (s *AcceptanceSuite) TestAccCheckoutComGateway_basic() { + s.T().Skip("Skipping test because we need a valid key") + resourceName := "commercelayer_checkout_com_gateway.incentro_checkout_com_gateway" resource.Test(s.T(), resource.TestCase{ diff --git a/commercelayer/resource_payment_method_test.go b/commercelayer/resource_payment_method_test.go index f586f1f..02b0013 100644 --- a/commercelayer/resource_payment_method_test.go +++ b/commercelayer/resource_payment_method_test.go @@ -73,16 +73,14 @@ func (s *AcceptanceSuite) TestAccPaymentMethod_basic() { resource.TestCheckResourceAttr(resourceName, "attributes.0.metadata.foo", "bar"), resource.TestCheckResourceAttr(resourceName, "attributes.0.currency_code", "EUR"), resource.TestCheckResourceAttr(resourceName, "attributes.0.payment_source_type", "AdyenPayment"), - resource.TestCheckResourceAttr(resourceName, "attributes.0.price_amount_cents", "0"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.price_amount_cents", "10"), ), }, { Config: strings.Join([]string{testAccAdyenGatewayCreate(resourceName), testAccPaymentMethodUpdate(resourceName)}, "\n"), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr(resourceName, "attributes.0.metadata.bar", "foo"), - resource.TestCheckResourceAttr(resourceName, "attributes.0.currency_code", "EUR"), - resource.TestCheckResourceAttr(resourceName, "attributes.0.payment_source_type", "AdyenPayment"), - resource.TestCheckResourceAttr(resourceName, "attributes.0.price_amount_cents", "0"), + resource.TestCheckResourceAttr(resourceName, "attributes.0.price_amount_cents", "5"), ), }, }, @@ -95,7 +93,7 @@ func testAccPaymentMethodCreate(testName string) string { attributes { payment_source_type = "AdyenPayment" currency_code = "EUR" - price_amount_cents = 0 + price_amount_cents = 10 metadata = { foo : "bar" testName: "{{.testName}}" @@ -115,7 +113,7 @@ func testAccPaymentMethodUpdate(testName string) string { attributes { payment_source_type = "AdyenPayment" currency_code = "EUR" - price_amount_cents = 0 + price_amount_cents = 5 metadata = { bar : "foo" testName: "{{.testName}}" diff --git a/docker-compose.yml b/docker-compose.yml index c424282..5b89ff2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,11 @@ -version: "3.9" services: commercelayer-mock: - image: wiremock/wiremock:2.34.0 + image: wiremock/wiremock:3.9.2 + environment: + - UID=${UID} + - GID=${GID} + user: "${UID}:${GID}" + entrypoint: ["/docker-entrypoint.sh", "--global-response-templating", "--disable-gzip", "--verbose"] ports: - "8080:8080" volumes: diff --git a/mock/mappings/addresses-184cb485-be00-4590-af90-6524d31e6338.json b/mock/mappings/addresses-184cb485-be00-4590-af90-6524d31e6338.json new file mode 100644 index 0000000..5cdbf6a --- /dev/null +++ b/mock/mappings/addresses-184cb485-be00-4590-af90-6524d31e6338.json @@ -0,0 +1,40 @@ +{ + "id" : "184cb485-be00-4590-af90-6524d31e6338", + "name" : "addresses", + "request" : { + "url" : "/addresses", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:25.956Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6ab17a734ae8271d72c33a40c1d0f3bbd6bddfca8ea39278574e3f939d1097a7\"}}}", + "headers" : { + "x-request-id" : "4f82f8e1-42ef-4755-8476-f2f7d6e903bc", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "2377f8606b06ec15611ccc0d05e1b36f", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"8a1f13d5b0422907352e0511759ade05\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "184cb485-be00-4590-af90-6524d31e6338", + "persistent" : true, + "insertionIndex" : 284 +} \ No newline at end of file diff --git a/mock/mappings/addresses-1cdf04a4-a664-428f-88bd-44d9991cd823.json b/mock/mappings/addresses-1cdf04a4-a664-428f-88bd-44d9991cd823.json new file mode 100644 index 0000000..0075484 --- /dev/null +++ b/mock/mappings/addresses-1cdf04a4-a664-428f-88bd-44d9991cd823.json @@ -0,0 +1,40 @@ +{ + "id" : "1cdf04a4-a664-428f-88bd-44d9991cd823", + "name" : "addresses", + "request" : { + "url" : "/addresses", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:53:31.168Z\",\"updated_at\":\"2024-10-24T15:53:31.168Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c02c7d136456902b388510285841af16e8b28e50464cb8e4b4826530777fd325\"}}}", + "headers" : { + "x-request-id" : "b78ef572-a2a4-4782-b205-8b22cd5e66ba", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "20ffa727b8db1b7f1b5faa18fbaf0804", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:53:31 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"7aae03bedc64134fdbf9681676c11d84\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "1cdf04a4-a664-428f-88bd-44d9991cd823", + "persistent" : true, + "insertionIndex" : 34 +} \ No newline at end of file diff --git a/mock/mappings/addresses-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json b/mock/mappings/addresses-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json new file mode 100644 index 0000000..3dd51ac --- /dev/null +++ b/mock/mappings/addresses-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json @@ -0,0 +1,40 @@ +{ + "id" : "53509ebf-d9e3-479c-af99-5b8d7e0a0c27", + "name" : "addresses", + "request" : { + "url" : "/addresses", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:51.320Z\",\"updated_at\":\"2024-10-24T15:51:51.320Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2fa8bd236af7982af619bba3f83462c48f7c8f4a9ff06be2cf320e03883ed6f7\"}}}", + "headers" : { + "x-request-id" : "25a17ef8-3382-42b3-aff7-9994b1f3d133", + "x-kong-upstream-latency" : "27", + "X-Ratelimit-Remaining" : "85", + "x-kong-request-id" : "fbd456228d22bd197167e82d7b22723d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:51 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"a2d4ff8382f8ce6a2b783b690e6664f5\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "53509ebf-d9e3-479c-af99-5b8d7e0a0c27", + "persistent" : true, + "insertionIndex" : 192 +} \ No newline at end of file diff --git a/mock/mappings/addresses-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json b/mock/mappings/addresses-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json new file mode 100644 index 0000000..7139150 --- /dev/null +++ b/mock/mappings/addresses-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json @@ -0,0 +1,40 @@ +{ + "id" : "54f7dfed-4c7d-4d4a-995a-11a2408d2b0f", + "name" : "addresses", + "request" : { + "url" : "/addresses", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:37.446Z\",\"updated_at\":\"2024-10-24T15:51:37.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3998656388b620fa14ce5aa1f94f97c0a507a9c538af6e581c5f23619a91b123\"}}}", + "headers" : { + "x-request-id" : "51b1b0fb-9af9-46b7-a274-4ac606434fe6", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "5aa29d0592ea116b9c625c2f81534b5e", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c66c0f245d67bc3586de8686a69e07ab\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "54f7dfed-4c7d-4d4a-995a-11a2408d2b0f", + "persistent" : true, + "insertionIndex" : 249 +} \ No newline at end of file diff --git a/mock/mappings/addresses-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json b/mock/mappings/addresses-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json new file mode 100644 index 0000000..49c4559 --- /dev/null +++ b/mock/mappings/addresses-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json @@ -0,0 +1,40 @@ +{ + "id" : "551ea300-6b8e-40ae-9917-9e3e9b17ea2d", + "name" : "addresses", + "request" : { + "url" : "/addresses", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:55.674Z\",\"updated_at\":\"2024-10-24T15:51:55.674Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1137922ba44f0d9e10f543b6a9687a49d299b997c1f5de1925a6b2e5797024d5\"}}}", + "headers" : { + "x-request-id" : "f2ee6ed5-d300-413f-960d-6da149ab5ca7", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "81", + "x-kong-request-id" : "08198756af55682792323c0f929f502c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:55 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c38087893b1779f410ae47b9de52f986\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "551ea300-6b8e-40ae-9917-9e3e9b17ea2d", + "persistent" : true, + "insertionIndex" : 170 +} \ No newline at end of file diff --git a/mock/mappings/addresses-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json b/mock/mappings/addresses-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json new file mode 100644 index 0000000..41a30cb --- /dev/null +++ b/mock/mappings/addresses-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json @@ -0,0 +1,40 @@ +{ + "id" : "721a051e-1a68-45bc-87f9-26ac94e6b7d1", + "name" : "addresses", + "request" : { + "url" : "/addresses", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:14.630Z\",\"updated_at\":\"2024-10-24T15:52:14.630Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b9d796b19ce5dbfab6f2d77a32493d6414f7dfbb4ac7b319aaef925235eea50d\"}}}", + "headers" : { + "x-request-id" : "4bc9c92c-8744-4983-b1f8-da800b7683f5", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "69", + "x-kong-request-id" : "27eb494697091e1f83152d174ca56e6d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:14 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c04779258750931d2c87d005355580e9\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "721a051e-1a68-45bc-87f9-26ac94e6b7d1", + "persistent" : true, + "insertionIndex" : 96 +} \ No newline at end of file diff --git a/mock/mappings/addresses-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json b/mock/mappings/addresses-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json new file mode 100644 index 0000000..60772b1 --- /dev/null +++ b/mock/mappings/addresses-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json @@ -0,0 +1,40 @@ +{ + "id" : "e3acc280-8b7b-4c5d-802d-4c39f17df6e5", + "name" : "addresses", + "request" : { + "url" : "/addresses", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:07.401Z\",\"updated_at\":\"2024-10-24T15:52:07.401Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"92d23b7119bb74efa71009bb06cfefb487812c44a1f65f905bf67ca9e48712f1\"}}}", + "headers" : { + "x-request-id" : "a5393e2a-e09a-4f8e-b323-87c325154c78", + "x-kong-upstream-latency" : "27", + "X-Ratelimit-Remaining" : "72", + "x-kong-request-id" : "ce62e5799e8b7f428153bd6a1dface00", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"7fdb19914c219e763e74bedd9610c797\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e3acc280-8b7b-4c5d-802d-4c39f17df6e5", + "persistent" : true, + "insertionIndex" : 125 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json b/mock/mappings/addresses_bazyuqxgqj-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json new file mode 100644 index 0000000..90a4919 --- /dev/null +++ b/mock/mappings/addresses_bazyuqxgqj-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json @@ -0,0 +1,38 @@ +{ + "id" : "68c7f68e-9073-4a06-a37a-f63c9aaca10b", + "name" : "addresses_bazyuqxgqj", + "request" : { + "url" : "/addresses/baZYuqxgqJ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:25.956Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ef37d0e66a6ca1b64d139c73a37b0bccc137e23a5a42e94ffb07b6f52f203bce\"}}}", + "headers" : { + "x-request-id" : "e09e9c4e-796a-4917-937f-8ad10a643d20", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "8c6b1813aebb5c7a12174a3228ddff22", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"0f09ff92cce9a91e2723124b55a482eb\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "68c7f68e-9073-4a06-a37a-f63c9aaca10b", + "persistent" : true, + "scenarioName" : "scenario-44-addresses-baZYuqxgqJ", + "requiredScenarioState" : "scenario-44-addresses-baZYuqxgqJ-2", + "newScenarioState" : "scenario-44-addresses-baZYuqxgqJ-3", + "insertionIndex" : 282 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json b/mock/mappings/addresses_bazyuqxgqj-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json new file mode 100644 index 0000000..8a47c7a --- /dev/null +++ b/mock/mappings/addresses_bazyuqxgqj-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json @@ -0,0 +1,32 @@ +{ + "id" : "6d4798f2-8ae5-4aaf-bd44-5656e4256025", + "name" : "addresses_bazyuqxgqj", + "request" : { + "url" : "/addresses/baZYuqxgqJ", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "cd270d6b-8c3e-4ce9-ba8a-467bcf86de3a", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "999ca31c2b49d166e49ce95fe784a752", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:27 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "6d4798f2-8ae5-4aaf-bd44-5656e4256025", + "persistent" : true, + "insertionIndex" : 279 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-702b83aa-beb1-43a0-8db8-045e75e30b02.json b/mock/mappings/addresses_bazyuqxgqj-702b83aa-beb1-43a0-8db8-045e75e30b02.json new file mode 100644 index 0000000..d0211ae --- /dev/null +++ b/mock/mappings/addresses_bazyuqxgqj-702b83aa-beb1-43a0-8db8-045e75e30b02.json @@ -0,0 +1,38 @@ +{ + "id" : "702b83aa-beb1-43a0-8db8-045e75e30b02", + "name" : "addresses_bazyuqxgqj", + "request" : { + "url" : "/addresses/baZYuqxgqJ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"city\":\"Amsterdam\",\"zip_code\":\"1013 BC\",\"state_code\":\"NH\",\"country_code\":\"NL\",\"phone\":\"020 409 0444\",\"full_address\":\"Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"name\":\"Incentro, Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:26.946Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"35dc4d2a45e53767e8c6105c559651e4a2504e0a84e7d609e16e69792d41c071\"}}}", + "headers" : { + "x-request-id" : "fa4057e0-3c8e-4483-be19-4fc2a7dcd1ad", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "4ee80336a180f77c09409f2bbc755f6e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:27 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d76354de42d01f55e716936d5445d235\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "702b83aa-beb1-43a0-8db8-045e75e30b02", + "persistent" : true, + "scenarioName" : "scenario-44-addresses-baZYuqxgqJ", + "requiredScenarioState" : "scenario-44-addresses-baZYuqxgqJ-3", + "newScenarioState" : "scenario-44-addresses-baZYuqxgqJ-4", + "insertionIndex" : 280 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-84bb3e51-cd54-4890-879a-1f965aef5588.json b/mock/mappings/addresses_bazyuqxgqj-84bb3e51-cd54-4890-879a-1f965aef5588.json new file mode 100644 index 0000000..a0c9cbf --- /dev/null +++ b/mock/mappings/addresses_bazyuqxgqj-84bb3e51-cd54-4890-879a-1f965aef5588.json @@ -0,0 +1,40 @@ +{ + "id" : "84bb3e51-cd54-4890-879a-1f965aef5588", + "name" : "addresses_bazyuqxgqj", + "request" : { + "url" : "/addresses/baZYuqxgqJ", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Amsterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"lng\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"},\"notes\":null,\"phone\":\"020 409 0444\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"NH\",\"zip_code\":\"1013 BC\"},\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"city\":\"Amsterdam\",\"zip_code\":\"1013 BC\",\"state_code\":\"NH\",\"country_code\":\"NL\",\"phone\":\"020 409 0444\",\"full_address\":\"Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"name\":\"Incentro, Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:26.946Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1b548d196af807e2c65e656d371bdc769ac1118c5a8f5d7506a031631a9a4a0f\"}}}", + "headers" : { + "x-request-id" : "fb511738-3259-4831-b925-4287d6b5b491", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "670ead1d021f102ac0708717c9bb5f6c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"e685c0be6542663a900b46d14ac23d46\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "84bb3e51-cd54-4890-879a-1f965aef5588", + "persistent" : true, + "insertionIndex" : 281 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json b/mock/mappings/addresses_bazyuqxgqj-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json new file mode 100644 index 0000000..c184c42 --- /dev/null +++ b/mock/mappings/addresses_bazyuqxgqj-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json @@ -0,0 +1,36 @@ +{ + "id" : "9020fcc1-4a5a-4be1-b1a0-4b8baec72f69", + "name" : "addresses_bazyuqxgqj", + "request" : { + "url" : "/addresses/baZYuqxgqJ", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "5818b57f-cc9a-479c-8361-18587d55d0df", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "78ca7657e4b99877fa2c5e4353aafb3e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:27 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "9020fcc1-4a5a-4be1-b1a0-4b8baec72f69", + "persistent" : true, + "scenarioName" : "scenario-44-addresses-baZYuqxgqJ", + "requiredScenarioState" : "scenario-44-addresses-baZYuqxgqJ-4", + "insertionIndex" : 278 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json b/mock/mappings/addresses_bazyuqxgqj-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json new file mode 100644 index 0000000..9a52a06 --- /dev/null +++ b/mock/mappings/addresses_bazyuqxgqj-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json @@ -0,0 +1,38 @@ +{ + "id" : "df6ba041-ad58-43bd-ad2d-ebab8bc8db8f", + "name" : "addresses_bazyuqxgqj", + "request" : { + "url" : "/addresses/baZYuqxgqJ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:25.956Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1ccb0814d756c4b97ab18a53269fa99eb573f38a192cf0a7fb338763647884aa\"}}}", + "headers" : { + "x-request-id" : "f92f29bd-ed55-45f0-9a5e-464b583e92fc", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "e55b1052a902410d9008dc0fc855fa32", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d509077c001d276f0530c91c63cd3d5d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "df6ba041-ad58-43bd-ad2d-ebab8bc8db8f", + "persistent" : true, + "scenarioName" : "scenario-44-addresses-baZYuqxgqJ", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-44-addresses-baZYuqxgqJ-2", + "insertionIndex" : 283 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-51616306-4952-4db5-9eba-1d4b0af93ab5.json b/mock/mappings/addresses_bkzqueglkr-51616306-4952-4db5-9eba-1d4b0af93ab5.json new file mode 100644 index 0000000..34ac8ff --- /dev/null +++ b/mock/mappings/addresses_bkzqueglkr-51616306-4952-4db5-9eba-1d4b0af93ab5.json @@ -0,0 +1,36 @@ +{ + "id" : "51616306-4952-4db5-9eba-1d4b0af93ab5", + "name" : "addresses_bkzqueglkr", + "request" : { + "url" : "/addresses/BKZQuEGLkr", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "74d7aaee-55b9-4623-8b0d-0c56d30ffbbe", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "11", + "x-kong-request-id" : "9b9b8a57404d6a2c5a943c016dd0d410", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:17 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "51616306-4952-4db5-9eba-1d4b0af93ab5", + "persistent" : true, + "scenarioName" : "scenario-14-addresses-BKZQuEGLkr", + "requiredScenarioState" : "scenario-14-addresses-BKZQuEGLkr-4", + "insertionIndex" : 85 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-5219acae-078d-47d5-975c-b3701741b752.json b/mock/mappings/addresses_bkzqueglkr-5219acae-078d-47d5-975c-b3701741b752.json new file mode 100644 index 0000000..c467802 --- /dev/null +++ b/mock/mappings/addresses_bkzqueglkr-5219acae-078d-47d5-975c-b3701741b752.json @@ -0,0 +1,32 @@ +{ + "id" : "5219acae-078d-47d5-975c-b3701741b752", + "name" : "addresses_bkzqueglkr", + "request" : { + "url" : "/addresses/BKZQuEGLkr", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "b60dc9b8-0814-46ed-9454-ab6e84650702", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "68", + "x-kong-request-id" : "1a4160298675b34db6c6221c5d0a8347", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "5219acae-078d-47d5-975c-b3701741b752", + "persistent" : true, + "insertionIndex" : 86 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json b/mock/mappings/addresses_bkzqueglkr-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json new file mode 100644 index 0000000..5cd021b --- /dev/null +++ b/mock/mappings/addresses_bkzqueglkr-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json @@ -0,0 +1,38 @@ +{ + "id" : "7d309d4c-6b89-46de-bfb5-ccbcfedc26dc", + "name" : "addresses_bkzqueglkr", + "request" : { + "url" : "/addresses/BKZQuEGLkr", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:14.630Z\",\"updated_at\":\"2024-10-24T15:52:14.630Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f89fcb2755372796e62d219fbe191d440d4a5f484d340a68179b9124a489507e\"}}}", + "headers" : { + "x-request-id" : "eae48b48-b9b6-4b43-858d-8180346d2c44", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "15", + "x-kong-request-id" : "20d0c351c156d211f62df41a15944103", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:15 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"60c033da9a755461ad3fc34102ef5b89\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7d309d4c-6b89-46de-bfb5-ccbcfedc26dc", + "persistent" : true, + "scenarioName" : "scenario-14-addresses-BKZQuEGLkr", + "requiredScenarioState" : "scenario-14-addresses-BKZQuEGLkr-2", + "newScenarioState" : "scenario-14-addresses-BKZQuEGLkr-3", + "insertionIndex" : 92 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-a5ed938c-498c-4161-b650-34fa3ba00c83.json b/mock/mappings/addresses_bkzqueglkr-a5ed938c-498c-4161-b650-34fa3ba00c83.json new file mode 100644 index 0000000..0d24875 --- /dev/null +++ b/mock/mappings/addresses_bkzqueglkr-a5ed938c-498c-4161-b650-34fa3ba00c83.json @@ -0,0 +1,38 @@ +{ + "id" : "a5ed938c-498c-4161-b650-34fa3ba00c83", + "name" : "addresses_bkzqueglkr", + "request" : { + "url" : "/addresses/BKZQuEGLkr", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:14.630Z\",\"updated_at\":\"2024-10-24T15:52:14.630Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a38e8b65ea25d296afa5e0b04a35eff2a1a9552469b4b9d3b251890910b72c74\"}}}", + "headers" : { + "x-request-id" : "695deac0-24c4-4650-8ed4-5d5a0344d659", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "17", + "x-kong-request-id" : "f17aef4b10a6df6179e1d91fdbc9cf71", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:15 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"66f87072499cc51118b46fcd84ca8ae1\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a5ed938c-498c-4161-b650-34fa3ba00c83", + "persistent" : true, + "scenarioName" : "scenario-14-addresses-BKZQuEGLkr", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-14-addresses-BKZQuEGLkr-2", + "insertionIndex" : 94 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json b/mock/mappings/addresses_bkzqueglkr-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json new file mode 100644 index 0000000..ae1f2d7 --- /dev/null +++ b/mock/mappings/addresses_bkzqueglkr-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json @@ -0,0 +1,38 @@ +{ + "id" : "ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1", + "name" : "addresses_bkzqueglkr", + "request" : { + "url" : "/addresses/BKZQuEGLkr", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:14.630Z\",\"updated_at\":\"2024-10-24T15:52:14.630Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f0eb3faa52473f55af74f302a31ab6c7dd61959ec41dbe8fad5573d4cb3bb71c\"}}}", + "headers" : { + "x-request-id" : "7236b4fb-8ba7-481d-bc1b-c72058648519", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "13", + "x-kong-request-id" : "aa4c7e7d716d1e6f7973e541cd5f9f26", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"a1d429bb089d9fe98b3e5bff2c573ee9\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1", + "persistent" : true, + "scenarioName" : "scenario-14-addresses-BKZQuEGLkr", + "requiredScenarioState" : "scenario-14-addresses-BKZQuEGLkr-3", + "newScenarioState" : "scenario-14-addresses-BKZQuEGLkr-4", + "insertionIndex" : 89 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglle-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json b/mock/mappings/addresses_bkzqueglle-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json new file mode 100644 index 0000000..27bb061 --- /dev/null +++ b/mock/mappings/addresses_bkzqueglle-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json @@ -0,0 +1,38 @@ +{ + "id" : "0b9ff0b3-0871-42f4-a61a-7efb11c7e799", + "name" : "addresses_bkzqueglle", + "request" : { + "url" : "/addresses/BKZQuEGLLe", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:51.320Z\",\"updated_at\":\"2024-10-24T15:51:51.320Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3f6ebaace184339096b57e72989b093286f3688e0bb7d3f0674b92116891c175\"}}}", + "headers" : { + "x-request-id" : "97ea855e-7e29-4ca4-be2b-a4001af6a525", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "52", + "x-kong-request-id" : "c434a263d257c32fc4971c082e75f82c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b58b7c1865fd0f995424af98e58c322d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0b9ff0b3-0871-42f4-a61a-7efb11c7e799", + "persistent" : true, + "scenarioName" : "scenario-31-addresses-BKZQuEGLLe", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-31-addresses-BKZQuEGLLe-2", + "insertionIndex" : 188 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglle-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json b/mock/mappings/addresses_bkzqueglle-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json new file mode 100644 index 0000000..9a347f6 --- /dev/null +++ b/mock/mappings/addresses_bkzqueglle-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json @@ -0,0 +1,38 @@ +{ + "id" : "2bd984f2-be09-40dd-a1ee-4cb5a3a37b25", + "name" : "addresses_bkzqueglle", + "request" : { + "url" : "/addresses/BKZQuEGLLe", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:51.320Z\",\"updated_at\":\"2024-10-24T15:51:51.320Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c5becc9baf656b0e9fa60f200cd50277f95c90be02f0552c6dd3ad76050d900a\"}}}", + "headers" : { + "x-request-id" : "bc412c44-dd93-441e-8981-6c2d7a5d3ba2", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "50", + "x-kong-request-id" : "3ae1d853ff2ee5620676aa6472da1945", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"60ea57706ed496e6b9405e80cd0afa37\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "2bd984f2-be09-40dd-a1ee-4cb5a3a37b25", + "persistent" : true, + "scenarioName" : "scenario-31-addresses-BKZQuEGLLe", + "requiredScenarioState" : "scenario-31-addresses-BKZQuEGLLe-2", + "newScenarioState" : "scenario-31-addresses-BKZQuEGLLe-3", + "insertionIndex" : 184 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglle-a528706c-5cf0-4a59-a8be-60569adf8081.json b/mock/mappings/addresses_bkzqueglle-a528706c-5cf0-4a59-a8be-60569adf8081.json new file mode 100644 index 0000000..0c23234 --- /dev/null +++ b/mock/mappings/addresses_bkzqueglle-a528706c-5cf0-4a59-a8be-60569adf8081.json @@ -0,0 +1,32 @@ +{ + "id" : "a528706c-5cf0-4a59-a8be-60569adf8081", + "name" : "addresses_bkzqueglle", + "request" : { + "url" : "/addresses/BKZQuEGLLe", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "7d890ba3-954b-4f4b-9b20-6e97b47a9f7d", + "x-kong-upstream-latency" : "26", + "X-Ratelimit-Remaining" : "83", + "x-kong-request-id" : "3c2ef93640ede97c148a3b4749e1a059", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "a528706c-5cf0-4a59-a8be-60569adf8081", + "persistent" : true, + "insertionIndex" : 173 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglle-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json b/mock/mappings/addresses_bkzqueglle-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json new file mode 100644 index 0000000..db2ca99 --- /dev/null +++ b/mock/mappings/addresses_bkzqueglle-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json @@ -0,0 +1,37 @@ +{ + "id" : "f7b84593-c8ec-4ed2-b4a7-c7c931ddf733", + "name" : "addresses_bkzqueglle", + "request" : { + "url" : "/addresses/BKZQuEGLLe", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:51.320Z\",\"updated_at\":\"2024-10-24T15:51:51.320Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"965d3e9006a9ef60ecdefc7c6422d7a8304ba55d66193d2ac75a9a90f4122413\"}}}", + "headers" : { + "x-request-id" : "b16c4d2f-a3a4-40e1-a353-f9c6c28ddebd", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "48", + "x-kong-request-id" : "c16c3b1082b0873fc78c9a79625d8115", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"2afced4069235014828453c36afcd4d4\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f7b84593-c8ec-4ed2-b4a7-c7c931ddf733", + "persistent" : true, + "scenarioName" : "scenario-31-addresses-BKZQuEGLLe", + "requiredScenarioState" : "scenario-31-addresses-BKZQuEGLLe-3", + "insertionIndex" : 180 +} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json b/mock/mappings/addresses_boelupqapl-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json new file mode 100644 index 0000000..99e9268 --- /dev/null +++ b/mock/mappings/addresses_boelupqapl-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json @@ -0,0 +1,36 @@ +{ + "id" : "0e78e47d-4917-4aab-a5e2-cbe5fbac92d9", + "name" : "addresses_boelupqapl", + "request" : { + "url" : "/addresses/Boelupqapl", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "532beb0c-323d-43b1-9e0c-c97dd1e2e05d", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "70", + "x-kong-request-id" : "e76ce31391997b0d441e6f290024ca51", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "0e78e47d-4917-4aab-a5e2-cbe5fbac92d9", + "persistent" : true, + "scenarioName" : "scenario-38-addresses-Boelupqapl", + "requiredScenarioState" : "scenario-38-addresses-Boelupqapl-4", + "insertionIndex" : 228 +} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-62c20dd8-2870-4417-b596-4fb176cfb377.json b/mock/mappings/addresses_boelupqapl-62c20dd8-2870-4417-b596-4fb176cfb377.json new file mode 100644 index 0000000..5f9882e --- /dev/null +++ b/mock/mappings/addresses_boelupqapl-62c20dd8-2870-4417-b596-4fb176cfb377.json @@ -0,0 +1,32 @@ +{ + "id" : "62c20dd8-2870-4417-b596-4fb176cfb377", + "name" : "addresses_boelupqapl", + "request" : { + "url" : "/addresses/Boelupqapl", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "ec9b0267-38cd-45e9-8ae1-61213b8a2e54", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "8bd8a2370d83771339171f57cabf7a34", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "62c20dd8-2870-4417-b596-4fb176cfb377", + "persistent" : true, + "insertionIndex" : 229 +} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json b/mock/mappings/addresses_boelupqapl-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json new file mode 100644 index 0000000..7a40825 --- /dev/null +++ b/mock/mappings/addresses_boelupqapl-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json @@ -0,0 +1,38 @@ +{ + "id" : "7a05f04d-8c4e-4f9c-818c-e44a2c081764", + "name" : "addresses_boelupqapl", + "request" : { + "url" : "/addresses/Boelupqapl", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:37.446Z\",\"updated_at\":\"2024-10-24T15:51:37.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bc832e2b74207fb461e163e546dbde1f216b83d031292a2f6ad7845869bbeaa0\"}}}", + "headers" : { + "x-request-id" : "06301cf6-8d52-4443-9a60-a20714d4b3fb", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "73", + "x-kong-request-id" : "7b5eab2e9c97ec1a42e9fc0075fa932a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"89e63b5706c3cf69cf74bea07c0448a5\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7a05f04d-8c4e-4f9c-818c-e44a2c081764", + "persistent" : true, + "scenarioName" : "scenario-38-addresses-Boelupqapl", + "requiredScenarioState" : "scenario-38-addresses-Boelupqapl-3", + "newScenarioState" : "scenario-38-addresses-Boelupqapl-4", + "insertionIndex" : 236 +} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-c22bc5ea-12bd-4491-8808-e805d23e929e.json b/mock/mappings/addresses_boelupqapl-c22bc5ea-12bd-4491-8808-e805d23e929e.json new file mode 100644 index 0000000..a144b0b --- /dev/null +++ b/mock/mappings/addresses_boelupqapl-c22bc5ea-12bd-4491-8808-e805d23e929e.json @@ -0,0 +1,38 @@ +{ + "id" : "c22bc5ea-12bd-4491-8808-e805d23e929e", + "name" : "addresses_boelupqapl", + "request" : { + "url" : "/addresses/Boelupqapl", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:37.446Z\",\"updated_at\":\"2024-10-24T15:51:37.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4650a95f4ebec61fa52fcfd4b30e50864a30f11a2f3d16ac283985633461c689\"}}}", + "headers" : { + "x-request-id" : "98ed645d-7738-444f-ae4f-11848f260420", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "79", + "x-kong-request-id" : "9a51a67f06c0d5656e85f342d120645d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c2038f15ccaa1143b3b2f6e6e8b9d450\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "c22bc5ea-12bd-4491-8808-e805d23e929e", + "persistent" : true, + "scenarioName" : "scenario-38-addresses-Boelupqapl", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-38-addresses-Boelupqapl-2", + "insertionIndex" : 245 +} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json b/mock/mappings/addresses_boelupqapl-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json new file mode 100644 index 0000000..4978be1 --- /dev/null +++ b/mock/mappings/addresses_boelupqapl-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json @@ -0,0 +1,38 @@ +{ + "id" : "dd923b8d-1d92-4661-a81a-cf6ca9d22df9", + "name" : "addresses_boelupqapl", + "request" : { + "url" : "/addresses/Boelupqapl", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:37.446Z\",\"updated_at\":\"2024-10-24T15:51:37.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"dc1317bd719a097c8e44fa189faf904202b919f226a4a0480b0c456e8a7ce0bc\"}}}", + "headers" : { + "x-request-id" : "fca205b2-2b08-48cb-8289-da4e15946cca", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "75", + "x-kong-request-id" : "818631378519e709a045af5dee1f523e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"0c807ec4dda10f573ed68cc872476ca4\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "dd923b8d-1d92-4661-a81a-cf6ca9d22df9", + "persistent" : true, + "scenarioName" : "scenario-38-addresses-Boelupqapl", + "requiredScenarioState" : "scenario-38-addresses-Boelupqapl-2", + "newScenarioState" : "scenario-38-addresses-Boelupqapl-3", + "insertionIndex" : 240 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bzkoumknnk-32efe943-750b-4a6b-b710-ba844e059f32.json b/mock/mappings/addresses_bzkoumknnk-32efe943-750b-4a6b-b710-ba844e059f32.json new file mode 100644 index 0000000..7b0c3a0 --- /dev/null +++ b/mock/mappings/addresses_bzkoumknnk-32efe943-750b-4a6b-b710-ba844e059f32.json @@ -0,0 +1,38 @@ +{ + "id" : "32efe943-750b-4a6b-b710-ba844e059f32", + "name" : "addresses_bzkoumknnk", + "request" : { + "url" : "/addresses/bzkoumknnk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:07.401Z\",\"updated_at\":\"2024-10-24T15:52:07.401Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"00c09ee3e24809ce44d24bd08161ce5af3e78ea3035c12332262d462c8d8028c\"}}}", + "headers" : { + "x-request-id" : "5a18afad-1cc3-490f-8dbe-01f0cd22b1c7", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "25", + "x-kong-request-id" : "15ba7d2505a0915aad61f4236ca46f5e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"74b696af263e9a43e99aea2f0faeb957\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "32efe943-750b-4a6b-b710-ba844e059f32", + "persistent" : true, + "scenarioName" : "scenario-19-addresses-bzkoumknnk", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-19-addresses-bzkoumknnk-2", + "insertionIndex" : 119 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bzkoumknnk-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json b/mock/mappings/addresses_bzkoumknnk-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json new file mode 100644 index 0000000..817624b --- /dev/null +++ b/mock/mappings/addresses_bzkoumknnk-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json @@ -0,0 +1,37 @@ +{ + "id" : "366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b", + "name" : "addresses_bzkoumknnk", + "request" : { + "url" : "/addresses/bzkoumknnk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:07.401Z\",\"updated_at\":\"2024-10-24T15:52:07.401Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"be431d80a4e8dc792b88bf558726cb8492b8ec6bc335b393c764923ed171663d\"}}}", + "headers" : { + "x-request-id" : "75e0ba4d-2dea-4f47-abc4-2aab043de73f", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "20", + "x-kong-request-id" : "c6afc53c54479264d58f55255e7cf603", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"3987cd327e795870f4959ecff055de79\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b", + "persistent" : true, + "scenarioName" : "scenario-19-addresses-bzkoumknnk", + "requiredScenarioState" : "scenario-19-addresses-bzkoumknnk-3", + "insertionIndex" : 108 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bzkoumknnk-869313a5-5279-4e94-b7c4-c7c01fdf2161.json b/mock/mappings/addresses_bzkoumknnk-869313a5-5279-4e94-b7c4-c7c01fdf2161.json new file mode 100644 index 0000000..56ee64d --- /dev/null +++ b/mock/mappings/addresses_bzkoumknnk-869313a5-5279-4e94-b7c4-c7c01fdf2161.json @@ -0,0 +1,32 @@ +{ + "id" : "869313a5-5279-4e94-b7c4-c7c01fdf2161", + "name" : "addresses_bzkoumknnk", + "request" : { + "url" : "/addresses/bzkoumknnk", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "f256bf14-d33e-4c71-9a79-8f4effecfc49", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "70", + "x-kong-request-id" : "7606d23b0b7ddb6ce50f8c2a1059cd03", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:14 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "869313a5-5279-4e94-b7c4-c7c01fdf2161", + "persistent" : true, + "insertionIndex" : 98 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bzkoumknnk-86d5413b-2a85-4926-9b65-9070041b471d.json b/mock/mappings/addresses_bzkoumknnk-86d5413b-2a85-4926-9b65-9070041b471d.json new file mode 100644 index 0000000..1e5e0c8 --- /dev/null +++ b/mock/mappings/addresses_bzkoumknnk-86d5413b-2a85-4926-9b65-9070041b471d.json @@ -0,0 +1,38 @@ +{ + "id" : "86d5413b-2a85-4926-9b65-9070041b471d", + "name" : "addresses_bzkoumknnk", + "request" : { + "url" : "/addresses/bzkoumknnk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:07.401Z\",\"updated_at\":\"2024-10-24T15:52:07.401Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"edb6814c305c4a47189a161910afa254c30fda67761eb249bd59a561d63f28a9\"}}}", + "headers" : { + "x-request-id" : "3b385985-c637-4465-a155-f96c99c2e3ee", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "22", + "x-kong-request-id" : "0e6dd545c9ffbd4fd298583d01a42408", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"fe2aa25a3ccb8b8f8756bf3225e488e7\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "86d5413b-2a85-4926-9b65-9070041b471d", + "persistent" : true, + "scenarioName" : "scenario-19-addresses-bzkoumknnk", + "requiredScenarioState" : "scenario-19-addresses-bzkoumknnk-2", + "newScenarioState" : "scenario-19-addresses-bzkoumknnk-3", + "insertionIndex" : 113 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumglnx-0cda247c-05a2-4b99-bb5d-885db5710ea4.json b/mock/mappings/addresses_djekumglnx-0cda247c-05a2-4b99-bb5d-885db5710ea4.json new file mode 100644 index 0000000..ae6838a --- /dev/null +++ b/mock/mappings/addresses_djekumglnx-0cda247c-05a2-4b99-bb5d-885db5710ea4.json @@ -0,0 +1,38 @@ +{ + "id" : "0cda247c-05a2-4b99-bb5d-885db5710ea4", + "name" : "addresses_djekumglnx", + "request" : { + "url" : "/addresses/djekumgLNX", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:53:31.168Z\",\"updated_at\":\"2024-10-24T15:53:31.168Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9e1ec343e578505d1c017f8fe8b7aa1fab2f97b451e08b8f1ce334416dc0a745\"}}}", + "headers" : { + "x-request-id" : "73660214-962b-4d54-a63c-d6abfcfe2d65", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "85", + "x-kong-request-id" : "4635923ba214ce168e7c0d6f3e4f1726", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:31 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"45b14e6af440cbce2a23bd0e3534381b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0cda247c-05a2-4b99-bb5d-885db5710ea4", + "persistent" : true, + "scenarioName" : "scenario-5-addresses-djekumgLNX", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-5-addresses-djekumgLNX-2", + "insertionIndex" : 32 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumglnx-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json b/mock/mappings/addresses_djekumglnx-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json new file mode 100644 index 0000000..19d4af5 --- /dev/null +++ b/mock/mappings/addresses_djekumglnx-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json @@ -0,0 +1,32 @@ +{ + "id" : "12a8c13f-39b6-4b87-94dd-13a07ddcb4ca", + "name" : "addresses_djekumglnx", + "request" : { + "url" : "/addresses/djekumgLNX", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "eacd9a23-dc5a-43cd-b6b7-8bb04c4806e7", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "5dd572554a39980c61394171bf5e4711", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:33 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "12a8c13f-39b6-4b87-94dd-13a07ddcb4ca", + "persistent" : true, + "insertionIndex" : 24 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumglnx-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json b/mock/mappings/addresses_djekumglnx-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json new file mode 100644 index 0000000..6125290 --- /dev/null +++ b/mock/mappings/addresses_djekumglnx-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json @@ -0,0 +1,37 @@ +{ + "id" : "2f1bccae-aeb4-449b-8f73-428a2d423ccb", + "name" : "addresses_djekumglnx", + "request" : { + "url" : "/addresses/djekumgLNX", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:53:31.168Z\",\"updated_at\":\"2024-10-24T15:53:31.168Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"131ed56a469dd64ef29658f2fddef92dee9d332d1b7f605168200a4730cdefda\"}}}", + "headers" : { + "x-request-id" : "ba61ba8f-9ef3-4251-bfc8-2594432087d5", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "83", + "x-kong-request-id" : "472ce85f62131150ff9d195054d75979", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"9c02f3842f66082432c5278d3fc0edb8\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "2f1bccae-aeb4-449b-8f73-428a2d423ccb", + "persistent" : true, + "scenarioName" : "scenario-5-addresses-djekumgLNX", + "requiredScenarioState" : "scenario-5-addresses-djekumgLNX-3", + "insertionIndex" : 27 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumglnx-ff5e84a9-3151-45db-8033-5935b02c2838.json b/mock/mappings/addresses_djekumglnx-ff5e84a9-3151-45db-8033-5935b02c2838.json new file mode 100644 index 0000000..1c80a03 --- /dev/null +++ b/mock/mappings/addresses_djekumglnx-ff5e84a9-3151-45db-8033-5935b02c2838.json @@ -0,0 +1,38 @@ +{ + "id" : "ff5e84a9-3151-45db-8033-5935b02c2838", + "name" : "addresses_djekumglnx", + "request" : { + "url" : "/addresses/djekumgLNX", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:53:31.168Z\",\"updated_at\":\"2024-10-24T15:53:31.168Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"65142b07382f5fce92a0d1dd36ac5106eff2e35d295de89d1c85d81b5d837d24\"}}}", + "headers" : { + "x-request-id" : "da769fb1-5f70-4437-aac7-1b64bac8fbf3", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "84", + "x-kong-request-id" : "80d5997928ebb7396e50a9689dc4030f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d5cc73a0420e06c0116b5990f0767285\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ff5e84a9-3151-45db-8033-5935b02c2838", + "persistent" : true, + "scenarioName" : "scenario-5-addresses-djekumgLNX", + "requiredScenarioState" : "scenario-5-addresses-djekumgLNX-2", + "newScenarioState" : "scenario-5-addresses-djekumgLNX-3", + "insertionIndex" : 30 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumgyyo-168afcac-c58b-434d-bd68-af28b2a87023.json b/mock/mappings/addresses_djekumgyyo-168afcac-c58b-434d-bd68-af28b2a87023.json new file mode 100644 index 0000000..35f11a7 --- /dev/null +++ b/mock/mappings/addresses_djekumgyyo-168afcac-c58b-434d-bd68-af28b2a87023.json @@ -0,0 +1,38 @@ +{ + "id" : "168afcac-c58b-434d-bd68-af28b2a87023", + "name" : "addresses_djekumgyyo", + "request" : { + "url" : "/addresses/djekumgYYO", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:55.674Z\",\"updated_at\":\"2024-10-24T15:51:55.674Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"36c914cd988863a32a154cd4b3c5d8e8efdde08f7724a100970b8e14f70d929f\"}}}", + "headers" : { + "x-request-id" : "fa520336-6991-42c1-9933-eebf144b498e", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "44", + "x-kong-request-id" : "872eda15342b4e5ae927e73ca7081e64", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:57 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c3aad7fe3083bc3239f4cc67c42dbf3d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "168afcac-c58b-434d-bd68-af28b2a87023", + "persistent" : true, + "scenarioName" : "scenario-26-addresses-djekumgYYO", + "requiredScenarioState" : "scenario-26-addresses-djekumgYYO-2", + "newScenarioState" : "scenario-26-addresses-djekumgYYO-3", + "insertionIndex" : 162 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumgyyo-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json b/mock/mappings/addresses_djekumgyyo-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json new file mode 100644 index 0000000..6e5563b --- /dev/null +++ b/mock/mappings/addresses_djekumgyyo-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json @@ -0,0 +1,32 @@ +{ + "id" : "a7129ca9-f36b-421c-a4aa-2bc533f0ae58", + "name" : "addresses_djekumgyyo", + "request" : { + "url" : "/addresses/djekumgYYO", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "1abf2fd4-23c7-482a-8eec-a031dc6f773c", + "x-kong-upstream-latency" : "38", + "X-Ratelimit-Remaining" : "79", + "x-kong-request-id" : "7db8d8059ba4045b97246850b3f5a355", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:59 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "a7129ca9-f36b-421c-a4aa-2bc533f0ae58", + "persistent" : true, + "insertionIndex" : 151 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumgyyo-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json b/mock/mappings/addresses_djekumgyyo-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json new file mode 100644 index 0000000..6ab7f58 --- /dev/null +++ b/mock/mappings/addresses_djekumgyyo-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json @@ -0,0 +1,38 @@ +{ + "id" : "aab4a77d-de23-4c2e-9ea0-54aac91581d6", + "name" : "addresses_djekumgyyo", + "request" : { + "url" : "/addresses/djekumgYYO", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:55.674Z\",\"updated_at\":\"2024-10-24T15:51:55.674Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bc37cc03eb09dc494bdb6e2e8d978c8be466c3a0dd2861cf7d3c939b4d597f99\"}}}", + "headers" : { + "x-request-id" : "35664f66-3fd7-455d-8b08-d897a2494488", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "45", + "x-kong-request-id" : "80975c6e46dbc05f68d309651769264a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"e06828445525f002fb50a5d4956224cd\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "aab4a77d-de23-4c2e-9ea0-54aac91581d6", + "persistent" : true, + "scenarioName" : "scenario-26-addresses-djekumgYYO", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-26-addresses-djekumgYYO-2", + "insertionIndex" : 166 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumgyyo-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json b/mock/mappings/addresses_djekumgyyo-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json new file mode 100644 index 0000000..c9b8fef --- /dev/null +++ b/mock/mappings/addresses_djekumgyyo-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json @@ -0,0 +1,37 @@ +{ + "id" : "d2c28fdc-c4c2-4a3f-8632-b9d44a06829b", + "name" : "addresses_djekumgyyo", + "request" : { + "url" : "/addresses/djekumgYYO", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:55.674Z\",\"updated_at\":\"2024-10-24T15:51:55.674Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8b17b8104f1541a46810a84f08fde7db43b2c8ad30eb87f2dc8a11772ffd7c8a\"}}}", + "headers" : { + "x-request-id" : "c429af5e-72fd-4055-8edd-ef65148226fa", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "41", + "x-kong-request-id" : "1023c37e966da21c831b17453fedcf77", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"34071e97dbd6fc5a3f954886d379c3ff\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d2c28fdc-c4c2-4a3f-8632-b9d44a06829b", + "persistent" : true, + "scenarioName" : "scenario-26-addresses-djekumgYYO", + "requiredScenarioState" : "scenario-26-addresses-djekumgYYO-3", + "insertionIndex" : 157 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways-1951ffa5-fb14-4e22-960f-072d26f88ab8.json b/mock/mappings/adyen_gateways-1951ffa5-fb14-4e22-960f-072d26f88ab8.json new file mode 100644 index 0000000..ff9a813 --- /dev/null +++ b/mock/mappings/adyen_gateways-1951ffa5-fb14-4e22-960f-072d26f88ab8.json @@ -0,0 +1,40 @@ +{ + "id" : "1951ffa5-fb14-4e22-960f-072d26f88ab8", + "name" : "adyen_gateways", + "request" : { + "url" : "/adyen_gateways", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"68\",\"async_api\":true,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"name\":\"Incentro Adyen Gateway\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null,\"webhook_endpoint_secret\":\"foobar\"},\"type\":\"adyen_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:28.084Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"461589d6ac7c0da404fdaa936ffd9a19d1c5b55c08d9018d59e632bdd2fa8338\"}}}", + "headers" : { + "x-request-id" : "0183aab7-6875-4a6b-abf7-8cb5e1bbec00", + "x-kong-upstream-latency" : "22", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "1fefa51cd92db91e7f3c5f7760161a1a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:28 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"aa8945b6ff004cd8e49eb919464921ef\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "1951ffa5-fb14-4e22-960f-072d26f88ab8", + "persistent" : true, + "insertionIndex" : 277 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json b/mock/mappings/adyen_gateways-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json new file mode 100644 index 0000000..f4e2038 --- /dev/null +++ b/mock/mappings/adyen_gateways-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json @@ -0,0 +1,40 @@ +{ + "id" : "d30a04f6-3776-4c65-814e-5d2e745bf4f0", + "name" : "adyen_gateways", + "request" : { + "url" : "/adyen_gateways", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"68\",\"async_api\":true,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"name\":\"Incentro Adyen Gateway\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null,\"webhook_endpoint_secret\":\"foobar\"},\"type\":\"adyen_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:52:17.617Z\",\"updated_at\":\"2024-10-24T15:52:17.617Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/PkaqRsdyzk/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9abaa6a531a11f08733a584623111194d1ede538c08ab7dc9713ed1b89a2d87b\"}}}", + "headers" : { + "x-request-id" : "07ac0f7f-282e-462d-855c-abb5595e9005", + "x-kong-upstream-latency" : "65", + "X-Ratelimit-Remaining" : "67", + "x-kong-request-id" : "5c380c667761da3ed87487675d8a791c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:17 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"48b995cc60b1cde18f173ec05132f84b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d30a04f6-3776-4c65-814e-5d2e745bf4f0", + "persistent" : true, + "insertionIndex" : 83 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-4298d60c-1077-498b-b71d-0d991d2f97cd.json b/mock/mappings/adyen_gateways_nknmksokbj-4298d60c-1077-498b-b71d-0d991d2f97cd.json new file mode 100644 index 0000000..20d15d1 --- /dev/null +++ b/mock/mappings/adyen_gateways_nknmksokbj-4298d60c-1077-498b-b71d-0d991d2f97cd.json @@ -0,0 +1,38 @@ +{ + "id" : "4298d60c-1077-498b-b71d-0d991d2f97cd", + "name" : "adyen_gateways_nknmksokbj", + "request" : { + "url" : "/adyen_gateways/nkNMKsOKbj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway Changed\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:29.072Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":67,\"async_api\":false,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0f8eec9a29f7b5c40beed654c896745f3ef6b8525cffe50a3cec44fb8bc75c95\"}}}", + "headers" : { + "x-request-id" : "a992e232-d6f2-4eac-bf43-418849f36c05", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "5d6418236ee5517fc79df55394732e43", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"5b3b91605528fe4e8f7f720f0a09209d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "4298d60c-1077-498b-b71d-0d991d2f97cd", + "persistent" : true, + "scenarioName" : "scenario-43-adyen_gateways-nkNMKsOKbj", + "requiredScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-3", + "newScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-4", + "insertionIndex" : 273 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-638ff192-a608-4203-9d87-f959b656ce38.json b/mock/mappings/adyen_gateways_nknmksokbj-638ff192-a608-4203-9d87-f959b656ce38.json new file mode 100644 index 0000000..becd442 --- /dev/null +++ b/mock/mappings/adyen_gateways_nknmksokbj-638ff192-a608-4203-9d87-f959b656ce38.json @@ -0,0 +1,38 @@ +{ + "id" : "638ff192-a608-4203-9d87-f959b656ce38", + "name" : "adyen_gateways_nknmksokbj", + "request" : { + "url" : "/adyen_gateways/nkNMKsOKbj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:28.084Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b855f26b06aef33cc099b5bb2a180a3cda0de46df81fe663e66d86e40bca9433\"}}}", + "headers" : { + "x-request-id" : "9540608f-dcf4-4432-978d-60ab32f229fd", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "72199a2a0bd1803ac2bced68e1e74d4a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:28 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"867a726aa38160ee4bb0f8e94c251cf5\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "638ff192-a608-4203-9d87-f959b656ce38", + "persistent" : true, + "scenarioName" : "scenario-43-adyen_gateways-nkNMKsOKbj", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-2", + "insertionIndex" : 276 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json b/mock/mappings/adyen_gateways_nknmksokbj-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json new file mode 100644 index 0000000..e275abc --- /dev/null +++ b/mock/mappings/adyen_gateways_nknmksokbj-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json @@ -0,0 +1,40 @@ +{ + "id" : "7af81d64-d8c0-4766-ba74-faa8ea48e1be", + "name" : "adyen_gateways_nknmksokbj", + "request" : { + "url" : "/adyen_gateways/nkNMKsOKbj", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"67\",\"async_api\":false,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"name\":\"Incentro Adyen Gateway Changed\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null,\"webhook_endpoint_secret\":null},\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway Changed\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:29.072Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":67,\"async_api\":false,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bda41889f7a6bbeec9f64caacf964427e078524e5e6e5ed15baa7787c70e15c1\"}}}", + "headers" : { + "x-request-id" : "73933075-886f-4c50-8315-d4d4d021cab3", + "x-kong-upstream-latency" : "26", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "d8489108f63284594db3874a1c8f2b4d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"be820e4cba5b47cd07cdad142968d62e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7af81d64-d8c0-4766-ba74-faa8ea48e1be", + "persistent" : true, + "insertionIndex" : 274 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-946715e8-e818-424d-9ad8-e5afe9449325.json b/mock/mappings/adyen_gateways_nknmksokbj-946715e8-e818-424d-9ad8-e5afe9449325.json new file mode 100644 index 0000000..dc2e39e --- /dev/null +++ b/mock/mappings/adyen_gateways_nknmksokbj-946715e8-e818-424d-9ad8-e5afe9449325.json @@ -0,0 +1,36 @@ +{ + "id" : "946715e8-e818-424d-9ad8-e5afe9449325", + "name" : "adyen_gateways_nknmksokbj", + "request" : { + "url" : "/adyen_gateways/nkNMKsOKbj", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "9051175a-decf-4e0c-b123-ed6545c3d1fc", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "d530467c454fac0740fcf55e0905be27", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:30 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "946715e8-e818-424d-9ad8-e5afe9449325", + "persistent" : true, + "scenarioName" : "scenario-43-adyen_gateways-nkNMKsOKbj", + "requiredScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-4", + "insertionIndex" : 271 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-b059e544-8b22-458a-b96b-51759af06f0e.json b/mock/mappings/adyen_gateways_nknmksokbj-b059e544-8b22-458a-b96b-51759af06f0e.json new file mode 100644 index 0000000..a85d77c --- /dev/null +++ b/mock/mappings/adyen_gateways_nknmksokbj-b059e544-8b22-458a-b96b-51759af06f0e.json @@ -0,0 +1,32 @@ +{ + "id" : "b059e544-8b22-458a-b96b-51759af06f0e", + "name" : "adyen_gateways_nknmksokbj", + "request" : { + "url" : "/adyen_gateways/nkNMKsOKbj", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "25e01220-0b9d-45c5-821e-5e46daca8982", + "x-kong-upstream-latency" : "28", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "3444c46ad07a64047862db5a8179684d", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "b059e544-8b22-458a-b96b-51759af06f0e", + "persistent" : true, + "insertionIndex" : 272 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json b/mock/mappings/adyen_gateways_nknmksokbj-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json new file mode 100644 index 0000000..febb5e9 --- /dev/null +++ b/mock/mappings/adyen_gateways_nknmksokbj-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json @@ -0,0 +1,38 @@ +{ + "id" : "e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d", + "name" : "adyen_gateways_nknmksokbj", + "request" : { + "url" : "/adyen_gateways/nkNMKsOKbj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:28.084Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"47277f8b0001b4d76dbb1cc63fcfdc8acaac4a3bfb8bb3271c9179d9efb5fa0c\"}}}", + "headers" : { + "x-request-id" : "6c690fbe-d15f-4706-b88a-03e95e1e7913", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "d1aee870f076d92463fff13849642f0d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:28 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"440ebffe659358c5b87bbf84924c3506\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d", + "persistent" : true, + "scenarioName" : "scenario-43-adyen_gateways-nkNMKsOKbj", + "requiredScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-2", + "newScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-3", + "insertionIndex" : 275 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-023161d7-1588-4ac2-b760-2fd7797bf189.json b/mock/mappings/adyen_gateways_pkaqrsdyzk-023161d7-1588-4ac2-b760-2fd7797bf189.json new file mode 100644 index 0000000..1d34b61 --- /dev/null +++ b/mock/mappings/adyen_gateways_pkaqrsdyzk-023161d7-1588-4ac2-b760-2fd7797bf189.json @@ -0,0 +1,38 @@ +{ + "id" : "023161d7-1588-4ac2-b760-2fd7797bf189", + "name" : "adyen_gateways_pkaqrsdyzk", + "request" : { + "url" : "/adyen_gateways/PkaqRsdyzk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:52:17.617Z\",\"updated_at\":\"2024-10-24T15:52:17.617Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/PkaqRsdyzk/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0fb76ea4a1383324a39553902caa93871cbd4bccfee595e60b4f8fdbf9899530\"}}}", + "headers" : { + "x-request-id" : "8f0eaff2-dc13-45de-89b6-8314ffa052aa", + "x-kong-upstream-latency" : "31", + "X-Ratelimit-Remaining" : "9", + "x-kong-request-id" : "3457033e7556b53e4aed3047fbe96a43", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:18 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"96e3e4a1874928ce3846e67f31a0182e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "023161d7-1588-4ac2-b760-2fd7797bf189", + "persistent" : true, + "scenarioName" : "scenario-11-adyen_gateways-PkaqRsdyzk", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-2", + "insertionIndex" : 81 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-4d92824f-0c17-4087-afc2-d7f143a2feec.json b/mock/mappings/adyen_gateways_pkaqrsdyzk-4d92824f-0c17-4087-afc2-d7f143a2feec.json new file mode 100644 index 0000000..1e2871c --- /dev/null +++ b/mock/mappings/adyen_gateways_pkaqrsdyzk-4d92824f-0c17-4087-afc2-d7f143a2feec.json @@ -0,0 +1,38 @@ +{ + "id" : "4d92824f-0c17-4087-afc2-d7f143a2feec", + "name" : "adyen_gateways_pkaqrsdyzk", + "request" : { + "url" : "/adyen_gateways/PkaqRsdyzk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:52:17.617Z\",\"updated_at\":\"2024-10-24T15:52:17.617Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/PkaqRsdyzk/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e94c09546d8a025a7f5f8bda123cd430927c4b69be5f0d4816388eeeeac04865\"}}}", + "headers" : { + "x-request-id" : "c9bf555a-fc0c-46bd-a505-23113649f47e", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "7", + "x-kong-request-id" : "7b52393284db315a4ca773734338d94b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:18 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"854b2824c4b5f82bcfbbaf5b9e5b8bd5\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "4d92824f-0c17-4087-afc2-d7f143a2feec", + "persistent" : true, + "scenarioName" : "scenario-11-adyen_gateways-PkaqRsdyzk", + "requiredScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-2", + "newScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-3", + "insertionIndex" : 79 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-63504a6f-b242-4d46-a43d-64a184c69189.json b/mock/mappings/adyen_gateways_pkaqrsdyzk-63504a6f-b242-4d46-a43d-64a184c69189.json new file mode 100644 index 0000000..73a1c07 --- /dev/null +++ b/mock/mappings/adyen_gateways_pkaqrsdyzk-63504a6f-b242-4d46-a43d-64a184c69189.json @@ -0,0 +1,38 @@ +{ + "id" : "63504a6f-b242-4d46-a43d-64a184c69189", + "name" : "adyen_gateways_pkaqrsdyzk", + "request" : { + "url" : "/adyen_gateways/PkaqRsdyzk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:52:17.617Z\",\"updated_at\":\"2024-10-24T15:52:17.617Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/PkaqRsdyzk/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"072f894e281391d922782822f4ed25262a00f554829ca9ded0ee25fb9278c7e2\"}}}", + "headers" : { + "x-request-id" : "882472f9-60ac-4baa-a53a-1e542c176d16", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "5", + "x-kong-request-id" : "165159599ee9f63e811fbe5a10149003", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c1936c83f28b06535bcf276edbede500\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "63504a6f-b242-4d46-a43d-64a184c69189", + "persistent" : true, + "scenarioName" : "scenario-11-adyen_gateways-PkaqRsdyzk", + "requiredScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-3", + "newScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-4", + "insertionIndex" : 76 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-7ef30764-8a25-46ee-a0d0-79f611d521cc.json b/mock/mappings/adyen_gateways_pkaqrsdyzk-7ef30764-8a25-46ee-a0d0-79f611d521cc.json new file mode 100644 index 0000000..814e420 --- /dev/null +++ b/mock/mappings/adyen_gateways_pkaqrsdyzk-7ef30764-8a25-46ee-a0d0-79f611d521cc.json @@ -0,0 +1,32 @@ +{ + "id" : "7ef30764-8a25-46ee-a0d0-79f611d521cc", + "name" : "adyen_gateways_pkaqrsdyzk", + "request" : { + "url" : "/adyen_gateways/PkaqRsdyzk", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "07d0b186-df84-4bb3-8f51-a5fc4279fa2f", + "x-kong-upstream-latency" : "125", + "X-Ratelimit-Remaining" : "66", + "x-kong-request-id" : "cb5c891b72f68e2a3535df2adb03724d", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "7ef30764-8a25-46ee-a0d0-79f611d521cc", + "persistent" : true, + "insertionIndex" : 73 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json b/mock/mappings/adyen_gateways_pkaqrsdyzk-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json new file mode 100644 index 0000000..9d6df15 --- /dev/null +++ b/mock/mappings/adyen_gateways_pkaqrsdyzk-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json @@ -0,0 +1,36 @@ +{ + "id" : "c9cd4148-400d-4771-ba01-cd0b621c2cf6", + "name" : "adyen_gateways_pkaqrsdyzk", + "request" : { + "url" : "/adyen_gateways/PkaqRsdyzk", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "17157097-0225-447f-a501-55b5c4c77f20", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "2", + "x-kong-request-id" : "953ee167637b8162af7c3342665ba17c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:20 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "c9cd4148-400d-4771-ba01-cd0b621c2cf6", + "persistent" : true, + "scenarioName" : "scenario-11-adyen_gateways-PkaqRsdyzk", + "requiredScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-4", + "insertionIndex" : 71 +} \ No newline at end of file diff --git a/mock/mappings/api_addresses-25a61be3-f6a6-403f-bab6-7d86ba14b9df.json b/mock/mappings/api_addresses-25a61be3-f6a6-403f-bab6-7d86ba14b9df.json deleted file mode 100644 index c0dc90d..0000000 --- a/mock/mappings/api_addresses-25a61be3-f6a6-403f-bab6-7d86ba14b9df.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "25a61be3-f6a6-403f-bab6-7d86ba14b9df", - "name" : "api_addresses", - "request" : { - "url" : "/api/addresses", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"line_1\":\"Van Nelleweg 1\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"},\"phone\":\"+31(0)10 20 20 544\",\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"dxwVuwXAjE\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:19.026Z\",\"updated_at\":\"2022-10-27T08:56:19.026Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "10", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"1565e32c82b215e2d126b6aa84752199\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "03ff3a92-0978-434a-8e6f-c160ce92bbf7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:19 GMT", - "X-Served-By" : "cache-ams21040-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860979.963275,VS0,VE78", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "25a61be3-f6a6-403f-bab6-7d86ba14b9df", - "persistent" : true, - "insertionIndex" : 2 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses-2f37dc65-d82f-41f4-bd04-2a0e81d4e4e5.json b/mock/mappings/api_addresses-2f37dc65-d82f-41f4-bd04-2a0e81d4e4e5.json deleted file mode 100644 index 3c51c71..0000000 --- a/mock/mappings/api_addresses-2f37dc65-d82f-41f4-bd04-2a0e81d4e4e5.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "2f37dc65-d82f-41f4-bd04-2a0e81d4e4e5", - "name" : "api_addresses", - "request" : { - "url" : "/api/addresses", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"line_1\":\"Van Nelleweg 1\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"phone\":\"+31(0)10 20 20 544\",\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"BnNguQqjwe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-12-23T10:26:05.384Z\",\"updated_at\":\"2022-12-23T10:26:05.384Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "14", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"72e7b45e104c95024bdd435ca16f8946\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "07474c6f-910e-4d48-a7e1-584251b9517a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:05 GMT", - "X-Served-By" : "cache-ams21077-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791165.321123,VS0,VE81", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "2f37dc65-d82f-41f4-bd04-2a0e81d4e4e5", - "persistent" : true, - "insertionIndex" : 1113 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses-7112a321-6692-43ba-a92d-093a56e49891.json b/mock/mappings/api_addresses-7112a321-6692-43ba-a92d-093a56e49891.json deleted file mode 100644 index a557c3e..0000000 --- a/mock/mappings/api_addresses-7112a321-6692-43ba-a92d-093a56e49891.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "7112a321-6692-43ba-a92d-093a56e49891", - "name" : "api_addresses", - "request" : { - "url" : "/api/addresses", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"line_1\":\"Van Nelleweg 1\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"phone\":\"+31(0)10 20 20 544\",\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"WLPLualvpG\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:31.314Z\",\"updated_at\":\"2022-10-27T08:56:31.314Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "70", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"888b710e25422e1a7359a33bf1ec0e4d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "5a805f2a-169c-4324-8c1c-4e7e6e7eb6e5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:31 GMT", - "X-Served-By" : "cache-ams21027-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860991.285508,VS0,VE45", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "7112a321-6692-43ba-a92d-093a56e49891", - "persistent" : true, - "insertionIndex" : 68 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses-d92285bb-0c54-40c0-bbc1-29f22e4d69e1.json b/mock/mappings/api_addresses-d92285bb-0c54-40c0-bbc1-29f22e4d69e1.json deleted file mode 100644 index 7c1286e..0000000 --- a/mock/mappings/api_addresses-d92285bb-0c54-40c0-bbc1-29f22e4d69e1.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "d92285bb-0c54-40c0-bbc1-29f22e4d69e1", - "name" : "api_addresses", - "request" : { - "url" : "/api/addresses", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"line_1\":\"Van Nelleweg 1\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"phone\":\"+31(0)10 20 20 544\",\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"BlrkujVzqR\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-24T15:10:57.785Z\",\"updated_at\":\"2022-11-24T15:10:57.785Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f712c794d2d82049bbc0b72adebc81cd\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3c85bfad-3911-494b-b0d1-de424cf5d189", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:57 GMT", - "X-Served-By" : "cache-ams21083-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302658.718497,VS0,VE81", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d92285bb-0c54-40c0-bbc1-29f22e4d69e1", - "persistent" : true, - "insertionIndex" : 154 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses-e5340646-83a7-4069-9479-8d9e8d7f6abd.json b/mock/mappings/api_addresses-e5340646-83a7-4069-9479-8d9e8d7f6abd.json deleted file mode 100644 index 00b8258..0000000 --- a/mock/mappings/api_addresses-e5340646-83a7-4069-9479-8d9e8d7f6abd.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "e5340646-83a7-4069-9479-8d9e8d7f6abd", - "name" : "api_addresses", - "request" : { - "url" : "/api/addresses", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"line_1\":\"Van Nelleweg 1\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"phone\":\"+31(0)10 20 20 544\",\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"bxwVuwZjmJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-09T11:36:47.121Z\",\"updated_at\":\"2022-11-09T11:36:47.121Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "18", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"8f925787b911a42255a67e40fb16d748\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "2af32fac-4143-4fac-b10e-35b4ddd574be", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:47 GMT", - "X-Served-By" : "cache-ams21076-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993807.087619,VS0,VE53", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "e5340646-83a7-4069-9479-8d9e8d7f6abd", - "persistent" : true, - "insertionIndex" : 655 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses-eee94f55-882b-47fc-847c-f0cfe371d21c.json b/mock/mappings/api_addresses-eee94f55-882b-47fc-847c-f0cfe371d21c.json deleted file mode 100644 index 0d6ed09..0000000 --- a/mock/mappings/api_addresses-eee94f55-882b-47fc-847c-f0cfe371d21c.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "eee94f55-882b-47fc-847c-f0cfe371d21c", - "name" : "api_addresses", - "request" : { - "url" : "/api/addresses", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"line_1\":\"Van Nelleweg 1\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"phone\":\"+31(0)10 20 20 544\",\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"BExAuMRAKr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2023-03-28T08:12:18.127Z\",\"updated_at\":\"2023-03-28T08:12:18.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a7a505c9dd0e42b4ff6e62703c626f5e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a91c1d0f-099f-49ac-8227-980de360557d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21063-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991138.061651,VS0,VE82", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "eee94f55-882b-47fc-847c-f0cfe371d21c", - "persistent" : true, - "insertionIndex" : 622 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses-f308acfb-17d8-4c63-a275-74105444d299.json b/mock/mappings/api_addresses-f308acfb-17d8-4c63-a275-74105444d299.json deleted file mode 100644 index 23030c2..0000000 --- a/mock/mappings/api_addresses-f308acfb-17d8-4c63-a275-74105444d299.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "f308acfb-17d8-4c63-a275-74105444d299", - "name" : "api_addresses", - "request" : { - "url" : "/api/addresses", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"line_1\":\"Van Nelleweg 1\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"phone\":\"+31(0)10 20 20 544\",\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"deJOuZLqDx\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-24T15:10:45.871Z\",\"updated_at\":\"2022-11-24T15:10:45.871Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"43d1898405d0e9761bba3b01597bd851\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "980d9cbd-2ac1-4d81-afdc-1509cd221b25", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:45 GMT", - "X-Served-By" : "cache-ams21024-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302646.807950,VS0,VE78", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "f308acfb-17d8-4c63-a275-74105444d299", - "persistent" : true, - "insertionIndex" : 131 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bexaumrakr-16977d61-78e4-4496-aeba-5b729135daff.json b/mock/mappings/api_addresses_bexaumrakr-16977d61-78e4-4496-aeba-5b729135daff.json deleted file mode 100644 index 7e87ce6..0000000 --- a/mock/mappings/api_addresses_bexaumrakr-16977d61-78e4-4496-aeba-5b729135daff.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "id" : "16977d61-78e4-4496-aeba-5b729135daff", - "name" : "api_addresses_bexaumrakr", - "request" : { - "url" : "/api/addresses/BExAuMRAKr", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BExAuMRAKr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2023-03-28T08:12:18.127Z\",\"updated_at\":\"2023-03-28T08:12:18.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a7a505c9dd0e42b4ff6e62703c626f5e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "9346ae20-dc12-4019-bfa0-3722704b05bd", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "X-Served-By" : "cache-ams21043-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.828164,VS0,VE76", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "16977d61-78e4-4496-aeba-5b729135daff", - "persistent" : true, - "scenarioName" : "scenario-4-api-addresses-BExAuMRAKr", - "requiredScenarioState" : "scenario-4-api-addresses-BExAuMRAKr-3", - "insertionIndex" : 641 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bexaumrakr-7bdbdd50-b89f-485c-a732-6ad99a9dc51e.json b/mock/mappings/api_addresses_bexaumrakr-7bdbdd50-b89f-485c-a732-6ad99a9dc51e.json deleted file mode 100644 index 58f54c9..0000000 --- a/mock/mappings/api_addresses_bexaumrakr-7bdbdd50-b89f-485c-a732-6ad99a9dc51e.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "7bdbdd50-b89f-485c-a732-6ad99a9dc51e", - "name" : "api_addresses_bexaumrakr", - "request" : { - "url" : "/api/addresses/BExAuMRAKr", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BExAuMRAKr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2023-03-28T08:12:18.127Z\",\"updated_at\":\"2023-03-28T08:12:18.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "10", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a7a505c9dd0e42b4ff6e62703c626f5e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3f9c9eb2-c96f-4d37-859c-cb16b7f85f88", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.691360,VS0,VE81", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "7bdbdd50-b89f-485c-a732-6ad99a9dc51e", - "persistent" : true, - "scenarioName" : "scenario-4-api-addresses-BExAuMRAKr", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-4-api-addresses-BExAuMRAKr-2", - "insertionIndex" : 628 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bexaumrakr-8403a2b2-f948-4ef3-b233-ead9108ebc02.json b/mock/mappings/api_addresses_bexaumrakr-8403a2b2-f948-4ef3-b233-ead9108ebc02.json deleted file mode 100644 index 4906ad0..0000000 --- a/mock/mappings/api_addresses_bexaumrakr-8403a2b2-f948-4ef3-b233-ead9108ebc02.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "8403a2b2-f948-4ef3-b233-ead9108ebc02", - "name" : "api_addresses_bexaumrakr", - "request" : { - "url" : "/api/addresses/BExAuMRAKr", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "29", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "3f82a555-76dd-4911-af1f-379b7696d022", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:20 GMT", - "X-Served-By" : "cache-ams21067-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991141.678704,VS0,VE49", - "Vary" : "Origin" - } - }, - "uuid" : "8403a2b2-f948-4ef3-b233-ead9108ebc02", - "persistent" : true, - "insertionIndex" : 649 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bexaumrakr-f2c4f137-08da-4a53-9d01-8ff15b0a03fb.json b/mock/mappings/api_addresses_bexaumrakr-f2c4f137-08da-4a53-9d01-8ff15b0a03fb.json deleted file mode 100644 index f129133..0000000 --- a/mock/mappings/api_addresses_bexaumrakr-f2c4f137-08da-4a53-9d01-8ff15b0a03fb.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "f2c4f137-08da-4a53-9d01-8ff15b0a03fb", - "name" : "api_addresses_bexaumrakr", - "request" : { - "url" : "/api/addresses/BExAuMRAKr", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BExAuMRAKr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2023-03-28T08:12:18.127Z\",\"updated_at\":\"2023-03-28T08:12:18.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BExAuMRAKr/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "15", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a7a505c9dd0e42b4ff6e62703c626f5e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "17c7adb8-963c-4909-abb9-14f4f96c6ffb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "X-Served-By" : "cache-ams21058-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.180779,VS0,VE72", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "f2c4f137-08da-4a53-9d01-8ff15b0a03fb", - "persistent" : true, - "scenarioName" : "scenario-4-api-addresses-BExAuMRAKr", - "requiredScenarioState" : "scenario-4-api-addresses-BExAuMRAKr-2", - "newScenarioState" : "scenario-4-api-addresses-BExAuMRAKr-3", - "insertionIndex" : 634 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_blrkujvzqr-56702f72-2a25-43ce-aec4-d0e5ece43594.json b/mock/mappings/api_addresses_blrkujvzqr-56702f72-2a25-43ce-aec4-d0e5ece43594.json deleted file mode 100644 index b57e79a..0000000 --- a/mock/mappings/api_addresses_blrkujvzqr-56702f72-2a25-43ce-aec4-d0e5ece43594.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "56702f72-2a25-43ce-aec4-d0e5ece43594", - "name" : "api_addresses_blrkujvzqr", - "request" : { - "url" : "/api/addresses/BlrkujVzqR", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BlrkujVzqR\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-24T15:10:57.785Z\",\"updated_at\":\"2022-11-24T15:10:57.785Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "25", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f712c794d2d82049bbc0b72adebc81cd\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "97704521-07a6-4112-9dc0-6c78ac45fd77", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:58 GMT", - "X-Served-By" : "cache-ams21024-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302658.320082,VS0,VE82", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "56702f72-2a25-43ce-aec4-d0e5ece43594", - "persistent" : true, - "scenarioName" : "scenario-6-api-addresses-BlrkujVzqR", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-6-api-addresses-BlrkujVzqR-2", - "insertionIndex" : 158 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_blrkujvzqr-7d6dc891-3f13-4531-9194-3c0f274e709a.json b/mock/mappings/api_addresses_blrkujvzqr-7d6dc891-3f13-4531-9194-3c0f274e709a.json deleted file mode 100644 index 34553f6..0000000 --- a/mock/mappings/api_addresses_blrkujvzqr-7d6dc891-3f13-4531-9194-3c0f274e709a.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "7d6dc891-3f13-4531-9194-3c0f274e709a", - "name" : "api_addresses_blrkujvzqr", - "request" : { - "url" : "/api/addresses/BlrkujVzqR", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BlrkujVzqR\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-24T15:10:57.785Z\",\"updated_at\":\"2022-11-24T15:10:57.785Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "29", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f712c794d2d82049bbc0b72adebc81cd\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3d423514-94e6-4ef9-9e9c-a1e248cce9e8", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:58 GMT", - "X-Served-By" : "cache-ams21080-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302659.842544,VS0,VE47", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "7d6dc891-3f13-4531-9194-3c0f274e709a", - "persistent" : true, - "scenarioName" : "scenario-6-api-addresses-BlrkujVzqR", - "requiredScenarioState" : "scenario-6-api-addresses-BlrkujVzqR-2", - "newScenarioState" : "scenario-6-api-addresses-BlrkujVzqR-3", - "insertionIndex" : 163 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_blrkujvzqr-a9bc5064-7ae8-432a-aa16-921a96c0d7a6.json b/mock/mappings/api_addresses_blrkujvzqr-a9bc5064-7ae8-432a-aa16-921a96c0d7a6.json deleted file mode 100644 index 7203361..0000000 --- a/mock/mappings/api_addresses_blrkujvzqr-a9bc5064-7ae8-432a-aa16-921a96c0d7a6.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "a9bc5064-7ae8-432a-aa16-921a96c0d7a6", - "name" : "api_addresses_blrkujvzqr", - "request" : { - "url" : "/api/addresses/BlrkujVzqR", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "37", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "39db276b-94e0-4222-806e-c813363734b1", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:11:00 GMT", - "X-Served-By" : "cache-ams21043-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302660.417883,VS0,VE51", - "Vary" : "Origin" - } - }, - "uuid" : "a9bc5064-7ae8-432a-aa16-921a96c0d7a6", - "persistent" : true, - "insertionIndex" : 174 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_blrkujvzqr-c94c8140-916b-4f90-a92c-3ccd1760a42a.json b/mock/mappings/api_addresses_blrkujvzqr-c94c8140-916b-4f90-a92c-3ccd1760a42a.json deleted file mode 100644 index 68e1ac7..0000000 --- a/mock/mappings/api_addresses_blrkujvzqr-c94c8140-916b-4f90-a92c-3ccd1760a42a.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "id" : "c94c8140-916b-4f90-a92c-3ccd1760a42a", - "name" : "api_addresses_blrkujvzqr", - "request" : { - "url" : "/api/addresses/BlrkujVzqR", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BlrkujVzqR\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-24T15:10:57.785Z\",\"updated_at\":\"2022-11-24T15:10:57.785Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BlrkujVzqR/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "32", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f712c794d2d82049bbc0b72adebc81cd\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "be9a876f-e232-40bc-93f3-0bf66d87ebf1", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:59 GMT", - "X-Served-By" : "cache-ams21053-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302660.540431,VS0,VE77", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c94c8140-916b-4f90-a92c-3ccd1760a42a", - "persistent" : true, - "scenarioName" : "scenario-6-api-addresses-BlrkujVzqR", - "requiredScenarioState" : "scenario-6-api-addresses-BlrkujVzqR-3", - "insertionIndex" : 168 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bnnguqqjwe-0f3efcca-58fc-4630-9979-e6f9ed14228b.json b/mock/mappings/api_addresses_bnnguqqjwe-0f3efcca-58fc-4630-9979-e6f9ed14228b.json deleted file mode 100644 index e325d42..0000000 --- a/mock/mappings/api_addresses_bnnguqqjwe-0f3efcca-58fc-4630-9979-e6f9ed14228b.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "0f3efcca-58fc-4630-9979-e6f9ed14228b", - "name" : "api_addresses_bnnguqqjwe", - "request" : { - "url" : "/api/addresses/BnNguQqjwe", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BnNguQqjwe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-12-23T10:26:05.384Z\",\"updated_at\":\"2022-12-23T10:26:05.384Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "17", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"72e7b45e104c95024bdd435ca16f8946\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b0c56631-3488-439e-bd5c-fb91ca5cf516", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:06 GMT", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791166.062881,VS0,VE75", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "0f3efcca-58fc-4630-9979-e6f9ed14228b", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-BnNguQqjwe", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-addresses-BnNguQqjwe-2", - "insertionIndex" : 1117 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bnnguqqjwe-47dc04a6-f19e-47e1-a214-edbfc7b680f4.json b/mock/mappings/api_addresses_bnnguqqjwe-47dc04a6-f19e-47e1-a214-edbfc7b680f4.json deleted file mode 100644 index 581457a..0000000 --- a/mock/mappings/api_addresses_bnnguqqjwe-47dc04a6-f19e-47e1-a214-edbfc7b680f4.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "47dc04a6-f19e-47e1-a214-edbfc7b680f4", - "name" : "api_addresses_bnnguqqjwe", - "request" : { - "url" : "/api/addresses/BnNguQqjwe", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BnNguQqjwe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-12-23T10:26:05.384Z\",\"updated_at\":\"2022-12-23T10:26:05.384Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "22", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"72e7b45e104c95024bdd435ca16f8946\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "cea2c21c-1950-477a-a409-806b324bf64e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:06 GMT", - "X-Served-By" : "cache-ams21024-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791167.662915,VS0,VE72", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "47dc04a6-f19e-47e1-a214-edbfc7b680f4", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-BnNguQqjwe", - "requiredScenarioState" : "scenario-1-api-addresses-BnNguQqjwe-2", - "newScenarioState" : "scenario-1-api-addresses-BnNguQqjwe-3", - "insertionIndex" : 1122 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bnnguqqjwe-639d713f-a440-42af-81b5-25cc3b6005b2.json b/mock/mappings/api_addresses_bnnguqqjwe-639d713f-a440-42af-81b5-25cc3b6005b2.json deleted file mode 100644 index 1700c6a..0000000 --- a/mock/mappings/api_addresses_bnnguqqjwe-639d713f-a440-42af-81b5-25cc3b6005b2.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "639d713f-a440-42af-81b5-25cc3b6005b2", - "name" : "api_addresses_bnnguqqjwe", - "request" : { - "url" : "/api/addresses/BnNguQqjwe", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BnNguQqjwe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-12-23T10:26:05.384Z\",\"updated_at\":\"2022-12-23T10:26:05.384Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/BnNguQqjwe/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "25", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"72e7b45e104c95024bdd435ca16f8946\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "83869f2c-a8d0-4b32-ac91-b482cb77b178", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:07 GMT", - "X-Served-By" : "cache-ams21033-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791168.581176,VS0,VE40", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "639d713f-a440-42af-81b5-25cc3b6005b2", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-BnNguQqjwe", - "requiredScenarioState" : "scenario-1-api-addresses-BnNguQqjwe-3", - "newScenarioState" : "scenario-1-api-addresses-BnNguQqjwe-4", - "insertionIndex" : 1126 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bnnguqqjwe-86abf6a5-96a8-4be6-a587-87677ff8b7f0.json b/mock/mappings/api_addresses_bnnguqqjwe-86abf6a5-96a8-4be6-a587-87677ff8b7f0.json deleted file mode 100644 index 344ab9f..0000000 --- a/mock/mappings/api_addresses_bnnguqqjwe-86abf6a5-96a8-4be6-a587-87677ff8b7f0.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "86abf6a5-96a8-4be6-a587-87677ff8b7f0", - "name" : "api_addresses_bnnguqqjwe", - "request" : { - "url" : "/api/addresses/BnNguQqjwe", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "31", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "a3a8d42f-13c9-475a-8e2f-1c3b4e7a9cdd", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:08 GMT", - "X-Served-By" : "cache-ams21072-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791169.521906,VS0,VE42", - "Vary" : "Origin" - } - }, - "uuid" : "86abf6a5-96a8-4be6-a587-87677ff8b7f0", - "persistent" : true, - "insertionIndex" : 1133 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bnnguqqjwe-91edd378-2687-43ea-a8a9-033a73515e05.json b/mock/mappings/api_addresses_bnnguqqjwe-91edd378-2687-43ea-a8a9-033a73515e05.json deleted file mode 100644 index d115260..0000000 --- a/mock/mappings/api_addresses_bnnguqqjwe-91edd378-2687-43ea-a8a9-033a73515e05.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "91edd378-2687-43ea-a8a9-033a73515e05", - "name" : "api_addresses_bnnguqqjwe", - "request" : { - "url" : "/api/addresses/BnNguQqjwe", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:08 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21043-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791169.682692,VS0,VE68" - } - }, - "uuid" : "91edd378-2687-43ea-a8a9-033a73515e05", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-BnNguQqjwe", - "requiredScenarioState" : "scenario-1-api-addresses-BnNguQqjwe-4", - "insertionIndex" : 1134 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bxwvuwzjmj-5ddc7d3f-e8b0-482d-b358-835904e45f88.json b/mock/mappings/api_addresses_bxwvuwzjmj-5ddc7d3f-e8b0-482d-b358-835904e45f88.json deleted file mode 100644 index 5e35136..0000000 --- a/mock/mappings/api_addresses_bxwvuwzjmj-5ddc7d3f-e8b0-482d-b358-835904e45f88.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "5ddc7d3f-e8b0-482d-b358-835904e45f88", - "name" : "api_addresses_bxwvuwzjmj", - "request" : { - "url" : "/api/addresses/bxwVuwZjmJ", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "50285267-12d8-4005-853c-1debc7603fa4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:49 GMT", - "X-Served-By" : "cache-ams21039-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993809.057532,VS0,VE82", - "Vary" : "Origin" - } - }, - "uuid" : "5ddc7d3f-e8b0-482d-b358-835904e45f88", - "persistent" : true, - "insertionIndex" : 665 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bxwvuwzjmj-9d118ae4-e2ce-4921-a86f-10df9516193e.json b/mock/mappings/api_addresses_bxwvuwzjmj-9d118ae4-e2ce-4921-a86f-10df9516193e.json deleted file mode 100644 index 94fedf6..0000000 --- a/mock/mappings/api_addresses_bxwvuwzjmj-9d118ae4-e2ce-4921-a86f-10df9516193e.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "id" : "9d118ae4-e2ce-4921-a86f-10df9516193e", - "name" : "api_addresses_bxwvuwzjmj", - "request" : { - "url" : "/api/addresses/bxwVuwZjmJ", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"bxwVuwZjmJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-09T11:36:47.121Z\",\"updated_at\":\"2022-11-09T11:36:47.121Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "24", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"8f925787b911a42255a67e40fb16d748\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "56f2ca69-4a4a-4d9b-85a6-fab539c1398e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:48 GMT", - "X-Served-By" : "cache-ams21064-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993808.405503,VS0,VE42", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "9d118ae4-e2ce-4921-a86f-10df9516193e", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-bxwVuwZjmJ", - "requiredScenarioState" : "scenario-1-api-addresses-bxwVuwZjmJ-3", - "insertionIndex" : 662 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bxwvuwzjmj-a8b46919-9be0-421d-b8bf-cbb39eb83005.json b/mock/mappings/api_addresses_bxwvuwzjmj-a8b46919-9be0-421d-b8bf-cbb39eb83005.json deleted file mode 100644 index da0d5d3..0000000 --- a/mock/mappings/api_addresses_bxwvuwzjmj-a8b46919-9be0-421d-b8bf-cbb39eb83005.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "a8b46919-9be0-421d-b8bf-cbb39eb83005", - "name" : "api_addresses_bxwvuwzjmj", - "request" : { - "url" : "/api/addresses/bxwVuwZjmJ", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"bxwVuwZjmJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-09T11:36:47.121Z\",\"updated_at\":\"2022-11-09T11:36:47.121Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "20", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"8f925787b911a42255a67e40fb16d748\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "0f8d4067-d246-485b-9505-c01d00474d5f", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:47 GMT", - "X-Served-By" : "cache-ams21024-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993807.468034,VS0,VE39", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a8b46919-9be0-421d-b8bf-cbb39eb83005", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-bxwVuwZjmJ", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-addresses-bxwVuwZjmJ-2", - "insertionIndex" : 657 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_bxwvuwzjmj-fd76c9a4-9132-4418-9b44-79990e9ed310.json b/mock/mappings/api_addresses_bxwvuwzjmj-fd76c9a4-9132-4418-9b44-79990e9ed310.json deleted file mode 100644 index 3c0e604..0000000 --- a/mock/mappings/api_addresses_bxwvuwzjmj-fd76c9a4-9132-4418-9b44-79990e9ed310.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "fd76c9a4-9132-4418-9b44-79990e9ed310", - "name" : "api_addresses_bxwvuwzjmj", - "request" : { - "url" : "/api/addresses/bxwVuwZjmJ", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"bxwVuwZjmJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-09T11:36:47.121Z\",\"updated_at\":\"2022-11-09T11:36:47.121Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/bxwVuwZjmJ/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "22", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"8f925787b911a42255a67e40fb16d748\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "28fbb89a-3892-4bc6-bb9b-43f2e6e88b24", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:47 GMT", - "X-Served-By" : "cache-ams21059-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993808.779614,VS0,VE83", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "fd76c9a4-9132-4418-9b44-79990e9ed310", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-bxwVuwZjmJ", - "requiredScenarioState" : "scenario-1-api-addresses-bxwVuwZjmJ-2", - "newScenarioState" : "scenario-1-api-addresses-bxwVuwZjmJ-3", - "insertionIndex" : 659 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dajxuvndak-bb69d6ed-2dcc-4987-80b1-39c64deaeb3b.json b/mock/mappings/api_addresses_dajxuvndak-bb69d6ed-2dcc-4987-80b1-39c64deaeb3b.json deleted file mode 100644 index 5f56e7e..0000000 --- a/mock/mappings/api_addresses_dajxuvndak-bb69d6ed-2dcc-4987-80b1-39c64deaeb3b.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "bb69d6ed-2dcc-4987-80b1-39c64deaeb3b", - "name" : "api_addresses_dajxuvndak", - "request" : { - "url" : "/api/addresses/dAJxuvNDAk", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "24", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "c290a7f3-bf57-44be-93e8-e25f45a452d6", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 01 Feb 2023 09:33:09 GMT", - "X-Served-By" : "cache-ams21056-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1675243989.998674,VS0,VE81", - "Vary" : "Origin" - } - }, - "uuid" : "bb69d6ed-2dcc-4987-80b1-39c64deaeb3b", - "persistent" : true, - "insertionIndex" : 372 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_ddqwuqoejy-90c97cd3-7172-42ba-ae23-a34928965860.json b/mock/mappings/api_addresses_ddqwuqoejy-90c97cd3-7172-42ba-ae23-a34928965860.json deleted file mode 100644 index 67922d0..0000000 --- a/mock/mappings/api_addresses_ddqwuqoejy-90c97cd3-7172-42ba-ae23-a34928965860.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "90c97cd3-7172-42ba-ae23-a34928965860", - "name" : "api_addresses_ddqwuqoejy", - "request" : { - "url" : "/api/addresses/dDqwuQoeJY", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "68", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "69d95118-aeff-44c2-be29-2a4761cfcf45", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:30 GMT", - "X-Served-By" : "cache-ams21070-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860991.886423,VS0,VE77", - "Vary" : "Origin" - } - }, - "uuid" : "90c97cd3-7172-42ba-ae23-a34928965860", - "persistent" : true, - "insertionIndex" : 66 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dejouzlqdx-0076f173-b51e-4a01-ad16-3a619d67dabc.json b/mock/mappings/api_addresses_dejouzlqdx-0076f173-b51e-4a01-ad16-3a619d67dabc.json deleted file mode 100644 index a446580..0000000 --- a/mock/mappings/api_addresses_dejouzlqdx-0076f173-b51e-4a01-ad16-3a619d67dabc.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "id" : "0076f173-b51e-4a01-ad16-3a619d67dabc", - "name" : "api_addresses_dejouzlqdx", - "request" : { - "url" : "/api/addresses/deJOuZLqDx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"deJOuZLqDx\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-24T15:10:45.871Z\",\"updated_at\":\"2022-11-24T15:10:45.871Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "13", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"43d1898405d0e9761bba3b01597bd851\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "fc552208-72d0-49df-b220-5b26c4265a20", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:47 GMT", - "X-Served-By" : "cache-ams21047-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302648.704473,VS0,VE38", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "0076f173-b51e-4a01-ad16-3a619d67dabc", - "persistent" : true, - "scenarioName" : "scenario-3-api-addresses-deJOuZLqDx", - "requiredScenarioState" : "scenario-3-api-addresses-deJOuZLqDx-3", - "insertionIndex" : 145 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dejouzlqdx-844811e1-1634-4616-abba-6b26bf0ce3d0.json b/mock/mappings/api_addresses_dejouzlqdx-844811e1-1634-4616-abba-6b26bf0ce3d0.json deleted file mode 100644 index 83a6910..0000000 --- a/mock/mappings/api_addresses_dejouzlqdx-844811e1-1634-4616-abba-6b26bf0ce3d0.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "844811e1-1634-4616-abba-6b26bf0ce3d0", - "name" : "api_addresses_dejouzlqdx", - "request" : { - "url" : "/api/addresses/deJOuZLqDx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"deJOuZLqDx\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-24T15:10:45.871Z\",\"updated_at\":\"2022-11-24T15:10:45.871Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"43d1898405d0e9761bba3b01597bd851\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "959cedad-0e75-4707-a3d3-69ed96dc5585", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:46 GMT", - "X-Served-By" : "cache-ams21079-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302646.449232,VS0,VE84", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "844811e1-1634-4616-abba-6b26bf0ce3d0", - "persistent" : true, - "scenarioName" : "scenario-3-api-addresses-deJOuZLqDx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-3-api-addresses-deJOuZLqDx-2", - "insertionIndex" : 136 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dejouzlqdx-e12bb6cc-476a-48a3-95b7-995c7c791044.json b/mock/mappings/api_addresses_dejouzlqdx-e12bb6cc-476a-48a3-95b7-995c7c791044.json deleted file mode 100644 index 419feb5..0000000 --- a/mock/mappings/api_addresses_dejouzlqdx-e12bb6cc-476a-48a3-95b7-995c7c791044.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "e12bb6cc-476a-48a3-95b7-995c7c791044", - "name" : "api_addresses_dejouzlqdx", - "request" : { - "url" : "/api/addresses/deJOuZLqDx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"deJOuZLqDx\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-11-24T15:10:45.871Z\",\"updated_at\":\"2022-11-24T15:10:45.871Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/deJOuZLqDx/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "10", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"43d1898405d0e9761bba3b01597bd851\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d1e62367-551f-4595-927d-0d754ee4fcc8", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:47 GMT", - "X-Served-By" : "cache-ams21029-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302647.969378,VS0,VE82", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "e12bb6cc-476a-48a3-95b7-995c7c791044", - "persistent" : true, - "scenarioName" : "scenario-3-api-addresses-deJOuZLqDx", - "requiredScenarioState" : "scenario-3-api-addresses-deJOuZLqDx-2", - "newScenarioState" : "scenario-3-api-addresses-deJOuZLqDx-3", - "insertionIndex" : 140 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dejouzlqdx-f51da104-ac77-4896-9819-375058591af2.json b/mock/mappings/api_addresses_dejouzlqdx-f51da104-ac77-4896-9819-375058591af2.json deleted file mode 100644 index 3522033..0000000 --- a/mock/mappings/api_addresses_dejouzlqdx-f51da104-ac77-4896-9819-375058591af2.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "f51da104-ac77-4896-9819-375058591af2", - "name" : "api_addresses_dejouzlqdx", - "request" : { - "url" : "/api/addresses/deJOuZLqDx", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "18", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "edb79b1e-1c0c-4a0f-87d7-0be83b48db69", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:48 GMT", - "X-Served-By" : "cache-ams21064-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302649.559194,VS0,VE83", - "Vary" : "Origin" - } - }, - "uuid" : "f51da104-ac77-4896-9819-375058591af2", - "persistent" : true, - "insertionIndex" : 151 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dxwvuwxaje-1a88a5d0-fe3c-4bc7-b026-d545ccad6625.json b/mock/mappings/api_addresses_dxwvuwxaje-1a88a5d0-fe3c-4bc7-b026-d545ccad6625.json deleted file mode 100644 index cbea92f..0000000 --- a/mock/mappings/api_addresses_dxwvuwxaje-1a88a5d0-fe3c-4bc7-b026-d545ccad6625.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "1a88a5d0-fe3c-4bc7-b026-d545ccad6625", - "name" : "api_addresses_dxwvuwxaje", - "request" : { - "url" : "/api/addresses/dxwVuwXAjE", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dxwVuwXAjE\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:19.026Z\",\"updated_at\":\"2022-10-27T08:56:19.026Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "12", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"1565e32c82b215e2d126b6aa84752199\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1697f229-bd08-47ea-a4b8-e9f2f9b74461", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:19 GMT", - "X-Served-By" : "cache-ams21083-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860979.419781,VS0,VE77", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "1a88a5d0-fe3c-4bc7-b026-d545ccad6625", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-dxwVuwXAjE", - "requiredScenarioState" : "scenario-1-api-addresses-dxwVuwXAjE-2", - "newScenarioState" : "scenario-1-api-addresses-dxwVuwXAjE-3", - "insertionIndex" : 4 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dxwvuwxaje-258a9146-190d-4fea-b3d8-52eef2f6a467.json b/mock/mappings/api_addresses_dxwvuwxaje-258a9146-190d-4fea-b3d8-52eef2f6a467.json deleted file mode 100644 index 10ff903..0000000 --- a/mock/mappings/api_addresses_dxwvuwxaje-258a9146-190d-4fea-b3d8-52eef2f6a467.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "258a9146-190d-4fea-b3d8-52eef2f6a467", - "name" : "api_addresses_dxwvuwxaje", - "request" : { - "url" : "/api/addresses/dxwVuwXAjE", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:20 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21065-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860980.250004,VS0,VE32" - } - }, - "uuid" : "258a9146-190d-4fea-b3d8-52eef2f6a467", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-dxwVuwXAjE", - "requiredScenarioState" : "scenario-1-api-addresses-dxwVuwXAjE-4", - "insertionIndex" : 8 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dxwvuwxaje-81f31cae-321e-4e70-a487-4f195f2fb118.json b/mock/mappings/api_addresses_dxwvuwxaje-81f31cae-321e-4e70-a487-4f195f2fb118.json deleted file mode 100644 index 437675d..0000000 --- a/mock/mappings/api_addresses_dxwvuwxaje-81f31cae-321e-4e70-a487-4f195f2fb118.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "81f31cae-321e-4e70-a487-4f195f2fb118", - "name" : "api_addresses_dxwvuwxaje", - "request" : { - "url" : "/api/addresses/dxwVuwXAjE", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dxwVuwXAjE\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:19.026Z\",\"updated_at\":\"2022-10-27T08:56:19.026Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "11", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"1565e32c82b215e2d126b6aa84752199\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3cd2dd10-6f16-4622-9cd5-b4ccb97dfe91", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:19 GMT", - "X-Served-By" : "cache-ams21027-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860979.221938,VS0,VE41", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "81f31cae-321e-4e70-a487-4f195f2fb118", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-dxwVuwXAjE", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-addresses-dxwVuwXAjE-2", - "insertionIndex" : 3 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dxwvuwxaje-aa326fc8-dc07-4b8b-8e81-6e8683219642.json b/mock/mappings/api_addresses_dxwvuwxaje-aa326fc8-dc07-4b8b-8e81-6e8683219642.json deleted file mode 100644 index 2eed49a..0000000 --- a/mock/mappings/api_addresses_dxwvuwxaje-aa326fc8-dc07-4b8b-8e81-6e8683219642.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "aa326fc8-dc07-4b8b-8e81-6e8683219642", - "name" : "api_addresses_dxwvuwxaje", - "request" : { - "url" : "/api/addresses/dxwVuwXAjE", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "15", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "e226680c-3a8e-477d-b091-d7b5b3c89006", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:20 GMT", - "X-Served-By" : "cache-ams21059-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860980.137187,VS0,VE50", - "Vary" : "Origin" - } - }, - "uuid" : "aa326fc8-dc07-4b8b-8e81-6e8683219642", - "persistent" : true, - "insertionIndex" : 7 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dxwvuwxaje-c23a2eb7-75d5-45cb-9f36-5639d8c1ce7b.json b/mock/mappings/api_addresses_dxwvuwxaje-c23a2eb7-75d5-45cb-9f36-5639d8c1ce7b.json deleted file mode 100644 index 774fb13..0000000 --- a/mock/mappings/api_addresses_dxwvuwxaje-c23a2eb7-75d5-45cb-9f36-5639d8c1ce7b.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "c23a2eb7-75d5-45cb-9f36-5639d8c1ce7b", - "name" : "api_addresses_dxwvuwxaje", - "request" : { - "url" : "/api/addresses/dxwVuwXAjE", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dxwVuwXAjE\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"city\":\"Amsterdam\",\"zip_code\":\"1013 BC\",\"state_code\":\"NH\",\"country_code\":\"NL\",\"phone\":\"020 409 0444\",\"full_address\":\"Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"name\":\"Incentro, Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:19.026Z\",\"updated_at\":\"2022-10-27T08:56:19.748Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "14", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"bc96de7774c2f2b9b6017815dc9cb9b1\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3b9e754a-cb86-4387-831d-c4fc1581e0c3", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:19 GMT", - "X-Served-By" : "cache-ams21072-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860980.936315,VS0,VE40", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c23a2eb7-75d5-45cb-9f36-5639d8c1ce7b", - "persistent" : true, - "scenarioName" : "scenario-1-api-addresses-dxwVuwXAjE", - "requiredScenarioState" : "scenario-1-api-addresses-dxwVuwXAjE-3", - "newScenarioState" : "scenario-1-api-addresses-dxwVuwXAjE-4", - "insertionIndex" : 6 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dxwvuwxaje-d5851a20-c7de-4f79-9eee-120456c1bcf6.json b/mock/mappings/api_addresses_dxwvuwxaje-d5851a20-c7de-4f79-9eee-120456c1bcf6.json deleted file mode 100644 index 6e4049f..0000000 --- a/mock/mappings/api_addresses_dxwvuwxaje-d5851a20-c7de-4f79-9eee-120456c1bcf6.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "d5851a20-c7de-4f79-9eee-120456c1bcf6", - "name" : "api_addresses_dxwvuwxaje", - "request" : { - "url" : "/api/addresses/dxwVuwXAjE", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"business\":true,\"city\":\"Amsterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"line_1\":\"Moermanskkade 113\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"},\"phone\":\"020 409 0444\",\"state_code\":\"NH\",\"zip_code\":\"1013 BC\"},\"id\":\"dxwVuwXAjE\",\"type\":\"addresses\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dxwVuwXAjE\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"city\":\"Amsterdam\",\"zip_code\":\"1013 BC\",\"state_code\":\"NH\",\"country_code\":\"NL\",\"phone\":\"020 409 0444\",\"full_address\":\"Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"name\":\"Incentro, Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:19.026Z\",\"updated_at\":\"2022-10-27T08:56:19.748Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/dxwVuwXAjE/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "13", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"bc96de7774c2f2b9b6017815dc9cb9b1\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "cc7a55a0-2236-4621-b152-861bd36b6e6b", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:19 GMT", - "X-Served-By" : "cache-ams21043-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860980.679122,VS0,VE89", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d5851a20-c7de-4f79-9eee-120456c1bcf6", - "persistent" : true, - "insertionIndex" : 5 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_wlplualvpg-268f07e8-b9df-4041-a17c-941b20d9efa0.json b/mock/mappings/api_addresses_wlplualvpg-268f07e8-b9df-4041-a17c-941b20d9efa0.json deleted file mode 100644 index 8368a13..0000000 --- a/mock/mappings/api_addresses_wlplualvpg-268f07e8-b9df-4041-a17c-941b20d9efa0.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "268f07e8-b9df-4041-a17c-941b20d9efa0", - "name" : "api_addresses_wlplualvpg", - "request" : { - "url" : "/api/addresses/WLPLualvpG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"WLPLualvpG\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:31.314Z\",\"updated_at\":\"2022-10-27T08:56:31.314Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "77", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"888b710e25422e1a7359a33bf1ec0e4d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "f367a42c-baec-47ec-b7f0-8c30c5f942d4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:32 GMT", - "X-Served-By" : "cache-ams21024-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860993.692091,VS0,VE45", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "268f07e8-b9df-4041-a17c-941b20d9efa0", - "persistent" : true, - "scenarioName" : "scenario-11-api-addresses-WLPLualvpG", - "requiredScenarioState" : "scenario-11-api-addresses-WLPLualvpG-3", - "newScenarioState" : "scenario-11-api-addresses-WLPLualvpG-4", - "insertionIndex" : 75 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_wlplualvpg-2f1862cc-02ed-4c18-8959-11c1ab3ae192.json b/mock/mappings/api_addresses_wlplualvpg-2f1862cc-02ed-4c18-8959-11c1ab3ae192.json deleted file mode 100644 index a2cf5be..0000000 --- a/mock/mappings/api_addresses_wlplualvpg-2f1862cc-02ed-4c18-8959-11c1ab3ae192.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "2f1862cc-02ed-4c18-8959-11c1ab3ae192", - "name" : "api_addresses_wlplualvpg", - "request" : { - "url" : "/api/addresses/WLPLualvpG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"WLPLualvpG\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:31.314Z\",\"updated_at\":\"2022-10-27T08:56:31.314Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "74", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"888b710e25422e1a7359a33bf1ec0e4d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "19c45815-0430-4959-b2da-2b595c864b9d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:32 GMT", - "X-Served-By" : "cache-ams21077-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860992.034668,VS0,VE82", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "2f1862cc-02ed-4c18-8959-11c1ab3ae192", - "persistent" : true, - "scenarioName" : "scenario-11-api-addresses-WLPLualvpG", - "requiredScenarioState" : "scenario-11-api-addresses-WLPLualvpG-2", - "newScenarioState" : "scenario-11-api-addresses-WLPLualvpG-3", - "insertionIndex" : 72 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_wlplualvpg-560d038f-94d8-4fd1-9f9e-9f493758b413.json b/mock/mappings/api_addresses_wlplualvpg-560d038f-94d8-4fd1-9f9e-9f493758b413.json deleted file mode 100644 index 479656f..0000000 --- a/mock/mappings/api_addresses_wlplualvpg-560d038f-94d8-4fd1-9f9e-9f493758b413.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "560d038f-94d8-4fd1-9f9e-9f493758b413", - "name" : "api_addresses_wlplualvpg", - "request" : { - "url" : "/api/addresses/WLPLualvpG", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:33 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21079-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860993.294667,VS0,VE35" - } - }, - "uuid" : "560d038f-94d8-4fd1-9f9e-9f493758b413", - "persistent" : true, - "scenarioName" : "scenario-11-api-addresses-WLPLualvpG", - "requiredScenarioState" : "scenario-11-api-addresses-WLPLualvpG-4", - "insertionIndex" : 79 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_wlplualvpg-695cdb6d-d976-4ad3-9ca8-2d0bebf11e9d.json b/mock/mappings/api_addresses_wlplualvpg-695cdb6d-d976-4ad3-9ca8-2d0bebf11e9d.json deleted file mode 100644 index 29b3cf1..0000000 --- a/mock/mappings/api_addresses_wlplualvpg-695cdb6d-d976-4ad3-9ca8-2d0bebf11e9d.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "695cdb6d-d976-4ad3-9ca8-2d0bebf11e9d", - "name" : "api_addresses_wlplualvpg", - "request" : { - "url" : "/api/addresses/WLPLualvpG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"WLPLualvpG\",\"type\":\"addresses\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2022-10-27T08:56:31.314Z\",\"updated_at\":\"2022-10-27T08:56:31.314Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG/relationships/geocoder\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/addresses/WLPLualvpG/geocoder\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "72", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"888b710e25422e1a7359a33bf1ec0e4d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "48d12680-1e44-4452-bcfb-5653f8047f6a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:31 GMT", - "X-Served-By" : "cache-ams21076-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860992.668956,VS0,VE80", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "695cdb6d-d976-4ad3-9ca8-2d0bebf11e9d", - "persistent" : true, - "scenarioName" : "scenario-11-api-addresses-WLPLualvpG", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-11-api-addresses-WLPLualvpG-2", - "insertionIndex" : 70 -} \ No newline at end of file diff --git a/mock/mappings/api_addresses_wlplualvpg-e35e467a-7b87-4a98-bd8c-0bce4ba1ab34.json b/mock/mappings/api_addresses_wlplualvpg-e35e467a-7b87-4a98-bd8c-0bce4ba1ab34.json deleted file mode 100644 index e75c0b1..0000000 --- a/mock/mappings/api_addresses_wlplualvpg-e35e467a-7b87-4a98-bd8c-0bce4ba1ab34.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "e35e467a-7b87-4a98-bd8c-0bce4ba1ab34", - "name" : "api_addresses_wlplualvpg", - "request" : { - "url" : "/api/addresses/WLPLualvpG", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "80", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "40e50f6f-33c9-4165-9a9e-beeb7d8e4746", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:33 GMT", - "X-Served-By" : "cache-ams21070-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860993.149156,VS0,VE83", - "Vary" : "Origin" - } - }, - "uuid" : "e35e467a-7b87-4a98-bd8c-0bce4ba1ab34", - "persistent" : true, - "insertionIndex" : 78 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways-621039b5-4c8d-4848-8425-a455edc424c6.json b/mock/mappings/api_adyen_gateways-621039b5-4c8d-4848-8425-a455edc424c6.json deleted file mode 100644 index 0786836..0000000 --- a/mock/mappings/api_adyen_gateways-621039b5-4c8d-4848-8425-a455edc424c6.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "621039b5-4c8d-4848-8425-a455edc424c6", - "name" : "api_adyen_gateways", - "request" : { - "url" : "/api/adyen_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"68\",\"async_api\":true,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"name\":\"Incentro Adyen Gateway\",\"public_key\":\"xxxx-yyyy-zzzz\",\"webhook_endpoint_secret\":\"foobar\"},\"type\":\"adyen_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"dxgWesZzMx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2023-05-05T11:41:33.289Z\",\"updated_at\":\"2023-05-05T11:41:33.289Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":true,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/dxgWesZzMx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"29ccdbb83901a03cc349a3e808b0976c\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "9dab72a2-cc84-472c-ab6b-43231091ce5a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 05 May 2023 11:41:33 GMT", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "621039b5-4c8d-4848-8425-a455edc424c6", - "persistent" : true, - "insertionIndex" : 888 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways-c8b743c4-6af9-4088-8b67-fa301c4462fd.json b/mock/mappings/api_adyen_gateways-c8b743c4-6af9-4088-8b67-fa301c4462fd.json deleted file mode 100644 index be6adfa..0000000 --- a/mock/mappings/api_adyen_gateways-c8b743c4-6af9-4088-8b67-fa301c4462fd.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "c8b743c4-6af9-4088-8b67-fa301c4462fd", - "name" : "api_adyen_gateways", - "request" : { - "url" : "/api/adyen_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"name\":\"Incentro Adyen Gateway\",\"public_key\":\"xxxx-yyyy-zzzz\"},\"type\":\"adyen_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"pvDXLsPpOv\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2023-03-21T16:37:03.936Z\",\"updated_at\":\"2023-03-21T16:37:03.936Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/pvDXLsPpOv\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "16", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"7df4376a13d90dbba12abaa6641b64d8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b229a7c0-d272-4cb2-be96-4b6e8952a254", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:03 GMT", - "X-Served-By" : "cache-ams21059-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416624.907614,VS0,VE47", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c8b743c4-6af9-4088-8b67-fa301c4462fd", - "persistent" : true, - "insertionIndex" : 1550 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_dxgweszzmx-12960e84-c7bc-4288-b60d-354aa2ecda71.json b/mock/mappings/api_adyen_gateways_dxgweszzmx-12960e84-c7bc-4288-b60d-354aa2ecda71.json deleted file mode 100644 index 26e1abf..0000000 --- a/mock/mappings/api_adyen_gateways_dxgweszzmx-12960e84-c7bc-4288-b60d-354aa2ecda71.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "id" : "12960e84-c7bc-4288-b60d-354aa2ecda71", - "name" : "api_adyen_gateways_dxgweszzmx", - "request" : { - "url" : "/api/adyen_gateways/dxgWesZzMx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dxgWesZzMx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway Changed\",\"created_at\":\"2023-05-05T11:41:33.289Z\",\"updated_at\":\"2023-05-05T11:41:33.988Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/dxgWesZzMx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"4a191070327aed5d1c11b253ae6b6f5c\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "ed4e9496-a499-4d2d-a7a8-4f6c98cb3dc7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 05 May 2023 11:41:34 GMT", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "12960e84-c7bc-4288-b60d-354aa2ecda71", - "persistent" : true, - "scenarioName" : "scenario-1-api-adyen_gateways-dxgWesZzMx", - "requiredScenarioState" : "scenario-1-api-adyen_gateways-dxgWesZzMx-3", - "newScenarioState" : "scenario-1-api-adyen_gateways-dxgWesZzMx-4", - "insertionIndex" : 892 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_dxgweszzmx-28a058ea-bb52-4655-92af-59a4977adeba.json b/mock/mappings/api_adyen_gateways_dxgweszzmx-28a058ea-bb52-4655-92af-59a4977adeba.json deleted file mode 100644 index 8cc2b7b..0000000 --- a/mock/mappings/api_adyen_gateways_dxgweszzmx-28a058ea-bb52-4655-92af-59a4977adeba.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "id" : "28a058ea-bb52-4655-92af-59a4977adeba", - "name" : "api_adyen_gateways_dxgweszzmx", - "request" : { - "url" : "/api/adyen_gateways/dxgWesZzMx", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", - "headers" : { - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "8", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json; charset=utf-8", - "Cache-Control" : "no-cache", - "X-Request-Id" : "7a885bf1-db4f-4ad2-9733-f888f83538b2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 05 May 2023 11:41:34 GMT", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "28a058ea-bb52-4655-92af-59a4977adeba", - "persistent" : true, - "scenarioName" : "scenario-1-api-adyen_gateways-dxgWesZzMx", - "requiredScenarioState" : "scenario-1-api-adyen_gateways-dxgWesZzMx-4", - "insertionIndex" : 894 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_dxgweszzmx-4308c025-0363-4f0f-8de0-e0adb7b2021a.json b/mock/mappings/api_adyen_gateways_dxgweszzmx-4308c025-0363-4f0f-8de0-e0adb7b2021a.json deleted file mode 100644 index 514316e..0000000 --- a/mock/mappings/api_adyen_gateways_dxgweszzmx-4308c025-0363-4f0f-8de0-e0adb7b2021a.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "4308c025-0363-4f0f-8de0-e0adb7b2021a", - "name" : "api_adyen_gateways_dxgweszzmx", - "request" : { - "url" : "/api/adyen_gateways/dxgWesZzMx", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"67\",\"async_api\":false,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"name\":\"Incentro Adyen Gateway Changed\",\"public_key\":\"xxxx-yyyy-zzzz\"},\"id\":\"dxgWesZzMx\",\"type\":\"adyen_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dxgWesZzMx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway Changed\",\"created_at\":\"2023-05-05T11:41:33.289Z\",\"updated_at\":\"2023-05-05T11:41:33.988Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/dxgWesZzMx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"4a191070327aed5d1c11b253ae6b6f5c\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "01cc6535-1c6a-4ebb-873e-770ed76ed822", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 05 May 2023 11:41:34 GMT", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "4308c025-0363-4f0f-8de0-e0adb7b2021a", - "persistent" : true, - "insertionIndex" : 891 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_dxgweszzmx-bb8edc71-0b10-418c-92f1-f702135e26ce.json b/mock/mappings/api_adyen_gateways_dxgweszzmx-bb8edc71-0b10-418c-92f1-f702135e26ce.json deleted file mode 100644 index 54df133..0000000 --- a/mock/mappings/api_adyen_gateways_dxgweszzmx-bb8edc71-0b10-418c-92f1-f702135e26ce.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "id" : "bb8edc71-0b10-418c-92f1-f702135e26ce", - "name" : "api_adyen_gateways_dxgweszzmx", - "request" : { - "url" : "/api/adyen_gateways/dxgWesZzMx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dxgWesZzMx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2023-05-05T11:41:33.289Z\",\"updated_at\":\"2023-05-05T11:41:33.289Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":true,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/dxgWesZzMx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"29ccdbb83901a03cc349a3e808b0976c\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "24e0a05b-7f8d-408b-b9af-93c178dba3b4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 05 May 2023 11:41:33 GMT", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "bb8edc71-0b10-418c-92f1-f702135e26ce", - "persistent" : true, - "scenarioName" : "scenario-1-api-adyen_gateways-dxgWesZzMx", - "requiredScenarioState" : "scenario-1-api-adyen_gateways-dxgWesZzMx-2", - "newScenarioState" : "scenario-1-api-adyen_gateways-dxgWesZzMx-3", - "insertionIndex" : 890 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_dxgweszzmx-eab7c0ee-e5ff-4e04-a760-d900b129b7ec.json b/mock/mappings/api_adyen_gateways_dxgweszzmx-eab7c0ee-e5ff-4e04-a760-d900b129b7ec.json deleted file mode 100644 index 0c7fa18..0000000 --- a/mock/mappings/api_adyen_gateways_dxgweszzmx-eab7c0ee-e5ff-4e04-a760-d900b129b7ec.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "id" : "eab7c0ee-e5ff-4e04-a760-d900b129b7ec", - "name" : "api_adyen_gateways_dxgweszzmx", - "request" : { - "url" : "/api/adyen_gateways/dxgWesZzMx", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "f234f73e-b7fd-4264-9123-3c68e1531a1c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 05 May 2023 11:41:34 GMT", - "Vary" : "Origin" - } - }, - "uuid" : "eab7c0ee-e5ff-4e04-a760-d900b129b7ec", - "persistent" : true, - "insertionIndex" : 893 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_dxgweszzmx-fb4f8bc5-d542-40dd-ae3e-7acb2e4c130c.json b/mock/mappings/api_adyen_gateways_dxgweszzmx-fb4f8bc5-d542-40dd-ae3e-7acb2e4c130c.json deleted file mode 100644 index 88a51a5..0000000 --- a/mock/mappings/api_adyen_gateways_dxgweszzmx-fb4f8bc5-d542-40dd-ae3e-7acb2e4c130c.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "id" : "fb4f8bc5-d542-40dd-ae3e-7acb2e4c130c", - "name" : "api_adyen_gateways_dxgweszzmx", - "request" : { - "url" : "/api/adyen_gateways/dxgWesZzMx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dxgWesZzMx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2023-05-05T11:41:33.289Z\",\"updated_at\":\"2023-05-05T11:41:33.289Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":true,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/dxgWesZzMx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/dxgWesZzMx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"29ccdbb83901a03cc349a3e808b0976c\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "42af44b9-fe57-467b-b2cb-9cc45a091b78", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 05 May 2023 11:41:33 GMT", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "fb4f8bc5-d542-40dd-ae3e-7acb2e4c130c", - "persistent" : true, - "scenarioName" : "scenario-1-api-adyen_gateways-dxgWesZzMx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-adyen_gateways-dxgWesZzMx-2", - "insertionIndex" : 889 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_pvdxlsppov-097f9a1a-3842-455e-a06a-159f05bd6c45.json b/mock/mappings/api_adyen_gateways_pvdxlsppov-097f9a1a-3842-455e-a06a-159f05bd6c45.json deleted file mode 100644 index aaac47e..0000000 --- a/mock/mappings/api_adyen_gateways_pvdxlsppov-097f9a1a-3842-455e-a06a-159f05bd6c45.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "097f9a1a-3842-455e-a06a-159f05bd6c45", - "name" : "api_adyen_gateways_pvdxlsppov", - "request" : { - "url" : "/api/adyen_gateways/pvDXLsPpOv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pvDXLsPpOv\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2023-03-21T16:37:03.936Z\",\"updated_at\":\"2023-03-21T16:37:03.936Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/pvDXLsPpOv\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "18", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"7df4376a13d90dbba12abaa6641b64d8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "50c35b54-6e48-4941-a97a-280e39601e44", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:04 GMT", - "X-Served-By" : "cache-ams21041-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416624.382060,VS0,VE75", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "097f9a1a-3842-455e-a06a-159f05bd6c45", - "persistent" : true, - "scenarioName" : "scenario-1-api-adyen_gateways-pvDXLsPpOv", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-adyen_gateways-pvDXLsPpOv-2", - "insertionIndex" : 1552 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_pvdxlsppov-212cb7ae-2c49-4581-9fac-3c2a8b9f8977.json b/mock/mappings/api_adyen_gateways_pvdxlsppov-212cb7ae-2c49-4581-9fac-3c2a8b9f8977.json deleted file mode 100644 index 764f09d..0000000 --- a/mock/mappings/api_adyen_gateways_pvdxlsppov-212cb7ae-2c49-4581-9fac-3c2a8b9f8977.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "212cb7ae-2c49-4581-9fac-3c2a8b9f8977", - "name" : "api_adyen_gateways_pvdxlsppov", - "request" : { - "url" : "/api/adyen_gateways/pvDXLsPpOv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pvDXLsPpOv\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2023-03-21T16:37:03.936Z\",\"updated_at\":\"2023-03-21T16:37:03.936Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/pvDXLsPpOv\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "23", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"7df4376a13d90dbba12abaa6641b64d8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a57582ec-b719-42ce-b1e6-fba805ac0c16", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:05 GMT", - "X-Served-By" : "cache-ams21031-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416626.700944,VS0,VE47", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "212cb7ae-2c49-4581-9fac-3c2a8b9f8977", - "persistent" : true, - "scenarioName" : "scenario-1-api-adyen_gateways-pvDXLsPpOv", - "requiredScenarioState" : "scenario-1-api-adyen_gateways-pvDXLsPpOv-3", - "newScenarioState" : "scenario-1-api-adyen_gateways-pvDXLsPpOv-4", - "insertionIndex" : 1557 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_pvdxlsppov-603eaf2f-f091-4ea3-b875-01ebaf7e72d8.json b/mock/mappings/api_adyen_gateways_pvdxlsppov-603eaf2f-f091-4ea3-b875-01ebaf7e72d8.json deleted file mode 100644 index ab3c270..0000000 --- a/mock/mappings/api_adyen_gateways_pvdxlsppov-603eaf2f-f091-4ea3-b875-01ebaf7e72d8.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "603eaf2f-f091-4ea3-b875-01ebaf7e72d8", - "name" : "api_adyen_gateways_pvdxlsppov", - "request" : { - "url" : "/api/adyen_gateways/pvDXLsPpOv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pvDXLsPpOv\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2023-03-21T16:37:03.936Z\",\"updated_at\":\"2023-03-21T16:37:03.936Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"async_api\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/pvDXLsPpOv\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/payment_methods\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/relationships/adyen_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/adyen_gateways/pvDXLsPpOv/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "20", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"7df4376a13d90dbba12abaa6641b64d8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "c693f658-3a15-4a26-b663-9bc44c7d7b74", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:04 GMT", - "X-Served-By" : "cache-ams21038-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416625.836290,VS0,VE74", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "603eaf2f-f091-4ea3-b875-01ebaf7e72d8", - "persistent" : true, - "scenarioName" : "scenario-1-api-adyen_gateways-pvDXLsPpOv", - "requiredScenarioState" : "scenario-1-api-adyen_gateways-pvDXLsPpOv-2", - "newScenarioState" : "scenario-1-api-adyen_gateways-pvDXLsPpOv-3", - "insertionIndex" : 1554 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_pvdxlsppov-68e2e854-fad2-427d-8c6a-43f03a3b7200.json b/mock/mappings/api_adyen_gateways_pvdxlsppov-68e2e854-fad2-427d-8c6a-43f03a3b7200.json deleted file mode 100644 index aa6cc95..0000000 --- a/mock/mappings/api_adyen_gateways_pvdxlsppov-68e2e854-fad2-427d-8c6a-43f03a3b7200.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "id" : "68e2e854-fad2-427d-8c6a-43f03a3b7200", - "name" : "api_adyen_gateways_pvdxlsppov", - "request" : { - "url" : "/api/adyen_gateways/pvDXLsPpOv", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json; charset=utf-8", - "Cache-Control" : "no-cache", - "X-Request-Id" : "03fb15e0-aa5c-45e0-9dc0-6bed406fa1db", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:06 GMT", - "X-Served-By" : "cache-ams21020-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416626.485773,VS0,VE38", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "68e2e854-fad2-427d-8c6a-43f03a3b7200", - "persistent" : true, - "scenarioName" : "scenario-1-api-adyen_gateways-pvDXLsPpOv", - "requiredScenarioState" : "scenario-1-api-adyen_gateways-pvDXLsPpOv-4", - "insertionIndex" : 1561 -} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_pvdxlsppov-a32ad473-c230-45a5-940f-608e9fab4ddc.json b/mock/mappings/api_adyen_gateways_pvdxlsppov-a32ad473-c230-45a5-940f-608e9fab4ddc.json deleted file mode 100644 index ce63daa..0000000 --- a/mock/mappings/api_adyen_gateways_pvdxlsppov-a32ad473-c230-45a5-940f-608e9fab4ddc.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "a32ad473-c230-45a5-940f-608e9fab4ddc", - "name" : "api_adyen_gateways_pvdxlsppov", - "request" : { - "url" : "/api/adyen_gateways/pvDXLsPpOv", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "26", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "1d0260d9-3add-4888-8fbc-e7bfec401beb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:06 GMT", - "X-Served-By" : "cache-ams21033-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416626.263229,VS0,VE101", - "Vary" : "Origin" - } - }, - "uuid" : "a32ad473-c230-45a5-940f-608e9fab4ddc", - "persistent" : true, - "insertionIndex" : 1560 -} \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders-2d23db11-9254-48a1-9aa8-14554a21bacd.json b/mock/mappings/api_bing_geocoders-2d23db11-9254-48a1-9aa8-14554a21bacd.json deleted file mode 100644 index fb36c1b..0000000 --- a/mock/mappings/api_bing_geocoders-2d23db11-9254-48a1-9aa8-14554a21bacd.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "2d23db11-9254-48a1-9aa8-14554a21bacd", - "name" : "api_bing_geocoders", - "request" : { - "url" : "/api/bing_geocoders", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"key\":\"Bing Virtualearth Key\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"},\"name\":\"Incentro Bing Geocoder\"},\"type\":\"bing_geocoders\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"YnvAqsRRer\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"created_at\":\"2022-12-23T10:33:16.457Z\",\"updated_at\":\"2022-12-23T10:33:16.457Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"064c4935772901cb480a338bd32f9714\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "dd4822ac-360e-463f-8880-5016bbc34f38", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:33:16 GMT", - "X-Served-By" : "cache-ams21048-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791596.369371,VS0,VE108", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "2d23db11-9254-48a1-9aa8-14554a21bacd", - "persistent" : true, - "insertionIndex" : 1509 -} \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_ynvaqsrrer-5539dd6e-6c4b-45c5-860b-605b9f85a024.json b/mock/mappings/api_bing_geocoders_ynvaqsrrer-5539dd6e-6c4b-45c5-860b-605b9f85a024.json deleted file mode 100644 index 0815fd5..0000000 --- a/mock/mappings/api_bing_geocoders_ynvaqsrrer-5539dd6e-6c4b-45c5-860b-605b9f85a024.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "5539dd6e-6c4b-45c5-860b-605b9f85a024", - "name" : "api_bing_geocoders_ynvaqsrrer", - "request" : { - "url" : "/api/bing_geocoders/YnvAqsRRer", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YnvAqsRRer\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"created_at\":\"2022-12-23T10:33:16.457Z\",\"updated_at\":\"2022-12-23T10:33:16.457Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"064c4935772901cb480a338bd32f9714\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b3fe4203-65b8-4700-a6ee-78ec5d67f057", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:33:17 GMT", - "X-Served-By" : "cache-ams21058-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791597.973257,VS0,VE86", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "5539dd6e-6c4b-45c5-860b-605b9f85a024", - "persistent" : true, - "scenarioName" : "scenario-1-api-bing_geocoders-YnvAqsRRer", - "requiredScenarioState" : "scenario-1-api-bing_geocoders-YnvAqsRRer-2", - "newScenarioState" : "scenario-1-api-bing_geocoders-YnvAqsRRer-3", - "insertionIndex" : 1511 -} \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_ynvaqsrrer-7062b32c-1e49-4ca8-a8f2-d8f1049d4961.json b/mock/mappings/api_bing_geocoders_ynvaqsrrer-7062b32c-1e49-4ca8-a8f2-d8f1049d4961.json deleted file mode 100644 index 47819eb..0000000 --- a/mock/mappings/api_bing_geocoders_ynvaqsrrer-7062b32c-1e49-4ca8-a8f2-d8f1049d4961.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "7062b32c-1e49-4ca8-a8f2-d8f1049d4961", - "name" : "api_bing_geocoders_ynvaqsrrer", - "request" : { - "url" : "/api/bing_geocoders/YnvAqsRRer", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"key\":\"Bing Virtualearth Key\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"},\"name\":\"Incentro Updated Bing Geocoder\"},\"id\":\"YnvAqsRRer\",\"type\":\"bing_geocoders\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YnvAqsRRer\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Bing Geocoder\",\"created_at\":\"2022-12-23T10:33:16.457Z\",\"updated_at\":\"2022-12-23T10:33:17.371Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b8f3e29cbd81fc21877aacafc7fc1d1d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a6880318-b46d-45bd-a338-23860f09cb22", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:33:17 GMT", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791597.284932,VS0,VE104", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "7062b32c-1e49-4ca8-a8f2-d8f1049d4961", - "persistent" : true, - "insertionIndex" : 1512 -} \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_ynvaqsrrer-80eec3e9-4aba-4baf-a067-84b398054b98.json b/mock/mappings/api_bing_geocoders_ynvaqsrrer-80eec3e9-4aba-4baf-a067-84b398054b98.json deleted file mode 100644 index 42c579a..0000000 --- a/mock/mappings/api_bing_geocoders_ynvaqsrrer-80eec3e9-4aba-4baf-a067-84b398054b98.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "80eec3e9-4aba-4baf-a067-84b398054b98", - "name" : "api_bing_geocoders_ynvaqsrrer", - "request" : { - "url" : "/api/bing_geocoders/YnvAqsRRer", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:33:18 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21055-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791598.096025,VS0,VE64" - } - }, - "uuid" : "80eec3e9-4aba-4baf-a067-84b398054b98", - "persistent" : true, - "scenarioName" : "scenario-1-api-bing_geocoders-YnvAqsRRer", - "requiredScenarioState" : "scenario-1-api-bing_geocoders-YnvAqsRRer-4", - "insertionIndex" : 1515 -} \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_ynvaqsrrer-918c3e37-3bdb-41ca-8344-ac63083bf5bd.json b/mock/mappings/api_bing_geocoders_ynvaqsrrer-918c3e37-3bdb-41ca-8344-ac63083bf5bd.json deleted file mode 100644 index 08beaaa..0000000 --- a/mock/mappings/api_bing_geocoders_ynvaqsrrer-918c3e37-3bdb-41ca-8344-ac63083bf5bd.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "918c3e37-3bdb-41ca-8344-ac63083bf5bd", - "name" : "api_bing_geocoders_ynvaqsrrer", - "request" : { - "url" : "/api/bing_geocoders/YnvAqsRRer", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YnvAqsRRer\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"created_at\":\"2022-12-23T10:33:16.457Z\",\"updated_at\":\"2022-12-23T10:33:16.457Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"064c4935772901cb480a338bd32f9714\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "5375fbed-b588-4d5d-bb89-daccbd056ae2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:33:16 GMT", - "X-Served-By" : "cache-ams21030-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791597.703174,VS0,VE86", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "918c3e37-3bdb-41ca-8344-ac63083bf5bd", - "persistent" : true, - "scenarioName" : "scenario-1-api-bing_geocoders-YnvAqsRRer", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-bing_geocoders-YnvAqsRRer-2", - "insertionIndex" : 1510 -} \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_ynvaqsrrer-d207a45c-6c5f-4412-9c68-bf16f741443f.json b/mock/mappings/api_bing_geocoders_ynvaqsrrer-d207a45c-6c5f-4412-9c68-bf16f741443f.json deleted file mode 100644 index 34c51ac..0000000 --- a/mock/mappings/api_bing_geocoders_ynvaqsrrer-d207a45c-6c5f-4412-9c68-bf16f741443f.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "d207a45c-6c5f-4412-9c68-bf16f741443f", - "name" : "api_bing_geocoders_ynvaqsrrer", - "request" : { - "url" : "/api/bing_geocoders/YnvAqsRRer", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YnvAqsRRer\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Bing Geocoder\",\"created_at\":\"2022-12-23T10:33:16.457Z\",\"updated_at\":\"2022-12-23T10:33:17.371Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/bing_geocoders/YnvAqsRRer/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b8f3e29cbd81fc21877aacafc7fc1d1d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "5bf17a6a-2542-489b-bdd6-7fe310a1acdb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:33:17 GMT", - "X-Served-By" : "cache-ams21063-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791598.621929,VS0,VE44", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d207a45c-6c5f-4412-9c68-bf16f741443f", - "persistent" : true, - "scenarioName" : "scenario-1-api-bing_geocoders-YnvAqsRRer", - "requiredScenarioState" : "scenario-1-api-bing_geocoders-YnvAqsRRer-3", - "newScenarioState" : "scenario-1-api-bing_geocoders-YnvAqsRRer-4", - "insertionIndex" : 1513 -} \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_ynvaqsrrer-f53bf002-b613-4e66-ba83-5583092d60f7.json b/mock/mappings/api_bing_geocoders_ynvaqsrrer-f53bf002-b613-4e66-ba83-5583092d60f7.json deleted file mode 100644 index 5e7c3de..0000000 --- a/mock/mappings/api_bing_geocoders_ynvaqsrrer-f53bf002-b613-4e66-ba83-5583092d60f7.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "f53bf002-b613-4e66-ba83-5583092d60f7", - "name" : "api_bing_geocoders_ynvaqsrrer", - "request" : { - "url" : "/api/bing_geocoders/YnvAqsRRer", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "f97f7e70-0cbe-4769-8258-12b678e98cea", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:33:17 GMT", - "X-Served-By" : "cache-ams21064-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791598.889452,VS0,VE90", - "Vary" : "Origin" - } - }, - "uuid" : "f53bf002-b613-4e66-ba83-5583092d60f7", - "persistent" : true, - "insertionIndex" : 1514 -} \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways-e8f96715-79d1-4b55-9957-0fcd8f1e88ed.json b/mock/mappings/api_braintree_gateways-e8f96715-79d1-4b55-9957-0fcd8f1e88ed.json deleted file mode 100644 index b2e2442..0000000 --- a/mock/mappings/api_braintree_gateways-e8f96715-79d1-4b55-9957-0fcd8f1e88ed.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "e8f96715-79d1-4b55-9957-0fcd8f1e88ed", - "name" : "api_braintree_gateways", - "request" : { - "url" : "/api/braintree_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"merchant_account_id\":\"xxxx-yyyy-zzzz\",\"merchant_id\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"name\":\"Incentro Braintree Gateway\",\"private_key\":\"xxxx-yyyy-zzzz\",\"public_key\":\"xxxx-yyyy-zzzz\"},\"type\":\"braintree_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"rxPLwslanx\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2023-01-11T14:27:02.942Z\",\"updated_at\":\"2023-01-11T14:27:02.942Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rxPLwslanx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/payment_methods\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/braintree_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"98b3283bdc3d138f2304e9a7bc814d99\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "0efc1715-7b5c-4fe9-9a4e-b83979a4e3ca", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:02 GMT", - "X-Served-By" : "cache-ams21057-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447223.913112,VS0,VE46", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "e8f96715-79d1-4b55-9957-0fcd8f1e88ed", - "persistent" : true, - "insertionIndex" : 870 -} \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rxplwslanx-100b314d-eb36-43d5-87b2-097143df4d64.json b/mock/mappings/api_braintree_gateways_rxplwslanx-100b314d-eb36-43d5-87b2-097143df4d64.json deleted file mode 100644 index e2e1e11..0000000 --- a/mock/mappings/api_braintree_gateways_rxplwslanx-100b314d-eb36-43d5-87b2-097143df4d64.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "100b314d-eb36-43d5-87b2-097143df4d64", - "name" : "api_braintree_gateways_rxplwslanx", - "request" : { - "url" : "/api/braintree_gateways/rxPLwslanx", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"merchant_account_id\":\"xxxx-yyyy-zzzz\",\"merchant_id\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"name\":\"Incentro Braintree Gateway Changed\",\"private_key\":\"xxxx-yyyy-zzzz\",\"public_key\":\"xxxx-yyyy-zzzz\"},\"id\":\"rxPLwslanx\",\"type\":\"braintree_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rxPLwslanx\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway Changed\",\"created_at\":\"2023-01-11T14:27:02.942Z\",\"updated_at\":\"2023-01-11T14:27:03.788Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rxPLwslanx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/payment_methods\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/braintree_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"d28cb83d5a96582a93496a2e2abb6d2c\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d7848ca9-0fad-4f0f-9f19-7b6a3e3485d7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:03 GMT", - "X-Served-By" : "cache-ams21051-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447224.715325,VS0,VE87", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "100b314d-eb36-43d5-87b2-097143df4d64", - "persistent" : true, - "insertionIndex" : 873 -} \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rxplwslanx-3484dc4f-6896-4e1a-bdde-bf5bdcbaada2.json b/mock/mappings/api_braintree_gateways_rxplwslanx-3484dc4f-6896-4e1a-bdde-bf5bdcbaada2.json deleted file mode 100644 index 2793e8e..0000000 --- a/mock/mappings/api_braintree_gateways_rxplwslanx-3484dc4f-6896-4e1a-bdde-bf5bdcbaada2.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "3484dc4f-6896-4e1a-bdde-bf5bdcbaada2", - "name" : "api_braintree_gateways_rxplwslanx", - "request" : { - "url" : "/api/braintree_gateways/rxPLwslanx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rxPLwslanx\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2023-01-11T14:27:02.942Z\",\"updated_at\":\"2023-01-11T14:27:02.942Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rxPLwslanx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/payment_methods\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/braintree_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"98b3283bdc3d138f2304e9a7bc814d99\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1374efaf-4422-43c0-bd9e-d4b96d553955", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:03 GMT", - "X-Served-By" : "cache-ams21030-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447223.193066,VS0,VE88", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "3484dc4f-6896-4e1a-bdde-bf5bdcbaada2", - "persistent" : true, - "scenarioName" : "scenario-1-api-braintree_gateways-rxPLwslanx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-braintree_gateways-rxPLwslanx-2", - "insertionIndex" : 871 -} \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rxplwslanx-5b2eb3f3-84f7-4a60-9e79-df72bdf2a959.json b/mock/mappings/api_braintree_gateways_rxplwslanx-5b2eb3f3-84f7-4a60-9e79-df72bdf2a959.json deleted file mode 100644 index 191b519..0000000 --- a/mock/mappings/api_braintree_gateways_rxplwslanx-5b2eb3f3-84f7-4a60-9e79-df72bdf2a959.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "5b2eb3f3-84f7-4a60-9e79-df72bdf2a959", - "name" : "api_braintree_gateways_rxplwslanx", - "request" : { - "url" : "/api/braintree_gateways/rxPLwslanx", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "8", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "83f8d6da-b7eb-4178-8246-cb310e5be61a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:04 GMT", - "X-Served-By" : "cache-ams21021-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447224.278161,VS0,VE57", - "Vary" : "Origin" - } - }, - "uuid" : "5b2eb3f3-84f7-4a60-9e79-df72bdf2a959", - "persistent" : true, - "insertionIndex" : 875 -} \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rxplwslanx-79737898-d52e-4194-bfff-ac28e5d6a089.json b/mock/mappings/api_braintree_gateways_rxplwslanx-79737898-d52e-4194-bfff-ac28e5d6a089.json deleted file mode 100644 index 72f9954..0000000 --- a/mock/mappings/api_braintree_gateways_rxplwslanx-79737898-d52e-4194-bfff-ac28e5d6a089.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "79737898-d52e-4194-bfff-ac28e5d6a089", - "name" : "api_braintree_gateways_rxplwslanx", - "request" : { - "url" : "/api/braintree_gateways/rxPLwslanx", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:04 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21062-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447224.441394,VS0,VE33" - } - }, - "uuid" : "79737898-d52e-4194-bfff-ac28e5d6a089", - "persistent" : true, - "scenarioName" : "scenario-1-api-braintree_gateways-rxPLwslanx", - "requiredScenarioState" : "scenario-1-api-braintree_gateways-rxPLwslanx-4", - "insertionIndex" : 876 -} \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rxplwslanx-a8c3f972-f5c6-492b-8d0b-d3712847214b.json b/mock/mappings/api_braintree_gateways_rxplwslanx-a8c3f972-f5c6-492b-8d0b-d3712847214b.json deleted file mode 100644 index d4166a1..0000000 --- a/mock/mappings/api_braintree_gateways_rxplwslanx-a8c3f972-f5c6-492b-8d0b-d3712847214b.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "a8c3f972-f5c6-492b-8d0b-d3712847214b", - "name" : "api_braintree_gateways_rxplwslanx", - "request" : { - "url" : "/api/braintree_gateways/rxPLwslanx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rxPLwslanx\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway Changed\",\"created_at\":\"2023-01-11T14:27:02.942Z\",\"updated_at\":\"2023-01-11T14:27:03.788Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rxPLwslanx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/payment_methods\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/braintree_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"d28cb83d5a96582a93496a2e2abb6d2c\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d7306699-aa28-4bf3-b9b0-11f83079fc9e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:04 GMT", - "X-Served-By" : "cache-ams21064-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447224.023318,VS0,VE41", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a8c3f972-f5c6-492b-8d0b-d3712847214b", - "persistent" : true, - "scenarioName" : "scenario-1-api-braintree_gateways-rxPLwslanx", - "requiredScenarioState" : "scenario-1-api-braintree_gateways-rxPLwslanx-3", - "newScenarioState" : "scenario-1-api-braintree_gateways-rxPLwslanx-4", - "insertionIndex" : 874 -} \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rxplwslanx-dc938ecd-fc31-4550-a591-9dbb11846e1a.json b/mock/mappings/api_braintree_gateways_rxplwslanx-dc938ecd-fc31-4550-a591-9dbb11846e1a.json deleted file mode 100644 index 0778305..0000000 --- a/mock/mappings/api_braintree_gateways_rxplwslanx-dc938ecd-fc31-4550-a591-9dbb11846e1a.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "dc938ecd-fc31-4550-a591-9dbb11846e1a", - "name" : "api_braintree_gateways_rxplwslanx", - "request" : { - "url" : "/api/braintree_gateways/rxPLwslanx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rxPLwslanx\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2023-01-11T14:27:02.942Z\",\"updated_at\":\"2023-01-11T14:27:02.942Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rxPLwslanx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/payment_methods\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/relationships/braintree_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/braintree_gateways/rxPLwslanx/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"98b3283bdc3d138f2304e9a7bc814d99\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d0842e3c-ee49-4928-8e15-0f4e26059518", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:03 GMT", - "X-Served-By" : "cache-ams21049-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447223.482504,VS0,VE38", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "dc938ecd-fc31-4550-a591-9dbb11846e1a", - "persistent" : true, - "scenarioName" : "scenario-1-api-braintree_gateways-rxPLwslanx", - "requiredScenarioState" : "scenario-1-api-braintree_gateways-rxPLwslanx-2", - "newScenarioState" : "scenario-1-api-braintree_gateways-rxPLwslanx-3", - "insertionIndex" : 872 -} \ No newline at end of file diff --git a/mock/mappings/api_checkout_com_gateways-e113d6da-e5c2-461e-88d7-0f0ca961c8f3.json b/mock/mappings/api_checkout_com_gateways-e113d6da-e5c2-461e-88d7-0f0ca961c8f3.json deleted file mode 100644 index 1a18442..0000000 --- a/mock/mappings/api_checkout_com_gateways-e113d6da-e5c2-461e-88d7-0f0ca961c8f3.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "e113d6da-e5c2-461e-88d7-0f0ca961c8f3", - "name" : "api_checkout_com_gateways", - "request" : { - "url" : "/api/checkout_com_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_checkout_com_gateway.incentro_checkout_com_gateway\"},\"name\":\"Incentro CheckoutCom Gateway\",\"public_key\":\"pk_test_xxxx-yyyy-zzzz\",\"secret_key\":\"sk_test_xxxx-yyyy-zzzz\"},\"type\":\"checkout_com_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"ejqbrsogbk\",\"type\":\"checkout_com_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk\"},\"attributes\":{\"name\":\"Incentro CheckoutCom Gateway\",\"created_at\":\"2023-01-11T14:27:56.338Z\",\"updated_at\":\"2023-01-11T14:27:56.338Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_checkout_com_gateway.incentro_checkout_com_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/checkout_com_gateways/ejqbrsogbk\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/payment_methods\"}},\"checkout_com_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/checkout_com_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/checkout_com_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "11", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"dccdc533292ff0cf2d4fcd9499fc45e3\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1f2cf73a-bc26-482e-8942-4035d3e43e65", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:56 GMT", - "X-Served-By" : "cache-ams21058-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447276.265017,VS0,VE188", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "e113d6da-e5c2-461e-88d7-0f0ca961c8f3", - "persistent" : true, - "insertionIndex" : 879 -} \ No newline at end of file diff --git a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-066057a3-b253-4a83-a693-d9147395315d.json b/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-066057a3-b253-4a83-a693-d9147395315d.json deleted file mode 100644 index 041bfdc..0000000 --- a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-066057a3-b253-4a83-a693-d9147395315d.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "066057a3-b253-4a83-a693-d9147395315d", - "name" : "api_checkout_com_gateways_ejqbrsogbk", - "request" : { - "url" : "/api/checkout_com_gateways/ejqbrsogbk", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:58 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21055-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447278.978838,VS0,VE69" - } - }, - "uuid" : "066057a3-b253-4a83-a693-d9147395315d", - "persistent" : true, - "scenarioName" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk", - "requiredScenarioState" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk-4", - "insertionIndex" : 885 -} \ No newline at end of file diff --git a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-070e1243-66fd-4bed-a25d-1da3215d8319.json b/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-070e1243-66fd-4bed-a25d-1da3215d8319.json deleted file mode 100644 index 1860340..0000000 --- a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-070e1243-66fd-4bed-a25d-1da3215d8319.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "070e1243-66fd-4bed-a25d-1da3215d8319", - "name" : "api_checkout_com_gateways_ejqbrsogbk", - "request" : { - "url" : "/api/checkout_com_gateways/ejqbrsogbk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsogbk\",\"type\":\"checkout_com_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk\"},\"attributes\":{\"name\":\"Incentro CheckoutCom Gateway\",\"created_at\":\"2023-01-11T14:27:56.338Z\",\"updated_at\":\"2023-01-11T14:27:56.338Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_checkout_com_gateway.incentro_checkout_com_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/checkout_com_gateways/ejqbrsogbk\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/payment_methods\"}},\"checkout_com_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/checkout_com_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/checkout_com_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "12", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"dccdc533292ff0cf2d4fcd9499fc45e3\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "fc7d2ad5-3564-4f02-8580-adaf3f815df8", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:56 GMT", - "X-Served-By" : "cache-ams21024-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447277.699348,VS0,VE47", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "070e1243-66fd-4bed-a25d-1da3215d8319", - "persistent" : true, - "scenarioName" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk-2", - "insertionIndex" : 880 -} \ No newline at end of file diff --git a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-08f5d13e-2613-4123-9283-f59c176df452.json b/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-08f5d13e-2613-4123-9283-f59c176df452.json deleted file mode 100644 index 4eda33f..0000000 --- a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-08f5d13e-2613-4123-9283-f59c176df452.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "08f5d13e-2613-4123-9283-f59c176df452", - "name" : "api_checkout_com_gateways_ejqbrsogbk", - "request" : { - "url" : "/api/checkout_com_gateways/ejqbrsogbk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsogbk\",\"type\":\"checkout_com_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk\"},\"attributes\":{\"name\":\"Incentro CheckoutCom Gateway\",\"created_at\":\"2023-01-11T14:27:56.338Z\",\"updated_at\":\"2023-01-11T14:27:56.338Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_checkout_com_gateway.incentro_checkout_com_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/checkout_com_gateways/ejqbrsogbk\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/payment_methods\"}},\"checkout_com_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/checkout_com_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/checkout_com_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "13", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"dccdc533292ff0cf2d4fcd9499fc45e3\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "c890b75c-f9a7-49f1-9394-2ea6b23db585", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:56 GMT", - "X-Served-By" : "cache-ams21055-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447277.928335,VS0,VE49", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "08f5d13e-2613-4123-9283-f59c176df452", - "persistent" : true, - "scenarioName" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk", - "requiredScenarioState" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk-2", - "newScenarioState" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk-3", - "insertionIndex" : 881 -} \ No newline at end of file diff --git a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-26a41511-f6d1-4a73-8958-578244518c46.json b/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-26a41511-f6d1-4a73-8958-578244518c46.json deleted file mode 100644 index 5539f9e..0000000 --- a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-26a41511-f6d1-4a73-8958-578244518c46.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "26a41511-f6d1-4a73-8958-578244518c46", - "name" : "api_checkout_com_gateways_ejqbrsogbk", - "request" : { - "url" : "/api/checkout_com_gateways/ejqbrsogbk", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "16", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "88edadd4-51a9-4a75-a9f0-4fb82371c843", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:57 GMT", - "X-Served-By" : "cache-ams21075-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447278.760997,VS0,VE102", - "Vary" : "Origin" - } - }, - "uuid" : "26a41511-f6d1-4a73-8958-578244518c46", - "persistent" : true, - "insertionIndex" : 884 -} \ No newline at end of file diff --git a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-2a1677de-8567-465e-8dc1-9f70c0ec0d2b.json b/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-2a1677de-8567-465e-8dc1-9f70c0ec0d2b.json deleted file mode 100644 index 9b60a06..0000000 --- a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-2a1677de-8567-465e-8dc1-9f70c0ec0d2b.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "2a1677de-8567-465e-8dc1-9f70c0ec0d2b", - "name" : "api_checkout_com_gateways_ejqbrsogbk", - "request" : { - "url" : "/api/checkout_com_gateways/ejqbrsogbk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsogbk\",\"type\":\"checkout_com_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk\"},\"attributes\":{\"name\":\"Incentro CheckoutCom Gateway Changed\",\"created_at\":\"2023-01-11T14:27:56.338Z\",\"updated_at\":\"2023-01-11T14:27:57.220Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_checkout_com_gateway.incentro_checkout_com_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/checkout_com_gateways/ejqbrsogbk\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/payment_methods\"}},\"checkout_com_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/checkout_com_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/checkout_com_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "15", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"2f4c70e953c7aee5aed00e32052486e9\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "915a33ab-25ea-4e2d-86d3-5398bda4e298", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:57 GMT", - "X-Served-By" : "cache-ams21040-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447277.459270,VS0,VE86", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "2a1677de-8567-465e-8dc1-9f70c0ec0d2b", - "persistent" : true, - "scenarioName" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk", - "requiredScenarioState" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk-3", - "newScenarioState" : "scenario-1-api-checkout_com_gateways-ejqbrsogbk-4", - "insertionIndex" : 883 -} \ No newline at end of file diff --git a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-7a822efe-1fa1-470e-b0f2-6339eed70614.json b/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-7a822efe-1fa1-470e-b0f2-6339eed70614.json deleted file mode 100644 index bd39216..0000000 --- a/mock/mappings/api_checkout_com_gateways_ejqbrsogbk-7a822efe-1fa1-470e-b0f2-6339eed70614.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "7a822efe-1fa1-470e-b0f2-6339eed70614", - "name" : "api_checkout_com_gateways_ejqbrsogbk", - "request" : { - "url" : "/api/checkout_com_gateways/ejqbrsogbk", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_checkout_com_gateway.incentro_checkout_com_gateway\"},\"name\":\"Incentro CheckoutCom Gateway Changed\"},\"id\":\"ejqbrsogbk\",\"type\":\"checkout_com_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsogbk\",\"type\":\"checkout_com_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk\"},\"attributes\":{\"name\":\"Incentro CheckoutCom Gateway Changed\",\"created_at\":\"2023-01-11T14:27:56.338Z\",\"updated_at\":\"2023-01-11T14:27:57.220Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_checkout_com_gateway.incentro_checkout_com_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/checkout_com_gateways/ejqbrsogbk\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/payment_methods\"}},\"checkout_com_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/relationships/checkout_com_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/checkout_com_gateways/ejqbrsogbk/checkout_com_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "14", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"2f4c70e953c7aee5aed00e32052486e9\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "44c25068-8a0e-4003-9c52-1b6f823831ec", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:27:57 GMT", - "X-Served-By" : "cache-ams21054-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447277.180536,VS0,VE53", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "7a822efe-1fa1-470e-b0f2-6339eed70614", - "persistent" : true, - "insertionIndex" : 882 -} \ No newline at end of file diff --git a/mock/mappings/api_customer_groups-e16e9b84-5285-442e-a0ac-77fd9a387cba.json b/mock/mappings/api_customer_groups-e16e9b84-5285-442e-a0ac-77fd9a387cba.json deleted file mode 100644 index d057148..0000000 --- a/mock/mappings/api_customer_groups-e16e9b84-5285-442e-a0ac-77fd9a387cba.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "e16e9b84-5285-442e-a0ac-77fd9a387cba", - "name" : "api_customer_groups", - "request" : { - "url" : "/api/customer_groups", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"},\"name\":\"Incentro customer group\"},\"type\":\"customer_groups\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"RDxoAhPJpj\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj\"},\"attributes\":{\"name\":\"Incentro customer group\",\"created_at\":\"2022-10-27T08:56:20.558Z\",\"updated_at\":\"2022-10-27T08:56:20.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/customers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/customers\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "17", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"1349b90a4efe19c84babff6f45ab013e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "8d1ee8c1-74af-4305-b3b4-a8c822d6585a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:20 GMT", - "X-Served-By" : "cache-ams21080-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860980.492196,VS0,VE82", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "e16e9b84-5285-442e-a0ac-77fd9a387cba", - "persistent" : true, - "insertionIndex" : 9 -} \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_rdxoahpjpj-0faa0959-e7de-4e87-ae7f-8cf1a6c0d44d.json b/mock/mappings/api_customer_groups_rdxoahpjpj-0faa0959-e7de-4e87-ae7f-8cf1a6c0d44d.json deleted file mode 100644 index af2b8f4..0000000 --- a/mock/mappings/api_customer_groups_rdxoahpjpj-0faa0959-e7de-4e87-ae7f-8cf1a6c0d44d.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "0faa0959-e7de-4e87-ae7f-8cf1a6c0d44d", - "name" : "api_customer_groups_rdxoahpjpj", - "request" : { - "url" : "/api/customer_groups/RDxoAhPJpj", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "22", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "6ae6ca8a-376d-45d2-a836-60692caad318", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:21 GMT", - "X-Served-By" : "cache-ams21062-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860982.614007,VS0,VE93", - "Vary" : "Origin" - } - }, - "uuid" : "0faa0959-e7de-4e87-ae7f-8cf1a6c0d44d", - "persistent" : true, - "insertionIndex" : 14 -} \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_rdxoahpjpj-8c6c84ef-f21a-4765-a814-7fa369ef0e54.json b/mock/mappings/api_customer_groups_rdxoahpjpj-8c6c84ef-f21a-4765-a814-7fa369ef0e54.json deleted file mode 100644 index e23c28d..0000000 --- a/mock/mappings/api_customer_groups_rdxoahpjpj-8c6c84ef-f21a-4765-a814-7fa369ef0e54.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "8c6c84ef-f21a-4765-a814-7fa369ef0e54", - "name" : "api_customer_groups_rdxoahpjpj", - "request" : { - "url" : "/api/customer_groups/RDxoAhPJpj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RDxoAhPJpj\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj\"},\"attributes\":{\"name\":\"Incentro customer group\",\"created_at\":\"2022-10-27T08:56:20.558Z\",\"updated_at\":\"2022-10-27T08:56:20.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/customers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/customers\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "19", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"1349b90a4efe19c84babff6f45ab013e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "9941a0c3-9ccf-455b-ab67-1e0c48efd72e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:20 GMT", - "X-Served-By" : "cache-ams21071-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860981.955237,VS0,VE40", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "8c6c84ef-f21a-4765-a814-7fa369ef0e54", - "persistent" : true, - "scenarioName" : "scenario-2-api-customer_groups-RDxoAhPJpj", - "requiredScenarioState" : "scenario-2-api-customer_groups-RDxoAhPJpj-2", - "newScenarioState" : "scenario-2-api-customer_groups-RDxoAhPJpj-3", - "insertionIndex" : 11 -} \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_rdxoahpjpj-a483b005-e976-470f-a04a-5b99e70326d9.json b/mock/mappings/api_customer_groups_rdxoahpjpj-a483b005-e976-470f-a04a-5b99e70326d9.json deleted file mode 100644 index 5e6ad57..0000000 --- a/mock/mappings/api_customer_groups_rdxoahpjpj-a483b005-e976-470f-a04a-5b99e70326d9.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "a483b005-e976-470f-a04a-5b99e70326d9", - "name" : "api_customer_groups_rdxoahpjpj", - "request" : { - "url" : "/api/customer_groups/RDxoAhPJpj", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:21 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21062-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860982.777962,VS0,VE84" - } - }, - "uuid" : "a483b005-e976-470f-a04a-5b99e70326d9", - "persistent" : true, - "scenarioName" : "scenario-2-api-customer_groups-RDxoAhPJpj", - "requiredScenarioState" : "scenario-2-api-customer_groups-RDxoAhPJpj-4", - "insertionIndex" : 15 -} \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_rdxoahpjpj-af54d9e4-99a6-47d5-b9f6-168739c49f81.json b/mock/mappings/api_customer_groups_rdxoahpjpj-af54d9e4-99a6-47d5-b9f6-168739c49f81.json deleted file mode 100644 index 4727c6e..0000000 --- a/mock/mappings/api_customer_groups_rdxoahpjpj-af54d9e4-99a6-47d5-b9f6-168739c49f81.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "af54d9e4-99a6-47d5-b9f6-168739c49f81", - "name" : "api_customer_groups_rdxoahpjpj", - "request" : { - "url" : "/api/customer_groups/RDxoAhPJpj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RDxoAhPJpj\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj\"},\"attributes\":{\"name\":\"Incentro updated customer group\",\"created_at\":\"2022-10-27T08:56:20.558Z\",\"updated_at\":\"2022-10-27T08:56:21.222Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/customers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/customers\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"67afbaa547ccdd7b6dec4be4e3583acf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "5a751ebd-3941-40d5-b14a-8c9734563b6a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:21 GMT", - "X-Served-By" : "cache-ams21048-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860981.401256,VS0,VE42", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "af54d9e4-99a6-47d5-b9f6-168739c49f81", - "persistent" : true, - "scenarioName" : "scenario-2-api-customer_groups-RDxoAhPJpj", - "requiredScenarioState" : "scenario-2-api-customer_groups-RDxoAhPJpj-3", - "newScenarioState" : "scenario-2-api-customer_groups-RDxoAhPJpj-4", - "insertionIndex" : 13 -} \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_rdxoahpjpj-cf31a45d-1008-4783-b3dc-a29889920c3a.json b/mock/mappings/api_customer_groups_rdxoahpjpj-cf31a45d-1008-4783-b3dc-a29889920c3a.json deleted file mode 100644 index d7b36a5..0000000 --- a/mock/mappings/api_customer_groups_rdxoahpjpj-cf31a45d-1008-4783-b3dc-a29889920c3a.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "cf31a45d-1008-4783-b3dc-a29889920c3a", - "name" : "api_customer_groups_rdxoahpjpj", - "request" : { - "url" : "/api/customer_groups/RDxoAhPJpj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RDxoAhPJpj\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj\"},\"attributes\":{\"name\":\"Incentro customer group\",\"created_at\":\"2022-10-27T08:56:20.558Z\",\"updated_at\":\"2022-10-27T08:56:20.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/customers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/customers\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "18", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"1349b90a4efe19c84babff6f45ab013e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "160bc7e1-add2-4016-af93-e7af525b8f9c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:20 GMT", - "X-Served-By" : "cache-ams21036-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860981.742119,VS0,VE75", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "cf31a45d-1008-4783-b3dc-a29889920c3a", - "persistent" : true, - "scenarioName" : "scenario-2-api-customer_groups-RDxoAhPJpj", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-2-api-customer_groups-RDxoAhPJpj-2", - "insertionIndex" : 10 -} \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_rdxoahpjpj-d3720782-9327-4a09-99b2-de038a48ddd0.json b/mock/mappings/api_customer_groups_rdxoahpjpj-d3720782-9327-4a09-99b2-de038a48ddd0.json deleted file mode 100644 index 32b7a86..0000000 --- a/mock/mappings/api_customer_groups_rdxoahpjpj-d3720782-9327-4a09-99b2-de038a48ddd0.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "d3720782-9327-4a09-99b2-de038a48ddd0", - "name" : "api_customer_groups_rdxoahpjpj", - "request" : { - "url" : "/api/customer_groups/RDxoAhPJpj", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"},\"name\":\"Incentro updated customer group\"},\"id\":\"RDxoAhPJpj\",\"type\":\"customer_groups\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RDxoAhPJpj\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj\"},\"attributes\":{\"name\":\"Incentro updated customer group\",\"created_at\":\"2022-10-27T08:56:20.558Z\",\"updated_at\":\"2022-10-27T08:56:21.222Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/customers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/customers\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/customer_groups/RDxoAhPJpj/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "20", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"67afbaa547ccdd7b6dec4be4e3583acf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "7f831ec3-8a94-4a7d-bad0-7d754ef67817", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:21 GMT", - "X-Served-By" : "cache-ams21039-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860981.152619,VS0,VE85", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d3720782-9327-4a09-99b2-de038a48ddd0", - "persistent" : true, - "insertionIndex" : 12 -} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times-b16371b2-dd4d-41cf-bbbb-53c707faa8f7.json b/mock/mappings/api_delivery_lead_times-b16371b2-dd4d-41cf-bbbb-53c707faa8f7.json deleted file mode 100644 index ddf43de..0000000 --- a/mock/mappings/api_delivery_lead_times-b16371b2-dd4d-41cf-bbbb-53c707faa8f7.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "b16371b2-dd4d-41cf-bbbb-53c707faa8f7", - "name" : "api_delivery_lead_times", - "request" : { - "url" : "/api/delivery_lead_times", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"max_hours\":100,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_hours\":10},\"relationships\":{\"shipping_method\":{\"data\":{\"id\":\"mNBJpFaYgN\",\"type\":\"shipping_methods\"}},\"stock_location\":{\"data\":{\"id\":\"PMRpouqZwG\",\"type\":\"stock_locations\"}}},\"type\":\"delivery_lead_times\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"MxlamFyQdp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2022-12-23T10:26:05.785Z\",\"updated_at\":\"2022-12-23T10:26:05.785Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/shipping_method\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "16", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"fb39a37f66c7e39dd0a7f5ff64a6da7b\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "447fe506-60d6-4f46-ad90-5adc72d4b24c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:05 GMT", - "X-Served-By" : "cache-ams21081-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791166.755144,VS0,VE48", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "b16371b2-dd4d-41cf-bbbb-53c707faa8f7", - "persistent" : true, - "insertionIndex" : 1116 -} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-0ef7dff1-0147-44fb-bcb1-26750da3c1a8.json b/mock/mappings/api_delivery_lead_times_mxlamfyqdp-0ef7dff1-0147-44fb-bcb1-26750da3c1a8.json deleted file mode 100644 index f2a521a..0000000 --- a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-0ef7dff1-0147-44fb-bcb1-26750da3c1a8.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "0ef7dff1-0147-44fb-bcb1-26750da3c1a8", - "name" : "api_delivery_lead_times_mxlamfyqdp", - "request" : { - "url" : "/api/delivery_lead_times/MxlamFyQdp", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:08 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21023-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791169.822756,VS0,VE67" - } - }, - "uuid" : "0ef7dff1-0147-44fb-bcb1-26750da3c1a8", - "persistent" : true, - "scenarioName" : "scenario-4-api-delivery_lead_times-MxlamFyQdp", - "requiredScenarioState" : "scenario-4-api-delivery_lead_times-MxlamFyQdp-4", - "insertionIndex" : 1135 -} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-67e53939-2694-4577-9f08-d991f054a3c3.json b/mock/mappings/api_delivery_lead_times_mxlamfyqdp-67e53939-2694-4577-9f08-d991f054a3c3.json deleted file mode 100644 index 4685e65..0000000 --- a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-67e53939-2694-4577-9f08-d991f054a3c3.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "67e53939-2694-4577-9f08-d991f054a3c3", - "name" : "api_delivery_lead_times_mxlamfyqdp", - "request" : { - "url" : "/api/delivery_lead_times/MxlamFyQdp", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MxlamFyQdp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2022-12-23T10:26:05.785Z\",\"updated_at\":\"2022-12-23T10:26:05.785Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/shipping_method\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "23", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"fb39a37f66c7e39dd0a7f5ff64a6da7b\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "9bfc19bc-cfc2-4340-abd0-e2d43fbb5cbb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:06 GMT", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791167.879184,VS0,VE76", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "67e53939-2694-4577-9f08-d991f054a3c3", - "persistent" : true, - "scenarioName" : "scenario-4-api-delivery_lead_times-MxlamFyQdp", - "requiredScenarioState" : "scenario-4-api-delivery_lead_times-MxlamFyQdp-2", - "newScenarioState" : "scenario-4-api-delivery_lead_times-MxlamFyQdp-3", - "insertionIndex" : 1124 -} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-90825a4a-2663-4a68-99f7-f47977982abf.json b/mock/mappings/api_delivery_lead_times_mxlamfyqdp-90825a4a-2663-4a68-99f7-f47977982abf.json deleted file mode 100644 index 8afab4e..0000000 --- a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-90825a4a-2663-4a68-99f7-f47977982abf.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "90825a4a-2663-4a68-99f7-f47977982abf", - "name" : "api_delivery_lead_times_mxlamfyqdp", - "request" : { - "url" : "/api/delivery_lead_times/MxlamFyQdp", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MxlamFyQdp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2022-12-23T10:26:05.785Z\",\"updated_at\":\"2022-12-23T10:26:05.785Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/shipping_method\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "20", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"fb39a37f66c7e39dd0a7f5ff64a6da7b\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a322d555-6bb0-4800-aa67-253dfa6efecf", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:06 GMT", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791166.376240,VS0,VE77", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "90825a4a-2663-4a68-99f7-f47977982abf", - "persistent" : true, - "scenarioName" : "scenario-4-api-delivery_lead_times-MxlamFyQdp", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-4-api-delivery_lead_times-MxlamFyQdp-2", - "insertionIndex" : 1120 -} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-9bfbb82b-f9ab-4415-825d-f2d92a28d12c.json b/mock/mappings/api_delivery_lead_times_mxlamfyqdp-9bfbb82b-f9ab-4415-825d-f2d92a28d12c.json deleted file mode 100644 index f88715f..0000000 --- a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-9bfbb82b-f9ab-4415-825d-f2d92a28d12c.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "9bfbb82b-f9ab-4415-825d-f2d92a28d12c", - "name" : "api_delivery_lead_times_mxlamfyqdp", - "request" : { - "url" : "/api/delivery_lead_times/MxlamFyQdp", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "28", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "ee78c982-7966-4ac7-bda9-5ffeebac7353", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:08 GMT", - "X-Served-By" : "cache-ams21078-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791168.100251,VS0,VE93", - "Vary" : "Origin" - } - }, - "uuid" : "9bfbb82b-f9ab-4415-825d-f2d92a28d12c", - "persistent" : true, - "insertionIndex" : 1130 -} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-aea73f3c-f678-4edc-8f7e-62a2d37a8666.json b/mock/mappings/api_delivery_lead_times_mxlamfyqdp-aea73f3c-f678-4edc-8f7e-62a2d37a8666.json deleted file mode 100644 index 27ae014..0000000 --- a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-aea73f3c-f678-4edc-8f7e-62a2d37a8666.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "aea73f3c-f678-4edc-8f7e-62a2d37a8666", - "name" : "api_delivery_lead_times_mxlamfyqdp", - "request" : { - "url" : "/api/delivery_lead_times/MxlamFyQdp", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"max_hours\":200,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_hours\":20},\"id\":\"MxlamFyQdp\",\"relationships\":{\"shipping_method\":{\"data\":{\"id\":\"mNBJpFaYgN\",\"type\":\"shipping_methods\"}},\"stock_location\":{\"data\":{\"id\":\"PMRpouqZwG\",\"type\":\"stock_locations\"}}},\"type\":\"delivery_lead_times\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MxlamFyQdp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp\"},\"attributes\":{\"min_hours\":20,\"max_hours\":200,\"min_days\":1,\"max_days\":8,\"created_at\":\"2022-12-23T10:26:05.785Z\",\"updated_at\":\"2022-12-23T10:26:07.301Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/shipping_method\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "24", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e6a7f41b7318bc551efc65cfb9e39a9f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "2f876a86-627c-4155-a251-05d6e259b2d1", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:07 GMT", - "X-Served-By" : "cache-ams21023-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791167.225959,VS0,VE90", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "aea73f3c-f678-4edc-8f7e-62a2d37a8666", - "persistent" : true, - "insertionIndex" : 1125 -} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-c9a2ed9c-5fef-46c9-bc4d-0941cba07f79.json b/mock/mappings/api_delivery_lead_times_mxlamfyqdp-c9a2ed9c-5fef-46c9-bc4d-0941cba07f79.json deleted file mode 100644 index ba76d74..0000000 --- a/mock/mappings/api_delivery_lead_times_mxlamfyqdp-c9a2ed9c-5fef-46c9-bc4d-0941cba07f79.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "c9a2ed9c-5fef-46c9-bc4d-0941cba07f79", - "name" : "api_delivery_lead_times_mxlamfyqdp", - "request" : { - "url" : "/api/delivery_lead_times/MxlamFyQdp", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MxlamFyQdp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp\"},\"attributes\":{\"min_hours\":20,\"max_hours\":200,\"min_days\":1,\"max_days\":8,\"created_at\":\"2022-12-23T10:26:05.785Z\",\"updated_at\":\"2022-12-23T10:26:07.301Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/shipping_method\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/delivery_lead_times/MxlamFyQdp/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e6a7f41b7318bc551efc65cfb9e39a9f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "4372ad60-6cc1-4589-a9b6-93f0f0621591", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:07 GMT", - "X-Served-By" : "cache-ams21077-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791168.779612,VS0,VE82", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c9a2ed9c-5fef-46c9-bc4d-0941cba07f79", - "persistent" : true, - "scenarioName" : "scenario-4-api-delivery_lead_times-MxlamFyQdp", - "requiredScenarioState" : "scenario-4-api-delivery_lead_times-MxlamFyQdp-3", - "newScenarioState" : "scenario-4-api-delivery_lead_times-MxlamFyQdp-4", - "insertionIndex" : 1129 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways-a3e52a1b-513d-427e-a68f-b77e7de71276.json b/mock/mappings/api_external_gateways-a3e52a1b-513d-427e-a68f-b77e7de71276.json deleted file mode 100644 index 6050750..0000000 --- a/mock/mappings/api_external_gateways-a3e52a1b-513d-427e-a68f-b77e7de71276.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "a3e52a1b-513d-427e-a68f-b77e7de71276", - "name" : "api_external_gateways", - "request" : { - "url" : "/api/external_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"void_url\":\"https://example.com\"},\"type\":\"external_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2022-10-27T08:56:22.111Z\",\"updated_at\":\"2022-10-27T08:56:22.111Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"shared_secret\":\"5566d330559e6fe14ce7fe2f423d5bde\",\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/payment_methods\"}},\"external_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/external_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "24", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"3997c2d48d6342dcfec4f48172472b93\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "da560756-d795-4b26-9fe0-4a11926a75b0", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:22 GMT", - "X-Served-By" : "cache-ams21073-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860982.078696,VS0,VE50", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a3e52a1b-513d-427e-a68f-b77e7de71276", - "persistent" : true, - "insertionIndex" : 16 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-3c14ed0c-f9db-4c5b-b37e-08a64c982b42.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-3c14ed0c-f9db-4c5b-b37e-08a64c982b42.json deleted file mode 100644 index 7b455a2..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-3c14ed0c-f9db-4c5b-b37e-08a64c982b42.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "3c14ed0c-f9db-4c5b-b37e-08a64c982b42", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2022-10-27T08:56:22.111Z\",\"updated_at\":\"2022-10-27T08:56:22.803Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"shared_secret\":\"5566d330559e6fe14ce7fe2f423d5bde\",\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/payment_methods\"}},\"external_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/external_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "29", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"588b369d2bfb9f5c10200359dfb481c4\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "f2d07b11-18a3-479f-a084-26a221f4c748", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:23 GMT", - "X-Served-By" : "cache-ams21025-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860983.209639,VS0,VE37", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "3c14ed0c-f9db-4c5b-b37e-08a64c982b42", - "persistent" : true, - "scenarioName" : "scenario-3-api-external_gateways-ejqbrsNVZk", - "requiredScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-4", - "newScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-5", - "insertionIndex" : 21 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-4d64cb69-0b63-4507-b245-c97a60f8a579.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-4d64cb69-0b63-4507-b245-c97a60f8a579.json deleted file mode 100644 index cd3f82f..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-4d64cb69-0b63-4507-b245-c97a60f8a579.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "4d64cb69-0b63-4507-b245-c97a60f8a579", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2022-10-27T08:56:22.111Z\",\"updated_at\":\"2022-10-27T08:56:23.458Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"shared_secret\":\"5566d330559e6fe14ce7fe2f423d5bde\",\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/payment_methods\"}},\"external_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/external_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "31", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"71b50469116dc51fe26383102000dd20\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1750ca71-55b1-4a58-ae53-95044009e8bd", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:23 GMT", - "X-Served-By" : "cache-ams21079-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860984.641534,VS0,VE41", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "4d64cb69-0b63-4507-b245-c97a60f8a579", - "persistent" : true, - "scenarioName" : "scenario-3-api-external_gateways-ejqbrsNVZk", - "requiredScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-5", - "newScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-6", - "insertionIndex" : 23 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-55d80429-dab9-4d47-91b8-b0db0030fb54.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-55d80429-dab9-4d47-91b8-b0db0030fb54.json deleted file mode 100644 index 17624f6..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-55d80429-dab9-4d47-91b8-b0db0030fb54.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "55d80429-dab9-4d47-91b8-b0db0030fb54", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2022-10-27T08:56:22.111Z\",\"updated_at\":\"2022-10-27T08:56:22.111Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"shared_secret\":\"5566d330559e6fe14ce7fe2f423d5bde\",\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/payment_methods\"}},\"external_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/external_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "26", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"3997c2d48d6342dcfec4f48172472b93\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b4f1e699-f3a0-4f04-bf93-6081c97691e9", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:22 GMT", - "X-Served-By" : "cache-ams21043-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860983.519974,VS0,VE41", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "55d80429-dab9-4d47-91b8-b0db0030fb54", - "persistent" : true, - "scenarioName" : "scenario-3-api-external_gateways-ejqbrsNVZk", - "requiredScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-2", - "newScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-3", - "insertionIndex" : 18 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-b2c46411-a7e9-4fed-9da9-39d373b7572e.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-b2c46411-a7e9-4fed-9da9-39d373b7572e.json deleted file mode 100644 index c5e3bd9..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-b2c46411-a7e9-4fed-9da9-39d373b7572e.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "b2c46411-a7e9-4fed-9da9-39d373b7572e", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway_changed\"},\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2022-10-27T08:56:22.111Z\",\"updated_at\":\"2022-10-27T08:56:23.458Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"shared_secret\":\"5566d330559e6fe14ce7fe2f423d5bde\",\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/payment_methods\"}},\"external_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/external_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "30", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"71b50469116dc51fe26383102000dd20\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d51bb67f-fd7d-4632-a45f-60bcfe600533", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:23 GMT", - "X-Served-By" : "cache-ams21081-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860983.416518,VS0,VE60", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "b2c46411-a7e9-4fed-9da9-39d373b7572e", - "persistent" : true, - "insertionIndex" : 22 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-cc685792-2c98-4b78-85ad-13303cf9d565.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-cc685792-2c98-4b78-85ad-13303cf9d565.json deleted file mode 100644 index bd802f7..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-cc685792-2c98-4b78-85ad-13303cf9d565.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "cc685792-2c98-4b78-85ad-13303cf9d565", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:24 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21082-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860984.020131,VS0,VE74" - } - }, - "uuid" : "cc685792-2c98-4b78-85ad-13303cf9d565", - "persistent" : true, - "scenarioName" : "scenario-3-api-external_gateways-ejqbrsNVZk", - "requiredScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-6", - "insertionIndex" : 25 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-d00e453f-8f4f-4d13-9087-7d4a157462e8.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-d00e453f-8f4f-4d13-9087-7d4a157462e8.json deleted file mode 100644 index 90dffed..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-d00e453f-8f4f-4d13-9087-7d4a157462e8.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "d00e453f-8f4f-4d13-9087-7d4a157462e8", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2022-10-27T08:56:22.111Z\",\"updated_at\":\"2022-10-27T08:56:22.111Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"shared_secret\":\"5566d330559e6fe14ce7fe2f423d5bde\",\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/payment_methods\"}},\"external_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/external_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "25", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"3997c2d48d6342dcfec4f48172472b93\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "7d3724f1-026c-4fd8-a000-104a4a0fc1e4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:22 GMT", - "X-Served-By" : "cache-ams21053-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860982.297483,VS0,VE79", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d00e453f-8f4f-4d13-9087-7d4a157462e8", - "persistent" : true, - "scenarioName" : "scenario-3-api-external_gateways-ejqbrsNVZk", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-2", - "insertionIndex" : 17 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-e2f1f9e5-379c-4536-a50d-c062fec806e9.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-e2f1f9e5-379c-4536-a50d-c062fec806e9.json deleted file mode 100644 index 9d26bb8..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-e2f1f9e5-379c-4536-a50d-c062fec806e9.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "e2f1f9e5-379c-4536-a50d-c062fec806e9", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2022-10-27T08:56:22.111Z\",\"updated_at\":\"2022-10-27T08:56:22.803Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"shared_secret\":\"5566d330559e6fe14ce7fe2f423d5bde\",\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/payment_methods\"}},\"external_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/external_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "28", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"588b369d2bfb9f5c10200359dfb481c4\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "52b07669-1a08-40a1-a6af-e36810d78cc9", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:23 GMT", - "X-Served-By" : "cache-ams21070-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860983.985773,VS0,VE79", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "e2f1f9e5-379c-4536-a50d-c062fec806e9", - "persistent" : true, - "scenarioName" : "scenario-3-api-external_gateways-ejqbrsNVZk", - "requiredScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-3", - "newScenarioState" : "scenario-3-api-external_gateways-ejqbrsNVZk-4", - "insertionIndex" : 20 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-e9350814-dd16-48ee-b44d-d033413e579a.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-e9350814-dd16-48ee-b44d-d033413e579a.json deleted file mode 100644 index e29b621..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-e9350814-dd16-48ee-b44d-d033413e579a.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "e9350814-dd16-48ee-b44d-d033413e579a", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway_changed\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\"},\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ejqbrsNVZk\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2022-10-27T08:56:22.111Z\",\"updated_at\":\"2022-10-27T08:56:22.803Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"shared_secret\":\"5566d330559e6fe14ce7fe2f423d5bde\",\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/payment_methods\"}},\"external_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/relationships/external_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_gateways/ejqbrsNVZk/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"588b369d2bfb9f5c10200359dfb481c4\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "cd4df800-816d-4b58-a01d-2cf378894031", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:22 GMT", - "X-Served-By" : "cache-ams21029-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860983.731985,VS0,VE86", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "e9350814-dd16-48ee-b44d-d033413e579a", - "persistent" : true, - "insertionIndex" : 19 -} \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_ejqbrsnvzk-f46e8d06-a8fa-4250-b501-bf0d592bd220.json b/mock/mappings/api_external_gateways_ejqbrsnvzk-f46e8d06-a8fa-4250-b501-bf0d592bd220.json deleted file mode 100644 index c475acf..0000000 --- a/mock/mappings/api_external_gateways_ejqbrsnvzk-f46e8d06-a8fa-4250-b501-bf0d592bd220.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "f46e8d06-a8fa-4250-b501-bf0d592bd220", - "name" : "api_external_gateways_ejqbrsnvzk", - "request" : { - "url" : "/api/external_gateways/ejqbrsNVZk", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "32", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "5b133953-55ed-46db-96ea-0fd88f3d5f8a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:23 GMT", - "X-Served-By" : "cache-ams21064-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860984.856412,VS0,VE97", - "Vary" : "Origin" - } - }, - "uuid" : "f46e8d06-a8fa-4250-b501-bf0d592bd220", - "persistent" : true, - "insertionIndex" : 24 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators-864b9686-039f-43c7-8261-d3ea51126437.json b/mock/mappings/api_external_tax_calculators-864b9686-039f-43c7-8261-d3ea51126437.json deleted file mode 100644 index 872fd0f..0000000 --- a/mock/mappings/api_external_tax_calculators-864b9686-039f-43c7-8261-d3ea51126437.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "864b9686-039f-43c7-8261-d3ea51126437", - "name" : "api_external_tax_calculators", - "request" : { - "url" : "/api/external_tax_calculators", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"incentro_external_tax_calculator\",\"tax_calculator_url\":\"https://example.com\"},\"type\":\"external_tax_calculators\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"XqOmBTgKeN\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"created_at\":\"2023-03-28T08:12:18.094Z\",\"updated_at\":\"2023-03-28T08:12:18.094Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"shared_secret\":\"9a49c15c2785b88326fa68feddfeace4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"ce87c8f22cd653a342d081414286dc3e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1bf1b419-2472-4f32-a0f9-8f16cad43f3e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21022-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991138.062093,VS0,VE48", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "864b9686-039f-43c7-8261-d3ea51126437", - "persistent" : true, - "insertionIndex" : 619 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators-cea22f02-8bf8-4caf-9752-203b67824d90.json b/mock/mappings/api_external_tax_calculators-cea22f02-8bf8-4caf-9752-203b67824d90.json deleted file mode 100644 index 9b34a08..0000000 --- a/mock/mappings/api_external_tax_calculators-cea22f02-8bf8-4caf-9752-203b67824d90.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "cea22f02-8bf8-4caf-9752-203b67824d90", - "name" : "api_external_tax_calculators", - "request" : { - "url" : "/api/external_tax_calculators", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"name\":\"incentro_external_tax_calculator\",\"tax_calculator_url\":\"https://example.com\"},\"type\":\"external_tax_calculators\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"pyEPwTrLqz\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"created_at\":\"2022-10-27T08:56:24.386Z\",\"updated_at\":\"2022-10-27T08:56:24.386Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"shared_secret\":\"e05fce476a548be9a10bf2408ba798e5\"},\"relationships\":{\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/tax_categories\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "34", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f48f9451e35bf93a6ace1a8e211cfdaf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "774c509c-1cb7-4785-b3f9-98d2146ee8e7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:24 GMT", - "X-Served-By" : "cache-ams21027-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860984.313198,VS0,VE91", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "cea22f02-8bf8-4caf-9752-203b67824d90", - "persistent" : true, - "insertionIndex" : 26 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-191acf94-6496-4232-8c69-4b7583cba45e.json b/mock/mappings/api_external_tax_calculators_pyepwtrlqz-191acf94-6496-4232-8c69-4b7583cba45e.json deleted file mode 100644 index 072f3ba..0000000 --- a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-191acf94-6496-4232-8c69-4b7583cba45e.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "191acf94-6496-4232-8c69-4b7583cba45e", - "name" : "api_external_tax_calculators_pyepwtrlqz", - "request" : { - "url" : "/api/external_tax_calculators/pyEPwTrLqz", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"name\":\"incentro_external_tax_calculator_changed\",\"tax_calculator_url\":\"https://foo.com\"},\"id\":\"pyEPwTrLqz\",\"type\":\"external_tax_calculators\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pyEPwTrLqz\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator_changed\",\"created_at\":\"2022-10-27T08:56:24.386Z\",\"updated_at\":\"2022-10-27T08:56:25.073Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://foo.com\",\"shared_secret\":\"e05fce476a548be9a10bf2408ba798e5\"},\"relationships\":{\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/tax_categories\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "37", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"3da339c7d5cd93d157c36dabbfaa91f8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "839d2be6-9b84-44ee-bc5d-d81dfe594af6", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:25 GMT", - "X-Served-By" : "cache-ams21062-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860985.001158,VS0,VE88", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "191acf94-6496-4232-8c69-4b7583cba45e", - "persistent" : true, - "insertionIndex" : 29 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-28bf57ab-89b7-4a21-bd2b-6f7ecee52aa5.json b/mock/mappings/api_external_tax_calculators_pyepwtrlqz-28bf57ab-89b7-4a21-bd2b-6f7ecee52aa5.json deleted file mode 100644 index c6851b6..0000000 --- a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-28bf57ab-89b7-4a21-bd2b-6f7ecee52aa5.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "28bf57ab-89b7-4a21-bd2b-6f7ecee52aa5", - "name" : "api_external_tax_calculators_pyepwtrlqz", - "request" : { - "url" : "/api/external_tax_calculators/pyEPwTrLqz", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "39", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "dcaa267e-be6e-4900-944e-b5697cf509f7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:25 GMT", - "X-Served-By" : "cache-ams21020-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860985.452553,VS0,VE77", - "Vary" : "Origin" - } - }, - "uuid" : "28bf57ab-89b7-4a21-bd2b-6f7ecee52aa5", - "persistent" : true, - "insertionIndex" : 31 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-8b7824f0-3d3d-4009-8fb7-9b3a0b8915b8.json b/mock/mappings/api_external_tax_calculators_pyepwtrlqz-8b7824f0-3d3d-4009-8fb7-9b3a0b8915b8.json deleted file mode 100644 index ec56fe0..0000000 --- a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-8b7824f0-3d3d-4009-8fb7-9b3a0b8915b8.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "8b7824f0-3d3d-4009-8fb7-9b3a0b8915b8", - "name" : "api_external_tax_calculators_pyepwtrlqz", - "request" : { - "url" : "/api/external_tax_calculators/pyEPwTrLqz", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pyEPwTrLqz\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"created_at\":\"2022-10-27T08:56:24.386Z\",\"updated_at\":\"2022-10-27T08:56:24.386Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"shared_secret\":\"e05fce476a548be9a10bf2408ba798e5\"},\"relationships\":{\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/tax_categories\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "35", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f48f9451e35bf93a6ace1a8e211cfdaf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "00467bdb-57f3-400d-b898-341a26818a3d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:24 GMT", - "X-Served-By" : "cache-ams21024-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860985.574507,VS0,VE78", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "8b7824f0-3d3d-4009-8fb7-9b3a0b8915b8", - "persistent" : true, - "scenarioName" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz-2", - "insertionIndex" : 27 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-95ba1085-13d5-4c49-a0b4-8d2c10a15530.json b/mock/mappings/api_external_tax_calculators_pyepwtrlqz-95ba1085-13d5-4c49-a0b4-8d2c10a15530.json deleted file mode 100644 index f128461..0000000 --- a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-95ba1085-13d5-4c49-a0b4-8d2c10a15530.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "95ba1085-13d5-4c49-a0b4-8d2c10a15530", - "name" : "api_external_tax_calculators_pyepwtrlqz", - "request" : { - "url" : "/api/external_tax_calculators/pyEPwTrLqz", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pyEPwTrLqz\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator_changed\",\"created_at\":\"2022-10-27T08:56:24.386Z\",\"updated_at\":\"2022-10-27T08:56:25.073Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://foo.com\",\"shared_secret\":\"e05fce476a548be9a10bf2408ba798e5\"},\"relationships\":{\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/tax_categories\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "38", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"3da339c7d5cd93d157c36dabbfaa91f8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "abfeb7f4-cb55-4bfd-87f5-3970fa8325b4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:25 GMT", - "X-Served-By" : "cache-ams21038-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860985.242746,VS0,VE39", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "95ba1085-13d5-4c49-a0b4-8d2c10a15530", - "persistent" : true, - "scenarioName" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz", - "requiredScenarioState" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz-3", - "newScenarioState" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz-4", - "insertionIndex" : 30 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-a8a60b10-2a5b-4b0d-805f-7c16c63155e5.json b/mock/mappings/api_external_tax_calculators_pyepwtrlqz-a8a60b10-2a5b-4b0d-805f-7c16c63155e5.json deleted file mode 100644 index 7543d0e..0000000 --- a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-a8a60b10-2a5b-4b0d-805f-7c16c63155e5.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "a8a60b10-2a5b-4b0d-805f-7c16c63155e5", - "name" : "api_external_tax_calculators_pyepwtrlqz", - "request" : { - "url" : "/api/external_tax_calculators/pyEPwTrLqz", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pyEPwTrLqz\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"created_at\":\"2022-10-27T08:56:24.386Z\",\"updated_at\":\"2022-10-27T08:56:24.386Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"shared_secret\":\"e05fce476a548be9a10bf2408ba798e5\"},\"relationships\":{\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/tax_categories\"}},\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/pyEPwTrLqz/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "36", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f48f9451e35bf93a6ace1a8e211cfdaf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1942d6e7-57a3-44a5-8e23-fcb17b354e57", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:24 GMT", - "X-Served-By" : "cache-ams21070-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860985.793269,VS0,VE43", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a8a60b10-2a5b-4b0d-805f-7c16c63155e5", - "persistent" : true, - "scenarioName" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz", - "requiredScenarioState" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz-2", - "newScenarioState" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz-3", - "insertionIndex" : 28 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-cf3085dc-9224-4e06-a43a-2e5779f50680.json b/mock/mappings/api_external_tax_calculators_pyepwtrlqz-cf3085dc-9224-4e06-a43a-2e5779f50680.json deleted file mode 100644 index 8c42fa2..0000000 --- a/mock/mappings/api_external_tax_calculators_pyepwtrlqz-cf3085dc-9224-4e06-a43a-2e5779f50680.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "cf3085dc-9224-4e06-a43a-2e5779f50680", - "name" : "api_external_tax_calculators_pyepwtrlqz", - "request" : { - "url" : "/api/external_tax_calculators/pyEPwTrLqz", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:25 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860986.598540,VS0,VE67" - } - }, - "uuid" : "cf3085dc-9224-4e06-a43a-2e5779f50680", - "persistent" : true, - "scenarioName" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz", - "requiredScenarioState" : "scenario-4-api-external_tax_calculators-pyEPwTrLqz-4", - "insertionIndex" : 32 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_xqombtgken-47849fdf-19dc-4e61-814a-06cb16921928.json b/mock/mappings/api_external_tax_calculators_xqombtgken-47849fdf-19dc-4e61-814a-06cb16921928.json deleted file mode 100644 index a46c84f..0000000 --- a/mock/mappings/api_external_tax_calculators_xqombtgken-47849fdf-19dc-4e61-814a-06cb16921928.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "47849fdf-19dc-4e61-814a-06cb16921928", - "name" : "api_external_tax_calculators_xqombtgken", - "request" : { - "url" : "/api/external_tax_calculators/XqOmBTgKeN", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "25", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "f5de5200-4c15-4cfc-bdd8-92d42e4d2d53", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:20 GMT", - "X-Served-By" : "cache-ams21063-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.284196,VS0,VE93", - "Vary" : "Origin" - } - }, - "uuid" : "47849fdf-19dc-4e61-814a-06cb16921928", - "persistent" : true, - "insertionIndex" : 644 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_xqombtgken-6c500a21-afd1-46c7-826c-75e810a07f10.json b/mock/mappings/api_external_tax_calculators_xqombtgken-6c500a21-afd1-46c7-826c-75e810a07f10.json deleted file mode 100644 index e891cb2..0000000 --- a/mock/mappings/api_external_tax_calculators_xqombtgken-6c500a21-afd1-46c7-826c-75e810a07f10.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "6c500a21-afd1-46c7-826c-75e810a07f10", - "name" : "api_external_tax_calculators_xqombtgken", - "request" : { - "url" : "/api/external_tax_calculators/XqOmBTgKeN", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"XqOmBTgKeN\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"created_at\":\"2023-03-28T08:12:18.094Z\",\"updated_at\":\"2023-03-28T08:12:18.094Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"shared_secret\":\"9a49c15c2785b88326fa68feddfeace4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "14", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"ce87c8f22cd653a342d081414286dc3e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "f961884e-e4be-4edb-a051-0d461092f3d4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "X-Served-By" : "cache-ams21050-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.179772,VS0,VE49", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "6c500a21-afd1-46c7-826c-75e810a07f10", - "persistent" : true, - "scenarioName" : "scenario-2-api-external_tax_calculators-XqOmBTgKeN", - "requiredScenarioState" : "scenario-2-api-external_tax_calculators-XqOmBTgKeN-2", - "newScenarioState" : "scenario-2-api-external_tax_calculators-XqOmBTgKeN-3", - "insertionIndex" : 633 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_xqombtgken-d0b16e33-0107-47cc-be30-99d66392307b.json b/mock/mappings/api_external_tax_calculators_xqombtgken-d0b16e33-0107-47cc-be30-99d66392307b.json deleted file mode 100644 index 6ef7a08..0000000 --- a/mock/mappings/api_external_tax_calculators_xqombtgken-d0b16e33-0107-47cc-be30-99d66392307b.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "id" : "d0b16e33-0107-47cc-be30-99d66392307b", - "name" : "api_external_tax_calculators_xqombtgken", - "request" : { - "url" : "/api/external_tax_calculators/XqOmBTgKeN", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"XqOmBTgKeN\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"created_at\":\"2023-03-28T08:12:18.094Z\",\"updated_at\":\"2023-03-28T08:12:18.094Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"shared_secret\":\"9a49c15c2785b88326fa68feddfeace4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "18", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"ce87c8f22cd653a342d081414286dc3e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "dff19d32-0e6d-4a5b-9ffd-046e86d77599", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "X-Served-By" : "cache-ams21075-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.817110,VS0,VE43", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d0b16e33-0107-47cc-be30-99d66392307b", - "persistent" : true, - "scenarioName" : "scenario-2-api-external_tax_calculators-XqOmBTgKeN", - "requiredScenarioState" : "scenario-2-api-external_tax_calculators-XqOmBTgKeN-3", - "insertionIndex" : 638 -} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_xqombtgken-fa9b3e2d-ef1f-44e6-9343-77b57924986d.json b/mock/mappings/api_external_tax_calculators_xqombtgken-fa9b3e2d-ef1f-44e6-9343-77b57924986d.json deleted file mode 100644 index 98c5625..0000000 --- a/mock/mappings/api_external_tax_calculators_xqombtgken-fa9b3e2d-ef1f-44e6-9343-77b57924986d.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "fa9b3e2d-ef1f-44e6-9343-77b57924986d", - "name" : "api_external_tax_calculators_xqombtgken", - "request" : { - "url" : "/api/external_tax_calculators/XqOmBTgKeN", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"XqOmBTgKeN\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"created_at\":\"2023-03-28T08:12:18.094Z\",\"updated_at\":\"2023-03-28T08:12:18.094Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"shared_secret\":\"9a49c15c2785b88326fa68feddfeace4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/external_tax_calculators/XqOmBTgKeN/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "9", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"ce87c8f22cd653a342d081414286dc3e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "468b9838-94e0-48fe-a3cb-5fca643a0a6c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21082-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.689918,VS0,VE86", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "fa9b3e2d-ef1f-44e6-9343-77b57924986d", - "persistent" : true, - "scenarioName" : "scenario-2-api-external_tax_calculators-XqOmBTgKeN", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-2-api-external_tax_calculators-XqOmBTgKeN-2", - "insertionIndex" : 626 -} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders-c56c2237-888b-4ce0-82c9-15fc433190af.json b/mock/mappings/api_google_geocoders-c56c2237-888b-4ce0-82c9-15fc433190af.json deleted file mode 100644 index de6d175..0000000 --- a/mock/mappings/api_google_geocoders-c56c2237-888b-4ce0-82c9-15fc433190af.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "c56c2237-888b-4ce0-82c9-15fc433190af", - "name" : "api_google_geocoders", - "request" : { - "url" : "/api/google_geocoders", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"Google Geocoder API Key\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"},\"name\":\"Incentro Google Geocoder\"},\"type\":\"google_geocoders\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"znalXsbreQ\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"created_at\":\"2022-12-23T10:37:12.530Z\",\"updated_at\":\"2022-12-23T10:37:12.530Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e49559992ac873bd35555288d725ffb2\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "691b0dc7-0f4d-4b3e-bf98-43ab8ee6dbf1", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:37:12 GMT", - "X-Served-By" : "cache-ams21038-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791832.466337,VS0,VE80", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c56c2237-888b-4ce0-82c9-15fc433190af", - "persistent" : true, - "insertionIndex" : 1697 -} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_znalxsbreq-6caf9df7-62f2-4495-9e1e-608f402958e4.json b/mock/mappings/api_google_geocoders_znalxsbreq-6caf9df7-62f2-4495-9e1e-608f402958e4.json deleted file mode 100644 index efc1f1f..0000000 --- a/mock/mappings/api_google_geocoders_znalxsbreq-6caf9df7-62f2-4495-9e1e-608f402958e4.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "6caf9df7-62f2-4495-9e1e-608f402958e4", - "name" : "api_google_geocoders_znalxsbreq", - "request" : { - "url" : "/api/google_geocoders/znalXsbreQ", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "cffc8b38-29a0-4c51-808f-0c8024ad43ff", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:37:13 GMT", - "X-Served-By" : "cache-ams21076-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791834.891172,VS0,VE77", - "Vary" : "Origin" - } - }, - "uuid" : "6caf9df7-62f2-4495-9e1e-608f402958e4", - "persistent" : true, - "insertionIndex" : 1702 -} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_znalxsbreq-7ad4c770-2354-4029-be59-68b6a8a02f39.json b/mock/mappings/api_google_geocoders_znalxsbreq-7ad4c770-2354-4029-be59-68b6a8a02f39.json deleted file mode 100644 index fae4122..0000000 --- a/mock/mappings/api_google_geocoders_znalxsbreq-7ad4c770-2354-4029-be59-68b6a8a02f39.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "7ad4c770-2354-4029-be59-68b6a8a02f39", - "name" : "api_google_geocoders_znalxsbreq", - "request" : { - "url" : "/api/google_geocoders/znalXsbreQ", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"znalXsbreQ\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"created_at\":\"2022-12-23T10:37:12.530Z\",\"updated_at\":\"2022-12-23T10:37:12.530Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e49559992ac873bd35555288d725ffb2\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "7995217e-8b8b-48f7-9b1f-f4d5825e702b", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:37:13 GMT", - "X-Served-By" : "cache-ams21023-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791833.047347,VS0,VE41", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "7ad4c770-2354-4029-be59-68b6a8a02f39", - "persistent" : true, - "scenarioName" : "scenario-1-api-google_geocoders-znalXsbreQ", - "requiredScenarioState" : "scenario-1-api-google_geocoders-znalXsbreQ-2", - "newScenarioState" : "scenario-1-api-google_geocoders-znalXsbreQ-3", - "insertionIndex" : 1699 -} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_znalxsbreq-8151ce4f-2440-41db-b2bc-716b6645dd10.json b/mock/mappings/api_google_geocoders_znalxsbreq-8151ce4f-2440-41db-b2bc-716b6645dd10.json deleted file mode 100644 index 103837e..0000000 --- a/mock/mappings/api_google_geocoders_znalxsbreq-8151ce4f-2440-41db-b2bc-716b6645dd10.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "8151ce4f-2440-41db-b2bc-716b6645dd10", - "name" : "api_google_geocoders_znalxsbreq", - "request" : { - "url" : "/api/google_geocoders/znalXsbreQ", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:37:14 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21023-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791834.071474,VS0,VE65" - } - }, - "uuid" : "8151ce4f-2440-41db-b2bc-716b6645dd10", - "persistent" : true, - "scenarioName" : "scenario-1-api-google_geocoders-znalXsbreQ", - "requiredScenarioState" : "scenario-1-api-google_geocoders-znalXsbreQ-4", - "insertionIndex" : 1703 -} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_znalxsbreq-935c3efc-7aa2-45f1-81bd-217d3f559677.json b/mock/mappings/api_google_geocoders_znalxsbreq-935c3efc-7aa2-45f1-81bd-217d3f559677.json deleted file mode 100644 index c71dbb0..0000000 --- a/mock/mappings/api_google_geocoders_znalxsbreq-935c3efc-7aa2-45f1-81bd-217d3f559677.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "935c3efc-7aa2-45f1-81bd-217d3f559677", - "name" : "api_google_geocoders_znalxsbreq", - "request" : { - "url" : "/api/google_geocoders/znalXsbreQ", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"znalXsbreQ\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"created_at\":\"2022-12-23T10:37:12.530Z\",\"updated_at\":\"2022-12-23T10:37:12.530Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e49559992ac873bd35555288d725ffb2\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "6ceebfd8-fc7d-4d0c-8cad-7504eb60940c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:37:12 GMT", - "X-Served-By" : "cache-ams21025-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791833.782130,VS0,VE76", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "935c3efc-7aa2-45f1-81bd-217d3f559677", - "persistent" : true, - "scenarioName" : "scenario-1-api-google_geocoders-znalXsbreQ", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-google_geocoders-znalXsbreQ-2", - "insertionIndex" : 1698 -} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_znalxsbreq-c68059e3-21cd-4cbf-b578-ab0052a33d21.json b/mock/mappings/api_google_geocoders_znalxsbreq-c68059e3-21cd-4cbf-b578-ab0052a33d21.json deleted file mode 100644 index 089e160..0000000 --- a/mock/mappings/api_google_geocoders_znalxsbreq-c68059e3-21cd-4cbf-b578-ab0052a33d21.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "c68059e3-21cd-4cbf-b578-ab0052a33d21", - "name" : "api_google_geocoders_znalxsbreq", - "request" : { - "url" : "/api/google_geocoders/znalXsbreQ", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"znalXsbreQ\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Google Geocoder\",\"created_at\":\"2022-12-23T10:37:12.530Z\",\"updated_at\":\"2022-12-23T10:37:13.372Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b2c95914df40b31bfd982091c95d8d11\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "e71b343d-118d-4d5e-b20f-adb96cc80138", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:37:13 GMT", - "X-Served-By" : "cache-ams21026-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791834.631466,VS0,VE39", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c68059e3-21cd-4cbf-b578-ab0052a33d21", - "persistent" : true, - "scenarioName" : "scenario-1-api-google_geocoders-znalXsbreQ", - "requiredScenarioState" : "scenario-1-api-google_geocoders-znalXsbreQ-3", - "newScenarioState" : "scenario-1-api-google_geocoders-znalXsbreQ-4", - "insertionIndex" : 1701 -} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_znalxsbreq-cc7d3848-3470-40f5-b0ca-6ae8d2e6bc45.json b/mock/mappings/api_google_geocoders_znalxsbreq-cc7d3848-3470-40f5-b0ca-6ae8d2e6bc45.json deleted file mode 100644 index 709e9ae..0000000 --- a/mock/mappings/api_google_geocoders_znalxsbreq-cc7d3848-3470-40f5-b0ca-6ae8d2e6bc45.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "cc7d3848-3470-40f5-b0ca-6ae8d2e6bc45", - "name" : "api_google_geocoders_znalxsbreq", - "request" : { - "url" : "/api/google_geocoders/znalXsbreQ", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"Google Geocoder API Key\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"},\"name\":\"Incentro Updated Google Geocoder\"},\"id\":\"znalXsbreQ\",\"type\":\"google_geocoders\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"znalXsbreQ\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Google Geocoder\",\"created_at\":\"2022-12-23T10:37:12.530Z\",\"updated_at\":\"2022-12-23T10:37:13.372Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"addresses\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/addresses\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/google_geocoders/znalXsbreQ/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b2c95914df40b31bfd982091c95d8d11\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "7e15c9a4-c020-4b33-872a-f03332ed0ac1", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:37:13 GMT", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791833.299148,VS0,VE90", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "cc7d3848-3470-40f5-b0ca-6ae8d2e6bc45", - "persistent" : true, - "insertionIndex" : 1700 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models-5a109196-5a4d-4b09-bbc2-b0e2520db331.json b/mock/mappings/api_inventory_models-5a109196-5a4d-4b09-bbc2-b0e2520db331.json deleted file mode 100644 index 8a1aa7d..0000000 --- a/mock/mappings/api_inventory_models-5a109196-5a4d-4b09-bbc2-b0e2520db331.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "5a109196-5a4d-4b09-bbc2-b0e2520db331", - "name" : "api_inventory_models", - "request" : { - "url" : "/api/inventory_models", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Inventory Model\",\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"lWlwDSbjRa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2023-03-28T08:12:18.094Z\",\"updated_at\":\"2023-03-28T08:12:18.094Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"3597e9e32f1f82dfc2049d07f49e1653\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "53a9b0bd-ce35-49d1-904f-c0c4bf5143d5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21076-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991138.062142,VS0,VE50", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "5a109196-5a4d-4b09-bbc2-b0e2520db331", - "persistent" : true, - "insertionIndex" : 620 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models-94b2c558-347f-4c44-a2f3-e2954d942c3f.json b/mock/mappings/api_inventory_models-94b2c558-347f-4c44-a2f3-e2954d942c3f.json deleted file mode 100644 index 4010f4e..0000000 --- a/mock/mappings/api_inventory_models-94b2c558-347f-4c44-a2f3-e2954d942c3f.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "94b2c558-347f-4c44-a2f3-e2954d942c3f", - "name" : "api_inventory_models", - "request" : { - "url" : "/api/inventory_models", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"name\":\"Incentro Inventory Model\",\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"EWgKRSjvYW\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-11-24T15:10:57.784Z\",\"updated_at\":\"2022-11-24T15:10:57.784Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "22", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"7c6dbaa263c1b93377a4a640d290399a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "7c2d6927-0fc4-4d05-86f9-d2bfec4b041e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:57 GMT", - "X-Served-By" : "cache-ams21037-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302658.718402,VS0,VE85", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "94b2c558-347f-4c44-a2f3-e2954d942c3f", - "persistent" : true, - "insertionIndex" : 155 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models-bedd7f38-5d9a-4c84-b1b3-69e54f48573e.json b/mock/mappings/api_inventory_models-bedd7f38-5d9a-4c84-b1b3-69e54f48573e.json deleted file mode 100644 index 5dbedd3..0000000 --- a/mock/mappings/api_inventory_models-bedd7f38-5d9a-4c84-b1b3-69e54f48573e.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "bedd7f38-5d9a-4c84-b1b3-69e54f48573e", - "name" : "api_inventory_models", - "request" : { - "url" : "/api/inventory_models", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"},\"name\":\"Incentro Inventory Model\",\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"dWngySynGL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-10-27T08:56:25.912Z\",\"updated_at\":\"2022-10-27T08:56:25.912Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "41", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"164f197bca6e6a090df043fbf64f8c26\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "5dad4d39-2acc-4e48-ac9a-099ac469eabb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:25 GMT", - "X-Served-By" : "cache-ams21029-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860986.882780,VS0,VE45", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "bedd7f38-5d9a-4c84-b1b3-69e54f48573e", - "persistent" : true, - "insertionIndex" : 33 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models-d95db2cb-06ab-40db-af2a-88dcf5934a98.json b/mock/mappings/api_inventory_models-d95db2cb-06ab-40db-af2a-88dcf5934a98.json deleted file mode 100644 index 017a9b6..0000000 --- a/mock/mappings/api_inventory_models-d95db2cb-06ab-40db-af2a-88dcf5934a98.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "d95db2cb-06ab-40db-af2a-88dcf5934a98", - "name" : "api_inventory_models", - "request" : { - "url" : "/api/inventory_models", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"name\":\"Incentro Inventory Model\",\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"JZbeJSVqPL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-11-24T15:10:45.875Z\",\"updated_at\":\"2022-11-24T15:10:45.875Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"6529fc0383e09ed6f89407eb0a6ff88f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "bf6cfe04-5163-4f94-bf97-13cfd5576afb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:45 GMT", - "X-Served-By" : "cache-ams21025-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302646.808564,VS0,VE85", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d95db2cb-06ab-40db-af2a-88dcf5934a98", - "persistent" : true, - "insertionIndex" : 132 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_azdjrsdkyw-f2a8cb9f-3ade-4632-ae75-5240ea02a269.json b/mock/mappings/api_inventory_models_azdjrsdkyw-f2a8cb9f-3ade-4632-ae75-5240ea02a269.json deleted file mode 100644 index 8578c9e..0000000 --- a/mock/mappings/api_inventory_models_azdjrsdkyw-f2a8cb9f-3ade-4632-ae75-5240ea02a269.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "f2a8cb9f-3ade-4632-ae75-5240ea02a269", - "name" : "api_inventory_models_azdjrsdkyw", - "request" : { - "url" : "/api/inventory_models/AZdJRSDkyW", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "22", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "4ef1b9d8-586b-4b82-a146-5fa007d29ec9", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 01 Feb 2023 09:33:08 GMT", - "X-Served-By" : "cache-ams21062-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1675243989.810083,VS0,VE58", - "Vary" : "Origin" - } - }, - "uuid" : "f2a8cb9f-3ade-4632-ae75-5240ea02a269", - "persistent" : true, - "insertionIndex" : 370 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_dwngysyngl-1f6e3fb8-3841-48c2-9d71-637297294397.json b/mock/mappings/api_inventory_models_dwngysyngl-1f6e3fb8-3841-48c2-9d71-637297294397.json deleted file mode 100644 index 411dd4e..0000000 --- a/mock/mappings/api_inventory_models_dwngysyngl-1f6e3fb8-3841-48c2-9d71-637297294397.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "1f6e3fb8-3841-48c2-9d71-637297294397", - "name" : "api_inventory_models_dwngysyngl", - "request" : { - "url" : "/api/inventory_models/dWngySynGL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dWngySynGL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-10-27T08:56:25.912Z\",\"updated_at\":\"2022-10-27T08:56:25.912Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "42", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"164f197bca6e6a090df043fbf64f8c26\"", - "X-Request-Id" : "3ffe615a-8dad-4b5f-8ad8-cf0192a319c5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:26 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21039-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860986.099943,VS0,VE77", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "1f6e3fb8-3841-48c2-9d71-637297294397", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_models-dWngySynGL", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-5-api-inventory_models-dWngySynGL-2", - "insertionIndex" : 34 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_dwngysyngl-2f9a72ed-9edd-4131-9697-0d917ee55cc2.json b/mock/mappings/api_inventory_models_dwngysyngl-2f9a72ed-9edd-4131-9697-0d917ee55cc2.json deleted file mode 100644 index c889f31..0000000 --- a/mock/mappings/api_inventory_models_dwngysyngl-2f9a72ed-9edd-4131-9697-0d917ee55cc2.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "2f9a72ed-9edd-4131-9697-0d917ee55cc2", - "name" : "api_inventory_models_dwngysyngl", - "request" : { - "url" : "/api/inventory_models/dWngySynGL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dWngySynGL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"created_at\":\"2022-10-27T08:56:25.912Z\",\"updated_at\":\"2022-10-27T08:56:26.539Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "44", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"06dc0464ab3af499d7242a1262d9260d\"", - "X-Request-Id" : "b811b655-1a00-4614-93d5-548d4958a642", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:27 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21063-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1666860987.141378,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "2f9a72ed-9edd-4131-9697-0d917ee55cc2", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_models-dWngySynGL", - "requiredScenarioState" : "scenario-5-api-inventory_models-dWngySynGL-4", - "newScenarioState" : "scenario-5-api-inventory_models-dWngySynGL-5", - "insertionIndex" : 39 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_dwngysyngl-5bca1590-b914-48db-877c-00548a09c45f.json b/mock/mappings/api_inventory_models_dwngysyngl-5bca1590-b914-48db-877c-00548a09c45f.json deleted file mode 100644 index 451fb69..0000000 --- a/mock/mappings/api_inventory_models_dwngysyngl-5bca1590-b914-48db-877c-00548a09c45f.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "5bca1590-b914-48db-877c-00548a09c45f", - "name" : "api_inventory_models_dwngysyngl", - "request" : { - "url" : "/api/inventory_models/dWngySynGL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dWngySynGL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-10-27T08:56:25.912Z\",\"updated_at\":\"2022-10-27T08:56:25.912Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "42", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"164f197bca6e6a090df043fbf64f8c26\"", - "X-Request-Id" : "3ffe615a-8dad-4b5f-8ad8-cf0192a319c5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:26 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21073-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1666860986.320972,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "5bca1590-b914-48db-877c-00548a09c45f", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_models-dWngySynGL", - "requiredScenarioState" : "scenario-5-api-inventory_models-dWngySynGL-2", - "newScenarioState" : "scenario-5-api-inventory_models-dWngySynGL-3", - "insertionIndex" : 35 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_dwngysyngl-92c7725f-6087-47b7-8b96-9798f4f34492.json b/mock/mappings/api_inventory_models_dwngysyngl-92c7725f-6087-47b7-8b96-9798f4f34492.json deleted file mode 100644 index a916aa0..0000000 --- a/mock/mappings/api_inventory_models_dwngysyngl-92c7725f-6087-47b7-8b96-9798f4f34492.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "92c7725f-6087-47b7-8b96-9798f4f34492", - "name" : "api_inventory_models_dwngysyngl", - "request" : { - "url" : "/api/inventory_models/dWngySynGL", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"},\"name\":\"Incentro Inventory Model Changed\",\"stock_locations_cutoff\":2,\"strategy\":\"split_shipments\"},\"id\":\"dWngySynGL\",\"type\":\"inventory_models\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dWngySynGL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"created_at\":\"2022-10-27T08:56:25.912Z\",\"updated_at\":\"2022-10-27T08:56:26.539Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "43", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"06dc0464ab3af499d7242a1262d9260d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "6b1b73a4-5338-47c6-aaa8-9886df97ece1", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:26 GMT", - "X-Served-By" : "cache-ams21022-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860986.472267,VS0,VE84", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "92c7725f-6087-47b7-8b96-9798f4f34492", - "persistent" : true, - "insertionIndex" : 36 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_dwngysyngl-ec130d19-98fd-4e06-b354-9d3bc0c79fc9.json b/mock/mappings/api_inventory_models_dwngysyngl-ec130d19-98fd-4e06-b354-9d3bc0c79fc9.json deleted file mode 100644 index b8c518c..0000000 --- a/mock/mappings/api_inventory_models_dwngysyngl-ec130d19-98fd-4e06-b354-9d3bc0c79fc9.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "ec130d19-98fd-4e06-b354-9d3bc0c79fc9", - "name" : "api_inventory_models_dwngysyngl", - "request" : { - "url" : "/api/inventory_models/dWngySynGL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dWngySynGL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"created_at\":\"2022-10-27T08:56:25.912Z\",\"updated_at\":\"2022-10-27T08:56:26.539Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/dWngySynGL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "44", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"06dc0464ab3af499d7242a1262d9260d\"", - "X-Request-Id" : "b811b655-1a00-4614-93d5-548d4958a642", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:26 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21065-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860987.725309,VS0,VE82", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "ec130d19-98fd-4e06-b354-9d3bc0c79fc9", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_models-dWngySynGL", - "requiredScenarioState" : "scenario-5-api-inventory_models-dWngySynGL-3", - "newScenarioState" : "scenario-5-api-inventory_models-dWngySynGL-4", - "insertionIndex" : 37 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_dwngysyngl-fa03e5b7-7560-43ad-aa12-c48fcd81f770.json b/mock/mappings/api_inventory_models_dwngysyngl-fa03e5b7-7560-43ad-aa12-c48fcd81f770.json deleted file mode 100644 index 21b64b3..0000000 --- a/mock/mappings/api_inventory_models_dwngysyngl-fa03e5b7-7560-43ad-aa12-c48fcd81f770.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "fa03e5b7-7560-43ad-aa12-c48fcd81f770", - "name" : "api_inventory_models_dwngysyngl", - "request" : { - "url" : "/api/inventory_models/dWngySynGL", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:28 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21049-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860988.206270,VS0,VE72" - } - }, - "uuid" : "fa03e5b7-7560-43ad-aa12-c48fcd81f770", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_models-dWngySynGL", - "requiredScenarioState" : "scenario-5-api-inventory_models-dWngySynGL-5", - "insertionIndex" : 40 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_dwngysyngl-fbb528ae-9019-4584-9b51-871a6ea136dd.json b/mock/mappings/api_inventory_models_dwngysyngl-fbb528ae-9019-4584-9b51-871a6ea136dd.json deleted file mode 100644 index 7b53c0f..0000000 --- a/mock/mappings/api_inventory_models_dwngysyngl-fbb528ae-9019-4584-9b51-871a6ea136dd.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "fbb528ae-9019-4584-9b51-871a6ea136dd", - "name" : "api_inventory_models_dwngysyngl", - "request" : { - "url" : "/api/inventory_models/dWngySynGL", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "45", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "58a761d8-5b87-4a5e-bbec-dccb0bc15402", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:27 GMT", - "X-Served-By" : "cache-ams21056-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860987.978811,VS0,VE85", - "Vary" : "Origin" - } - }, - "uuid" : "fbb528ae-9019-4584-9b51-871a6ea136dd", - "persistent" : true, - "insertionIndex" : 38 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_ewgkrsjvyw-07ac51ca-5765-48d3-9cdb-172fbf9b836b.json b/mock/mappings/api_inventory_models_ewgkrsjvyw-07ac51ca-5765-48d3-9cdb-172fbf9b836b.json deleted file mode 100644 index 0e7b81f..0000000 --- a/mock/mappings/api_inventory_models_ewgkrsjvyw-07ac51ca-5765-48d3-9cdb-172fbf9b836b.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "07ac51ca-5765-48d3-9cdb-172fbf9b836b", - "name" : "api_inventory_models_ewgkrsjvyw", - "request" : { - "url" : "/api/inventory_models/EWgKRSjvYW", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EWgKRSjvYW\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-11-24T15:10:57.784Z\",\"updated_at\":\"2022-11-24T15:10:57.784Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "26", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"7c6dbaa263c1b93377a4a640d290399a\"", - "X-Request-Id" : "573581a0-067d-4b8b-b53a-c4dc3b1b51e2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:59 GMT", - "Age" : "1", - "X-Served-By" : "cache-ams21054-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1669302660.540597,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "07ac51ca-5765-48d3-9cdb-172fbf9b836b", - "persistent" : true, - "scenarioName" : "scenario-7-api-inventory_models-EWgKRSjvYW", - "requiredScenarioState" : "scenario-7-api-inventory_models-EWgKRSjvYW-3", - "insertionIndex" : 167 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_ewgkrsjvyw-58d1fe92-5e4d-40c5-aefa-9059e0a1a68d.json b/mock/mappings/api_inventory_models_ewgkrsjvyw-58d1fe92-5e4d-40c5-aefa-9059e0a1a68d.json deleted file mode 100644 index fd9a191..0000000 --- a/mock/mappings/api_inventory_models_ewgkrsjvyw-58d1fe92-5e4d-40c5-aefa-9059e0a1a68d.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "58d1fe92-5e4d-40c5-aefa-9059e0a1a68d", - "name" : "api_inventory_models_ewgkrsjvyw", - "request" : { - "url" : "/api/inventory_models/EWgKRSjvYW", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EWgKRSjvYW\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-11-24T15:10:57.784Z\",\"updated_at\":\"2022-11-24T15:10:57.784Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "26", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"7c6dbaa263c1b93377a4a640d290399a\"", - "X-Request-Id" : "573581a0-067d-4b8b-b53a-c4dc3b1b51e2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:58 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21066-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1669302659.842856,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "58d1fe92-5e4d-40c5-aefa-9059e0a1a68d", - "persistent" : true, - "scenarioName" : "scenario-7-api-inventory_models-EWgKRSjvYW", - "requiredScenarioState" : "scenario-7-api-inventory_models-EWgKRSjvYW-2", - "newScenarioState" : "scenario-7-api-inventory_models-EWgKRSjvYW-3", - "insertionIndex" : 162 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_ewgkrsjvyw-6ad6f144-da7d-46f3-8c52-0f2d124abce8.json b/mock/mappings/api_inventory_models_ewgkrsjvyw-6ad6f144-da7d-46f3-8c52-0f2d124abce8.json deleted file mode 100644 index 470fb35..0000000 --- a/mock/mappings/api_inventory_models_ewgkrsjvyw-6ad6f144-da7d-46f3-8c52-0f2d124abce8.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "6ad6f144-da7d-46f3-8c52-0f2d124abce8", - "name" : "api_inventory_models_ewgkrsjvyw", - "request" : { - "url" : "/api/inventory_models/EWgKRSjvYW", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EWgKRSjvYW\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-11-24T15:10:57.784Z\",\"updated_at\":\"2022-11-24T15:10:57.784Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/EWgKRSjvYW/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "26", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"7c6dbaa263c1b93377a4a640d290399a\"", - "X-Request-Id" : "573581a0-067d-4b8b-b53a-c4dc3b1b51e2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:58 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21038-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302658.315608,VS0,VE121", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "6ad6f144-da7d-46f3-8c52-0f2d124abce8", - "persistent" : true, - "scenarioName" : "scenario-7-api-inventory_models-EWgKRSjvYW", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-7-api-inventory_models-EWgKRSjvYW-2", - "insertionIndex" : 159 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_ewgkrsjvyw-6e52c58d-09b4-453a-9847-788c6664ee4a.json b/mock/mappings/api_inventory_models_ewgkrsjvyw-6e52c58d-09b4-453a-9847-788c6664ee4a.json deleted file mode 100644 index ca44cc1..0000000 --- a/mock/mappings/api_inventory_models_ewgkrsjvyw-6e52c58d-09b4-453a-9847-788c6664ee4a.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "6e52c58d-09b4-453a-9847-788c6664ee4a", - "name" : "api_inventory_models_ewgkrsjvyw", - "request" : { - "url" : "/api/inventory_models/EWgKRSjvYW", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "36", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "8d3be254-b2c9-4e30-8aa3-8ac7b6c7edda", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:11:00 GMT", - "X-Served-By" : "cache-ams21048-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302660.219931,VS0,VE89", - "Vary" : "Origin" - } - }, - "uuid" : "6e52c58d-09b4-453a-9847-788c6664ee4a", - "persistent" : true, - "insertionIndex" : 172 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_jlzqxsdxyw-8fe15a75-1d0a-45fa-8d44-fd0dfaa2e58e.json b/mock/mappings/api_inventory_models_jlzqxsdxyw-8fe15a75-1d0a-45fa-8d44-fd0dfaa2e58e.json deleted file mode 100644 index c3c4740..0000000 --- a/mock/mappings/api_inventory_models_jlzqxsdxyw-8fe15a75-1d0a-45fa-8d44-fd0dfaa2e58e.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "8fe15a75-1d0a-45fa-8d44-fd0dfaa2e58e", - "name" : "api_inventory_models_jlzqxsdxyw", - "request" : { - "url" : "/api/inventory_models/JLzqXSDxyW", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "66", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "1f7fffc2-7f04-4a7d-b34a-4eae345b6b68", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:30 GMT", - "X-Served-By" : "cache-ams21059-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860991.746112,VS0,VE83", - "Vary" : "Origin" - } - }, - "uuid" : "8fe15a75-1d0a-45fa-8d44-fd0dfaa2e58e", - "persistent" : true, - "insertionIndex" : 64 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_jzbejsvqpl-1e6aea21-ae68-4e18-9930-b26584b622e4.json b/mock/mappings/api_inventory_models_jzbejsvqpl-1e6aea21-ae68-4e18-9930-b26584b622e4.json deleted file mode 100644 index f617766..0000000 --- a/mock/mappings/api_inventory_models_jzbejsvqpl-1e6aea21-ae68-4e18-9930-b26584b622e4.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "1e6aea21-ae68-4e18-9930-b26584b622e4", - "name" : "api_inventory_models_jzbejsvqpl", - "request" : { - "url" : "/api/inventory_models/JZbeJSVqPL", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "16", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "ed8cff85-ed37-4d7a-94e9-6212587f264b", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:48 GMT", - "X-Served-By" : "cache-ams21066-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302648.337647,VS0,VE100", - "Vary" : "Origin" - } - }, - "uuid" : "1e6aea21-ae68-4e18-9930-b26584b622e4", - "persistent" : true, - "insertionIndex" : 149 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_jzbejsvqpl-422072e2-0b36-4a91-9dba-2e6b881b8749.json b/mock/mappings/api_inventory_models_jzbejsvqpl-422072e2-0b36-4a91-9dba-2e6b881b8749.json deleted file mode 100644 index 200c895..0000000 --- a/mock/mappings/api_inventory_models_jzbejsvqpl-422072e2-0b36-4a91-9dba-2e6b881b8749.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "422072e2-0b36-4a91-9dba-2e6b881b8749", - "name" : "api_inventory_models_jzbejsvqpl", - "request" : { - "url" : "/api/inventory_models/JZbeJSVqPL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JZbeJSVqPL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-11-24T15:10:45.875Z\",\"updated_at\":\"2022-11-24T15:10:45.875Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"6529fc0383e09ed6f89407eb0a6ff88f\"", - "X-Request-Id" : "10c7b9c6-0fb8-46af-bfed-7d96fee3f062", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:46 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21082-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302646.448904,VS0,VE76", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "422072e2-0b36-4a91-9dba-2e6b881b8749", - "persistent" : true, - "scenarioName" : "scenario-2-api-inventory_models-JZbeJSVqPL", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-2-api-inventory_models-JZbeJSVqPL-2", - "insertionIndex" : 135 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_jzbejsvqpl-4220b055-95bd-4565-94d3-f42b7791bca5.json b/mock/mappings/api_inventory_models_jzbejsvqpl-4220b055-95bd-4565-94d3-f42b7791bca5.json deleted file mode 100644 index 85da36e..0000000 --- a/mock/mappings/api_inventory_models_jzbejsvqpl-4220b055-95bd-4565-94d3-f42b7791bca5.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "4220b055-95bd-4565-94d3-f42b7791bca5", - "name" : "api_inventory_models_jzbejsvqpl", - "request" : { - "url" : "/api/inventory_models/JZbeJSVqPL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JZbeJSVqPL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-11-24T15:10:45.875Z\",\"updated_at\":\"2022-11-24T15:10:45.875Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"6529fc0383e09ed6f89407eb0a6ff88f\"", - "X-Request-Id" : "10c7b9c6-0fb8-46af-bfed-7d96fee3f062", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:47 GMT", - "Age" : "1", - "X-Served-By" : "cache-ams21048-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1669302648.704168,VS0,VE3", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "4220b055-95bd-4565-94d3-f42b7791bca5", - "persistent" : true, - "scenarioName" : "scenario-2-api-inventory_models-JZbeJSVqPL", - "requiredScenarioState" : "scenario-2-api-inventory_models-JZbeJSVqPL-3", - "insertionIndex" : 144 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_jzbejsvqpl-63c34fa3-662d-4034-80ca-b39bf9cd7756.json b/mock/mappings/api_inventory_models_jzbejsvqpl-63c34fa3-662d-4034-80ca-b39bf9cd7756.json deleted file mode 100644 index 9d1b60d..0000000 --- a/mock/mappings/api_inventory_models_jzbejsvqpl-63c34fa3-662d-4034-80ca-b39bf9cd7756.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "63c34fa3-662d-4034-80ca-b39bf9cd7756", - "name" : "api_inventory_models_jzbejsvqpl", - "request" : { - "url" : "/api/inventory_models/JZbeJSVqPL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JZbeJSVqPL\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2022-11-24T15:10:45.875Z\",\"updated_at\":\"2022-11-24T15:10:45.875Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/JZbeJSVqPL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"6529fc0383e09ed6f89407eb0a6ff88f\"", - "X-Request-Id" : "10c7b9c6-0fb8-46af-bfed-7d96fee3f062", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:46 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21022-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1669302647.967634,VS0,VE2", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "63c34fa3-662d-4034-80ca-b39bf9cd7756", - "persistent" : true, - "scenarioName" : "scenario-2-api-inventory_models-JZbeJSVqPL", - "requiredScenarioState" : "scenario-2-api-inventory_models-JZbeJSVqPL-2", - "newScenarioState" : "scenario-2-api-inventory_models-JZbeJSVqPL-3", - "insertionIndex" : 139 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_lwlwdsbjra-3533ec97-599d-428a-92b9-14b7366e526f.json b/mock/mappings/api_inventory_models_lwlwdsbjra-3533ec97-599d-428a-92b9-14b7366e526f.json deleted file mode 100644 index 3d9372d..0000000 --- a/mock/mappings/api_inventory_models_lwlwdsbjra-3533ec97-599d-428a-92b9-14b7366e526f.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "3533ec97-599d-428a-92b9-14b7366e526f", - "name" : "api_inventory_models_lwlwdsbjra", - "request" : { - "url" : "/api/inventory_models/lWlwDSbjRa", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"lWlwDSbjRa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2023-03-28T08:12:18.094Z\",\"updated_at\":\"2023-03-28T08:12:18.094Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "11", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"3597e9e32f1f82dfc2049d07f49e1653\"", - "X-Request-Id" : "0a1c212f-e0f2-4522-9ac9-3ac9a088fb23", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21030-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.700153,VS0,VE78", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "3533ec97-599d-428a-92b9-14b7366e526f", - "persistent" : true, - "scenarioName" : "scenario-3-api-inventory_models-lWlwDSbjRa", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-3-api-inventory_models-lWlwDSbjRa-2", - "insertionIndex" : 627 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_lwlwdsbjra-51405b3d-edcf-4542-acdc-cbfb417a7e88.json b/mock/mappings/api_inventory_models_lwlwdsbjra-51405b3d-edcf-4542-acdc-cbfb417a7e88.json deleted file mode 100644 index 7480f5f..0000000 --- a/mock/mappings/api_inventory_models_lwlwdsbjra-51405b3d-edcf-4542-acdc-cbfb417a7e88.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "51405b3d-edcf-4542-acdc-cbfb417a7e88", - "name" : "api_inventory_models_lwlwdsbjra", - "request" : { - "url" : "/api/inventory_models/lWlwDSbjRa", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"lWlwDSbjRa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2023-03-28T08:12:18.094Z\",\"updated_at\":\"2023-03-28T08:12:18.094Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "19", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"3597e9e32f1f82dfc2049d07f49e1653\"", - "X-Request-Id" : "82fd3d80-249f-482a-b6d2-19dee0791219", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21073-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.821425,VS0,VE41", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "51405b3d-edcf-4542-acdc-cbfb417a7e88", - "persistent" : true, - "scenarioName" : "scenario-3-api-inventory_models-lWlwDSbjRa", - "requiredScenarioState" : "scenario-3-api-inventory_models-lWlwDSbjRa-3", - "insertionIndex" : 639 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_lwlwdsbjra-aa16d6e2-7191-4c12-ab35-bbb3d3d4ecec.json b/mock/mappings/api_inventory_models_lwlwdsbjra-aa16d6e2-7191-4c12-ab35-bbb3d3d4ecec.json deleted file mode 100644 index c3b610e..0000000 --- a/mock/mappings/api_inventory_models_lwlwdsbjra-aa16d6e2-7191-4c12-ab35-bbb3d3d4ecec.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "aa16d6e2-7191-4c12-ab35-bbb3d3d4ecec", - "name" : "api_inventory_models_lwlwdsbjra", - "request" : { - "url" : "/api/inventory_models/lWlwDSbjRa", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"lWlwDSbjRa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"created_at\":\"2023-03-28T08:12:18.094Z\",\"updated_at\":\"2023-03-28T08:12:18.094Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_models/lWlwDSbjRa/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "11", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"3597e9e32f1f82dfc2049d07f49e1653\"", - "X-Request-Id" : "0a1c212f-e0f2-4522-9ac9-3ac9a088fb23", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21037-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1679991139.180516,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "aa16d6e2-7191-4c12-ab35-bbb3d3d4ecec", - "persistent" : true, - "scenarioName" : "scenario-3-api-inventory_models-lWlwDSbjRa", - "requiredScenarioState" : "scenario-3-api-inventory_models-lWlwDSbjRa-2", - "newScenarioState" : "scenario-3-api-inventory_models-lWlwDSbjRa-3", - "insertionIndex" : 632 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_lwlwdsbjra-c64972f9-cea5-4c35-af5e-e526db122466.json b/mock/mappings/api_inventory_models_lwlwdsbjra-c64972f9-cea5-4c35-af5e-e526db122466.json deleted file mode 100644 index 414a1b0..0000000 --- a/mock/mappings/api_inventory_models_lwlwdsbjra-c64972f9-cea5-4c35-af5e-e526db122466.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "c64972f9-cea5-4c35-af5e-e526db122466", - "name" : "api_inventory_models_lwlwdsbjra", - "request" : { - "url" : "/api/inventory_models/lWlwDSbjRa", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "40f05139-49ee-4b66-b08d-fa875b4bab33", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:20 GMT", - "X-Served-By" : "cache-ams21023-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991141.541394,VS0,VE87", - "Vary" : "Origin" - } - }, - "uuid" : "c64972f9-cea5-4c35-af5e-e526db122466", - "persistent" : true, - "insertionIndex" : 647 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations-528a525c-c075-495a-ada4-a4e521ec7d9d.json b/mock/mappings/api_inventory_return_locations-528a525c-c075-495a-ada4-a4e521ec7d9d.json deleted file mode 100644 index ae339de..0000000 --- a/mock/mappings/api_inventory_return_locations-528a525c-c075-495a-ada4-a4e521ec7d9d.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "528a525c-c075-495a-ada4-a4e521ec7d9d", - "name" : "api_inventory_return_locations", - "request" : { - "url" : "/api/inventory_return_locations", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"priority\":1},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"JZbeJSVqPL\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"DngepuNdwk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_return_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"EwpGDiNdRl\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl\"},\"attributes\":{\"priority\":1,\"created_at\":\"2022-11-24T15:10:46.230Z\",\"updated_at\":\"2022-11-24T15:10:46.230Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"46c1aa3eb667b5a6834c9f8fe4f59be5\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "c72a0d52-a47f-4e92-af8a-5cbf1afaf794", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:46 GMT", - "X-Served-By" : "cache-ams21036-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302646.157320,VS0,VE101", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "528a525c-c075-495a-ada4-a4e521ec7d9d", - "persistent" : true, - "insertionIndex" : 134 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_ewpgdindrl-03149b5e-c716-4cb2-97de-b9bb97a7a90f.json b/mock/mappings/api_inventory_return_locations_ewpgdindrl-03149b5e-c716-4cb2-97de-b9bb97a7a90f.json deleted file mode 100644 index 29e5be1..0000000 --- a/mock/mappings/api_inventory_return_locations_ewpgdindrl-03149b5e-c716-4cb2-97de-b9bb97a7a90f.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "03149b5e-c716-4cb2-97de-b9bb97a7a90f", - "name" : "api_inventory_return_locations_ewpgdindrl", - "request" : { - "url" : "/api/inventory_return_locations/EwpGDiNdRl", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EwpGDiNdRl\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl\"},\"attributes\":{\"priority\":1,\"created_at\":\"2022-11-24T15:10:46.230Z\",\"updated_at\":\"2022-11-24T15:10:46.230Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "11", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"46c1aa3eb667b5a6834c9f8fe4f59be5\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "108f1392-c2bf-4f67-bc33-e38cc7cb6fd5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:47 GMT", - "X-Served-By" : "cache-ams21049-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302647.175375,VS0,VE47", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "03149b5e-c716-4cb2-97de-b9bb97a7a90f", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl", - "requiredScenarioState" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl-2", - "newScenarioState" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl-3", - "insertionIndex" : 142 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_ewpgdindrl-3c50b3fd-faa2-4c9f-b0a5-f8931991cc5c.json b/mock/mappings/api_inventory_return_locations_ewpgdindrl-3c50b3fd-faa2-4c9f-b0a5-f8931991cc5c.json deleted file mode 100644 index eaeab3b..0000000 --- a/mock/mappings/api_inventory_return_locations_ewpgdindrl-3c50b3fd-faa2-4c9f-b0a5-f8931991cc5c.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "3c50b3fd-faa2-4c9f-b0a5-f8931991cc5c", - "name" : "api_inventory_return_locations_ewpgdindrl", - "request" : { - "url" : "/api/inventory_return_locations/EwpGDiNdRl", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EwpGDiNdRl\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl\"},\"attributes\":{\"priority\":1,\"created_at\":\"2022-11-24T15:10:46.230Z\",\"updated_at\":\"2022-11-24T15:10:46.230Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "9", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"46c1aa3eb667b5a6834c9f8fe4f59be5\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a3f27afb-4790-4d04-9913-b8818b9b5833", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:46 GMT", - "X-Served-By" : "cache-ams21025-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302647.732477,VS0,VE85", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "3c50b3fd-faa2-4c9f-b0a5-f8931991cc5c", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl-2", - "insertionIndex" : 138 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_ewpgdindrl-44d7e38a-23f9-4d6b-a49b-b4a743a56e48.json b/mock/mappings/api_inventory_return_locations_ewpgdindrl-44d7e38a-23f9-4d6b-a49b-b4a743a56e48.json deleted file mode 100644 index f9458fc..0000000 --- a/mock/mappings/api_inventory_return_locations_ewpgdindrl-44d7e38a-23f9-4d6b-a49b-b4a743a56e48.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "44d7e38a-23f9-4d6b-a49b-b4a743a56e48", - "name" : "api_inventory_return_locations_ewpgdindrl", - "request" : { - "url" : "/api/inventory_return_locations/EwpGDiNdRl", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EwpGDiNdRl\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl\"},\"attributes\":{\"priority\":2,\"created_at\":\"2022-11-24T15:10:46.230Z\",\"updated_at\":\"2022-11-24T15:10:47.497Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "14", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b37091d8a9cf2c15b9c1e5125cbfbed6\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d3df04c6-b53c-442f-8aed-c117c79e8793", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:47 GMT", - "X-Served-By" : "cache-ams21051-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302648.862731,VS0,VE83", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "44d7e38a-23f9-4d6b-a49b-b4a743a56e48", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl", - "requiredScenarioState" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl-3", - "newScenarioState" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl-4", - "insertionIndex" : 147 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_ewpgdindrl-472a92e2-d052-4a8a-ba32-8debdc36b091.json b/mock/mappings/api_inventory_return_locations_ewpgdindrl-472a92e2-d052-4a8a-ba32-8debdc36b091.json deleted file mode 100644 index 631b2b7..0000000 --- a/mock/mappings/api_inventory_return_locations_ewpgdindrl-472a92e2-d052-4a8a-ba32-8debdc36b091.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "472a92e2-d052-4a8a-ba32-8debdc36b091", - "name" : "api_inventory_return_locations_ewpgdindrl", - "request" : { - "url" : "/api/inventory_return_locations/EwpGDiNdRl", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"priority\":2},\"id\":\"EwpGDiNdRl\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"JZbeJSVqPL\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"DngepuNdwk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_return_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EwpGDiNdRl\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl\"},\"attributes\":{\"priority\":2,\"created_at\":\"2022-11-24T15:10:46.230Z\",\"updated_at\":\"2022-11-24T15:10:47.497Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_return_locations/EwpGDiNdRl/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "12", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b37091d8a9cf2c15b9c1e5125cbfbed6\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3c565269-22ef-427d-be44-109f2e28c081", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:47 GMT", - "X-Served-By" : "cache-ams21053-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302647.407618,VS0,VE107", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "472a92e2-d052-4a8a-ba32-8debdc36b091", - "persistent" : true, - "insertionIndex" : 143 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_ewpgdindrl-a5fabdc9-4721-44de-8bcb-5bbf404576c4.json b/mock/mappings/api_inventory_return_locations_ewpgdindrl-a5fabdc9-4721-44de-8bcb-5bbf404576c4.json deleted file mode 100644 index 3430c52..0000000 --- a/mock/mappings/api_inventory_return_locations_ewpgdindrl-a5fabdc9-4721-44de-8bcb-5bbf404576c4.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "a5fabdc9-4721-44de-8bcb-5bbf404576c4", - "name" : "api_inventory_return_locations_ewpgdindrl", - "request" : { - "url" : "/api/inventory_return_locations/EwpGDiNdRl", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:48 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21031-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302649.712978,VS0,VE87" - } - }, - "uuid" : "a5fabdc9-4721-44de-8bcb-5bbf404576c4", - "persistent" : true, - "scenarioName" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl", - "requiredScenarioState" : "scenario-5-api-inventory_return_locations-EwpGDiNdRl-4", - "insertionIndex" : 152 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_ewpgdindrl-f3b38f69-82d7-44f7-be21-28acbb787248.json b/mock/mappings/api_inventory_return_locations_ewpgdindrl-f3b38f69-82d7-44f7-be21-28acbb787248.json deleted file mode 100644 index e63c399..0000000 --- a/mock/mappings/api_inventory_return_locations_ewpgdindrl-f3b38f69-82d7-44f7-be21-28acbb787248.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "f3b38f69-82d7-44f7-be21-28acbb787248", - "name" : "api_inventory_return_locations_ewpgdindrl", - "request" : { - "url" : "/api/inventory_return_locations/EwpGDiNdRl", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "15", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "b3d598bd-8772-4597-9122-e2cc43d2e4eb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:48 GMT", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302648.120313,VS0,VE132", - "Vary" : "Origin" - } - }, - "uuid" : "f3b38f69-82d7-44f7-be21-28acbb787248", - "persistent" : true, - "insertionIndex" : 148 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations-0214ebad-deb8-44f9-8df2-d85e662dc16c.json b/mock/mappings/api_inventory_stock_locations-0214ebad-deb8-44f9-8df2-d85e662dc16c.json deleted file mode 100644 index c63185f..0000000 --- a/mock/mappings/api_inventory_stock_locations-0214ebad-deb8-44f9-8df2-d85e662dc16c.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "0214ebad-deb8-44f9-8df2-d85e662dc16c", - "name" : "api_inventory_stock_locations", - "request" : { - "url" : "/api/inventory_stock_locations", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"on_hold\":true,\"priority\":1},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"EWgKRSjvYW\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"QkxoeumQQG\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_stock_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"eZwpJSlQaj\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2022-11-24T15:10:58.114Z\",\"updated_at\":\"2022-11-24T15:10:58.114Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "24", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e26aa2fc054e9b1e136dd21087a9d9b0\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "70465098-f992-44c8-b7bd-4209e23a179c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:58 GMT", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302658.049284,VS0,VE90", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "0214ebad-deb8-44f9-8df2-d85e662dc16c", - "persistent" : true, - "insertionIndex" : 157 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-25127a56-850a-4feb-9479-07bffbd320fc.json b/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-25127a56-850a-4feb-9479-07bffbd320fc.json deleted file mode 100644 index b0863c6..0000000 --- a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-25127a56-850a-4feb-9479-07bffbd320fc.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "25127a56-850a-4feb-9479-07bffbd320fc", - "name" : "api_inventory_stock_locations_ezwpjslqaj", - "request" : { - "url" : "/api/inventory_stock_locations/eZwpJSlQaj", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "34", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "b54a622a-2503-40de-a5c2-5e62a6db126a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:11:00 GMT", - "X-Served-By" : "cache-ams21056-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302660.052832,VS0,VE97", - "Vary" : "Origin" - } - }, - "uuid" : "25127a56-850a-4feb-9479-07bffbd320fc", - "persistent" : true, - "insertionIndex" : 171 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-94d41b5a-6e7f-48f6-ba70-2b619c9cccb8.json b/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-94d41b5a-6e7f-48f6-ba70-2b619c9cccb8.json deleted file mode 100644 index 05e6aeb..0000000 --- a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-94d41b5a-6e7f-48f6-ba70-2b619c9cccb8.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "94d41b5a-6e7f-48f6-ba70-2b619c9cccb8", - "name" : "api_inventory_stock_locations_ezwpjslqaj", - "request" : { - "url" : "/api/inventory_stock_locations/eZwpJSlQaj", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:11:00 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21050-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302661.526132,VS0,VE76" - } - }, - "uuid" : "94d41b5a-6e7f-48f6-ba70-2b619c9cccb8", - "persistent" : true, - "scenarioName" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj", - "requiredScenarioState" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj-4", - "insertionIndex" : 175 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-a3c0f827-0df6-484c-b589-d49e280c0cba.json b/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-a3c0f827-0df6-484c-b589-d49e280c0cba.json deleted file mode 100644 index a7845e0..0000000 --- a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-a3c0f827-0df6-484c-b589-d49e280c0cba.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "a3c0f827-0df6-484c-b589-d49e280c0cba", - "name" : "api_inventory_stock_locations_ezwpjslqaj", - "request" : { - "url" : "/api/inventory_stock_locations/eZwpJSlQaj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"eZwpJSlQaj\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2022-11-24T15:10:58.114Z\",\"updated_at\":\"2022-11-24T15:10:58.114Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "30", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e26aa2fc054e9b1e136dd21087a9d9b0\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "ae2483cc-ee2b-42b4-83be-195877632b97", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:59 GMT", - "X-Served-By" : "cache-ams21021-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302659.005782,VS0,VE80", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a3c0f827-0df6-484c-b589-d49e280c0cba", - "persistent" : true, - "scenarioName" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj", - "requiredScenarioState" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj-2", - "newScenarioState" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj-3", - "insertionIndex" : 165 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-ce9ab1f9-acab-4d2f-a759-558906f9a64b.json b/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-ce9ab1f9-acab-4d2f-a759-558906f9a64b.json deleted file mode 100644 index ccf209b..0000000 --- a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-ce9ab1f9-acab-4d2f-a759-558906f9a64b.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "ce9ab1f9-acab-4d2f-a759-558906f9a64b", - "name" : "api_inventory_stock_locations_ezwpjslqaj", - "request" : { - "url" : "/api/inventory_stock_locations/eZwpJSlQaj", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"on_hold\":false,\"priority\":2},\"id\":\"eZwpJSlQaj\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"EWgKRSjvYW\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"QkxoeumQQG\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_stock_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"eZwpJSlQaj\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj\"},\"attributes\":{\"priority\":2,\"on_hold\":false,\"created_at\":\"2022-11-24T15:10:58.114Z\",\"updated_at\":\"2022-11-24T15:10:59.349Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "31", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"834dc490ec33e8b33b98baa54dee9fcf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "fd6c6c89-3d25-42f3-9e6a-39125d8af7ed", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:59 GMT", - "X-Served-By" : "cache-ams21032-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302659.268036,VS0,VE95", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "ce9ab1f9-acab-4d2f-a759-558906f9a64b", - "persistent" : true, - "insertionIndex" : 166 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-d1a7bbdc-f900-499b-a569-16b60b33b36e.json b/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-d1a7bbdc-f900-499b-a569-16b60b33b36e.json deleted file mode 100644 index cdc8420..0000000 --- a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-d1a7bbdc-f900-499b-a569-16b60b33b36e.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "d1a7bbdc-f900-499b-a569-16b60b33b36e", - "name" : "api_inventory_stock_locations_ezwpjslqaj", - "request" : { - "url" : "/api/inventory_stock_locations/eZwpJSlQaj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"eZwpJSlQaj\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj\"},\"attributes\":{\"priority\":2,\"on_hold\":false,\"created_at\":\"2022-11-24T15:10:58.114Z\",\"updated_at\":\"2022-11-24T15:10:59.349Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "33", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"834dc490ec33e8b33b98baa54dee9fcf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d34eb66e-2d82-4093-b214-84a71fc2f743", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:59 GMT", - "X-Served-By" : "cache-ams21072-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302660.744118,VS0,VE128", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d1a7bbdc-f900-499b-a569-16b60b33b36e", - "persistent" : true, - "scenarioName" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj", - "requiredScenarioState" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj-3", - "newScenarioState" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj-4", - "insertionIndex" : 170 -} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-d7eba83a-0b98-4659-988f-4cb033411421.json b/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-d7eba83a-0b98-4659-988f-4cb033411421.json deleted file mode 100644 index 8b93562..0000000 --- a/mock/mappings/api_inventory_stock_locations_ezwpjslqaj-d7eba83a-0b98-4659-988f-4cb033411421.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "d7eba83a-0b98-4659-988f-4cb033411421", - "name" : "api_inventory_stock_locations_ezwpjslqaj", - "request" : { - "url" : "/api/inventory_stock_locations/eZwpJSlQaj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"eZwpJSlQaj\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2022-11-24T15:10:58.114Z\",\"updated_at\":\"2022-11-24T15:10:58.114Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/inventory_stock_locations/eZwpJSlQaj/inventory_model\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "28", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e26aa2fc054e9b1e136dd21087a9d9b0\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "ea65220d-6dcd-4f11-99d5-a1b5086e61ae", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:58 GMT", - "X-Served-By" : "cache-ams21034-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302659.605401,VS0,VE83", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d7eba83a-0b98-4659-988f-4cb033411421", - "persistent" : true, - "scenarioName" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-9-api-inventory_stock_locations-eZwpJSlQaj-2", - "insertionIndex" : 161 -} \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways-94e2b9e6-a645-4e18-b705-b5dcffa092f3.json b/mock/mappings/api_klarna_gateways-94e2b9e6-a645-4e18-b705-b5dcffa092f3.json deleted file mode 100644 index b4eb03e..0000000 --- a/mock/mappings/api_klarna_gateways-94e2b9e6-a645-4e18-b705-b5dcffa092f3.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "94e2b9e6-a645-4e18-b705-b5dcffa092f3", - "name" : "api_klarna_gateways", - "request" : { - "url" : "/api/klarna_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_secret\":\"xxxx-yyyy-zzzz\",\"country_code\":\"EU\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"},\"name\":\"Incentro Klarna Gateway\"},\"type\":\"klarna_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"WvWNJsnZWx\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2023-01-11T14:28:23.996Z\",\"updated_at\":\"2023-01-11T14:28:23.996Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/payment_methods\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/klarna_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "19", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"d2dde1a3ab71af790959f528a6dc0523\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "30bc14fb-526b-4aaf-b589-dcba5d1e46a9", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:24 GMT", - "X-Served-By" : "cache-ams21069-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447304.957173,VS0,VE54", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "94e2b9e6-a645-4e18-b705-b5dcffa092f3", - "persistent" : true, - "insertionIndex" : 888 -} \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-05cf4ccc-35db-4dee-b1c6-b3a0df9935dc.json b/mock/mappings/api_klarna_gateways_wvwnjsnzwx-05cf4ccc-35db-4dee-b1c6-b3a0df9935dc.json deleted file mode 100644 index 0c476c5..0000000 --- a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-05cf4ccc-35db-4dee-b1c6-b3a0df9935dc.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "05cf4ccc-35db-4dee-b1c6-b3a0df9935dc", - "name" : "api_klarna_gateways_wvwnjsnzwx", - "request" : { - "url" : "/api/klarna_gateways/WvWNJsnZWx", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:25 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21075-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447306.627128,VS0,VE75" - } - }, - "uuid" : "05cf4ccc-35db-4dee-b1c6-b3a0df9935dc", - "persistent" : true, - "scenarioName" : "scenario-1-api-klarna_gateways-WvWNJsnZWx", - "requiredScenarioState" : "scenario-1-api-klarna_gateways-WvWNJsnZWx-4", - "insertionIndex" : 894 -} \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-6812f523-3ac4-4a8e-a101-d4fb2bb0e827.json b/mock/mappings/api_klarna_gateways_wvwnjsnzwx-6812f523-3ac4-4a8e-a101-d4fb2bb0e827.json deleted file mode 100644 index 5cd10de..0000000 --- a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-6812f523-3ac4-4a8e-a101-d4fb2bb0e827.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "6812f523-3ac4-4a8e-a101-d4fb2bb0e827", - "name" : "api_klarna_gateways_wvwnjsnzwx", - "request" : { - "url" : "/api/klarna_gateways/WvWNJsnZWx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"WvWNJsnZWx\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2023-01-11T14:28:23.996Z\",\"updated_at\":\"2023-01-11T14:28:23.996Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/payment_methods\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/klarna_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "20", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"d2dde1a3ab71af790959f528a6dc0523\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "4dda0aec-3a81-409f-8189-d71d67915dd6", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:24 GMT", - "X-Served-By" : "cache-ams21051-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447304.237523,VS0,VE83", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "6812f523-3ac4-4a8e-a101-d4fb2bb0e827", - "persistent" : true, - "scenarioName" : "scenario-1-api-klarna_gateways-WvWNJsnZWx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-klarna_gateways-WvWNJsnZWx-2", - "insertionIndex" : 889 -} \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-70ce6a02-769f-4915-9cf1-a5ab30ddd3ba.json b/mock/mappings/api_klarna_gateways_wvwnjsnzwx-70ce6a02-769f-4915-9cf1-a5ab30ddd3ba.json deleted file mode 100644 index a709236..0000000 --- a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-70ce6a02-769f-4915-9cf1-a5ab30ddd3ba.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "70ce6a02-769f-4915-9cf1-a5ab30ddd3ba", - "name" : "api_klarna_gateways_wvwnjsnzwx", - "request" : { - "url" : "/api/klarna_gateways/WvWNJsnZWx", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "24", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "775cf8d1-ad84-4da3-9417-ed3868a5c34c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:25 GMT", - "X-Served-By" : "cache-ams21056-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447305.390916,VS0,VE99", - "Vary" : "Origin" - } - }, - "uuid" : "70ce6a02-769f-4915-9cf1-a5ab30ddd3ba", - "persistent" : true, - "insertionIndex" : 893 -} \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-94e1997a-36b0-4bbd-afc3-1c3b500a40bb.json b/mock/mappings/api_klarna_gateways_wvwnjsnzwx-94e1997a-36b0-4bbd-afc3-1c3b500a40bb.json deleted file mode 100644 index 3ceccf9..0000000 --- a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-94e1997a-36b0-4bbd-afc3-1c3b500a40bb.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "94e1997a-36b0-4bbd-afc3-1c3b500a40bb", - "name" : "api_klarna_gateways_wvwnjsnzwx", - "request" : { - "url" : "/api/klarna_gateways/WvWNJsnZWx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"WvWNJsnZWx\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2023-01-11T14:28:23.996Z\",\"updated_at\":\"2023-01-11T14:28:23.996Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/payment_methods\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/klarna_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"d2dde1a3ab71af790959f528a6dc0523\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "27b7dc7f-1d18-403e-827c-716440a8a2e4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:24 GMT", - "X-Served-By" : "cache-ams21037-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447305.516862,VS0,VE46", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "94e1997a-36b0-4bbd-afc3-1c3b500a40bb", - "persistent" : true, - "scenarioName" : "scenario-1-api-klarna_gateways-WvWNJsnZWx", - "requiredScenarioState" : "scenario-1-api-klarna_gateways-WvWNJsnZWx-2", - "newScenarioState" : "scenario-1-api-klarna_gateways-WvWNJsnZWx-3", - "insertionIndex" : 890 -} \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-a92c514a-a3cd-4d1c-9083-4302ac3f2341.json b/mock/mappings/api_klarna_gateways_wvwnjsnzwx-a92c514a-a3cd-4d1c-9083-4302ac3f2341.json deleted file mode 100644 index 96601a2..0000000 --- a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-a92c514a-a3cd-4d1c-9083-4302ac3f2341.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "a92c514a-a3cd-4d1c-9083-4302ac3f2341", - "name" : "api_klarna_gateways_wvwnjsnzwx", - "request" : { - "url" : "/api/klarna_gateways/WvWNJsnZWx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"WvWNJsnZWx\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway Changed\",\"created_at\":\"2023-01-11T14:28:23.996Z\",\"updated_at\":\"2023-01-11T14:28:24.868Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/payment_methods\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/klarna_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "23", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f32ef0bed4a2b7025ee809ba6efae262\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a639f706-16be-4bb2-877e-f6f82533f8c7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:25 GMT", - "X-Served-By" : "cache-ams21040-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447305.123387,VS0,VE47", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a92c514a-a3cd-4d1c-9083-4302ac3f2341", - "persistent" : true, - "scenarioName" : "scenario-1-api-klarna_gateways-WvWNJsnZWx", - "requiredScenarioState" : "scenario-1-api-klarna_gateways-WvWNJsnZWx-3", - "newScenarioState" : "scenario-1-api-klarna_gateways-WvWNJsnZWx-4", - "insertionIndex" : 892 -} \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-bb703941-bf69-41f6-89ba-057aed10541c.json b/mock/mappings/api_klarna_gateways_wvwnjsnzwx-bb703941-bf69-41f6-89ba-057aed10541c.json deleted file mode 100644 index a35a169..0000000 --- a/mock/mappings/api_klarna_gateways_wvwnjsnzwx-bb703941-bf69-41f6-89ba-057aed10541c.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "bb703941-bf69-41f6-89ba-057aed10541c", - "name" : "api_klarna_gateways_wvwnjsnzwx", - "request" : { - "url" : "/api/klarna_gateways/WvWNJsnZWx", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_secret\":\"xxxx-yyyy-zzzz\",\"country_code\":\"EU\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"},\"name\":\"Incentro Klarna Gateway Changed\"},\"id\":\"WvWNJsnZWx\",\"type\":\"klarna_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"WvWNJsnZWx\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway Changed\",\"created_at\":\"2023-01-11T14:28:23.996Z\",\"updated_at\":\"2023-01-11T14:28:24.868Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/payment_methods\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/relationships/klarna_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/klarna_gateways/WvWNJsnZWx/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "22", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f32ef0bed4a2b7025ee809ba6efae262\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "bfb3f662-c39c-4699-ba62-363109ce2c75", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:24 GMT", - "X-Served-By" : "cache-ams21060-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447305.785877,VS0,VE97", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "bb703941-bf69-41f6-89ba-057aed10541c", - "persistent" : true, - "insertionIndex" : 891 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways-2fa2b109-6984-4015-835e-7cb74b9c1505.json b/mock/mappings/api_manual_gateways-2fa2b109-6984-4015-835e-7cb74b9c1505.json deleted file mode 100644 index 0d3bd22..0000000 --- a/mock/mappings/api_manual_gateways-2fa2b109-6984-4015-835e-7cb74b9c1505.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "2fa2b109-6984-4015-835e-7cb74b9c1505", - "name" : "api_manual_gateways", - "request" : { - "url" : "/api/manual_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"name\":\"Incentro Manual Gateway\"},\"type\":\"manual_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"axYQYswYRx\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2023-01-11T14:28:47.796Z\",\"updated_at\":\"2023-01-11T14:28:47.796Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"require_capture\":null},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/payment_methods\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a05d37c6e3b822538b08c7cc98f57fd0\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "ec0efa85-5845-45fb-bc25-23f7255a82f5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:47 GMT", - "X-Served-By" : "cache-ams21043-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447328.733152,VS0,VE77", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "2fa2b109-6984-4015-835e-7cb74b9c1505", - "persistent" : true, - "insertionIndex" : 897 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_axyqyswyrx-062563ba-413a-4c0c-abe0-c0571a952542.json b/mock/mappings/api_manual_gateways_axyqyswyrx-062563ba-413a-4c0c-abe0-c0571a952542.json deleted file mode 100644 index 3acc318..0000000 --- a/mock/mappings/api_manual_gateways_axyqyswyrx-062563ba-413a-4c0c-abe0-c0571a952542.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "062563ba-413a-4c0c-abe0-c0571a952542", - "name" : "api_manual_gateways_axyqyswyrx", - "request" : { - "url" : "/api/manual_gateways/axYQYswYRx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"axYQYswYRx\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2023-01-11T14:28:47.796Z\",\"updated_at\":\"2023-01-11T14:28:47.796Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"require_capture\":null},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/payment_methods\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "28", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a05d37c6e3b822538b08c7cc98f57fd0\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d88c83ca-0498-42a7-84b1-307008d378c7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:48 GMT", - "X-Served-By" : "cache-ams21023-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447328.056988,VS0,VE90", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "062563ba-413a-4c0c-abe0-c0571a952542", - "persistent" : true, - "scenarioName" : "scenario-1-api-manual_gateways-axYQYswYRx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-manual_gateways-axYQYswYRx-2", - "insertionIndex" : 898 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_axyqyswyrx-15463325-b2f7-4455-896a-7316a88c9e78.json b/mock/mappings/api_manual_gateways_axyqyswyrx-15463325-b2f7-4455-896a-7316a88c9e78.json deleted file mode 100644 index a0b94c8..0000000 --- a/mock/mappings/api_manual_gateways_axyqyswyrx-15463325-b2f7-4455-896a-7316a88c9e78.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "15463325-b2f7-4455-896a-7316a88c9e78", - "name" : "api_manual_gateways_axyqyswyrx", - "request" : { - "url" : "/api/manual_gateways/axYQYswYRx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"axYQYswYRx\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2023-01-11T14:28:47.796Z\",\"updated_at\":\"2023-01-11T14:28:47.796Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"require_capture\":null},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/payment_methods\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "29", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a05d37c6e3b822538b08c7cc98f57fd0\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "183f2922-ad65-4672-b2cd-36590f605306", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:48 GMT", - "X-Served-By" : "cache-ams21063-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447328.354387,VS0,VE37", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "15463325-b2f7-4455-896a-7316a88c9e78", - "persistent" : true, - "scenarioName" : "scenario-1-api-manual_gateways-axYQYswYRx", - "requiredScenarioState" : "scenario-1-api-manual_gateways-axYQYswYRx-2", - "newScenarioState" : "scenario-1-api-manual_gateways-axYQYswYRx-3", - "insertionIndex" : 899 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_axyqyswyrx-8d454db1-8ccf-466e-91d6-74aa94a3abda.json b/mock/mappings/api_manual_gateways_axyqyswyrx-8d454db1-8ccf-466e-91d6-74aa94a3abda.json deleted file mode 100644 index 442b102..0000000 --- a/mock/mappings/api_manual_gateways_axyqyswyrx-8d454db1-8ccf-466e-91d6-74aa94a3abda.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "8d454db1-8ccf-466e-91d6-74aa94a3abda", - "name" : "api_manual_gateways_axyqyswyrx", - "request" : { - "url" : "/api/manual_gateways/axYQYswYRx", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "32", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "42a2a3a6-da0a-4271-9d8e-4334d183660f", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:49 GMT", - "X-Served-By" : "cache-ams21055-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447329.116885,VS0,VE52", - "Vary" : "Origin" - } - }, - "uuid" : "8d454db1-8ccf-466e-91d6-74aa94a3abda", - "persistent" : true, - "insertionIndex" : 902 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_axyqyswyrx-bd619945-ee42-46b7-94de-5a90016e80cf.json b/mock/mappings/api_manual_gateways_axyqyswyrx-bd619945-ee42-46b7-94de-5a90016e80cf.json deleted file mode 100644 index a2e5c86..0000000 --- a/mock/mappings/api_manual_gateways_axyqyswyrx-bd619945-ee42-46b7-94de-5a90016e80cf.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "bd619945-ee42-46b7-94de-5a90016e80cf", - "name" : "api_manual_gateways_axyqyswyrx", - "request" : { - "url" : "/api/manual_gateways/axYQYswYRx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"axYQYswYRx\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx\"},\"attributes\":{\"name\":\"Incentro Manual Gateway Changed\",\"created_at\":\"2023-01-11T14:28:47.796Z\",\"updated_at\":\"2023-01-11T14:28:48.631Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"require_capture\":null},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/payment_methods\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "31", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"2adebcf110a2535ad7fa512b2ca5d0ac\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "6fb624bc-0b0b-41ac-bb33-44ceb9c18454", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:48 GMT", - "X-Served-By" : "cache-ams21066-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447329.867020,VS0,VE39", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "bd619945-ee42-46b7-94de-5a90016e80cf", - "persistent" : true, - "scenarioName" : "scenario-1-api-manual_gateways-axYQYswYRx", - "requiredScenarioState" : "scenario-1-api-manual_gateways-axYQYswYRx-3", - "newScenarioState" : "scenario-1-api-manual_gateways-axYQYswYRx-4", - "insertionIndex" : 901 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_axyqyswyrx-c35dae24-9006-4f59-ae65-491d330f5aa2.json b/mock/mappings/api_manual_gateways_axyqyswyrx-c35dae24-9006-4f59-ae65-491d330f5aa2.json deleted file mode 100644 index 0352b96..0000000 --- a/mock/mappings/api_manual_gateways_axyqyswyrx-c35dae24-9006-4f59-ae65-491d330f5aa2.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "c35dae24-9006-4f59-ae65-491d330f5aa2", - "name" : "api_manual_gateways_axyqyswyrx", - "request" : { - "url" : "/api/manual_gateways/axYQYswYRx", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:49 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21047-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447329.274209,VS0,VE34" - } - }, - "uuid" : "c35dae24-9006-4f59-ae65-491d330f5aa2", - "persistent" : true, - "scenarioName" : "scenario-1-api-manual_gateways-axYQYswYRx", - "requiredScenarioState" : "scenario-1-api-manual_gateways-axYQYswYRx-4", - "insertionIndex" : 903 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_axyqyswyrx-c7a08499-eb30-4180-9691-9d68b6c7dc1b.json b/mock/mappings/api_manual_gateways_axyqyswyrx-c7a08499-eb30-4180-9691-9d68b6c7dc1b.json deleted file mode 100644 index e744d56..0000000 --- a/mock/mappings/api_manual_gateways_axyqyswyrx-c7a08499-eb30-4180-9691-9d68b6c7dc1b.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "c7a08499-eb30-4180-9691-9d68b6c7dc1b", - "name" : "api_manual_gateways_axyqyswyrx", - "request" : { - "url" : "/api/manual_gateways/axYQYswYRx", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"name\":\"Incentro Manual Gateway Changed\"},\"id\":\"axYQYswYRx\",\"type\":\"manual_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"axYQYswYRx\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx\"},\"attributes\":{\"name\":\"Incentro Manual Gateway Changed\",\"created_at\":\"2023-01-11T14:28:47.796Z\",\"updated_at\":\"2023-01-11T14:28:48.631Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"require_capture\":null},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_gateways/axYQYswYRx/payment_methods\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "30", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"2adebcf110a2535ad7fa512b2ca5d0ac\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "9cb368d7-4cef-4ce4-809e-e95ca87a35b6", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:28:48 GMT", - "X-Served-By" : "cache-ams21053-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447329.595735,VS0,VE52", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c7a08499-eb30-4180-9691-9d68b6c7dc1b", - "persistent" : true, - "insertionIndex" : 900 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators-dfa8f01b-0dfe-4ef2-ba9c-9c81d8166136.json b/mock/mappings/api_manual_tax_calculators-dfa8f01b-0dfe-4ef2-ba9c-9c81d8166136.json deleted file mode 100644 index b9cd8cd..0000000 --- a/mock/mappings/api_manual_tax_calculators-dfa8f01b-0dfe-4ef2-ba9c-9c81d8166136.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "dfa8f01b-0dfe-4ef2-ba9c-9c81d8166136", - "name" : "api_manual_tax_calculators", - "request" : { - "url" : "/api/manual_tax_calculators", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"},\"name\":\"Incentro Manual Tax Calculator\"},\"type\":\"manual_tax_calculators\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"kyzeLTGdqE\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"created_at\":\"2023-01-13T10:05:52.626Z\",\"updated_at\":\"2023-01-13T10:05:52.626Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/attachments\"}},\"tax_rules\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/tax_rules\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"132acd9989cd361224b47a7e3b75ba26\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "5cebf190-f63b-4401-a02e-d5a3c3f24f06", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 10:05:52 GMT", - "X-Served-By" : "cache-ams21040-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673604353.595446,VS0,VE48", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "dfa8f01b-0dfe-4ef2-ba9c-9c81d8166136", - "persistent" : true, - "insertionIndex" : 3718 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-0fa21d8b-2810-4b8d-90a9-e091e902454e.json b/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-0fa21d8b-2810-4b8d-90a9-e091e902454e.json deleted file mode 100644 index 3a5197f..0000000 --- a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-0fa21d8b-2810-4b8d-90a9-e091e902454e.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "0fa21d8b-2810-4b8d-90a9-e091e902454e", - "name" : "api_manual_tax_calculators_kyzeltgdqe", - "request" : { - "url" : "/api/manual_tax_calculators/kyzeLTGdqE", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"kyzeLTGdqE\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"created_at\":\"2023-01-13T10:05:52.626Z\",\"updated_at\":\"2023-01-13T10:05:52.626Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/attachments\"}},\"tax_rules\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/tax_rules\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"132acd9989cd361224b47a7e3b75ba26\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3f2a1bd9-5c13-4226-8d0f-573e595c0cbb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 10:05:52 GMT", - "X-Served-By" : "cache-ams21054-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673604353.924608,VS0,VE74", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "0fa21d8b-2810-4b8d-90a9-e091e902454e", - "persistent" : true, - "scenarioName" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE-2", - "insertionIndex" : 3719 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-206b12f8-7a5e-41c1-9d5c-490c84b6f6e6.json b/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-206b12f8-7a5e-41c1-9d5c-490c84b6f6e6.json deleted file mode 100644 index 5d2a77b..0000000 --- a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-206b12f8-7a5e-41c1-9d5c-490c84b6f6e6.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "206b12f8-7a5e-41c1-9d5c-490c84b6f6e6", - "name" : "api_manual_tax_calculators_kyzeltgdqe", - "request" : { - "url" : "/api/manual_tax_calculators/kyzeLTGdqE", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 10:05:54 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21069-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673604354.380393,VS0,VE30" - } - }, - "uuid" : "206b12f8-7a5e-41c1-9d5c-490c84b6f6e6", - "persistent" : true, - "scenarioName" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE", - "requiredScenarioState" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE-4", - "insertionIndex" : 3724 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-2bff6c22-9f47-4e32-b370-fbc57f7dfe65.json b/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-2bff6c22-9f47-4e32-b370-fbc57f7dfe65.json deleted file mode 100644 index f540f6a..0000000 --- a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-2bff6c22-9f47-4e32-b370-fbc57f7dfe65.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "2bff6c22-9f47-4e32-b370-fbc57f7dfe65", - "name" : "api_manual_tax_calculators_kyzeltgdqe", - "request" : { - "url" : "/api/manual_tax_calculators/kyzeLTGdqE", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "d5808ed7-a91a-435a-a09a-1e5760c0393c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 10:05:54 GMT", - "X-Served-By" : "cache-ams21050-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673604354.142154,VS0,VE93", - "Vary" : "Origin" - } - }, - "uuid" : "2bff6c22-9f47-4e32-b370-fbc57f7dfe65", - "persistent" : true, - "insertionIndex" : 3723 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-87eeb010-4bbd-44c4-9d4f-2826f7f6cff8.json b/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-87eeb010-4bbd-44c4-9d4f-2826f7f6cff8.json deleted file mode 100644 index 7719a7b..0000000 --- a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-87eeb010-4bbd-44c4-9d4f-2826f7f6cff8.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "87eeb010-4bbd-44c4-9d4f-2826f7f6cff8", - "name" : "api_manual_tax_calculators_kyzeltgdqe", - "request" : { - "url" : "/api/manual_tax_calculators/kyzeLTGdqE", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"kyzeLTGdqE\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"created_at\":\"2023-01-13T10:05:52.626Z\",\"updated_at\":\"2023-01-13T10:05:52.626Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/attachments\"}},\"tax_rules\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/tax_rules\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"132acd9989cd361224b47a7e3b75ba26\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "939d1e08-5f7f-4680-9908-6621081c3db5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 10:05:53 GMT", - "X-Served-By" : "cache-ams21040-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673604353.202426,VS0,VE72", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "87eeb010-4bbd-44c4-9d4f-2826f7f6cff8", - "persistent" : true, - "scenarioName" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE", - "requiredScenarioState" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE-2", - "newScenarioState" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE-3", - "insertionIndex" : 3720 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-b44ae255-b7fb-4e49-8b0a-f9ecd3a8bfc9.json b/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-b44ae255-b7fb-4e49-8b0a-f9ecd3a8bfc9.json deleted file mode 100644 index fac7c68..0000000 --- a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-b44ae255-b7fb-4e49-8b0a-f9ecd3a8bfc9.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "b44ae255-b7fb-4e49-8b0a-f9ecd3a8bfc9", - "name" : "api_manual_tax_calculators_kyzeltgdqe", - "request" : { - "url" : "/api/manual_tax_calculators/kyzeLTGdqE", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"},\"name\":\"Incentro Manual Tax Calculator Changed\"},\"id\":\"kyzeLTGdqE\",\"type\":\"manual_tax_calculators\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"kyzeLTGdqE\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator Changed\",\"created_at\":\"2023-01-13T10:05:52.626Z\",\"updated_at\":\"2023-01-13T10:05:53.576Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/attachments\"}},\"tax_rules\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/tax_rules\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"9b539c8593ebe3429434817125c8126a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "c240a815-ebf5-4317-8ec7-8c8ab93b3eda", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 10:05:53 GMT", - "X-Served-By" : "cache-ams21059-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673604354.503084,VS0,VE89", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "b44ae255-b7fb-4e49-8b0a-f9ecd3a8bfc9", - "persistent" : true, - "insertionIndex" : 3721 -} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-b989707c-ee60-46c2-a3da-d637a4f5f5ca.json b/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-b989707c-ee60-46c2-a3da-d637a4f5f5ca.json deleted file mode 100644 index 6d1d8ef..0000000 --- a/mock/mappings/api_manual_tax_calculators_kyzeltgdqe-b989707c-ee60-46c2-a3da-d637a4f5f5ca.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "b989707c-ee60-46c2-a3da-d637a4f5f5ca", - "name" : "api_manual_tax_calculators_kyzeltgdqe", - "request" : { - "url" : "/api/manual_tax_calculators/kyzeLTGdqE", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"kyzeLTGdqE\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator Changed\",\"created_at\":\"2023-01-13T10:05:52.626Z\",\"updated_at\":\"2023-01-13T10:05:53.576Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/attachments\"}},\"tax_rules\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/relationships/tax_rules\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/manual_tax_calculators/kyzeLTGdqE/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"9b539c8593ebe3429434817125c8126a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "774b9597-5642-4657-add3-b048d4876eee", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 10:05:53 GMT", - "X-Served-By" : "cache-ams21037-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673604354.839074,VS0,VE76", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "b989707c-ee60-46c2-a3da-d637a4f5f5ca", - "persistent" : true, - "scenarioName" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE", - "requiredScenarioState" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE-3", - "newScenarioState" : "scenario-1-api-manual_tax_calculators-kyzeLTGdqE-4", - "insertionIndex" : 3722 -} \ No newline at end of file diff --git a/mock/mappings/api_markets-fb4ad115-000f-4990-af5a-8791534719bf.json b/mock/mappings/api_markets-fb4ad115-000f-4990-af5a-8791534719bf.json deleted file mode 100644 index e865efd..0000000 --- a/mock/mappings/api_markets-fb4ad115-000f-4990-af5a-8791534719bf.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "fb4ad115-000f-4990-af5a-8791534719bf", - "name" : "api_markets", - "request" : { - "url" : "/api/markets", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"external_order_validation_url\":\"https://www.example.com\",\"facebook_pixel_id\":\"pixel\",\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Market\"},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"lWlwDSbjRa\",\"type\":\"inventory_models\"}},\"merchant\":{\"data\":{\"id\":\"zbaOBHqYYn\",\"type\":\"merchants\"}},\"price_list\":{\"data\":{\"id\":\"JlOXZCyAXL\",\"type\":\"price_lists\"}}},\"type\":\"markets\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"BlydJhMZEg\",\"type\":\"markets\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg\"},\"attributes\":{\"number\":13023,\"name\":\"Incentro Market\",\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"shared_secret\":\"d94de9e7d8d57490a5b45e8466144ca6\",\"private\":false,\"disabled_at\":null,\"created_at\":\"2023-03-28T08:12:18.418Z\",\"updated_at\":\"2023-03-28T08:12:18.418Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/merchant\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/price_list\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/subscription_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/tax_calculator\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/customer_group\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/customer_group\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a1c464d2b5269fcaad0e3871cafd2822\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b95bc7fa-fcf1-419a-be44-47087cd0d9ed", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21072-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991138.331432,VS0,VE177", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "fb4ad115-000f-4990-af5a-8791534719bf", - "persistent" : true, - "insertionIndex" : 624 -} \ No newline at end of file diff --git a/mock/mappings/api_markets_blydjhmzeg-1ef1efa7-4960-44dc-9563-8bab193977dc.json b/mock/mappings/api_markets_blydjhmzeg-1ef1efa7-4960-44dc-9563-8bab193977dc.json deleted file mode 100644 index de0234c..0000000 --- a/mock/mappings/api_markets_blydjhmzeg-1ef1efa7-4960-44dc-9563-8bab193977dc.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "1ef1efa7-4960-44dc-9563-8bab193977dc", - "name" : "api_markets_blydjhmzeg", - "request" : { - "url" : "/api/markets/BlydJhMZEg", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BlydJhMZEg\",\"type\":\"markets\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg\"},\"attributes\":{\"number\":13023,\"name\":\"Incentro Market\",\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"shared_secret\":\"d94de9e7d8d57490a5b45e8466144ca6\",\"private\":false,\"disabled_at\":null,\"created_at\":\"2023-03-28T08:12:18.418Z\",\"updated_at\":\"2023-03-28T08:12:18.418Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/merchant\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/price_list\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/subscription_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/tax_calculator\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/customer_group\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/customer_group\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "13", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"a1c464d2b5269fcaad0e3871cafd2822\"", - "X-Request-Id" : "2a5dd374-6b46-4d21-9d75-01300357d23a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21041-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1679991139.387408,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "1ef1efa7-4960-44dc-9563-8bab193977dc", - "persistent" : true, - "scenarioName" : "scenario-6-api-markets-BlydJhMZEg", - "requiredScenarioState" : "scenario-6-api-markets-BlydJhMZEg-2", - "newScenarioState" : "scenario-6-api-markets-BlydJhMZEg-3", - "insertionIndex" : 636 -} \ No newline at end of file diff --git a/mock/mappings/api_markets_blydjhmzeg-36609b43-f6cc-419d-9de1-9f757dad740d.json b/mock/mappings/api_markets_blydjhmzeg-36609b43-f6cc-419d-9de1-9f757dad740d.json deleted file mode 100644 index 066b5d0..0000000 --- a/mock/mappings/api_markets_blydjhmzeg-36609b43-f6cc-419d-9de1-9f757dad740d.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "36609b43-f6cc-419d-9de1-9f757dad740d", - "name" : "api_markets_blydjhmzeg", - "request" : { - "url" : "/api/markets/BlydJhMZEg", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BlydJhMZEg\",\"type\":\"markets\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg\"},\"attributes\":{\"number\":13023,\"name\":\"Incentro Market Changed\",\"facebook_pixel_id\":\"pixelchanged\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"shared_secret\":\"d94de9e7d8d57490a5b45e8466144ca6\",\"private\":false,\"disabled_at\":null,\"created_at\":\"2023-03-28T08:12:18.418Z\",\"updated_at\":\"2023-03-28T08:12:19.616Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/merchant\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/price_list\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/subscription_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/tax_calculator\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/customer_group\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/customer_group\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "23", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"486111748e84ae8d13cbd5a97a45fb51\"", - "X-Request-Id" : "2b01d3fa-f33b-4b2b-95b0-9fa7abb0e6be", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:20 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21028-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.050815,VS0,VE45", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "36609b43-f6cc-419d-9de1-9f757dad740d", - "persistent" : true, - "scenarioName" : "scenario-6-api-markets-BlydJhMZEg", - "requiredScenarioState" : "scenario-6-api-markets-BlydJhMZEg-3", - "newScenarioState" : "scenario-6-api-markets-BlydJhMZEg-4", - "insertionIndex" : 643 -} \ No newline at end of file diff --git a/mock/mappings/api_markets_blydjhmzeg-6dc4cfee-fdaa-4ea8-8b81-3060898f812a.json b/mock/mappings/api_markets_blydjhmzeg-6dc4cfee-fdaa-4ea8-8b81-3060898f812a.json deleted file mode 100644 index 86fea7f..0000000 --- a/mock/mappings/api_markets_blydjhmzeg-6dc4cfee-fdaa-4ea8-8b81-3060898f812a.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "6dc4cfee-fdaa-4ea8-8b81-3060898f812a", - "name" : "api_markets_blydjhmzeg", - "request" : { - "url" : "/api/markets/BlydJhMZEg", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BlydJhMZEg\",\"type\":\"markets\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg\"},\"attributes\":{\"number\":13023,\"name\":\"Incentro Market\",\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"shared_secret\":\"d94de9e7d8d57490a5b45e8466144ca6\",\"private\":false,\"disabled_at\":null,\"created_at\":\"2023-03-28T08:12:18.418Z\",\"updated_at\":\"2023-03-28T08:12:18.418Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/merchant\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/price_list\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/subscription_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/tax_calculator\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/customer_group\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/customer_group\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "13", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"a1c464d2b5269fcaad0e3871cafd2822\"", - "X-Request-Id" : "2a5dd374-6b46-4d21-9d75-01300357d23a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21060-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.992415,VS0,VE43", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "6dc4cfee-fdaa-4ea8-8b81-3060898f812a", - "persistent" : true, - "scenarioName" : "scenario-6-api-markets-BlydJhMZEg", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-6-api-markets-BlydJhMZEg-2", - "insertionIndex" : 630 -} \ No newline at end of file diff --git a/mock/mappings/api_markets_blydjhmzeg-78390b15-f2f4-45db-982b-68db146067d2.json b/mock/mappings/api_markets_blydjhmzeg-78390b15-f2f4-45db-982b-68db146067d2.json deleted file mode 100644 index ce07bc9..0000000 --- a/mock/mappings/api_markets_blydjhmzeg-78390b15-f2f4-45db-982b-68db146067d2.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "78390b15-f2f4-45db-982b-68db146067d2", - "name" : "api_markets_blydjhmzeg", - "request" : { - "url" : "/api/markets/BlydJhMZEg", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"external_order_validation_url\":\"https://www.example.com\",\"facebook_pixel_id\":\"pixelchanged\",\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Market Changed\"},\"id\":\"BlydJhMZEg\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"lWlwDSbjRa\",\"type\":\"inventory_models\"}},\"merchant\":{\"data\":{\"id\":\"zbaOBHqYYn\",\"type\":\"merchants\"}},\"price_list\":{\"data\":{\"id\":\"JlOXZCyAXL\",\"type\":\"price_lists\"}}},\"type\":\"markets\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BlydJhMZEg\",\"type\":\"markets\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg\"},\"attributes\":{\"number\":13023,\"name\":\"Incentro Market Changed\",\"facebook_pixel_id\":\"pixelchanged\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"shared_secret\":\"d94de9e7d8d57490a5b45e8466144ca6\",\"private\":false,\"disabled_at\":null,\"created_at\":\"2023-03-28T08:12:18.418Z\",\"updated_at\":\"2023-03-28T08:12:19.616Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/merchant\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/price_list\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/inventory_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/subscription_model\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/tax_calculator\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/customer_group\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/customer_group\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/markets/BlydJhMZEg/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "17", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"486111748e84ae8d13cbd5a97a45fb51\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b0038c90-b8fc-4613-ad95-3604807d32b3", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.567437,VS0,VE68", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "78390b15-f2f4-45db-982b-68db146067d2", - "persistent" : true, - "insertionIndex" : 637 -} \ No newline at end of file diff --git a/mock/mappings/api_markets_blydjhmzeg-d47ec8b3-507c-453e-8bce-a8196a3fbb9c.json b/mock/mappings/api_markets_blydjhmzeg-d47ec8b3-507c-453e-8bce-a8196a3fbb9c.json deleted file mode 100644 index 56ef633..0000000 --- a/mock/mappings/api_markets_blydjhmzeg-d47ec8b3-507c-453e-8bce-a8196a3fbb9c.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "id" : "d47ec8b3-507c-453e-8bce-a8196a3fbb9c", - "name" : "api_markets_blydjhmzeg", - "request" : { - "url" : "/api/markets/BlydJhMZEg", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "30", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json; charset=utf-8", - "Cache-Control" : "no-cache", - "X-Request-Id" : "a971d671-5282-4b9e-b2f5-c4412efe3036", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:20 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21081-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991141.777679,VS0,VE34", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "d47ec8b3-507c-453e-8bce-a8196a3fbb9c", - "persistent" : true, - "scenarioName" : "scenario-6-api-markets-BlydJhMZEg", - "requiredScenarioState" : "scenario-6-api-markets-BlydJhMZEg-4", - "insertionIndex" : 650 -} \ No newline at end of file diff --git a/mock/mappings/api_markets_blydjhmzeg-f0b9a1d5-d675-4b19-b293-9ede309e7bf4.json b/mock/mappings/api_markets_blydjhmzeg-f0b9a1d5-d675-4b19-b293-9ede309e7bf4.json deleted file mode 100644 index 8b636bd..0000000 --- a/mock/mappings/api_markets_blydjhmzeg-f0b9a1d5-d675-4b19-b293-9ede309e7bf4.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "f0b9a1d5-d675-4b19-b293-9ede309e7bf4", - "name" : "api_markets_blydjhmzeg", - "request" : { - "url" : "/api/markets/BlydJhMZEg", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "24", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "02292398-a558-466f-ad5b-2c724a033414", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:20 GMT", - "X-Served-By" : "cache-ams21078-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.283933,VS0,VE204", - "Vary" : "Origin" - } - }, - "uuid" : "f0b9a1d5-d675-4b19-b293-9ede309e7bf4", - "persistent" : true, - "insertionIndex" : 645 -} \ No newline at end of file diff --git a/mock/mappings/api_markets_koajyhqkzj-06aada02-1bd0-40e7-bf89-a1f336a97c79.json b/mock/mappings/api_markets_koajyhqkzj-06aada02-1bd0-40e7-bf89-a1f336a97c79.json deleted file mode 100644 index 25ab405..0000000 --- a/mock/mappings/api_markets_koajyhqkzj-06aada02-1bd0-40e7-bf89-a1f336a97c79.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "06aada02-1bd0-40e7-bf89-a1f336a97c79", - "name" : "api_markets_koajyhqkzj", - "request" : { - "url" : "/api/markets/KoaJYhQkzj", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "20", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "0537d76b-69e7-4dd5-88df-a685cac7ceec", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 01 Feb 2023 09:33:08 GMT", - "X-Served-By" : "cache-ams21053-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1675243989.618561,VS0,VE93", - "Vary" : "Origin" - } - }, - "uuid" : "06aada02-1bd0-40e7-bf89-a1f336a97c79", - "persistent" : true, - "insertionIndex" : 368 -} \ No newline at end of file diff --git a/mock/mappings/api_markets_koajyhqkzj-dbaa185d-640b-4a35-9554-fbda06ed2191.json b/mock/mappings/api_markets_koajyhqkzj-dbaa185d-640b-4a35-9554-fbda06ed2191.json deleted file mode 100644 index f29875f..0000000 --- a/mock/mappings/api_markets_koajyhqkzj-dbaa185d-640b-4a35-9554-fbda06ed2191.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "dbaa185d-640b-4a35-9554-fbda06ed2191", - "name" : "api_markets_koajyhqkzj", - "request" : { - "url" : "/api/markets/KoaJYhQkzj", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 01 Feb 2023 09:33:09 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21024-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1675243989.199027,VS0,VE31" - } - }, - "uuid" : "dbaa185d-640b-4a35-9554-fbda06ed2191", - "persistent" : true, - "scenarioName" : "scenario-5-api-markets-KoaJYhQkzj", - "requiredScenarioState" : "scenario-5-api-markets-KoaJYhQkzj-4", - "insertionIndex" : 373 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants-0feb3097-e9b1-4304-b2f5-e1b62213327b.json b/mock/mappings/api_merchants-0feb3097-e9b1-4304-b2f5-e1b62213327b.json deleted file mode 100644 index 9181db0..0000000 --- a/mock/mappings/api_merchants-0feb3097-e9b1-4304-b2f5-e1b62213327b.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "0feb3097-e9b1-4304-b2f5-e1b62213327b", - "name" : "api_merchants", - "request" : { - "url" : "/api/merchants", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"name\":\"Incentro Merchant\"},\"relationships\":{\"address\":{\"data\":{\"id\":\"WLPLualvpG\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"RbAlRHeVEx\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2022-10-27T08:56:31.463Z\",\"updated_at\":\"2022-10-27T08:56:31.463Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "71", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"88e7d0802b72dc7bc313647fe171fedf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "58a2df85-3481-4f82-93aa-b384b7cdaa04", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:31 GMT", - "X-Served-By" : "cache-ams21036-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860991.398300,VS0,VE80", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "0feb3097-e9b1-4304-b2f5-e1b62213327b", - "persistent" : true, - "insertionIndex" : 69 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants-4956f8ea-adc5-44be-9f5e-956143d88e28.json b/mock/mappings/api_merchants-4956f8ea-adc5-44be-9f5e-956143d88e28.json deleted file mode 100644 index c630224..0000000 --- a/mock/mappings/api_merchants-4956f8ea-adc5-44be-9f5e-956143d88e28.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "4956f8ea-adc5-44be-9f5e-956143d88e28", - "name" : "api_merchants", - "request" : { - "url" : "/api/merchants", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Merchant\"},\"relationships\":{\"address\":{\"data\":{\"id\":\"BExAuMRAKr\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"zbaOBHqYYn\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2023-03-28T08:12:18.241Z\",\"updated_at\":\"2023-03-28T08:12:18.241Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"83234a62907445a1ca9feef3814c355f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "ca790209-2faf-40ff-8433-e379742e9283", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21028-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991138.204485,VS0,VE55", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "4956f8ea-adc5-44be-9f5e-956143d88e28", - "persistent" : true, - "insertionIndex" : 623 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_bbjrlhrggb-41b09d25-51a6-4292-b44d-602d9dae8bfb.json b/mock/mappings/api_merchants_bbjrlhrggb-41b09d25-51a6-4292-b44d-602d9dae8bfb.json deleted file mode 100644 index f7dab29..0000000 --- a/mock/mappings/api_merchants_bbjrlhrggb-41b09d25-51a6-4292-b44d-602d9dae8bfb.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "41b09d25-51a6-4292-b44d-602d9dae8bfb", - "name" : "api_merchants_bbjrlhrggb", - "request" : { - "url" : "/api/merchants/BbjrLHRgGb", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "67", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "c0d7295b-22e4-423e-81ea-b4ece1dc183e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:30 GMT", - "X-Served-By" : "cache-ams21048-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860991.747625,VS0,VE88", - "Vary" : "Origin" - } - }, - "uuid" : "41b09d25-51a6-4292-b44d-602d9dae8bfb", - "persistent" : true, - "insertionIndex" : 65 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_dbdevhkddm-78084daf-481d-4fa4-b2f5-39f51bba0ed3.json b/mock/mappings/api_merchants_dbdevhkddm-78084daf-481d-4fa4-b2f5-39f51bba0ed3.json deleted file mode 100644 index af2e5a8..0000000 --- a/mock/mappings/api_merchants_dbdevhkddm-78084daf-481d-4fa4-b2f5-39f51bba0ed3.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "78084daf-481d-4fa4-b2f5-39f51bba0ed3", - "name" : "api_merchants_dbdevhkddm", - "request" : { - "url" : "/api/merchants/dbdeVHKDDM", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "23", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "fa0e017d-9ee4-449c-bbe9-7fbb9d3f54d2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 01 Feb 2023 09:33:08 GMT", - "X-Served-By" : "cache-ams21050-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1675243989.818221,VS0,VE57", - "Vary" : "Origin" - } - }, - "uuid" : "78084daf-481d-4fa4-b2f5-39f51bba0ed3", - "persistent" : true, - "insertionIndex" : 371 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_rbalrhevex-040cdc45-42ce-4b15-8f4b-1f72d2cad893.json b/mock/mappings/api_merchants_rbalrhevex-040cdc45-42ce-4b15-8f4b-1f72d2cad893.json deleted file mode 100644 index 9957ac7..0000000 --- a/mock/mappings/api_merchants_rbalrhevex-040cdc45-42ce-4b15-8f4b-1f72d2cad893.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "040cdc45-42ce-4b15-8f4b-1f72d2cad893", - "name" : "api_merchants_rbalrhevex", - "request" : { - "url" : "/api/merchants/RbAlRHeVEx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RbAlRHeVEx\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx\"},\"attributes\":{\"name\":\"Incentro Updated Merchant\",\"created_at\":\"2022-10-27T08:56:31.463Z\",\"updated_at\":\"2022-10-27T08:56:32.494Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "78", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b6b7bd7ac12cb0938c4ecc82abd5737f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "e17c499f-d6d7-44ac-a60c-f1969875cf3f", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:32 GMT", - "X-Served-By" : "cache-ams21021-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860993.790632,VS0,VE42", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "040cdc45-42ce-4b15-8f4b-1f72d2cad893", - "persistent" : true, - "scenarioName" : "scenario-12-api-merchants-RbAlRHeVEx", - "requiredScenarioState" : "scenario-12-api-merchants-RbAlRHeVEx-3", - "newScenarioState" : "scenario-12-api-merchants-RbAlRHeVEx-4", - "insertionIndex" : 76 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_rbalrhevex-1cd7f304-3fd7-4719-9657-467df0573826.json b/mock/mappings/api_merchants_rbalrhevex-1cd7f304-3fd7-4719-9657-467df0573826.json deleted file mode 100644 index 7ddf405..0000000 --- a/mock/mappings/api_merchants_rbalrhevex-1cd7f304-3fd7-4719-9657-467df0573826.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "1cd7f304-3fd7-4719-9657-467df0573826", - "name" : "api_merchants_rbalrhevex", - "request" : { - "url" : "/api/merchants/RbAlRHeVEx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RbAlRHeVEx\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2022-10-27T08:56:31.463Z\",\"updated_at\":\"2022-10-27T08:56:31.463Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "75", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"88e7d0802b72dc7bc313647fe171fedf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "81dd68e1-7519-4817-9c50-312d7c0b4564", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:32 GMT", - "X-Served-By" : "cache-ams21050-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860992.172450,VS0,VE78", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "1cd7f304-3fd7-4719-9657-467df0573826", - "persistent" : true, - "scenarioName" : "scenario-12-api-merchants-RbAlRHeVEx", - "requiredScenarioState" : "scenario-12-api-merchants-RbAlRHeVEx-2", - "newScenarioState" : "scenario-12-api-merchants-RbAlRHeVEx-3", - "insertionIndex" : 73 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_rbalrhevex-48096250-fd31-45c4-aac5-f56aa2df872a.json b/mock/mappings/api_merchants_rbalrhevex-48096250-fd31-45c4-aac5-f56aa2df872a.json deleted file mode 100644 index 46093cb..0000000 --- a/mock/mappings/api_merchants_rbalrhevex-48096250-fd31-45c4-aac5-f56aa2df872a.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "48096250-fd31-45c4-aac5-f56aa2df872a", - "name" : "api_merchants_rbalrhevex", - "request" : { - "url" : "/api/merchants/RbAlRHeVEx", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"name\":\"Incentro Updated Merchant\"},\"id\":\"RbAlRHeVEx\",\"relationships\":{\"address\":{\"data\":{\"id\":\"WLPLualvpG\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RbAlRHeVEx\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx\"},\"attributes\":{\"name\":\"Incentro Updated Merchant\",\"created_at\":\"2022-10-27T08:56:31.463Z\",\"updated_at\":\"2022-10-27T08:56:32.494Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "76", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b6b7bd7ac12cb0938c4ecc82abd5737f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b1fff5c2-32ac-49e6-a100-b695b65bc317", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:32 GMT", - "X-Served-By" : "cache-ams21071-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860992.425657,VS0,VE86", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "48096250-fd31-45c4-aac5-f56aa2df872a", - "persistent" : true, - "insertionIndex" : 74 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_rbalrhevex-9d59242a-20a4-457b-9777-996c5c976c2b.json b/mock/mappings/api_merchants_rbalrhevex-9d59242a-20a4-457b-9777-996c5c976c2b.json deleted file mode 100644 index 18a6e35..0000000 --- a/mock/mappings/api_merchants_rbalrhevex-9d59242a-20a4-457b-9777-996c5c976c2b.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "9d59242a-20a4-457b-9777-996c5c976c2b", - "name" : "api_merchants_rbalrhevex", - "request" : { - "url" : "/api/merchants/RbAlRHeVEx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RbAlRHeVEx\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2022-10-27T08:56:31.463Z\",\"updated_at\":\"2022-10-27T08:56:31.463Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/RbAlRHeVEx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "73", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"88e7d0802b72dc7bc313647fe171fedf\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a48c35ca-c1c1-4dad-ba3b-5cde2a4e7050", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:31 GMT", - "X-Served-By" : "cache-ams21083-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860992.806624,VS0,VE81", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "9d59242a-20a4-457b-9777-996c5c976c2b", - "persistent" : true, - "scenarioName" : "scenario-12-api-merchants-RbAlRHeVEx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-12-api-merchants-RbAlRHeVEx-2", - "insertionIndex" : 71 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_rbalrhevex-aea00c4c-6fd7-4e1e-ba0f-d4925798b594.json b/mock/mappings/api_merchants_rbalrhevex-aea00c4c-6fd7-4e1e-ba0f-d4925798b594.json deleted file mode 100644 index 4393f4a..0000000 --- a/mock/mappings/api_merchants_rbalrhevex-aea00c4c-6fd7-4e1e-ba0f-d4925798b594.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "aea00c4c-6fd7-4e1e-ba0f-d4925798b594", - "name" : "api_merchants_rbalrhevex", - "request" : { - "url" : "/api/merchants/RbAlRHeVEx", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "79", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "d8c2230a-2909-4350-90ca-9021e51a073c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:33 GMT", - "X-Served-By" : "cache-ams21033-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860993.006269,VS0,VE79", - "Vary" : "Origin" - } - }, - "uuid" : "aea00c4c-6fd7-4e1e-ba0f-d4925798b594", - "persistent" : true, - "insertionIndex" : 77 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_rbalrhevex-c5430b6a-5f3e-4005-a02e-443ede2e6fd3.json b/mock/mappings/api_merchants_rbalrhevex-c5430b6a-5f3e-4005-a02e-443ede2e6fd3.json deleted file mode 100644 index 2f13c59..0000000 --- a/mock/mappings/api_merchants_rbalrhevex-c5430b6a-5f3e-4005-a02e-443ede2e6fd3.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "c5430b6a-5f3e-4005-a02e-443ede2e6fd3", - "name" : "api_merchants_rbalrhevex", - "request" : { - "url" : "/api/merchants/RbAlRHeVEx", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:33 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21056-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860993.377555,VS0,VE71" - } - }, - "uuid" : "c5430b6a-5f3e-4005-a02e-443ede2e6fd3", - "persistent" : true, - "scenarioName" : "scenario-12-api-merchants-RbAlRHeVEx", - "requiredScenarioState" : "scenario-12-api-merchants-RbAlRHeVEx-4", - "insertionIndex" : 80 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_zbaobhqyyn-3208e015-864d-44c7-911c-493be21b92fd.json b/mock/mappings/api_merchants_zbaobhqyyn-3208e015-864d-44c7-911c-493be21b92fd.json deleted file mode 100644 index 077e8ed..0000000 --- a/mock/mappings/api_merchants_zbaobhqyyn-3208e015-864d-44c7-911c-493be21b92fd.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "3208e015-864d-44c7-911c-493be21b92fd", - "name" : "api_merchants_zbaobhqyyn", - "request" : { - "url" : "/api/merchants/zbaOBHqYYn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"zbaOBHqYYn\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2023-03-28T08:12:18.241Z\",\"updated_at\":\"2023-03-28T08:12:18.241Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "16", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"83234a62907445a1ca9feef3814c355f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3d120ac5-58b0-476b-ae83-927f6048282f", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.301151,VS0,VE40", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "3208e015-864d-44c7-911c-493be21b92fd", - "persistent" : true, - "scenarioName" : "scenario-5-api-merchants-zbaOBHqYYn", - "requiredScenarioState" : "scenario-5-api-merchants-zbaOBHqYYn-2", - "newScenarioState" : "scenario-5-api-merchants-zbaOBHqYYn-3", - "insertionIndex" : 635 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_zbaobhqyyn-669be6ce-657a-4c9c-beef-b250d58a2c2c.json b/mock/mappings/api_merchants_zbaobhqyyn-669be6ce-657a-4c9c-beef-b250d58a2c2c.json deleted file mode 100644 index ef4f71f..0000000 --- a/mock/mappings/api_merchants_zbaobhqyyn-669be6ce-657a-4c9c-beef-b250d58a2c2c.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "id" : "669be6ce-657a-4c9c-beef-b250d58a2c2c", - "name" : "api_merchants_zbaobhqyyn", - "request" : { - "url" : "/api/merchants/zbaOBHqYYn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"zbaOBHqYYn\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2023-03-28T08:12:18.241Z\",\"updated_at\":\"2023-03-28T08:12:18.241Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "22", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"83234a62907445a1ca9feef3814c355f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b28482e0-f609-46d7-b016-83871065fd3b", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "X-Served-By" : "cache-ams21072-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.951664,VS0,VE42", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "669be6ce-657a-4c9c-beef-b250d58a2c2c", - "persistent" : true, - "scenarioName" : "scenario-5-api-merchants-zbaOBHqYYn", - "requiredScenarioState" : "scenario-5-api-merchants-zbaOBHqYYn-3", - "insertionIndex" : 642 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_zbaobhqyyn-737d514f-c481-4fea-aacf-8631af573443.json b/mock/mappings/api_merchants_zbaobhqyyn-737d514f-c481-4fea-aacf-8631af573443.json deleted file mode 100644 index 31189fe..0000000 --- a/mock/mappings/api_merchants_zbaobhqyyn-737d514f-c481-4fea-aacf-8631af573443.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "737d514f-c481-4fea-aacf-8631af573443", - "name" : "api_merchants_zbaobhqyyn", - "request" : { - "url" : "/api/merchants/zbaOBHqYYn", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "28", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "fdf9fd2f-bf06-40b6-b08d-fd694cb1d7f1", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:20 GMT", - "X-Served-By" : "cache-ams21030-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991141.541416,VS0,VE92", - "Vary" : "Origin" - } - }, - "uuid" : "737d514f-c481-4fea-aacf-8631af573443", - "persistent" : true, - "insertionIndex" : 648 -} \ No newline at end of file diff --git a/mock/mappings/api_merchants_zbaobhqyyn-acd49536-c91a-4e6b-a8ad-89f051a6571f.json b/mock/mappings/api_merchants_zbaobhqyyn-acd49536-c91a-4e6b-a8ad-89f051a6571f.json deleted file mode 100644 index fc6cefa..0000000 --- a/mock/mappings/api_merchants_zbaobhqyyn-acd49536-c91a-4e6b-a8ad-89f051a6571f.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "acd49536-c91a-4e6b-a8ad-89f051a6571f", - "name" : "api_merchants_zbaobhqyyn", - "request" : { - "url" : "/api/merchants/zbaOBHqYYn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"zbaOBHqYYn\",\"type\":\"merchants\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2023-03-28T08:12:18.241Z\",\"updated_at\":\"2023-03-28T08:12:18.241Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/address\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/merchants/zbaOBHqYYn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "12", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"83234a62907445a1ca9feef3814c355f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "f5cb7f38-3637-4ff7-82af-4c8e24e667b5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.853906,VS0,VE79", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "acd49536-c91a-4e6b-a8ad-89f051a6571f", - "persistent" : true, - "scenarioName" : "scenario-5-api-merchants-zbaOBHqYYn", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-5-api-merchants-zbaOBHqYYn-2", - "insertionIndex" : 629 -} \ No newline at end of file diff --git a/mock/mappings/api_payment_methods-58acae4f-e109-4141-a4ba-1530c14ad278.json b/mock/mappings/api_payment_methods-58acae4f-e109-4141-a4ba-1530c14ad278.json deleted file mode 100644 index 8d8ce16..0000000 --- a/mock/mappings/api_payment_methods-58acae4f-e109-4141-a4ba-1530c14ad278.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "58acae4f-e109-4141-a4ba-1530c14ad278", - "name" : "api_payment_methods", - "request" : { - "url" : "/api/payment_methods", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"moto\":false,\"payment_source_type\":\"AdyenPayment\",\"price_amount_cents\":0},\"relationships\":{\"payment_gateway\":{\"data\":{\"id\":\"pvDXLsPpOv\",\"type\":\"payment_gateways\"}}},\"type\":\"payment_methods\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"DMeydsgOoM\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM\"},\"attributes\":{\"payment_source_type\":\"adyen_payments\",\"name\":\"Adyen Payment\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_capture\":false,\"disabled_at\":null,\"price_amount_cents\":0,\"price_amount_float\":0.0,\"formatted_price_amount\":\"€0,00\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"created_at\":\"2023-03-21T16:37:04.100Z\",\"updated_at\":\"2023-03-21T16:37:04.100Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/payment_gateway\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "17", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"2d9dc9be281d71da03a08f1d97246ea4\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1c8704ad-3b96-4d32-b748-3d376f925640", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:04 GMT", - "X-Served-By" : "cache-ams21045-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416624.067514,VS0,VE48", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "58acae4f-e109-4141-a4ba-1530c14ad278", - "persistent" : true, - "insertionIndex" : 1551 -} \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_dmeydsgoom-8f4df94f-e7d6-4f95-8903-cd794cebff61.json b/mock/mappings/api_payment_methods_dmeydsgoom-8f4df94f-e7d6-4f95-8903-cd794cebff61.json deleted file mode 100644 index 691c4b3..0000000 --- a/mock/mappings/api_payment_methods_dmeydsgoom-8f4df94f-e7d6-4f95-8903-cd794cebff61.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "8f4df94f-e7d6-4f95-8903-cd794cebff61", - "name" : "api_payment_methods_dmeydsgoom", - "request" : { - "url" : "/api/payment_methods/DMeydsgOoM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DMeydsgOoM\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM\"},\"attributes\":{\"payment_source_type\":\"adyen_payments\",\"name\":\"Adyen Payment\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_capture\":false,\"disabled_at\":null,\"price_amount_cents\":0,\"price_amount_float\":0.0,\"formatted_price_amount\":\"€0,00\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"created_at\":\"2023-03-21T16:37:04.100Z\",\"updated_at\":\"2023-03-21T16:37:04.100Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/payment_gateway\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "19", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"2d9dc9be281d71da03a08f1d97246ea4\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "fbf1d0bd-dfac-4843-a924-600a290428d0", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:04 GMT", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416625.555607,VS0,VE38", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "8f4df94f-e7d6-4f95-8903-cd794cebff61", - "persistent" : true, - "scenarioName" : "scenario-2-api-payment_methods-DMeydsgOoM", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-2-api-payment_methods-DMeydsgOoM-2", - "insertionIndex" : 1553 -} \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_dmeydsgoom-924d621f-a43e-443f-95f8-b901ac84fc3b.json b/mock/mappings/api_payment_methods_dmeydsgoom-924d621f-a43e-443f-95f8-b901ac84fc3b.json deleted file mode 100644 index 44c3240..0000000 --- a/mock/mappings/api_payment_methods_dmeydsgoom-924d621f-a43e-443f-95f8-b901ac84fc3b.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "924d621f-a43e-443f-95f8-b901ac84fc3b", - "name" : "api_payment_methods_dmeydsgoom", - "request" : { - "url" : "/api/payment_methods/DMeydsgOoM", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "25", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "8e8d7358-c035-47d7-b7bc-5da7b8c34d96", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:06 GMT", - "X-Served-By" : "cache-ams21054-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416626.109292,VS0,VE51", - "Vary" : "Origin" - } - }, - "uuid" : "924d621f-a43e-443f-95f8-b901ac84fc3b", - "persistent" : true, - "insertionIndex" : 1559 -} \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_dmeydsgoom-b831936c-d60a-41c3-95f9-42599acbad80.json b/mock/mappings/api_payment_methods_dmeydsgoom-b831936c-d60a-41c3-95f9-42599acbad80.json deleted file mode 100644 index 2c5aa4c..0000000 --- a/mock/mappings/api_payment_methods_dmeydsgoom-b831936c-d60a-41c3-95f9-42599acbad80.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "b831936c-d60a-41c3-95f9-42599acbad80", - "name" : "api_payment_methods_dmeydsgoom", - "request" : { - "url" : "/api/payment_methods/DMeydsgOoM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DMeydsgOoM\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM\"},\"attributes\":{\"payment_source_type\":\"adyen_payments\",\"name\":\"Adyen Payment\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_capture\":false,\"disabled_at\":null,\"price_amount_cents\":0,\"price_amount_float\":0.0,\"formatted_price_amount\":\"€0,00\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"created_at\":\"2023-03-21T16:37:04.100Z\",\"updated_at\":\"2023-03-21T16:37:04.100Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/payment_gateway\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"2d9dc9be281d71da03a08f1d97246ea4\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "286c7a32-1621-4f5f-a0d2-a42461fa127c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:05 GMT", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416625.007220,VS0,VE86", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "b831936c-d60a-41c3-95f9-42599acbad80", - "persistent" : true, - "scenarioName" : "scenario-2-api-payment_methods-DMeydsgOoM", - "requiredScenarioState" : "scenario-2-api-payment_methods-DMeydsgOoM-2", - "newScenarioState" : "scenario-2-api-payment_methods-DMeydsgOoM-3", - "insertionIndex" : 1555 -} \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_dmeydsgoom-c33407f3-a1aa-452b-a019-1d944db13b73.json b/mock/mappings/api_payment_methods_dmeydsgoom-c33407f3-a1aa-452b-a019-1d944db13b73.json deleted file mode 100644 index dfa6d70..0000000 --- a/mock/mappings/api_payment_methods_dmeydsgoom-c33407f3-a1aa-452b-a019-1d944db13b73.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "c33407f3-a1aa-452b-a019-1d944db13b73", - "name" : "api_payment_methods_dmeydsgoom", - "request" : { - "url" : "/api/payment_methods/DMeydsgOoM", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"moto\":false,\"payment_source_type\":\"AdyenPayment\"},\"id\":\"DMeydsgOoM\",\"relationships\":{\"payment_gateway\":{\"data\":{\"id\":\"pvDXLsPpOv\",\"type\":\"payment_gateways\"}}},\"type\":\"payment_methods\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DMeydsgOoM\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM\"},\"attributes\":{\"payment_source_type\":\"adyen_payments\",\"name\":\"Adyen Payment\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_capture\":false,\"disabled_at\":null,\"price_amount_cents\":0,\"price_amount_float\":0.0,\"formatted_price_amount\":\"€0,00\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"created_at\":\"2023-03-21T16:37:04.100Z\",\"updated_at\":\"2023-03-21T16:37:05.416Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/payment_gateway\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "22", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b72c5b0499e239993b608262f0ef458f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "9beb2de2-e12b-4ee7-b33c-a60458c3366b", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:05 GMT", - "X-Served-By" : "cache-ams21075-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416625.336061,VS0,VE96", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c33407f3-a1aa-452b-a019-1d944db13b73", - "persistent" : true, - "insertionIndex" : 1556 -} \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_dmeydsgoom-c38b230b-7211-49a4-8618-6345e26b846a.json b/mock/mappings/api_payment_methods_dmeydsgoom-c38b230b-7211-49a4-8618-6345e26b846a.json deleted file mode 100644 index 18defb4..0000000 --- a/mock/mappings/api_payment_methods_dmeydsgoom-c38b230b-7211-49a4-8618-6345e26b846a.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "id" : "c38b230b-7211-49a4-8618-6345e26b846a", - "name" : "api_payment_methods_dmeydsgoom", - "request" : { - "url" : "/api/payment_methods/DMeydsgOoM", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "28", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json; charset=utf-8", - "Cache-Control" : "no-cache", - "X-Request-Id" : "762e7e44-69db-40d4-b7fb-cfc9b2543f0f", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:06 GMT", - "X-Served-By" : "cache-ams21048-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416627.611501,VS0,VE32", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c38b230b-7211-49a4-8618-6345e26b846a", - "persistent" : true, - "scenarioName" : "scenario-2-api-payment_methods-DMeydsgOoM", - "requiredScenarioState" : "scenario-2-api-payment_methods-DMeydsgOoM-4", - "insertionIndex" : 1562 -} \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_dmeydsgoom-df202dc1-d340-4e78-9262-73fec3f45ead.json b/mock/mappings/api_payment_methods_dmeydsgoom-df202dc1-d340-4e78-9262-73fec3f45ead.json deleted file mode 100644 index 98c898d..0000000 --- a/mock/mappings/api_payment_methods_dmeydsgoom-df202dc1-d340-4e78-9262-73fec3f45ead.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "df202dc1-d340-4e78-9262-73fec3f45ead", - "name" : "api_payment_methods_dmeydsgoom", - "request" : { - "url" : "/api/payment_methods/DMeydsgOoM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DMeydsgOoM\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM\"},\"attributes\":{\"payment_source_type\":\"adyen_payments\",\"name\":\"Adyen Payment\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_capture\":false,\"disabled_at\":null,\"price_amount_cents\":0,\"price_amount_float\":0.0,\"formatted_price_amount\":\"€0,00\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"created_at\":\"2023-03-21T16:37:04.100Z\",\"updated_at\":\"2023-03-21T16:37:05.416Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/payment_gateway\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/payment_methods/DMeydsgOoM/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "24", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b72c5b0499e239993b608262f0ef458f\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a9416c7a-1b38-4d79-9db9-3f211f6fe830", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 21 Mar 2023 16:37:05 GMT", - "X-Served-By" : "cache-ams21073-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679416626.854438,VS0,VE40", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "df202dc1-d340-4e78-9262-73fec3f45ead", - "persistent" : true, - "scenarioName" : "scenario-2-api-payment_methods-DMeydsgOoM", - "requiredScenarioState" : "scenario-2-api-payment_methods-DMeydsgOoM-3", - "newScenarioState" : "scenario-2-api-payment_methods-DMeydsgOoM-4", - "insertionIndex" : 1558 -} \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways-dfe48b11-07d9-436a-9b61-489f81014d21.json b/mock/mappings/api_paypal_gateways-dfe48b11-07d9-436a-9b61-489f81014d21.json deleted file mode 100644 index 877733c..0000000 --- a/mock/mappings/api_paypal_gateways-dfe48b11-07d9-436a-9b61-489f81014d21.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "dfe48b11-07d9-436a-9b61-489f81014d21", - "name" : "api_paypal_gateways", - "request" : { - "url" : "/api/paypal_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"client_id\":\"xxxx-yyyy-zzzz\",\"client_secret\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"},\"name\":\"Incentro Paypal Gateway\"},\"type\":\"paypal_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"BjZLVsAmbx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2023-01-11T14:29:14.657Z\",\"updated_at\":\"2023-01-11T14:29:14.657Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/payment_methods\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/paypal_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "35", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c5f497a32ef4bb4a7a832b037fc1aa52\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "763f7c89-544b-4b0f-a2e5-f8bf98c29ec7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:29:14 GMT", - "X-Served-By" : "cache-ams21056-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447355.588552,VS0,VE85", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "dfe48b11-07d9-436a-9b61-489f81014d21", - "persistent" : true, - "insertionIndex" : 906 -} \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_bjzlvsambx-04d73d89-d2ea-4e1f-b605-7f16a5d0e6be.json b/mock/mappings/api_paypal_gateways_bjzlvsambx-04d73d89-d2ea-4e1f-b605-7f16a5d0e6be.json deleted file mode 100644 index 6734ab1..0000000 --- a/mock/mappings/api_paypal_gateways_bjzlvsambx-04d73d89-d2ea-4e1f-b605-7f16a5d0e6be.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "04d73d89-d2ea-4e1f-b605-7f16a5d0e6be", - "name" : "api_paypal_gateways_bjzlvsambx", - "request" : { - "url" : "/api/paypal_gateways/BjZLVsAmbx", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "40", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "f43ebbbe-8e5c-4336-8f75-73a89c023eb4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:29:16 GMT", - "X-Served-By" : "cache-ams21026-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447356.065147,VS0,VE54", - "Vary" : "Origin" - } - }, - "uuid" : "04d73d89-d2ea-4e1f-b605-7f16a5d0e6be", - "persistent" : true, - "insertionIndex" : 911 -} \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_bjzlvsambx-252c4cfd-15da-46ce-8403-1169205c0384.json b/mock/mappings/api_paypal_gateways_bjzlvsambx-252c4cfd-15da-46ce-8403-1169205c0384.json deleted file mode 100644 index 172a59e..0000000 --- a/mock/mappings/api_paypal_gateways_bjzlvsambx-252c4cfd-15da-46ce-8403-1169205c0384.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "252c4cfd-15da-46ce-8403-1169205c0384", - "name" : "api_paypal_gateways_bjzlvsambx", - "request" : { - "url" : "/api/paypal_gateways/BjZLVsAmbx", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"client_id\":\"xxxx-yyyy-zzzz\",\"client_secret\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"},\"name\":\"Incentro Paypal Gateway Changed\"},\"id\":\"BjZLVsAmbx\",\"type\":\"paypal_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BjZLVsAmbx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway Changed\",\"created_at\":\"2023-01-11T14:29:14.657Z\",\"updated_at\":\"2023-01-11T14:29:15.563Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/payment_methods\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/paypal_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "38", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"7075b5c104d39e86be1452f5c459835d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "fab45807-2aea-4c53-bd1f-59790645175d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:29:15 GMT", - "X-Served-By" : "cache-ams21059-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447355.489345,VS0,VE87", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "252c4cfd-15da-46ce-8403-1169205c0384", - "persistent" : true, - "insertionIndex" : 909 -} \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_bjzlvsambx-7681a57a-b32a-4131-9429-db47b5d5a614.json b/mock/mappings/api_paypal_gateways_bjzlvsambx-7681a57a-b32a-4131-9429-db47b5d5a614.json deleted file mode 100644 index 7c808ba..0000000 --- a/mock/mappings/api_paypal_gateways_bjzlvsambx-7681a57a-b32a-4131-9429-db47b5d5a614.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "7681a57a-b32a-4131-9429-db47b5d5a614", - "name" : "api_paypal_gateways_bjzlvsambx", - "request" : { - "url" : "/api/paypal_gateways/BjZLVsAmbx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BjZLVsAmbx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2023-01-11T14:29:14.657Z\",\"updated_at\":\"2023-01-11T14:29:14.657Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/payment_methods\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/paypal_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "37", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c5f497a32ef4bb4a7a832b037fc1aa52\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a75b4a0d-c585-492e-a7b0-e77c6fb55cd1", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:29:15 GMT", - "X-Served-By" : "cache-ams21064-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447355.227943,VS0,VE56", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "7681a57a-b32a-4131-9429-db47b5d5a614", - "persistent" : true, - "scenarioName" : "scenario-1-api-paypal_gateways-BjZLVsAmbx", - "requiredScenarioState" : "scenario-1-api-paypal_gateways-BjZLVsAmbx-2", - "newScenarioState" : "scenario-1-api-paypal_gateways-BjZLVsAmbx-3", - "insertionIndex" : 908 -} \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_bjzlvsambx-8512ea0d-060d-4f45-a4e0-a1117fe9e412.json b/mock/mappings/api_paypal_gateways_bjzlvsambx-8512ea0d-060d-4f45-a4e0-a1117fe9e412.json deleted file mode 100644 index 251a452..0000000 --- a/mock/mappings/api_paypal_gateways_bjzlvsambx-8512ea0d-060d-4f45-a4e0-a1117fe9e412.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "8512ea0d-060d-4f45-a4e0-a1117fe9e412", - "name" : "api_paypal_gateways_bjzlvsambx", - "request" : { - "url" : "/api/paypal_gateways/BjZLVsAmbx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BjZLVsAmbx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2023-01-11T14:29:14.657Z\",\"updated_at\":\"2023-01-11T14:29:14.657Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/payment_methods\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/paypal_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "36", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c5f497a32ef4bb4a7a832b037fc1aa52\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d6c6df54-30f2-4316-b16f-808cf8dad78e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:29:15 GMT", - "X-Served-By" : "cache-ams21072-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447355.961539,VS0,VE77", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "8512ea0d-060d-4f45-a4e0-a1117fe9e412", - "persistent" : true, - "scenarioName" : "scenario-1-api-paypal_gateways-BjZLVsAmbx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-paypal_gateways-BjZLVsAmbx-2", - "insertionIndex" : 907 -} \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_bjzlvsambx-dcef915b-9a82-4820-bb8b-e90db2d7888d.json b/mock/mappings/api_paypal_gateways_bjzlvsambx-dcef915b-9a82-4820-bb8b-e90db2d7888d.json deleted file mode 100644 index 0a0050f..0000000 --- a/mock/mappings/api_paypal_gateways_bjzlvsambx-dcef915b-9a82-4820-bb8b-e90db2d7888d.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "dcef915b-9a82-4820-bb8b-e90db2d7888d", - "name" : "api_paypal_gateways_bjzlvsambx", - "request" : { - "url" : "/api/paypal_gateways/BjZLVsAmbx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BjZLVsAmbx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway Changed\",\"created_at\":\"2023-01-11T14:29:14.657Z\",\"updated_at\":\"2023-01-11T14:29:15.563Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/payment_methods\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/relationships/paypal_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/paypal_gateways/BjZLVsAmbx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "39", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"7075b5c104d39e86be1452f5c459835d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "14572991-5da0-449b-9399-6e84588c7619", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:29:15 GMT", - "X-Served-By" : "cache-ams21065-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447356.813778,VS0,VE37", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "dcef915b-9a82-4820-bb8b-e90db2d7888d", - "persistent" : true, - "scenarioName" : "scenario-1-api-paypal_gateways-BjZLVsAmbx", - "requiredScenarioState" : "scenario-1-api-paypal_gateways-BjZLVsAmbx-3", - "newScenarioState" : "scenario-1-api-paypal_gateways-BjZLVsAmbx-4", - "insertionIndex" : 910 -} \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_bjzlvsambx-edf07213-b3c4-4e75-8ad9-a64fa22e1854.json b/mock/mappings/api_paypal_gateways_bjzlvsambx-edf07213-b3c4-4e75-8ad9-a64fa22e1854.json deleted file mode 100644 index df24845..0000000 --- a/mock/mappings/api_paypal_gateways_bjzlvsambx-edf07213-b3c4-4e75-8ad9-a64fa22e1854.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "edf07213-b3c4-4e75-8ad9-a64fa22e1854", - "name" : "api_paypal_gateways_bjzlvsambx", - "request" : { - "url" : "/api/paypal_gateways/BjZLVsAmbx", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 11 Jan 2023 14:29:16 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21060-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673447356.230160,VS0,VE39" - } - }, - "uuid" : "edf07213-b3c4-4e75-8ad9-a64fa22e1854", - "persistent" : true, - "scenarioName" : "scenario-1-api-paypal_gateways-BjZLVsAmbx", - "requiredScenarioState" : "scenario-1-api-paypal_gateways-BjZLVsAmbx-4", - "insertionIndex" : 912 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists-0263a08b-a36c-41cd-9de8-266fbf5bc579.json b/mock/mappings/api_price_lists-0263a08b-a36c-41cd-9de8-266fbf5bc579.json deleted file mode 100644 index a179c05..0000000 --- a/mock/mappings/api_price_lists-0263a08b-a36c-41cd-9de8-266fbf5bc579.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "0263a08b-a36c-41cd-9de8-266fbf5bc579", - "name" : "api_price_lists", - "request" : { - "url" : "/api/price_lists", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"incentro price list\",\"tax_included\":true},\"type\":\"price_lists\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"JlOXZCyAXL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL\"},\"attributes\":{\"name\":\"incentro price list\",\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2023-03-28T08:12:18.124Z\",\"updated_at\":\"2023-03-28T08:12:18.124Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"845ba3081c1b5be3baac1bee60dfab49\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "e7000c7b-142c-4f34-9d73-2efdaa1d075f", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "X-Served-By" : "cache-ams21067-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991138.061024,VS0,VE80", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "0263a08b-a36c-41cd-9de8-266fbf5bc579", - "persistent" : true, - "insertionIndex" : 621 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists-39857f59-85e3-4c1e-8d6c-06f6121fdede.json b/mock/mappings/api_price_lists-39857f59-85e3-4c1e-8d6c-06f6121fdede.json deleted file mode 100644 index 8b8bcad..0000000 --- a/mock/mappings/api_price_lists-39857f59-85e3-4c1e-8d6c-06f6121fdede.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "39857f59-85e3-4c1e-8d6c-06f6121fdede", - "name" : "api_price_lists", - "request" : { - "url" : "/api/price_lists", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"},\"name\":\"incentro price list\",\"tax_included\":true},\"type\":\"price_lists\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"qlKxECdexL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL\"},\"attributes\":{\"name\":\"incentro price list\",\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2022-10-27T08:56:33.683Z\",\"updated_at\":\"2022-10-27T08:56:33.683Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "83", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"f8c5193bd8ecc17f66e179b3223b3278\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "62adece3-5bb5-4802-a0a8-7aeae5ee529c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:33 GMT", - "X-Served-By" : "cache-ams21058-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860994.657177,VS0,VE42", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "39857f59-85e3-4c1e-8d6c-06f6121fdede", - "persistent" : true, - "insertionIndex" : 81 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_akebycovrl-0a14812d-940b-4999-a507-e9ddbc1f76a0.json b/mock/mappings/api_price_lists_akebycovrl-0a14812d-940b-4999-a507-e9ddbc1f76a0.json deleted file mode 100644 index 032a546..0000000 --- a/mock/mappings/api_price_lists_akebycovrl-0a14812d-940b-4999-a507-e9ddbc1f76a0.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "0a14812d-940b-4999-a507-e9ddbc1f76a0", - "name" : "api_price_lists_akebycovrl", - "request" : { - "url" : "/api/price_lists/AkebyCovrl", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "b0f0beb2-51c6-4f3c-9ead-fb1f808c0b10", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 01 Feb 2023 09:33:08 GMT", - "X-Served-By" : "cache-ams21027-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1675243989.810068,VS0,VE45", - "Vary" : "Origin" - } - }, - "uuid" : "0a14812d-940b-4999-a507-e9ddbc1f76a0", - "persistent" : true, - "insertionIndex" : 369 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_jloxzcyaxl-20040aeb-bd2c-4c30-aef0-992a97d2b0e1.json b/mock/mappings/api_price_lists_jloxzcyaxl-20040aeb-bd2c-4c30-aef0-992a97d2b0e1.json deleted file mode 100644 index 1f78900..0000000 --- a/mock/mappings/api_price_lists_jloxzcyaxl-20040aeb-bd2c-4c30-aef0-992a97d2b0e1.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "20040aeb-bd2c-4c30-aef0-992a97d2b0e1", - "name" : "api_price_lists_jloxzcyaxl", - "request" : { - "url" : "/api/price_lists/JlOXZCyAXL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JlOXZCyAXL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL\"},\"attributes\":{\"name\":\"incentro price list\",\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2023-03-28T08:12:18.124Z\",\"updated_at\":\"2023-03-28T08:12:18.124Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "8", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"845ba3081c1b5be3baac1bee60dfab49\"", - "X-Request-Id" : "3f10afc9-0ff0-4e43-b855-37b2d556ac77", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:18 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21034-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991139.691086,VS0,VE80", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "20040aeb-bd2c-4c30-aef0-992a97d2b0e1", - "persistent" : true, - "scenarioName" : "scenario-1-api-price_lists-JlOXZCyAXL", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-price_lists-JlOXZCyAXL-2", - "insertionIndex" : 625 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_jloxzcyaxl-75e6b904-dc0a-4aa0-87e1-9440407bdabc.json b/mock/mappings/api_price_lists_jloxzcyaxl-75e6b904-dc0a-4aa0-87e1-9440407bdabc.json deleted file mode 100644 index 2b9ad32..0000000 --- a/mock/mappings/api_price_lists_jloxzcyaxl-75e6b904-dc0a-4aa0-87e1-9440407bdabc.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "75e6b904-dc0a-4aa0-87e1-9440407bdabc", - "name" : "api_price_lists_jloxzcyaxl", - "request" : { - "url" : "/api/price_lists/JlOXZCyAXL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JlOXZCyAXL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL\"},\"attributes\":{\"name\":\"incentro price list\",\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2023-03-28T08:12:18.124Z\",\"updated_at\":\"2023-03-28T08:12:18.124Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "20", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"845ba3081c1b5be3baac1bee60dfab49\"", - "X-Request-Id" : "f37ce7fe-48cd-4ec4-9f89-45ee40dca8dd", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21051-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991140.820258,VS0,VE80", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "75e6b904-dc0a-4aa0-87e1-9440407bdabc", - "persistent" : true, - "scenarioName" : "scenario-1-api-price_lists-JlOXZCyAXL", - "requiredScenarioState" : "scenario-1-api-price_lists-JlOXZCyAXL-3", - "insertionIndex" : 640 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_jloxzcyaxl-b2e705e8-30de-4395-8251-60e546bcedf9.json b/mock/mappings/api_price_lists_jloxzcyaxl-b2e705e8-30de-4395-8251-60e546bcedf9.json deleted file mode 100644 index 3bba0cd..0000000 --- a/mock/mappings/api_price_lists_jloxzcyaxl-b2e705e8-30de-4395-8251-60e546bcedf9.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "b2e705e8-30de-4395-8251-60e546bcedf9", - "name" : "api_price_lists_jloxzcyaxl", - "request" : { - "url" : "/api/price_lists/JlOXZCyAXL", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "26", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "ef7384cf-8e6e-4025-85f5-2a6d5442a50d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:20 GMT", - "X-Served-By" : "cache-ams21026-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1679991141.543970,VS0,VE52", - "Vary" : "Origin" - } - }, - "uuid" : "b2e705e8-30de-4395-8251-60e546bcedf9", - "persistent" : true, - "insertionIndex" : 646 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_jloxzcyaxl-c9cbbd51-97d2-48db-820b-a02acb1f8d9f.json b/mock/mappings/api_price_lists_jloxzcyaxl-c9cbbd51-97d2-48db-820b-a02acb1f8d9f.json deleted file mode 100644 index da0e729..0000000 --- a/mock/mappings/api_price_lists_jloxzcyaxl-c9cbbd51-97d2-48db-820b-a02acb1f8d9f.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "c9cbbd51-97d2-48db-820b-a02acb1f8d9f", - "name" : "api_price_lists_jloxzcyaxl", - "request" : { - "url" : "/api/price_lists/JlOXZCyAXL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JlOXZCyAXL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL\"},\"attributes\":{\"name\":\"incentro price list\",\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2023-03-28T08:12:18.124Z\",\"updated_at\":\"2023-03-28T08:12:18.124Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/JlOXZCyAXL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "8", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"845ba3081c1b5be3baac1bee60dfab49\"", - "X-Request-Id" : "3f10afc9-0ff0-4e43-b855-37b2d556ac77", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Tue, 28 Mar 2023 08:12:19 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1679991139.179189,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "c9cbbd51-97d2-48db-820b-a02acb1f8d9f", - "persistent" : true, - "scenarioName" : "scenario-1-api-price_lists-JlOXZCyAXL", - "requiredScenarioState" : "scenario-1-api-price_lists-JlOXZCyAXL-2", - "newScenarioState" : "scenario-1-api-price_lists-JlOXZCyAXL-3", - "insertionIndex" : 631 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_qlkxecdexl-0b81927d-d20c-4b6e-95fd-4ecd283ca9f5.json b/mock/mappings/api_price_lists_qlkxecdexl-0b81927d-d20c-4b6e-95fd-4ecd283ca9f5.json deleted file mode 100644 index 123fb09..0000000 --- a/mock/mappings/api_price_lists_qlkxecdexl-0b81927d-d20c-4b6e-95fd-4ecd283ca9f5.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "0b81927d-d20c-4b6e-95fd-4ecd283ca9f5", - "name" : "api_price_lists_qlkxecdexl", - "request" : { - "url" : "/api/price_lists/qlKxECdexL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qlKxECdexL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL\"},\"attributes\":{\"name\":\"incentro price list\",\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2022-10-27T08:56:33.683Z\",\"updated_at\":\"2022-10-27T08:56:33.683Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "84", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"f8c5193bd8ecc17f66e179b3223b3278\"", - "X-Request-Id" : "e29dbb8c-af49-4007-a341-dfd023088b70", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:34 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1666860994.044515,VS0,VE2", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "0b81927d-d20c-4b6e-95fd-4ecd283ca9f5", - "persistent" : true, - "scenarioName" : "scenario-13-api-price_lists-qlKxECdexL", - "requiredScenarioState" : "scenario-13-api-price_lists-qlKxECdexL-2", - "newScenarioState" : "scenario-13-api-price_lists-qlKxECdexL-3", - "insertionIndex" : 83 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_qlkxecdexl-3979ebb4-0d20-4b11-9960-0c4516ad1584.json b/mock/mappings/api_price_lists_qlkxecdexl-3979ebb4-0d20-4b11-9960-0c4516ad1584.json deleted file mode 100644 index 37187f4..0000000 --- a/mock/mappings/api_price_lists_qlkxecdexl-3979ebb4-0d20-4b11-9960-0c4516ad1584.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "3979ebb4-0d20-4b11-9960-0c4516ad1584", - "name" : "api_price_lists_qlkxecdexl", - "request" : { - "url" : "/api/price_lists/qlKxECdexL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qlKxECdexL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL\"},\"attributes\":{\"name\":\"incentro price list\",\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2022-10-27T08:56:33.683Z\",\"updated_at\":\"2022-10-27T08:56:33.683Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "84", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"f8c5193bd8ecc17f66e179b3223b3278\"", - "X-Request-Id" : "e29dbb8c-af49-4007-a341-dfd023088b70", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:33 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21047-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860994.862742,VS0,VE40", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "3979ebb4-0d20-4b11-9960-0c4516ad1584", - "persistent" : true, - "scenarioName" : "scenario-13-api-price_lists-qlKxECdexL", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-13-api-price_lists-qlKxECdexL-2", - "insertionIndex" : 82 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_qlkxecdexl-5244886e-c186-403d-84c0-9fc3a768f98b.json b/mock/mappings/api_price_lists_qlkxecdexl-5244886e-c186-403d-84c0-9fc3a768f98b.json deleted file mode 100644 index 648ccc5..0000000 --- a/mock/mappings/api_price_lists_qlkxecdexl-5244886e-c186-403d-84c0-9fc3a768f98b.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "5244886e-c186-403d-84c0-9fc3a768f98b", - "name" : "api_price_lists_qlkxecdexl", - "request" : { - "url" : "/api/price_lists/qlKxECdexL", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "87", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "f8e47edd-8b3e-4f2b-9c6c-815842005b32", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:34 GMT", - "X-Served-By" : "cache-ams21070-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860995.649169,VS0,VE49", - "Vary" : "Origin" - } - }, - "uuid" : "5244886e-c186-403d-84c0-9fc3a768f98b", - "persistent" : true, - "insertionIndex" : 86 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_qlkxecdexl-6e6dc866-0815-4de7-8294-b33c65f5ced4.json b/mock/mappings/api_price_lists_qlkxecdexl-6e6dc866-0815-4de7-8294-b33c65f5ced4.json deleted file mode 100644 index 8766bda..0000000 --- a/mock/mappings/api_price_lists_qlkxecdexl-6e6dc866-0815-4de7-8294-b33c65f5ced4.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "6e6dc866-0815-4de7-8294-b33c65f5ced4", - "name" : "api_price_lists_qlkxecdexl", - "request" : { - "url" : "/api/price_lists/qlKxECdexL", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"CHF\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"},\"name\":\"incentro updated price list\",\"tax_included\":true},\"id\":\"qlKxECdexL\",\"type\":\"price_lists\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qlKxECdexL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL\"},\"attributes\":{\"name\":\"incentro updated price list\",\"currency_code\":\"CHF\",\"tax_included\":true,\"created_at\":\"2022-10-27T08:56:33.683Z\",\"updated_at\":\"2022-10-27T08:56:34.261Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "85", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"48b841639c04249f3fe06c94381ad92a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "6bae7d7f-b72f-4169-87ba-f105d3fd0121", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:34 GMT", - "X-Served-By" : "cache-ams21027-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860994.193133,VS0,VE90", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "6e6dc866-0815-4de7-8294-b33c65f5ced4", - "persistent" : true, - "insertionIndex" : 84 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_qlkxecdexl-6f568bde-b7c3-4878-8d1f-73ba6523558e.json b/mock/mappings/api_price_lists_qlkxecdexl-6f568bde-b7c3-4878-8d1f-73ba6523558e.json deleted file mode 100644 index b9fbf53..0000000 --- a/mock/mappings/api_price_lists_qlkxecdexl-6f568bde-b7c3-4878-8d1f-73ba6523558e.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "6f568bde-b7c3-4878-8d1f-73ba6523558e", - "name" : "api_price_lists_qlkxecdexl", - "request" : { - "url" : "/api/price_lists/qlKxECdexL", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qlKxECdexL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL\"},\"attributes\":{\"name\":\"incentro updated price list\",\"currency_code\":\"CHF\",\"tax_included\":true,\"created_at\":\"2022-10-27T08:56:33.683Z\",\"updated_at\":\"2022-10-27T08:56:34.261Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/prices\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/prices\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/price_lists/qlKxECdexL/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "86", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"48b841639c04249f3fe06c94381ad92a\"", - "X-Request-Id" : "9425d61b-539a-480e-80a6-38d1ec7aa540", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:34 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21052-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860994.446685,VS0,VE39", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "6f568bde-b7c3-4878-8d1f-73ba6523558e", - "persistent" : true, - "scenarioName" : "scenario-13-api-price_lists-qlKxECdexL", - "requiredScenarioState" : "scenario-13-api-price_lists-qlKxECdexL-3", - "newScenarioState" : "scenario-13-api-price_lists-qlKxECdexL-4", - "insertionIndex" : 85 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_qlkxecdexl-c1d30110-8c63-46cc-bb93-5a154d65633c.json b/mock/mappings/api_price_lists_qlkxecdexl-c1d30110-8c63-46cc-bb93-5a154d65633c.json deleted file mode 100644 index bfd3d08..0000000 --- a/mock/mappings/api_price_lists_qlkxecdexl-c1d30110-8c63-46cc-bb93-5a154d65633c.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "c1d30110-8c63-46cc-bb93-5a154d65633c", - "name" : "api_price_lists_qlkxecdexl", - "request" : { - "url" : "/api/price_lists/qlKxECdexL", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:34 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21039-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860995.767811,VS0,VE45" - } - }, - "uuid" : "c1d30110-8c63-46cc-bb93-5a154d65633c", - "persistent" : true, - "scenarioName" : "scenario-13-api-price_lists-qlKxECdexL", - "requiredScenarioState" : "scenario-13-api-price_lists-qlKxECdexL-4", - "insertionIndex" : 87 -} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_vlmqxcqjzl-8f012d3b-d238-46d3-93b2-e438c217944a.json b/mock/mappings/api_price_lists_vlmqxcqjzl-8f012d3b-d238-46d3-93b2-e438c217944a.json deleted file mode 100644 index 45936f9..0000000 --- a/mock/mappings/api_price_lists_vlmqxcqjzl-8f012d3b-d238-46d3-93b2-e438c217944a.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "8f012d3b-d238-46d3-93b2-e438c217944a", - "name" : "api_price_lists_vlmqxcqjzl", - "request" : { - "url" : "/api/price_lists/vLmQxCqjZL", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "65", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "97b923f1-3c9f-456c-b78a-0d6985f712b2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:30 GMT", - "X-Served-By" : "cache-ams21064-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860991.749273,VS0,VE47", - "Vary" : "Origin" - } - }, - "uuid" : "8f012d3b-d238-46d3-93b2-e438c217944a", - "persistent" : true, - "insertionIndex" : 63 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories-5e57effb-1ce3-4a7c-bc5e-fef4a43fc23c.json b/mock/mappings/api_shipping_categories-5e57effb-1ce3-4a7c-bc5e-fef4a43fc23c.json deleted file mode 100644 index b708a3b..0000000 --- a/mock/mappings/api_shipping_categories-5e57effb-1ce3-4a7c-bc5e-fef4a43fc23c.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "5e57effb-1ce3-4a7c-bc5e-fef4a43fc23c", - "name" : "api_shipping_categories", - "request" : { - "url" : "/api/shipping_categories", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"},\"name\":\"Incentro Shipping Category\"},\"type\":\"shipping_categories\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"VWoxGFYqqK\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"created_at\":\"2022-11-09T10:20:29.040Z\",\"updated_at\":\"2022-11-09T10:20:29.040Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/skus\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "10", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c3477841cfa6b1d0c30ecdc939ccba2e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3fa6252d-743d-45e8-99cf-e1ec927c29af", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:29 GMT", - "X-Served-By" : "cache-ams21072-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989229.976707,VS0,VE83", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "5e57effb-1ce3-4a7c-bc5e-fef4a43fc23c", - "persistent" : true, - "insertionIndex" : 104 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_vwoxgfyqqk-1bc5d3bf-6a3b-4ff7-bfa1-ddb18b00244b.json b/mock/mappings/api_shipping_categories_vwoxgfyqqk-1bc5d3bf-6a3b-4ff7-bfa1-ddb18b00244b.json deleted file mode 100644 index 92cde02..0000000 --- a/mock/mappings/api_shipping_categories_vwoxgfyqqk-1bc5d3bf-6a3b-4ff7-bfa1-ddb18b00244b.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "1bc5d3bf-6a3b-4ff7-bfa1-ddb18b00244b", - "name" : "api_shipping_categories_vwoxgfyqqk", - "request" : { - "url" : "/api/shipping_categories/VWoxGFYqqK", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"VWoxGFYqqK\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"created_at\":\"2022-11-09T10:20:29.040Z\",\"updated_at\":\"2022-11-09T10:20:29.040Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/skus\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "12", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c3477841cfa6b1d0c30ecdc939ccba2e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "47a1621f-e94a-4c3b-9587-d7082ef77e6c", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:29 GMT", - "X-Served-By" : "cache-ams21082-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989229.491138,VS0,VE55", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "1bc5d3bf-6a3b-4ff7-bfa1-ddb18b00244b", - "persistent" : true, - "scenarioName" : "scenario-3-api-shipping_categories-VWoxGFYqqK", - "requiredScenarioState" : "scenario-3-api-shipping_categories-VWoxGFYqqK-2", - "newScenarioState" : "scenario-3-api-shipping_categories-VWoxGFYqqK-3", - "insertionIndex" : 106 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_vwoxgfyqqk-796f9fe4-e933-487b-a67c-6653f89ad72a.json b/mock/mappings/api_shipping_categories_vwoxgfyqqk-796f9fe4-e933-487b-a67c-6653f89ad72a.json deleted file mode 100644 index 3f599a7..0000000 --- a/mock/mappings/api_shipping_categories_vwoxgfyqqk-796f9fe4-e933-487b-a67c-6653f89ad72a.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "796f9fe4-e933-487b-a67c-6653f89ad72a", - "name" : "api_shipping_categories_vwoxgfyqqk", - "request" : { - "url" : "/api/shipping_categories/VWoxGFYqqK", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "15", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "33a64b79-fcaf-45e1-acec-d623f6407da2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:30 GMT", - "X-Served-By" : "cache-ams21068-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989230.248649,VS0,VE91", - "Vary" : "Origin" - } - }, - "uuid" : "796f9fe4-e933-487b-a67c-6653f89ad72a", - "persistent" : true, - "insertionIndex" : 109 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_vwoxgfyqqk-a53b0bc0-db10-4a79-ae70-1d96c0647951.json b/mock/mappings/api_shipping_categories_vwoxgfyqqk-a53b0bc0-db10-4a79-ae70-1d96c0647951.json deleted file mode 100644 index 28eff41..0000000 --- a/mock/mappings/api_shipping_categories_vwoxgfyqqk-a53b0bc0-db10-4a79-ae70-1d96c0647951.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "a53b0bc0-db10-4a79-ae70-1d96c0647951", - "name" : "api_shipping_categories_vwoxgfyqqk", - "request" : { - "url" : "/api/shipping_categories/VWoxGFYqqK", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"VWoxGFYqqK\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"created_at\":\"2022-11-09T10:20:29.040Z\",\"updated_at\":\"2022-11-09T10:20:29.040Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/skus\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "11", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c3477841cfa6b1d0c30ecdc939ccba2e\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "464f5b9b-ab63-411b-a186-f205b122bdbd", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:29 GMT", - "X-Served-By" : "cache-ams21083-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989229.252445,VS0,VE81", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a53b0bc0-db10-4a79-ae70-1d96c0647951", - "persistent" : true, - "scenarioName" : "scenario-3-api-shipping_categories-VWoxGFYqqK", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-3-api-shipping_categories-VWoxGFYqqK-2", - "insertionIndex" : 105 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_vwoxgfyqqk-c351b018-c4ce-431f-bad4-30beaa18c7c2.json b/mock/mappings/api_shipping_categories_vwoxgfyqqk-c351b018-c4ce-431f-bad4-30beaa18c7c2.json deleted file mode 100644 index d294bef..0000000 --- a/mock/mappings/api_shipping_categories_vwoxgfyqqk-c351b018-c4ce-431f-bad4-30beaa18c7c2.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "c351b018-c4ce-431f-bad4-30beaa18c7c2", - "name" : "api_shipping_categories_vwoxgfyqqk", - "request" : { - "url" : "/api/shipping_categories/VWoxGFYqqK", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:30 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21056-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989230.420958,VS0,VE69" - } - }, - "uuid" : "c351b018-c4ce-431f-bad4-30beaa18c7c2", - "persistent" : true, - "scenarioName" : "scenario-3-api-shipping_categories-VWoxGFYqqK", - "requiredScenarioState" : "scenario-3-api-shipping_categories-VWoxGFYqqK-4", - "insertionIndex" : 110 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_vwoxgfyqqk-f3f6c6a8-ee15-4253-a824-1e6bf41fb41f.json b/mock/mappings/api_shipping_categories_vwoxgfyqqk-f3f6c6a8-ee15-4253-a824-1e6bf41fb41f.json deleted file mode 100644 index 29fe4fc..0000000 --- a/mock/mappings/api_shipping_categories_vwoxgfyqqk-f3f6c6a8-ee15-4253-a824-1e6bf41fb41f.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "f3f6c6a8-ee15-4253-a824-1e6bf41fb41f", - "name" : "api_shipping_categories_vwoxgfyqqk", - "request" : { - "url" : "/api/shipping_categories/VWoxGFYqqK", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"},\"name\":\"Incentro Shipping Category Updated\"},\"id\":\"VWoxGFYqqK\",\"type\":\"shipping_categories\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"VWoxGFYqqK\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK\"},\"attributes\":{\"name\":\"Incentro Shipping Category Updated\",\"created_at\":\"2022-11-09T10:20:29.040Z\",\"updated_at\":\"2022-11-09T10:20:29.759Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/skus\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "13", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"33a0d8cd0fddea2ec8564c32981462d5\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d2b6c70b-80de-462d-ad07-e13e7bfca0c3", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:29 GMT", - "X-Served-By" : "cache-ams21029-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989230.729789,VS0,VE52", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "f3f6c6a8-ee15-4253-a824-1e6bf41fb41f", - "persistent" : true, - "insertionIndex" : 107 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_vwoxgfyqqk-fc77fd13-2b05-4713-a00e-f138eb4b8299.json b/mock/mappings/api_shipping_categories_vwoxgfyqqk-fc77fd13-2b05-4713-a00e-f138eb4b8299.json deleted file mode 100644 index f7fd33a..0000000 --- a/mock/mappings/api_shipping_categories_vwoxgfyqqk-fc77fd13-2b05-4713-a00e-f138eb4b8299.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "fc77fd13-2b05-4713-a00e-f138eb4b8299", - "name" : "api_shipping_categories_vwoxgfyqqk", - "request" : { - "url" : "/api/shipping_categories/VWoxGFYqqK", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"VWoxGFYqqK\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK\"},\"attributes\":{\"name\":\"Incentro Shipping Category Updated\",\"created_at\":\"2022-11-09T10:20:29.040Z\",\"updated_at\":\"2022-11-09T10:20:29.759Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/skus\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_categories/VWoxGFYqqK/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "14", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"33a0d8cd0fddea2ec8564c32981462d5\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "868e9f0b-6b2a-44d2-9d76-b2bacccaa820", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:30 GMT", - "X-Served-By" : "cache-ams21077-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989230.977260,VS0,VE72", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "fc77fd13-2b05-4713-a00e-f138eb4b8299", - "persistent" : true, - "scenarioName" : "scenario-3-api-shipping_categories-VWoxGFYqqK", - "requiredScenarioState" : "scenario-3-api-shipping_categories-VWoxGFYqqK-3", - "newScenarioState" : "scenario-3-api-shipping_categories-VWoxGFYqqK-4", - "insertionIndex" : 108 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods-445f70c6-e8a2-40e3-a64a-94c9e278f3e9.json b/mock/mappings/api_shipping_methods-445f70c6-e8a2-40e3-a64a-94c9e278f3e9.json deleted file mode 100644 index 658f4f4..0000000 --- a/mock/mappings/api_shipping_methods-445f70c6-e8a2-40e3-a64a-94c9e278f3e9.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "445f70c6-e8a2-40e3-a64a-94c9e278f3e9", - "name" : "api_shipping_methods", - "request" : { - "url" : "/api/shipping_methods", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"free_over_amount_cents\":10000,\"max_weight\":10,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"},\"min_weight\":0.5,\"name\":\"Incentro Shipping Method\",\"price_amount_cents\":1000,\"scheme\":\"flat\",\"unit_of_weight\":\"kg\"},\"relationships\":{},\"type\":\"shipping_methods\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"xEMvPFPeGO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO\"},\"attributes\":{\"name\":\"Incentro Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"disabled_at\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"created_at\":\"2022-11-09T13:23:56.313Z\",\"updated_at\":\"2022-11-09T13:23:56.313Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "39", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b7cadd6fa50189a4144e3c77262219b8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "279e7347-5513-4861-97af-771bbf8914f6", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 13:23:56 GMT", - "X-Served-By" : "cache-ams21036-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1668000236.284461,VS0,VE63", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "445f70c6-e8a2-40e3-a64a-94c9e278f3e9", - "persistent" : true, - "insertionIndex" : 122 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods-fe2248f9-b29a-473c-8bcb-de1ee99c1cc4.json b/mock/mappings/api_shipping_methods-fe2248f9-b29a-473c-8bcb-de1ee99c1cc4.json deleted file mode 100644 index af62928..0000000 --- a/mock/mappings/api_shipping_methods-fe2248f9-b29a-473c-8bcb-de1ee99c1cc4.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "fe2248f9-b29a-473c-8bcb-de1ee99c1cc4", - "name" : "api_shipping_methods", - "request" : { - "url" : "/api/shipping_methods", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"free_over_amount_cents\":10000,\"max_weight\":10,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_weight\":0.5,\"name\":\"Incentro Shipping Method\",\"price_amount_cents\":1000,\"scheme\":\"flat\",\"unit_of_weight\":\"kg\"},\"relationships\":{},\"type\":\"shipping_methods\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"mNBJpFaYgN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN\"},\"attributes\":{\"name\":\"Incentro Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"disabled_at\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"created_at\":\"2022-12-23T10:26:05.383Z\",\"updated_at\":\"2022-12-23T10:26:05.383Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "13", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"026cf88c3bc3372d4dbe3415a820cc0a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a075110a-04c4-4bdd-955d-ca893fc43bad", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:05 GMT", - "X-Served-By" : "cache-ams21022-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791165.319719,VS0,VE87", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "fe2248f9-b29a-473c-8bcb-de1ee99c1cc4", - "persistent" : true, - "insertionIndex" : 1114 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_mnbjpfaygn-0f13d9ce-f161-4118-bdc4-6880a9eacfb1.json b/mock/mappings/api_shipping_methods_mnbjpfaygn-0f13d9ce-f161-4118-bdc4-6880a9eacfb1.json deleted file mode 100644 index 10a98fc..0000000 --- a/mock/mappings/api_shipping_methods_mnbjpfaygn-0f13d9ce-f161-4118-bdc4-6880a9eacfb1.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "0f13d9ce-f161-4118-bdc4-6880a9eacfb1", - "name" : "api_shipping_methods_mnbjpfaygn", - "request" : { - "url" : "/api/shipping_methods/mNBJpFaYgN", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"mNBJpFaYgN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN\"},\"attributes\":{\"name\":\"Incentro Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"disabled_at\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"created_at\":\"2022-12-23T10:26:05.383Z\",\"updated_at\":\"2022-12-23T10:26:05.383Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"026cf88c3bc3372d4dbe3415a820cc0a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "01812347-4d30-4289-a48f-52bcc22164ca", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:06 GMT", - "X-Served-By" : "cache-ams21076-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791167.663165,VS0,VE56", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "0f13d9ce-f161-4118-bdc4-6880a9eacfb1", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_methods-mNBJpFaYgN", - "requiredScenarioState" : "scenario-2-api-shipping_methods-mNBJpFaYgN-2", - "newScenarioState" : "scenario-2-api-shipping_methods-mNBJpFaYgN-3", - "insertionIndex" : 1121 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_mnbjpfaygn-486235dd-5360-40eb-acc3-e655599acbd5.json b/mock/mappings/api_shipping_methods_mnbjpfaygn-486235dd-5360-40eb-acc3-e655599acbd5.json deleted file mode 100644 index bba8155..0000000 --- a/mock/mappings/api_shipping_methods_mnbjpfaygn-486235dd-5360-40eb-acc3-e655599acbd5.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "486235dd-5360-40eb-acc3-e655599acbd5", - "name" : "api_shipping_methods_mnbjpfaygn", - "request" : { - "url" : "/api/shipping_methods/mNBJpFaYgN", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"mNBJpFaYgN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN\"},\"attributes\":{\"name\":\"Incentro Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"disabled_at\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"created_at\":\"2022-12-23T10:26:05.383Z\",\"updated_at\":\"2022-12-23T10:26:05.383Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "18", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"026cf88c3bc3372d4dbe3415a820cc0a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d7372dbe-70c9-4283-8216-b9d06a0a18cd", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:06 GMT", - "X-Served-By" : "cache-ams21025-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791166.062903,VS0,VE81", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "486235dd-5360-40eb-acc3-e655599acbd5", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_methods-mNBJpFaYgN", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-2-api-shipping_methods-mNBJpFaYgN-2", - "insertionIndex" : 1118 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_mnbjpfaygn-74b9ce52-37f0-4549-b33a-72f3a79495f8.json b/mock/mappings/api_shipping_methods_mnbjpfaygn-74b9ce52-37f0-4549-b33a-72f3a79495f8.json deleted file mode 100644 index 70a2679..0000000 --- a/mock/mappings/api_shipping_methods_mnbjpfaygn-74b9ce52-37f0-4549-b33a-72f3a79495f8.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "74b9ce52-37f0-4549-b33a-72f3a79495f8", - "name" : "api_shipping_methods_mnbjpfaygn", - "request" : { - "url" : "/api/shipping_methods/mNBJpFaYgN", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"mNBJpFaYgN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN\"},\"attributes\":{\"name\":\"Incentro Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"disabled_at\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"created_at\":\"2022-12-23T10:26:05.383Z\",\"updated_at\":\"2022-12-23T10:26:05.383Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/mNBJpFaYgN/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "26", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"026cf88c3bc3372d4dbe3415a820cc0a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1c129a9e-5360-4664-87fa-e19b22c7b23a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:07 GMT", - "X-Served-By" : "cache-ams21083-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791168.584507,VS0,VE43", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "74b9ce52-37f0-4549-b33a-72f3a79495f8", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_methods-mNBJpFaYgN", - "requiredScenarioState" : "scenario-2-api-shipping_methods-mNBJpFaYgN-3", - "newScenarioState" : "scenario-2-api-shipping_methods-mNBJpFaYgN-4", - "insertionIndex" : 1127 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_mnbjpfaygn-8bc9f5f7-d552-4f79-b87d-20d70a2295bd.json b/mock/mappings/api_shipping_methods_mnbjpfaygn-8bc9f5f7-d552-4f79-b87d-20d70a2295bd.json deleted file mode 100644 index a0dc00a..0000000 --- a/mock/mappings/api_shipping_methods_mnbjpfaygn-8bc9f5f7-d552-4f79-b87d-20d70a2295bd.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "id" : "8bc9f5f7-d552-4f79-b87d-20d70a2295bd", - "name" : "api_shipping_methods_mnbjpfaygn", - "request" : { - "url" : "/api/shipping_methods/mNBJpFaYgN", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:09 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21083-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791169.983768,VS0,VE31" - } - }, - "uuid" : "8bc9f5f7-d552-4f79-b87d-20d70a2295bd", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_methods-mNBJpFaYgN", - "requiredScenarioState" : "scenario-2-api-shipping_methods-mNBJpFaYgN-4", - "newScenarioState" : "scenario-2-api-shipping_methods-mNBJpFaYgN-5", - "insertionIndex" : 1136 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_mnbjpfaygn-9a631482-5915-4b49-bcc9-7d398f053cb1.json b/mock/mappings/api_shipping_methods_mnbjpfaygn-9a631482-5915-4b49-bcc9-7d398f053cb1.json deleted file mode 100644 index 2c5e791..0000000 --- a/mock/mappings/api_shipping_methods_mnbjpfaygn-9a631482-5915-4b49-bcc9-7d398f053cb1.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "9a631482-5915-4b49-bcc9-7d398f053cb1", - "name" : "api_shipping_methods_mnbjpfaygn", - "request" : { - "url" : "/api/shipping_methods/mNBJpFaYgN", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "29", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "f6ea19ba-e91e-4346-b552-9988c1758a81", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:08 GMT", - "X-Served-By" : "cache-ams21034-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791168.297991,VS0,VE92", - "Vary" : "Origin" - } - }, - "uuid" : "9a631482-5915-4b49-bcc9-7d398f053cb1", - "persistent" : true, - "insertionIndex" : 1131 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_mnbjpfaygn-d844ab9e-edde-4536-9f21-7025ea89302c.json b/mock/mappings/api_shipping_methods_mnbjpfaygn-d844ab9e-edde-4536-9f21-7025ea89302c.json deleted file mode 100644 index 3ccfaf3..0000000 --- a/mock/mappings/api_shipping_methods_mnbjpfaygn-d844ab9e-edde-4536-9f21-7025ea89302c.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "d844ab9e-edde-4536-9f21-7025ea89302c", - "name" : "api_shipping_methods_mnbjpfaygn", - "request" : { - "url" : "/api/shipping_methods/mNBJpFaYgN", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:09 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21069-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791169.084191,VS0,VE72" - } - }, - "uuid" : "d844ab9e-edde-4536-9f21-7025ea89302c", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_methods-mNBJpFaYgN", - "requiredScenarioState" : "scenario-2-api-shipping_methods-mNBJpFaYgN-5", - "insertionIndex" : 1137 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_xemvpfpego-0b08a101-9b71-49f4-a3bf-260f3bb0c1ae.json b/mock/mappings/api_shipping_methods_xemvpfpego-0b08a101-9b71-49f4-a3bf-260f3bb0c1ae.json deleted file mode 100644 index 7ebd95a..0000000 --- a/mock/mappings/api_shipping_methods_xemvpfpego-0b08a101-9b71-49f4-a3bf-260f3bb0c1ae.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "0b08a101-9b71-49f4-a3bf-260f3bb0c1ae", - "name" : "api_shipping_methods_xemvpfpego", - "request" : { - "url" : "/api/shipping_methods/xEMvPFPeGO", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"xEMvPFPeGO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO\"},\"attributes\":{\"name\":\"Incentro Shipping Method Updated\",\"scheme\":\"weight_tiered\",\"currency_code\":\"CHF\",\"disabled_at\":null,\"price_amount_cents\":1,\"price_amount_float\":0.01,\"formatted_price_amount\":\"CHF0.01\",\"free_over_amount_cents\":1,\"free_over_amount_float\":0.01,\"formatted_free_over_amount\":\"CHF0.01\",\"price_amount_for_shipment_cents\":1,\"price_amount_for_shipment_float\":0.01,\"formatted_price_amount_for_shipment\":\"CHF0.01\",\"min_weight\":1.0,\"max_weight\":20.0,\"unit_of_weight\":\"oz\",\"created_at\":\"2022-11-09T13:23:56.313Z\",\"updated_at\":\"2022-11-09T13:23:57.136Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "43", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c7eff3d765931277075a534073d1ce55\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "e978c066-8a91-46ed-9e2c-e04d21a8e382", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 13:23:57 GMT", - "X-Served-By" : "cache-ams21052-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1668000237.350380,VS0,VE40", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "0b08a101-9b71-49f4-a3bf-260f3bb0c1ae", - "persistent" : true, - "scenarioName" : "scenario-1-api-shipping_methods-xEMvPFPeGO", - "requiredScenarioState" : "scenario-1-api-shipping_methods-xEMvPFPeGO-3", - "newScenarioState" : "scenario-1-api-shipping_methods-xEMvPFPeGO-4", - "insertionIndex" : 126 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_xemvpfpego-3c529c3c-efd5-4e5c-8a49-d3151f09dd4f.json b/mock/mappings/api_shipping_methods_xemvpfpego-3c529c3c-efd5-4e5c-8a49-d3151f09dd4f.json deleted file mode 100644 index 33bf933..0000000 --- a/mock/mappings/api_shipping_methods_xemvpfpego-3c529c3c-efd5-4e5c-8a49-d3151f09dd4f.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "3c529c3c-efd5-4e5c-8a49-d3151f09dd4f", - "name" : "api_shipping_methods_xemvpfpego", - "request" : { - "url" : "/api/shipping_methods/xEMvPFPeGO", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"xEMvPFPeGO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO\"},\"attributes\":{\"name\":\"Incentro Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"disabled_at\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"created_at\":\"2022-11-09T13:23:56.313Z\",\"updated_at\":\"2022-11-09T13:23:56.313Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "40", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b7cadd6fa50189a4144e3c77262219b8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1bcdff67-c7fb-4606-a87b-cb1517805879", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 13:23:56 GMT", - "X-Served-By" : "cache-ams21071-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1668000237.544304,VS0,VE79", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "3c529c3c-efd5-4e5c-8a49-d3151f09dd4f", - "persistent" : true, - "scenarioName" : "scenario-1-api-shipping_methods-xEMvPFPeGO", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-shipping_methods-xEMvPFPeGO-2", - "insertionIndex" : 123 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_xemvpfpego-66772f92-3935-4336-abc7-7099f60f841f.json b/mock/mappings/api_shipping_methods_xemvpfpego-66772f92-3935-4336-abc7-7099f60f841f.json deleted file mode 100644 index d381752..0000000 --- a/mock/mappings/api_shipping_methods_xemvpfpego-66772f92-3935-4336-abc7-7099f60f841f.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "66772f92-3935-4336-abc7-7099f60f841f", - "name" : "api_shipping_methods_xemvpfpego", - "request" : { - "url" : "/api/shipping_methods/xEMvPFPeGO", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"xEMvPFPeGO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO\"},\"attributes\":{\"name\":\"Incentro Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"disabled_at\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"created_at\":\"2022-11-09T13:23:56.313Z\",\"updated_at\":\"2022-11-09T13:23:56.313Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "41", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"b7cadd6fa50189a4144e3c77262219b8\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "2d45ce6b-8efd-4367-941b-01269e5e405d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 13:23:56 GMT", - "X-Served-By" : "cache-ams21054-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1668000237.798982,VS0,VE57", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "66772f92-3935-4336-abc7-7099f60f841f", - "persistent" : true, - "scenarioName" : "scenario-1-api-shipping_methods-xEMvPFPeGO", - "requiredScenarioState" : "scenario-1-api-shipping_methods-xEMvPFPeGO-2", - "newScenarioState" : "scenario-1-api-shipping_methods-xEMvPFPeGO-3", - "insertionIndex" : 124 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_xemvpfpego-a0957576-933b-46d9-af2b-d81113d21289.json b/mock/mappings/api_shipping_methods_xemvpfpego-a0957576-933b-46d9-af2b-d81113d21289.json deleted file mode 100644 index 22ec95b..0000000 --- a/mock/mappings/api_shipping_methods_xemvpfpego-a0957576-933b-46d9-af2b-d81113d21289.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "a0957576-933b-46d9-af2b-d81113d21289", - "name" : "api_shipping_methods_xemvpfpego", - "request" : { - "url" : "/api/shipping_methods/xEMvPFPeGO", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 13:23:57 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21065-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1668000238.768036,VS0,VE31" - } - }, - "uuid" : "a0957576-933b-46d9-af2b-d81113d21289", - "persistent" : true, - "scenarioName" : "scenario-1-api-shipping_methods-xEMvPFPeGO", - "requiredScenarioState" : "scenario-1-api-shipping_methods-xEMvPFPeGO-4", - "insertionIndex" : 128 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_xemvpfpego-a28e803c-6ce6-477f-a368-61453d2a38ac.json b/mock/mappings/api_shipping_methods_xemvpfpego-a28e803c-6ce6-477f-a368-61453d2a38ac.json deleted file mode 100644 index 86114a6..0000000 --- a/mock/mappings/api_shipping_methods_xemvpfpego-a28e803c-6ce6-477f-a368-61453d2a38ac.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "a28e803c-6ce6-477f-a368-61453d2a38ac", - "name" : "api_shipping_methods_xemvpfpego", - "request" : { - "url" : "/api/shipping_methods/xEMvPFPeGO", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"CHF\",\"free_over_amount_cents\":1,\"max_weight\":20,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"},\"min_weight\":1,\"name\":\"Incentro Shipping Method Updated\",\"price_amount_cents\":1,\"scheme\":\"weight_tiered\",\"unit_of_weight\":\"oz\"},\"id\":\"xEMvPFPeGO\",\"relationships\":{},\"type\":\"shipping_methods\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"xEMvPFPeGO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO\"},\"attributes\":{\"name\":\"Incentro Shipping Method Updated\",\"scheme\":\"weight_tiered\",\"currency_code\":\"CHF\",\"disabled_at\":null,\"price_amount_cents\":1,\"price_amount_float\":0.01,\"formatted_price_amount\":\"CHF0.01\",\"free_over_amount_cents\":1,\"free_over_amount_float\":0.01,\"formatted_free_over_amount\":\"CHF0.01\",\"price_amount_for_shipment_cents\":1,\"price_amount_for_shipment_float\":0.01,\"formatted_price_amount_for_shipment\":\"CHF0.01\",\"min_weight\":1.0,\"max_weight\":20.0,\"unit_of_weight\":\"oz\",\"created_at\":\"2022-11-09T13:23:56.313Z\",\"updated_at\":\"2022-11-09T13:23:57.136Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/market\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_zone\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_category\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/stock_location\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_method_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/shipping_weight_tiers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_methods/xEMvPFPeGO/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "42", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c7eff3d765931277075a534073d1ce55\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "5aace234-6217-40ea-93ed-9e402661b6b3", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 13:23:57 GMT", - "X-Served-By" : "cache-ams21033-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1668000237.064875,VS0,VE99", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a28e803c-6ce6-477f-a368-61453d2a38ac", - "persistent" : true, - "insertionIndex" : 125 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_xemvpfpego-fdcacb6f-a44c-449a-8fb4-105d3d605136.json b/mock/mappings/api_shipping_methods_xemvpfpego-fdcacb6f-a44c-449a-8fb4-105d3d605136.json deleted file mode 100644 index 7ca0ecc..0000000 --- a/mock/mappings/api_shipping_methods_xemvpfpego-fdcacb6f-a44c-449a-8fb4-105d3d605136.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "fdcacb6f-a44c-449a-8fb4-105d3d605136", - "name" : "api_shipping_methods_xemvpfpego", - "request" : { - "url" : "/api/shipping_methods/xEMvPFPeGO", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "44", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "baa9f30a-2016-442f-a7a8-3fa7b4716992", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 13:23:57 GMT", - "X-Served-By" : "cache-ams21047-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1668000238.579608,VS0,VE97", - "Vary" : "Origin" - } - }, - "uuid" : "fdcacb6f-a44c-449a-8fb4-105d3d605136", - "persistent" : true, - "insertionIndex" : 127 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_zones-64974b47-ae6c-48c0-bce9-5bbe76cea989.json b/mock/mappings/api_shipping_zones-64974b47-ae6c-48c0-bce9-5bbe76cea989.json deleted file mode 100644 index 4270142..0000000 --- a/mock/mappings/api_shipping_zones-64974b47-ae6c-48c0-bce9-5bbe76cea989.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "64974b47-ae6c-48c0-bce9-5bbe76cea989", - "name" : "api_shipping_zones", - "request" : { - "url" : "/api/shipping_zones", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"country_code_regex\":\".*\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"},\"name\":\"Incentro Shipping Zone\",\"not_country_code_regex\":\"[^i*\\u00262@]\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"not_zip_code_regex\":\".+\",\"state_code_regex\":\"^dog\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\"},\"type\":\"shipping_zones\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"wKWxDtjXJv\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2022-11-09T10:20:14.207Z\",\"updated_at\":\"2022-11-09T10:20:14.207Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"64f402a753bae587228d30e0be347b8b\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "a6e9842e-870c-4e4f-92ea-6818ef16aac2", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:14 GMT", - "X-Served-By" : "cache-ams21053-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989214.132761,VS0,VE98", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "64974b47-ae6c-48c0-bce9-5bbe76cea989", - "persistent" : true, - "insertionIndex" : 96 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_zones_wkwxdtjxjv-141747a9-5a37-42c5-8817-6aa8916ddafc.json b/mock/mappings/api_shipping_zones_wkwxdtjxjv-141747a9-5a37-42c5-8817-6aa8916ddafc.json deleted file mode 100644 index 7a4fdd1..0000000 --- a/mock/mappings/api_shipping_zones_wkwxdtjxjv-141747a9-5a37-42c5-8817-6aa8916ddafc.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "141747a9-5a37-42c5-8817-6aa8916ddafc", - "name" : "api_shipping_zones_wkwxdtjxjv", - "request" : { - "url" : "/api/shipping_zones/wKWxDtjXJv", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "60cb3531-1485-49cf-952b-2eeb029a939a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:15 GMT", - "X-Served-By" : "cache-ams21029-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989215.478860,VS0,VE95", - "Vary" : "Origin" - } - }, - "uuid" : "141747a9-5a37-42c5-8817-6aa8916ddafc", - "persistent" : true, - "insertionIndex" : 101 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_zones_wkwxdtjxjv-1735f6cf-d58f-40b1-92fe-856b76fc9751.json b/mock/mappings/api_shipping_zones_wkwxdtjxjv-1735f6cf-d58f-40b1-92fe-856b76fc9751.json deleted file mode 100644 index ed22b3d..0000000 --- a/mock/mappings/api_shipping_zones_wkwxdtjxjv-1735f6cf-d58f-40b1-92fe-856b76fc9751.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "1735f6cf-d58f-40b1-92fe-856b76fc9751", - "name" : "api_shipping_zones_wkwxdtjxjv", - "request" : { - "url" : "/api/shipping_zones/wKWxDtjXJv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"wKWxDtjXJv\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2022-11-09T10:20:14.207Z\",\"updated_at\":\"2022-11-09T10:20:14.207Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"64f402a753bae587228d30e0be347b8b\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "cc075e37-e8fa-45db-a190-f9c2c81dc80e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:14 GMT", - "X-Served-By" : "cache-ams21071-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989215.729785,VS0,VE41", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "1735f6cf-d58f-40b1-92fe-856b76fc9751", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_zones-wKWxDtjXJv", - "requiredScenarioState" : "scenario-2-api-shipping_zones-wKWxDtjXJv-2", - "newScenarioState" : "scenario-2-api-shipping_zones-wKWxDtjXJv-3", - "insertionIndex" : 98 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_zones_wkwxdtjxjv-246145de-a33c-4f22-b998-26937fdf7f70.json b/mock/mappings/api_shipping_zones_wkwxdtjxjv-246145de-a33c-4f22-b998-26937fdf7f70.json deleted file mode 100644 index 177a859..0000000 --- a/mock/mappings/api_shipping_zones_wkwxdtjxjv-246145de-a33c-4f22-b998-26937fdf7f70.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "246145de-a33c-4f22-b998-26937fdf7f70", - "name" : "api_shipping_zones_wkwxdtjxjv", - "request" : { - "url" : "/api/shipping_zones/wKWxDtjXJv", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"country_code_regex\":\".+\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"},\"name\":\"Incentro Shipping Zone Updated\",\"not_country_code_regex\":\"[^i*\\u00262@]G\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"not_zip_code_regex\":\".*\",\"state_code_regex\":\"^cat\",\"zip_code_regex\":\"[a-z]{1,2}\"},\"id\":\"wKWxDtjXJv\",\"type\":\"shipping_zones\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"wKWxDtjXJv\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv\"},\"attributes\":{\"name\":\"Incentro Shipping Zone Updated\",\"country_code_regex\":\".+\",\"not_country_code_regex\":\"[^i*&2@]G\",\"state_code_regex\":\"^cat\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"zip_code_regex\":\"[a-z]{1,2}\",\"not_zip_code_regex\":\".*\",\"created_at\":\"2022-11-09T10:20:14.207Z\",\"updated_at\":\"2022-11-09T10:20:15.032Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"d35f0605687653cdc366560474ca69ae\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "1c33d2ff-2f82-460c-88b9-70e3b9b7c4f5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:15 GMT", - "X-Served-By" : "cache-ams21029-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989215.953201,VS0,VE99", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "246145de-a33c-4f22-b998-26937fdf7f70", - "persistent" : true, - "insertionIndex" : 99 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_zones_wkwxdtjxjv-4722c413-1757-40b3-be40-d4cc3ce938e4.json b/mock/mappings/api_shipping_zones_wkwxdtjxjv-4722c413-1757-40b3-be40-d4cc3ce938e4.json deleted file mode 100644 index b40c9f3..0000000 --- a/mock/mappings/api_shipping_zones_wkwxdtjxjv-4722c413-1757-40b3-be40-d4cc3ce938e4.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "4722c413-1757-40b3-be40-d4cc3ce938e4", - "name" : "api_shipping_zones_wkwxdtjxjv", - "request" : { - "url" : "/api/shipping_zones/wKWxDtjXJv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"wKWxDtjXJv\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2022-11-09T10:20:14.207Z\",\"updated_at\":\"2022-11-09T10:20:14.207Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"64f402a753bae587228d30e0be347b8b\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d9b1081a-2152-4868-af0c-bd60b7d46569", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:14 GMT", - "X-Served-By" : "cache-ams21056-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989214.416469,VS0,VE117", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "4722c413-1757-40b3-be40-d4cc3ce938e4", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_zones-wKWxDtjXJv", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-2-api-shipping_zones-wKWxDtjXJv-2", - "insertionIndex" : 97 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_zones_wkwxdtjxjv-8ab7de58-8aa0-4204-8975-da460ae23e4c.json b/mock/mappings/api_shipping_zones_wkwxdtjxjv-8ab7de58-8aa0-4204-8975-da460ae23e4c.json deleted file mode 100644 index caa1d9c..0000000 --- a/mock/mappings/api_shipping_zones_wkwxdtjxjv-8ab7de58-8aa0-4204-8975-da460ae23e4c.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "8ab7de58-8aa0-4204-8975-da460ae23e4c", - "name" : "api_shipping_zones_wkwxdtjxjv", - "request" : { - "url" : "/api/shipping_zones/wKWxDtjXJv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"wKWxDtjXJv\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv\"},\"attributes\":{\"name\":\"Incentro Shipping Zone Updated\",\"country_code_regex\":\".+\",\"not_country_code_regex\":\"[^i*&2@]G\",\"state_code_regex\":\"^cat\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"zip_code_regex\":\"[a-z]{1,2}\",\"not_zip_code_regex\":\".*\",\"created_at\":\"2022-11-09T10:20:14.207Z\",\"updated_at\":\"2022-11-09T10:20:15.032Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/shipping_zones/wKWxDtjXJv/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"d35f0605687653cdc366560474ca69ae\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "eebc5789-49ea-4187-9e43-18ceaf34ac87", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:15 GMT", - "X-Served-By" : "cache-ams21020-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989215.255006,VS0,VE47", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "8ab7de58-8aa0-4204-8975-da460ae23e4c", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_zones-wKWxDtjXJv", - "requiredScenarioState" : "scenario-2-api-shipping_zones-wKWxDtjXJv-3", - "newScenarioState" : "scenario-2-api-shipping_zones-wKWxDtjXJv-4", - "insertionIndex" : 100 -} \ No newline at end of file diff --git a/mock/mappings/api_shipping_zones_wkwxdtjxjv-b6fd73ad-d164-462d-8996-41c5741a9c33.json b/mock/mappings/api_shipping_zones_wkwxdtjxjv-b6fd73ad-d164-462d-8996-41c5741a9c33.json deleted file mode 100644 index c1485e8..0000000 --- a/mock/mappings/api_shipping_zones_wkwxdtjxjv-b6fd73ad-d164-462d-8996-41c5741a9c33.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "b6fd73ad-d164-462d-8996-41c5741a9c33", - "name" : "api_shipping_zones_wkwxdtjxjv", - "request" : { - "url" : "/api/shipping_zones/wKWxDtjXJv", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 10:20:15 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21031-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667989216.653932,VS0,VE34" - } - }, - "uuid" : "b6fd73ad-d164-462d-8996-41c5741a9c33", - "persistent" : true, - "scenarioName" : "scenario-2-api-shipping_zones-wKWxDtjXJv", - "requiredScenarioState" : "scenario-2-api-shipping_zones-wKWxDtjXJv-4", - "insertionIndex" : 102 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations-905df695-0241-4ca1-a3b4-37ad2f17986d.json b/mock/mappings/api_stock_locations-905df695-0241-4ca1-a3b4-37ad2f17986d.json deleted file mode 100644 index 2bf9f5c..0000000 --- a/mock/mappings/api_stock_locations-905df695-0241-4ca1-a3b4-37ad2f17986d.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "905df695-0241-4ca1-a3b4-37ad2f17986d", - "name" : "api_stock_locations", - "request" : { - "url" : "/api/stock_locations", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"name\":\"Incentro Stock Location\",\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"bxwVuwZjmJ\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"BGOxpumabk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk\"},\"attributes\":{\"number\":9831,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-09T11:36:47.223Z\",\"updated_at\":\"2022-11-09T11:36:47.223Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "19", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"1a691e51025d198357b762001b92a750\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "92eec147-a562-4dfe-82bc-93200861e951", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:47 GMT", - "X-Served-By" : "cache-ams21033-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993807.197209,VS0,VE69", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "905df695-0241-4ca1-a3b4-37ad2f17986d", - "persistent" : true, - "insertionIndex" : 656 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations-9cd570da-13d5-49b3-a4e6-0cb2afecca45.json b/mock/mappings/api_stock_locations-9cd570da-13d5-49b3-a4e6-0cb2afecca45.json deleted file mode 100644 index cdd21f8..0000000 --- a/mock/mappings/api_stock_locations-9cd570da-13d5-49b3-a4e6-0cb2afecca45.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "9cd570da-13d5-49b3-a4e6-0cb2afecca45", - "name" : "api_stock_locations", - "request" : { - "url" : "/api/stock_locations", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"name\":\"Incentro Stock Location\",\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"BlrkujVzqR\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"QkxoeumQQG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG\"},\"attributes\":{\"number\":9948,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-24T15:10:57.946Z\",\"updated_at\":\"2022-11-24T15:10:57.946Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "23", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"dfd0f4bfa77e03595418c652077f274c\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "5e258c0b-d196-44c6-a14b-85017d5d5cc0", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:57 GMT", - "X-Served-By" : "cache-ams21076-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302658.869118,VS0,VE124", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "9cd570da-13d5-49b3-a4e6-0cb2afecca45", - "persistent" : true, - "insertionIndex" : 156 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations-edcfeda0-4096-4a87-8da7-cd8198e0d9d4.json b/mock/mappings/api_stock_locations-edcfeda0-4096-4a87-8da7-cd8198e0d9d4.json deleted file mode 100644 index 4a80791..0000000 --- a/mock/mappings/api_stock_locations-edcfeda0-4096-4a87-8da7-cd8198e0d9d4.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "edcfeda0-4096-4a87-8da7-cd8198e0d9d4", - "name" : "api_stock_locations", - "request" : { - "url" : "/api/stock_locations", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"name\":\"Incentro Stock Location\",\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"BnNguQqjwe\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"PMRpouqZwG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG\"},\"attributes\":{\"number\":10121,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-12-23T10:26:05.606Z\",\"updated_at\":\"2022-12-23T10:26:05.606Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "15", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"5044547ca3d800053ddf304860244c1a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "4b671e7d-a0a5-40d1-99f7-acd7215e8c73", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:05 GMT", - "X-Served-By" : "cache-ams21082-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791166.538173,VS0,VE117", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "edcfeda0-4096-4a87-8da7-cd8198e0d9d4", - "persistent" : true, - "insertionIndex" : 1115 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations-f6ae3e05-7de7-46b4-a484-a39ec11cb01b.json b/mock/mappings/api_stock_locations-f6ae3e05-7de7-46b4-a484-a39ec11cb01b.json deleted file mode 100644 index ef3ffda..0000000 --- a/mock/mappings/api_stock_locations-f6ae3e05-7de7-46b4-a484-a39ec11cb01b.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "f6ae3e05-7de7-46b4-a484-a39ec11cb01b", - "name" : "api_stock_locations", - "request" : { - "url" : "/api/stock_locations", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"name\":\"Incentro Stock Location\",\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"deJOuZLqDx\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"DngepuNdwk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk\"},\"attributes\":{\"number\":9947,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-24T15:10:46.024Z\",\"updated_at\":\"2022-11-24T15:10:46.024Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"e4921e45a260cef371459b9910473dc9\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b17b040d-4113-4c69-bacc-e692b0656cea", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:46 GMT", - "X-Served-By" : "cache-ams21027-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302646.957192,VS0,VE122", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "f6ae3e05-7de7-46b4-a484-a39ec11cb01b", - "persistent" : true, - "insertionIndex" : 133 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpumabk-35b87c5f-8eb5-46eb-8fda-f3f05bcb591e.json b/mock/mappings/api_stock_locations_bgoxpumabk-35b87c5f-8eb5-46eb-8fda-f3f05bcb591e.json deleted file mode 100644 index 9207d85..0000000 --- a/mock/mappings/api_stock_locations_bgoxpumabk-35b87c5f-8eb5-46eb-8fda-f3f05bcb591e.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "35b87c5f-8eb5-46eb-8fda-f3f05bcb591e", - "name" : "api_stock_locations_bgoxpumabk", - "request" : { - "url" : "/api/stock_locations/BGOxpumabk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BGOxpumabk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk\"},\"attributes\":{\"number\":9831,\"name\":\"Incentro Stock Location Updated\",\"label_format\":\"PDF\",\"suppress_etd\":false,\"created_at\":\"2022-11-09T11:36:47.223Z\",\"updated_at\":\"2022-11-09T11:36:48.200Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "25", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"a5842976be565c19f05e217d10e08e8a\"", - "X-Request-Id" : "96c7e9fc-6bda-4d5f-a10f-2c644ae72e08", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:48 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21061-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993809.509152,VS0,VE41", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "35b87c5f-8eb5-46eb-8fda-f3f05bcb591e", - "persistent" : true, - "scenarioName" : "scenario-2-api-stock_locations-BGOxpumabk", - "requiredScenarioState" : "scenario-2-api-stock_locations-BGOxpumabk-3", - "newScenarioState" : "scenario-2-api-stock_locations-BGOxpumabk-4", - "insertionIndex" : 663 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpumabk-4427112a-f47e-45e4-841b-24bc77c380fe.json b/mock/mappings/api_stock_locations_bgoxpumabk-4427112a-f47e-45e4-841b-24bc77c380fe.json deleted file mode 100644 index 2a62f74..0000000 --- a/mock/mappings/api_stock_locations_bgoxpumabk-4427112a-f47e-45e4-841b-24bc77c380fe.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "4427112a-f47e-45e4-841b-24bc77c380fe", - "name" : "api_stock_locations_bgoxpumabk", - "request" : { - "url" : "/api/stock_locations/BGOxpumabk", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:49 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21067-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993809.219756,VS0,VE72" - } - }, - "uuid" : "4427112a-f47e-45e4-841b-24bc77c380fe", - "persistent" : true, - "scenarioName" : "scenario-2-api-stock_locations-BGOxpumabk", - "requiredScenarioState" : "scenario-2-api-stock_locations-BGOxpumabk-4", - "insertionIndex" : 666 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpumabk-502800a7-aea9-4a42-ae7a-3052cadc203b.json b/mock/mappings/api_stock_locations_bgoxpumabk-502800a7-aea9-4a42-ae7a-3052cadc203b.json deleted file mode 100644 index 0dad7c6..0000000 --- a/mock/mappings/api_stock_locations_bgoxpumabk-502800a7-aea9-4a42-ae7a-3052cadc203b.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "502800a7-aea9-4a42-ae7a-3052cadc203b", - "name" : "api_stock_locations_bgoxpumabk", - "request" : { - "url" : "/api/stock_locations/BGOxpumabk", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "26", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "8dbefa92-a7b7-4b52-bdaa-28dedad8a49a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:48 GMT", - "X-Served-By" : "cache-ams21052-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993809.780008,VS0,VE145", - "Vary" : "Origin" - } - }, - "uuid" : "502800a7-aea9-4a42-ae7a-3052cadc203b", - "persistent" : true, - "insertionIndex" : 664 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpumabk-5cccc81c-0c90-4d65-828c-1843aaaaf990.json b/mock/mappings/api_stock_locations_bgoxpumabk-5cccc81c-0c90-4d65-828c-1843aaaaf990.json deleted file mode 100644 index e39f6ea..0000000 --- a/mock/mappings/api_stock_locations_bgoxpumabk-5cccc81c-0c90-4d65-828c-1843aaaaf990.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "5cccc81c-0c90-4d65-828c-1843aaaaf990", - "name" : "api_stock_locations_bgoxpumabk", - "request" : { - "url" : "/api/stock_locations/BGOxpumabk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BGOxpumabk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk\"},\"attributes\":{\"number\":9831,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-09T11:36:47.223Z\",\"updated_at\":\"2022-11-09T11:36:47.223Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"1a691e51025d198357b762001b92a750\"", - "X-Request-Id" : "d10c222a-3adf-4a85-90d3-403b1f363536", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:47 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21038-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993808.579770,VS0,VE49", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "5cccc81c-0c90-4d65-828c-1843aaaaf990", - "persistent" : true, - "scenarioName" : "scenario-2-api-stock_locations-BGOxpumabk", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-2-api-stock_locations-BGOxpumabk-2", - "insertionIndex" : 658 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpumabk-f2e8f76b-ab4a-4d85-9a41-cd98821c7bce.json b/mock/mappings/api_stock_locations_bgoxpumabk-f2e8f76b-ab4a-4d85-9a41-cd98821c7bce.json deleted file mode 100644 index 719a53b..0000000 --- a/mock/mappings/api_stock_locations_bgoxpumabk-f2e8f76b-ab4a-4d85-9a41-cd98821c7bce.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "f2e8f76b-ab4a-4d85-9a41-cd98821c7bce", - "name" : "api_stock_locations_bgoxpumabk", - "request" : { - "url" : "/api/stock_locations/BGOxpumabk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BGOxpumabk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk\"},\"attributes\":{\"number\":9831,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-09T11:36:47.223Z\",\"updated_at\":\"2022-11-09T11:36:47.223Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "21", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"1a691e51025d198357b762001b92a750\"", - "X-Request-Id" : "d10c222a-3adf-4a85-90d3-403b1f363536", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:47 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21047-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1667993808.927230,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "f2e8f76b-ab4a-4d85-9a41-cd98821c7bce", - "persistent" : true, - "scenarioName" : "scenario-2-api-stock_locations-BGOxpumabk", - "requiredScenarioState" : "scenario-2-api-stock_locations-BGOxpumabk-2", - "newScenarioState" : "scenario-2-api-stock_locations-BGOxpumabk-3", - "insertionIndex" : 660 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpumabk-f7fb408d-1eb4-4cc4-983f-027fc7daf69c.json b/mock/mappings/api_stock_locations_bgoxpumabk-f7fb408d-1eb4-4cc4-983f-027fc7daf69c.json deleted file mode 100644 index 014733c..0000000 --- a/mock/mappings/api_stock_locations_bgoxpumabk-f7fb408d-1eb4-4cc4-983f-027fc7daf69c.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "f7fb408d-1eb4-4cc4-983f-027fc7daf69c", - "name" : "api_stock_locations_bgoxpumabk", - "request" : { - "url" : "/api/stock_locations/BGOxpumabk", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PDF\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"name\":\"Incentro Stock Location Updated\",\"suppress_etd\":false},\"id\":\"BGOxpumabk\",\"relationships\":{\"address\":{\"data\":{\"id\":\"bxwVuwZjmJ\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"BGOxpumabk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk\"},\"attributes\":{\"number\":9831,\"name\":\"Incentro Stock Location Updated\",\"label_format\":\"PDF\",\"suppress_etd\":false,\"created_at\":\"2022-11-09T11:36:47.223Z\",\"updated_at\":\"2022-11-09T11:36:48.200Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/BGOxpumabk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "23", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a5842976be565c19f05e217d10e08e8a\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "82bd9200-f981-4361-b9b5-04edc622035a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 11:36:48 GMT", - "X-Served-By" : "cache-ams21037-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667993808.116394,VS0,VE101", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "f7fb408d-1eb4-4cc4-983f-027fc7daf69c", - "persistent" : true, - "insertionIndex" : 661 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_dngepundwk-1909f122-f60f-4d34-bd76-ca5ba6f6aa89.json b/mock/mappings/api_stock_locations_dngepundwk-1909f122-f60f-4d34-bd76-ca5ba6f6aa89.json deleted file mode 100644 index 3753710..0000000 --- a/mock/mappings/api_stock_locations_dngepundwk-1909f122-f60f-4d34-bd76-ca5ba6f6aa89.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "1909f122-f60f-4d34-bd76-ca5ba6f6aa89", - "name" : "api_stock_locations_dngepundwk", - "request" : { - "url" : "/api/stock_locations/DngepuNdwk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DngepuNdwk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk\"},\"attributes\":{\"number\":9947,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-24T15:10:46.024Z\",\"updated_at\":\"2022-11-24T15:10:46.024Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "8", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"e4921e45a260cef371459b9910473dc9\"", - "X-Request-Id" : "3e37b4af-f9fe-423c-b841-c65424a27029", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:47 GMT", - "Age" : "1", - "X-Served-By" : "cache-ams21049-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1669302648.804677,VS0,VE2", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "1909f122-f60f-4d34-bd76-ca5ba6f6aa89", - "persistent" : true, - "scenarioName" : "scenario-4-api-stock_locations-DngepuNdwk", - "requiredScenarioState" : "scenario-4-api-stock_locations-DngepuNdwk-3", - "insertionIndex" : 146 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_dngepundwk-4087cf12-0688-4805-9407-371e87501290.json b/mock/mappings/api_stock_locations_dngepundwk-4087cf12-0688-4805-9407-371e87501290.json deleted file mode 100644 index 9b79c50..0000000 --- a/mock/mappings/api_stock_locations_dngepundwk-4087cf12-0688-4805-9407-371e87501290.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "4087cf12-0688-4805-9407-371e87501290", - "name" : "api_stock_locations_dngepundwk", - "request" : { - "url" : "/api/stock_locations/DngepuNdwk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DngepuNdwk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk\"},\"attributes\":{\"number\":9947,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-24T15:10:46.024Z\",\"updated_at\":\"2022-11-24T15:10:46.024Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "8", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"e4921e45a260cef371459b9910473dc9\"", - "X-Request-Id" : "3e37b4af-f9fe-423c-b841-c65424a27029", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:47 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21057-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1669302647.119424,VS0,VE2", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "4087cf12-0688-4805-9407-371e87501290", - "persistent" : true, - "scenarioName" : "scenario-4-api-stock_locations-DngepuNdwk", - "requiredScenarioState" : "scenario-4-api-stock_locations-DngepuNdwk-2", - "newScenarioState" : "scenario-4-api-stock_locations-DngepuNdwk-3", - "insertionIndex" : 141 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_dngepundwk-f049cb17-140a-47bb-a509-78a80f05684c.json b/mock/mappings/api_stock_locations_dngepundwk-f049cb17-140a-47bb-a509-78a80f05684c.json deleted file mode 100644 index 9d77375..0000000 --- a/mock/mappings/api_stock_locations_dngepundwk-f049cb17-140a-47bb-a509-78a80f05684c.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "f049cb17-140a-47bb-a509-78a80f05684c", - "name" : "api_stock_locations_dngepundwk", - "request" : { - "url" : "/api/stock_locations/DngepuNdwk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DngepuNdwk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk\"},\"attributes\":{\"number\":9947,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-24T15:10:46.024Z\",\"updated_at\":\"2022-11-24T15:10:46.024Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/DngepuNdwk/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "8", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"e4921e45a260cef371459b9910473dc9\"", - "X-Request-Id" : "3e37b4af-f9fe-423c-b841-c65424a27029", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:46 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21027-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302647.589190,VS0,VE81", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "f049cb17-140a-47bb-a509-78a80f05684c", - "persistent" : true, - "scenarioName" : "scenario-4-api-stock_locations-DngepuNdwk", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-4-api-stock_locations-DngepuNdwk-2", - "insertionIndex" : 137 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_dngepundwk-f1844c8e-18bb-4e54-8458-0c011c3ffc8f.json b/mock/mappings/api_stock_locations_dngepundwk-f1844c8e-18bb-4e54-8458-0c011c3ffc8f.json deleted file mode 100644 index 38d5e62..0000000 --- a/mock/mappings/api_stock_locations_dngepundwk-f1844c8e-18bb-4e54-8458-0c011c3ffc8f.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "f1844c8e-18bb-4e54-8458-0c011c3ffc8f", - "name" : "api_stock_locations_dngepundwk", - "request" : { - "url" : "/api/stock_locations/DngepuNdwk", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "17", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "e1045496-e207-44c2-bfb1-368f951397dd", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:48 GMT", - "X-Served-By" : "cache-ams21029-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302648.353121,VS0,VE142", - "Vary" : "Origin" - } - }, - "uuid" : "f1844c8e-18bb-4e54-8458-0c011c3ffc8f", - "persistent" : true, - "insertionIndex" : 150 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_pmrpouqzwg-36e8eab3-279d-443f-95d1-6e8bff5b634c.json b/mock/mappings/api_stock_locations_pmrpouqzwg-36e8eab3-279d-443f-95d1-6e8bff5b634c.json deleted file mode 100644 index 76e6d04..0000000 --- a/mock/mappings/api_stock_locations_pmrpouqzwg-36e8eab3-279d-443f-95d1-6e8bff5b634c.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "36e8eab3-279d-443f-95d1-6e8bff5b634c", - "name" : "api_stock_locations_pmrpouqzwg", - "request" : { - "url" : "/api/stock_locations/PMRpouqZwG", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "30", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "5cdf0636-e76f-427c-be08-f4294945c810", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:08 GMT", - "X-Served-By" : "cache-ams21022-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791168.298262,VS0,VE120", - "Vary" : "Origin" - } - }, - "uuid" : "36e8eab3-279d-443f-95d1-6e8bff5b634c", - "persistent" : true, - "insertionIndex" : 1132 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_pmrpouqzwg-4130e644-00e9-47fd-b6b4-a1fce31b0ac8.json b/mock/mappings/api_stock_locations_pmrpouqzwg-4130e644-00e9-47fd-b6b4-a1fce31b0ac8.json deleted file mode 100644 index e06619d..0000000 --- a/mock/mappings/api_stock_locations_pmrpouqzwg-4130e644-00e9-47fd-b6b4-a1fce31b0ac8.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "4130e644-00e9-47fd-b6b4-a1fce31b0ac8", - "name" : "api_stock_locations_pmrpouqzwg", - "request" : { - "url" : "/api/stock_locations/PMRpouqZwG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"PMRpouqZwG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG\"},\"attributes\":{\"number\":10121,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-12-23T10:26:05.606Z\",\"updated_at\":\"2022-12-23T10:26:05.606Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "19", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"5044547ca3d800053ddf304860244c1a\"", - "X-Request-Id" : "562bd0f5-3f85-4486-bb1e-7cf5e8e3762a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:06 GMT", - "Age" : "1", - "X-Served-By" : "cache-ams21026-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1671791167.806179,VS0,VE1", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "4130e644-00e9-47fd-b6b4-a1fce31b0ac8", - "persistent" : true, - "scenarioName" : "scenario-3-api-stock_locations-PMRpouqZwG", - "requiredScenarioState" : "scenario-3-api-stock_locations-PMRpouqZwG-2", - "newScenarioState" : "scenario-3-api-stock_locations-PMRpouqZwG-3", - "insertionIndex" : 1123 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_pmrpouqzwg-4b963220-dcef-483b-ad09-befab301b4e7.json b/mock/mappings/api_stock_locations_pmrpouqzwg-4b963220-dcef-483b-ad09-befab301b4e7.json deleted file mode 100644 index 4ef3aa7..0000000 --- a/mock/mappings/api_stock_locations_pmrpouqzwg-4b963220-dcef-483b-ad09-befab301b4e7.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "4b963220-dcef-483b-ad09-befab301b4e7", - "name" : "api_stock_locations_pmrpouqzwg", - "request" : { - "url" : "/api/stock_locations/PMRpouqZwG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"PMRpouqZwG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG\"},\"attributes\":{\"number\":10121,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-12-23T10:26:05.606Z\",\"updated_at\":\"2022-12-23T10:26:05.606Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "19", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"5044547ca3d800053ddf304860244c1a\"", - "X-Request-Id" : "562bd0f5-3f85-4486-bb1e-7cf5e8e3762a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:06 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21031-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1671791166.214708,VS0,VE77", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "4b963220-dcef-483b-ad09-befab301b4e7", - "persistent" : true, - "scenarioName" : "scenario-3-api-stock_locations-PMRpouqZwG", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-3-api-stock_locations-PMRpouqZwG-2", - "insertionIndex" : 1119 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_pmrpouqzwg-c8cd8c35-7f9e-458d-9567-2a5d2bc9030c.json b/mock/mappings/api_stock_locations_pmrpouqzwg-c8cd8c35-7f9e-458d-9567-2a5d2bc9030c.json deleted file mode 100644 index 5255cef..0000000 --- a/mock/mappings/api_stock_locations_pmrpouqzwg-c8cd8c35-7f9e-458d-9567-2a5d2bc9030c.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "c8cd8c35-7f9e-458d-9567-2a5d2bc9030c", - "name" : "api_stock_locations_pmrpouqzwg", - "request" : { - "url" : "/api/stock_locations/PMRpouqZwG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"PMRpouqZwG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG\"},\"attributes\":{\"number\":10121,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-12-23T10:26:05.606Z\",\"updated_at\":\"2022-12-23T10:26:05.606Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/PMRpouqZwG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "19", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"5044547ca3d800053ddf304860244c1a\"", - "X-Request-Id" : "562bd0f5-3f85-4486-bb1e-7cf5e8e3762a", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 23 Dec 2022 10:26:07 GMT", - "Age" : "1", - "X-Served-By" : "cache-ams21063-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1671791168.700037,VS0,VE4", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "c8cd8c35-7f9e-458d-9567-2a5d2bc9030c", - "persistent" : true, - "scenarioName" : "scenario-3-api-stock_locations-PMRpouqZwG", - "requiredScenarioState" : "scenario-3-api-stock_locations-PMRpouqZwG-3", - "insertionIndex" : 1128 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_qkxoeumqqg-038a44d4-1c90-4e05-a54b-773aca24f1d6.json b/mock/mappings/api_stock_locations_qkxoeumqqg-038a44d4-1c90-4e05-a54b-773aca24f1d6.json deleted file mode 100644 index 7777072..0000000 --- a/mock/mappings/api_stock_locations_qkxoeumqqg-038a44d4-1c90-4e05-a54b-773aca24f1d6.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "038a44d4-1c90-4e05-a54b-773aca24f1d6", - "name" : "api_stock_locations_qkxoeumqqg", - "request" : { - "url" : "/api/stock_locations/QkxoeumQQG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"QkxoeumQQG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG\"},\"attributes\":{\"number\":9948,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-24T15:10:57.946Z\",\"updated_at\":\"2022-11-24T15:10:57.946Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"dfd0f4bfa77e03595418c652077f274c\"", - "X-Request-Id" : "044dbcba-cfd6-455c-aee4-478ca02f102d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:58 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21021-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1669302659.944308,VS0,VE5", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "038a44d4-1c90-4e05-a54b-773aca24f1d6", - "persistent" : true, - "scenarioName" : "scenario-8-api-stock_locations-QkxoeumQQG", - "requiredScenarioState" : "scenario-8-api-stock_locations-QkxoeumQQG-2", - "newScenarioState" : "scenario-8-api-stock_locations-QkxoeumQQG-3", - "insertionIndex" : 164 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_qkxoeumqqg-44b6ac62-a315-440e-813a-50deeb970643.json b/mock/mappings/api_stock_locations_qkxoeumqqg-44b6ac62-a315-440e-813a-50deeb970643.json deleted file mode 100644 index 2ea7fd8..0000000 --- a/mock/mappings/api_stock_locations_qkxoeumqqg-44b6ac62-a315-440e-813a-50deeb970643.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "44b6ac62-a315-440e-813a-50deeb970643", - "name" : "api_stock_locations_qkxoeumqqg", - "request" : { - "url" : "/api/stock_locations/QkxoeumQQG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"QkxoeumQQG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG\"},\"attributes\":{\"number\":9948,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-24T15:10:57.946Z\",\"updated_at\":\"2022-11-24T15:10:57.946Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"dfd0f4bfa77e03595418c652077f274c\"", - "X-Request-Id" : "044dbcba-cfd6-455c-aee4-478ca02f102d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:59 GMT", - "Age" : "1", - "X-Served-By" : "cache-ams21028-AMS", - "X-Cache" : "HIT", - "X-Cache-Hits" : "1", - "X-Timer" : "S1669302660.676615,VS0,VE14", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "44b6ac62-a315-440e-813a-50deeb970643", - "persistent" : true, - "scenarioName" : "scenario-8-api-stock_locations-QkxoeumQQG", - "requiredScenarioState" : "scenario-8-api-stock_locations-QkxoeumQQG-3", - "insertionIndex" : 169 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_qkxoeumqqg-c6aea864-a075-48bf-b557-4b77e30bf0b7.json b/mock/mappings/api_stock_locations_qkxoeumqqg-c6aea864-a075-48bf-b557-4b77e30bf0b7.json deleted file mode 100644 index 1f81509..0000000 --- a/mock/mappings/api_stock_locations_qkxoeumqqg-c6aea864-a075-48bf-b557-4b77e30bf0b7.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "c6aea864-a075-48bf-b557-4b77e30bf0b7", - "name" : "api_stock_locations_qkxoeumqqg", - "request" : { - "url" : "/api/stock_locations/QkxoeumQQG", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "35", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "69e1b064-6412-45a2-ab8d-38e342f62b14", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:11:00 GMT", - "X-Served-By" : "cache-ams21058-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302660.219600,VS0,VE143", - "Vary" : "Origin" - } - }, - "uuid" : "c6aea864-a075-48bf-b557-4b77e30bf0b7", - "persistent" : true, - "insertionIndex" : 173 -} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_qkxoeumqqg-d132a39f-6c01-4370-a500-0848be2fdf32.json b/mock/mappings/api_stock_locations_qkxoeumqqg-d132a39f-6c01-4370-a500-0848be2fdf32.json deleted file mode 100644 index 6c0d0c7..0000000 --- a/mock/mappings/api_stock_locations_qkxoeumqqg-d132a39f-6c01-4370-a500-0848be2fdf32.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "id" : "d132a39f-6c01-4370-a500-0848be2fdf32", - "name" : "api_stock_locations_qkxoeumqqg", - "request" : { - "url" : "/api/stock_locations/QkxoeumQQG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"QkxoeumQQG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG\"},\"attributes\":{\"number\":9948,\"name\":\"Incentro Stock Location\",\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2022-11-24T15:10:57.946Z\",\"updated_at\":\"2022-11-24T15:10:57.946Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/address\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/inventory_stock_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/inventory_return_locations\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/stock_items\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/stock_transfers\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stock_locations/QkxoeumQQG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "27", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Cache-Control" : "public, no-cache", - "Etag" : "W/\"dfd0f4bfa77e03595418c652077f274c\"", - "X-Request-Id" : "044dbcba-cfd6-455c-aee4-478ca02f102d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 24 Nov 2022 15:10:58 GMT", - "Age" : "0", - "X-Served-By" : "cache-ams21077-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1669302658.459605,VS0,VE89", - "Vary" : "Authorization, Origin" - } - }, - "uuid" : "d132a39f-6c01-4370-a500-0848be2fdf32", - "persistent" : true, - "scenarioName" : "scenario-8-api-stock_locations-QkxoeumQQG", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-8-api-stock_locations-QkxoeumQQG-2", - "insertionIndex" : 160 -} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways-452f5673-010c-4ce0-90be-ef608e40cd64.json b/mock/mappings/api_stripe_gateways-452f5673-010c-4ce0-90be-ef608e40cd64.json deleted file mode 100644 index baacd98..0000000 --- a/mock/mappings/api_stripe_gateways-452f5673-010c-4ce0-90be-ef608e40cd64.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "452f5673-010c-4ce0-90be-ef608e40cd64", - "name" : "api_stripe_gateways", - "request" : { - "url" : "/api/stripe_gateways", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"login\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"name\":\"Incentro Stripe Gateway\"},\"type\":\"stripe_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"axYQYswAmx\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2023-01-16T15:19:14.376Z\",\"updated_at\":\"2023-01-16T15:19:14.376Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/axYQYswAmx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/payment_methods\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/stripe_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"fbd931e67084f348b1198129dd298113\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "3cbae4a0-2b8d-4298-b2b1-ca7d26f0185d", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Mon, 16 Jan 2023 15:19:14 GMT", - "X-Served-By" : "cache-ams21063-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673882354.308520,VS0,VE97", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "452f5673-010c-4ce0-90be-ef608e40cd64", - "persistent" : true, - "insertionIndex" : 6077 -} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_axyqyswamx-1cd69cc9-67ca-46bf-ba8f-a82cf2093892.json b/mock/mappings/api_stripe_gateways_axyqyswamx-1cd69cc9-67ca-46bf-ba8f-a82cf2093892.json deleted file mode 100644 index d2d15bd..0000000 --- a/mock/mappings/api_stripe_gateways_axyqyswamx-1cd69cc9-67ca-46bf-ba8f-a82cf2093892.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "1cd69cc9-67ca-46bf-ba8f-a82cf2093892", - "name" : "api_stripe_gateways_axyqyswamx", - "request" : { - "url" : "/api/stripe_gateways/axYQYswAmx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"axYQYswAmx\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway Changed\",\"created_at\":\"2023-01-16T15:19:14.376Z\",\"updated_at\":\"2023-01-16T15:19:15.266Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/axYQYswAmx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/payment_methods\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/stripe_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a3a914d5768f76aaaf12a7f403af0996\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "c1c18125-a5c1-482c-bc4e-8f8778af1728", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Mon, 16 Jan 2023 15:19:15 GMT", - "X-Served-By" : "cache-ams21058-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673882356.546145,VS0,VE78", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "1cd69cc9-67ca-46bf-ba8f-a82cf2093892", - "persistent" : true, - "scenarioName" : "scenario-1-api-stripe_gateways-axYQYswAmx", - "requiredScenarioState" : "scenario-1-api-stripe_gateways-axYQYswAmx-3", - "newScenarioState" : "scenario-1-api-stripe_gateways-axYQYswAmx-4", - "insertionIndex" : 6081 -} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_axyqyswamx-35a31595-66ac-41f2-bb68-68d590abfafa.json b/mock/mappings/api_stripe_gateways_axyqyswamx-35a31595-66ac-41f2-bb68-68d590abfafa.json deleted file mode 100644 index 26410c0..0000000 --- a/mock/mappings/api_stripe_gateways_axyqyswamx-35a31595-66ac-41f2-bb68-68d590abfafa.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "35a31595-66ac-41f2-bb68-68d590abfafa", - "name" : "api_stripe_gateways_axyqyswamx", - "request" : { - "url" : "/api/stripe_gateways/axYQYswAmx", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "a936a18b-1b15-4601-91c2-04405723d1df", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Mon, 16 Jan 2023 15:19:15 GMT", - "X-Served-By" : "cache-ams21057-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673882356.849126,VS0,VE115", - "Vary" : "Origin" - } - }, - "uuid" : "35a31595-66ac-41f2-bb68-68d590abfafa", - "persistent" : true, - "insertionIndex" : 6082 -} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_axyqyswamx-82a63f92-bf26-4fab-9996-eead7073e0ec.json b/mock/mappings/api_stripe_gateways_axyqyswamx-82a63f92-bf26-4fab-9996-eead7073e0ec.json deleted file mode 100644 index 55b7003..0000000 --- a/mock/mappings/api_stripe_gateways_axyqyswamx-82a63f92-bf26-4fab-9996-eead7073e0ec.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "82a63f92-bf26-4fab-9996-eead7073e0ec", - "name" : "api_stripe_gateways_axyqyswamx", - "request" : { - "url" : "/api/stripe_gateways/axYQYswAmx", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"name\":\"Incentro Stripe Gateway Changed\"},\"id\":\"axYQYswAmx\",\"type\":\"stripe_gateways\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"axYQYswAmx\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway Changed\",\"created_at\":\"2023-01-16T15:19:14.376Z\",\"updated_at\":\"2023-01-16T15:19:15.266Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/axYQYswAmx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/payment_methods\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/stripe_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"a3a914d5768f76aaaf12a7f403af0996\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "409f4653-d2d8-4d3f-94ff-39dff4927ebb", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Mon, 16 Jan 2023 15:19:15 GMT", - "X-Served-By" : "cache-ams21072-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673882355.190794,VS0,VE98", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "82a63f92-bf26-4fab-9996-eead7073e0ec", - "persistent" : true, - "insertionIndex" : 6080 -} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_axyqyswamx-9988e98b-1b83-494f-a725-0a69d7506e40.json b/mock/mappings/api_stripe_gateways_axyqyswamx-9988e98b-1b83-494f-a725-0a69d7506e40.json deleted file mode 100644 index 87afc92..0000000 --- a/mock/mappings/api_stripe_gateways_axyqyswamx-9988e98b-1b83-494f-a725-0a69d7506e40.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "9988e98b-1b83-494f-a725-0a69d7506e40", - "name" : "api_stripe_gateways_axyqyswamx", - "request" : { - "url" : "/api/stripe_gateways/axYQYswAmx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"axYQYswAmx\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2023-01-16T15:19:14.376Z\",\"updated_at\":\"2023-01-16T15:19:14.376Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/axYQYswAmx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/payment_methods\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/stripe_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"fbd931e67084f348b1198129dd298113\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "cd85b199-db69-4f86-ad6c-d8fe4332eb13", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Mon, 16 Jan 2023 15:19:14 GMT", - "X-Served-By" : "cache-ams21028-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673882355.647809,VS0,VE82", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "9988e98b-1b83-494f-a725-0a69d7506e40", - "persistent" : true, - "scenarioName" : "scenario-1-api-stripe_gateways-axYQYswAmx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-stripe_gateways-axYQYswAmx-2", - "insertionIndex" : 6078 -} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_axyqyswamx-ab781670-df8a-4a89-9000-7fa7cddd2dc4.json b/mock/mappings/api_stripe_gateways_axyqyswamx-ab781670-df8a-4a89-9000-7fa7cddd2dc4.json deleted file mode 100644 index e6c16fb..0000000 --- a/mock/mappings/api_stripe_gateways_axyqyswamx-ab781670-df8a-4a89-9000-7fa7cddd2dc4.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "ab781670-df8a-4a89-9000-7fa7cddd2dc4", - "name" : "api_stripe_gateways_axyqyswamx", - "request" : { - "url" : "/api/stripe_gateways/axYQYswAmx", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Mon, 16 Jan 2023 15:19:16 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21037-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673882356.083403,VS0,VE35" - } - }, - "uuid" : "ab781670-df8a-4a89-9000-7fa7cddd2dc4", - "persistent" : true, - "scenarioName" : "scenario-1-api-stripe_gateways-axYQYswAmx", - "requiredScenarioState" : "scenario-1-api-stripe_gateways-axYQYswAmx-4", - "insertionIndex" : 6083 -} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_axyqyswamx-c7c2ad03-f759-4dcd-b6f0-cf12ce83f489.json b/mock/mappings/api_stripe_gateways_axyqyswamx-c7c2ad03-f759-4dcd-b6f0-cf12ce83f489.json deleted file mode 100644 index 5cdf1ee..0000000 --- a/mock/mappings/api_stripe_gateways_axyqyswamx-c7c2ad03-f759-4dcd-b6f0-cf12ce83f489.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "c7c2ad03-f759-4dcd-b6f0-cf12ce83f489", - "name" : "api_stripe_gateways_axyqyswamx", - "request" : { - "url" : "/api/stripe_gateways/axYQYswAmx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"axYQYswAmx\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2023-01-16T15:19:14.376Z\",\"updated_at\":\"2023-01-16T15:19:14.376Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/axYQYswAmx\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/payment_methods\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/payment_methods\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/relationships/stripe_payments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/stripe_gateways/axYQYswAmx/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"fbd931e67084f348b1198129dd298113\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d0ca194f-92a2-4873-a06b-4d448a8b2518", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Mon, 16 Jan 2023 15:19:14 GMT", - "X-Served-By" : "cache-ams21048-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673882355.940885,VS0,VE43", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c7c2ad03-f759-4dcd-b6f0-cf12ce83f489", - "persistent" : true, - "scenarioName" : "scenario-1-api-stripe_gateways-axYQYswAmx", - "requiredScenarioState" : "scenario-1-api-stripe_gateways-axYQYswAmx-2", - "newScenarioState" : "scenario-1-api-stripe_gateways-axYQYswAmx-3", - "insertionIndex" : 6079 -} \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts-4b91812c-6cfe-4da0-9ee6-769af63280ae.json b/mock/mappings/api_taxjar_accounts-4b91812c-6cfe-4da0-9ee6-769af63280ae.json deleted file mode 100644 index 293de3d..0000000 --- a/mock/mappings/api_taxjar_accounts-4b91812c-6cfe-4da0-9ee6-769af63280ae.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "4b91812c-6cfe-4da0-9ee6-769af63280ae", - "name" : "api_taxjar_accounts", - "request" : { - "url" : "/api/taxjar_accounts", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"TAXJAR_API_KEY\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"},\"name\":\"Incentro Taxjar Account\"},\"type\":\"taxjar_accounts\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"YNlrjTDoqM\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"created_at\":\"2023-01-13T11:03:12.550Z\",\"updated_at\":\"2023-01-13T11:03:12.550Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/attachments\"}},\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "53", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"0224c014594ed9af324612505cf3c4a1\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "193db7d4-ec1e-436b-8a01-307035d4f1b4", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 11:03:12 GMT", - "X-Served-By" : "cache-ams21034-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673607792.467907,VS0,VE101", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "4b91812c-6cfe-4da0-9ee6-769af63280ae", - "persistent" : true, - "insertionIndex" : 5814 -} \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-4a128e27-accd-444c-aab3-89b2098c7122.json b/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-4a128e27-accd-444c-aab3-89b2098c7122.json deleted file mode 100644 index b886aca..0000000 --- a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-4a128e27-accd-444c-aab3-89b2098c7122.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "4a128e27-accd-444c-aab3-89b2098c7122", - "name" : "api_taxjar_accounts_ynlrjtdoqm", - "request" : { - "url" : "/api/taxjar_accounts/YNlrjTDoqM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YNlrjTDoqM\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"created_at\":\"2023-01-13T11:03:12.550Z\",\"updated_at\":\"2023-01-13T11:03:12.550Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/attachments\"}},\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "54", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"0224c014594ed9af324612505cf3c4a1\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "d7b23585-46a0-42fa-93cc-483e21d9c083", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 11:03:12 GMT", - "X-Served-By" : "cache-ams21021-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673607793.820179,VS0,VE74", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "4a128e27-accd-444c-aab3-89b2098c7122", - "persistent" : true, - "scenarioName" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM-2", - "insertionIndex" : 5815 -} \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-50419596-0f25-4432-8c6f-1eb89b17a26c.json b/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-50419596-0f25-4432-8c6f-1eb89b17a26c.json deleted file mode 100644 index 943ad15..0000000 --- a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-50419596-0f25-4432-8c6f-1eb89b17a26c.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "50419596-0f25-4432-8c6f-1eb89b17a26c", - "name" : "api_taxjar_accounts_ynlrjtdoqm", - "request" : { - "url" : "/api/taxjar_accounts/YNlrjTDoqM", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "58", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "29f7d6f6-7652-4e2f-b2d5-ad66adea1a01", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 11:03:14 GMT", - "X-Served-By" : "cache-ams21026-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673607794.115838,VS0,VE84", - "Vary" : "Origin" - } - }, - "uuid" : "50419596-0f25-4432-8c6f-1eb89b17a26c", - "persistent" : true, - "insertionIndex" : 5819 -} \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-6d8024f5-963c-4808-a234-52b99c3267df.json b/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-6d8024f5-963c-4808-a234-52b99c3267df.json deleted file mode 100644 index 0a6e1f0..0000000 --- a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-6d8024f5-963c-4808-a234-52b99c3267df.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "6d8024f5-963c-4808-a234-52b99c3267df", - "name" : "api_taxjar_accounts_ynlrjtdoqm", - "request" : { - "url" : "/api/taxjar_accounts/YNlrjTDoqM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YNlrjTDoqM\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"created_at\":\"2023-01-13T11:03:12.550Z\",\"updated_at\":\"2023-01-13T11:03:12.550Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/attachments\"}},\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "55", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"0224c014594ed9af324612505cf3c4a1\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "81a3f884-fdb4-432d-bd66-47ea5d40bcfc", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 11:03:13 GMT", - "X-Served-By" : "cache-ams21066-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673607793.105118,VS0,VE75", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "6d8024f5-963c-4808-a234-52b99c3267df", - "persistent" : true, - "scenarioName" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM", - "requiredScenarioState" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM-2", - "newScenarioState" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM-3", - "insertionIndex" : 5816 -} \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-a0b57cfd-97e8-4d80-bb26-07af39a62dd2.json b/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-a0b57cfd-97e8-4d80-bb26-07af39a62dd2.json deleted file mode 100644 index 6fa30dd..0000000 --- a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-a0b57cfd-97e8-4d80-bb26-07af39a62dd2.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "a0b57cfd-97e8-4d80-bb26-07af39a62dd2", - "name" : "api_taxjar_accounts_ynlrjtdoqm", - "request" : { - "url" : "/api/taxjar_accounts/YNlrjTDoqM", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"},\"name\":\"Incentro Taxjar Account Changed\"},\"id\":\"YNlrjTDoqM\",\"type\":\"taxjar_accounts\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YNlrjTDoqM\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM\"},\"attributes\":{\"name\":\"Incentro Taxjar Account Changed\",\"created_at\":\"2023-01-13T11:03:12.550Z\",\"updated_at\":\"2023-01-13T11:03:13.490Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/attachments\"}},\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "56", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c9ecab6b899487c2e1d770e6540c6211\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "cb61990e-a172-456a-985f-dc9a8b699cf7", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 11:03:13 GMT", - "X-Served-By" : "cache-ams21025-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673607793.402943,VS0,VE104", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a0b57cfd-97e8-4d80-bb26-07af39a62dd2", - "persistent" : true, - "insertionIndex" : 5817 -} \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-cb796109-a422-4bfc-9634-966ab1d43a28.json b/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-cb796109-a422-4bfc-9634-966ab1d43a28.json deleted file mode 100644 index be12b8d..0000000 --- a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-cb796109-a422-4bfc-9634-966ab1d43a28.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "cb796109-a422-4bfc-9634-966ab1d43a28", - "name" : "api_taxjar_accounts_ynlrjtdoqm", - "request" : { - "url" : "/api/taxjar_accounts/YNlrjTDoqM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YNlrjTDoqM\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM\"},\"attributes\":{\"name\":\"Incentro Taxjar Account Changed\",\"created_at\":\"2023-01-13T11:03:12.550Z\",\"updated_at\":\"2023-01-13T11:03:13.490Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/markets\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/attachments\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/attachments\"}},\"tax_categories\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/relationships/tax_categories\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/taxjar_accounts/YNlrjTDoqM/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "57", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"c9ecab6b899487c2e1d770e6540c6211\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "0f8ef94f-b7f0-4183-8233-afd3700cd8c5", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 11:03:13 GMT", - "X-Served-By" : "cache-ams21075-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673607794.795689,VS0,VE84", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "cb796109-a422-4bfc-9634-966ab1d43a28", - "persistent" : true, - "scenarioName" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM", - "requiredScenarioState" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM-3", - "newScenarioState" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM-4", - "insertionIndex" : 5818 -} \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-e1e94af4-eb0f-4590-93e5-a60eec21f538.json b/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-e1e94af4-eb0f-4590-93e5-a60eec21f538.json deleted file mode 100644 index 7d34f82..0000000 --- a/mock/mappings/api_taxjar_accounts_ynlrjtdoqm-e1e94af4-eb0f-4590-93e5-a60eec21f538.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "e1e94af4-eb0f-4590-93e5-a60eec21f538", - "name" : "api_taxjar_accounts_ynlrjtdoqm", - "request" : { - "url" : "/api/taxjar_accounts/YNlrjTDoqM", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Fri, 13 Jan 2023 11:03:14 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21040-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1673607794.318657,VS0,VE32" - } - }, - "uuid" : "e1e94af4-eb0f-4590-93e5-a60eec21f538", - "persistent" : true, - "scenarioName" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM", - "requiredScenarioState" : "scenario-1-api-taxjar_accounts-YNlrjTDoqM-4", - "insertionIndex" : 5820 -} \ No newline at end of file diff --git a/mock/mappings/api_webhooks-abf9f816-ac2f-40e6-ac2a-fffaa2320f55.json b/mock/mappings/api_webhooks-abf9f816-ac2f-40e6-ac2a-fffaa2320f55.json deleted file mode 100644 index 749fe46..0000000 --- a/mock/mappings/api_webhooks-abf9f816-ac2f-40e6-ac2a-fffaa2320f55.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "abf9f816-ac2f-40e6-ac2a-fffaa2320f55", - "name" : "api_webhooks", - "request" : { - "url" : "/api/webhooks", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"},\"name\":\"incentro webhook\",\"topic\":\"orders.create\"},\"type\":\"webhooks\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"mlQvnCBWrP\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"a0fbfa075b57e122769c38e484b942c8\",\"created_at\":\"2022-11-09T09:36:41.607Z\",\"updated_at\":\"2022-11-09T09:36:41.607Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/relationships/last_event_callbacks\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/last_event_callbacks\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "2", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"22a96e0a5345206566da96013d98436d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b8f46dcc-c70a-41d2-af1d-471823956002", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 09:36:41 GMT", - "X-Served-By" : "cache-ams21027-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667986602.535995,VS0,VE88", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "abf9f816-ac2f-40e6-ac2a-fffaa2320f55", - "persistent" : true, - "insertionIndex" : 183 -} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mlqvncbwrp-1147d069-a5bf-4066-88e2-7fddad7075d3.json b/mock/mappings/api_webhooks_mlqvncbwrp-1147d069-a5bf-4066-88e2-7fddad7075d3.json deleted file mode 100644 index eb7e1e0..0000000 --- a/mock/mappings/api_webhooks_mlqvncbwrp-1147d069-a5bf-4066-88e2-7fddad7075d3.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "id" : "1147d069-a5bf-4066-88e2-7fddad7075d3", - "name" : "api_webhooks_mlqvncbwrp", - "request" : { - "url" : "/api/webhooks/mlQvnCBWrP", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"},\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\"},\"id\":\"mlQvnCBWrP\",\"type\":\"webhooks\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"mlQvnCBWrP\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP\"},\"attributes\":{\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\",\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"a0fbfa075b57e122769c38e484b942c8\",\"created_at\":\"2022-11-09T09:36:41.607Z\",\"updated_at\":\"2022-11-09T09:36:42.420Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/relationships/last_event_callbacks\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/last_event_callbacks\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "6", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"9f25f2f4338155f620a1491c4f05a9f7\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "b09f126a-5292-4452-a6eb-fc5306fde597", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 09:36:42 GMT", - "X-Served-By" : "cache-ams21034-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667986602.353729,VS0,VE81", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "1147d069-a5bf-4066-88e2-7fddad7075d3", - "persistent" : true, - "insertionIndex" : 187 -} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mlqvncbwrp-5e25f72f-c716-4454-b94a-28a50f6505fd.json b/mock/mappings/api_webhooks_mlqvncbwrp-5e25f72f-c716-4454-b94a-28a50f6505fd.json deleted file mode 100644 index 2cd964d..0000000 --- a/mock/mappings/api_webhooks_mlqvncbwrp-5e25f72f-c716-4454-b94a-28a50f6505fd.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "5e25f72f-c716-4454-b94a-28a50f6505fd", - "name" : "api_webhooks_mlqvncbwrp", - "request" : { - "url" : "/api/webhooks/mlQvnCBWrP", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"mlQvnCBWrP\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"a0fbfa075b57e122769c38e484b942c8\",\"created_at\":\"2022-11-09T09:36:41.607Z\",\"updated_at\":\"2022-11-09T09:36:41.607Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/relationships/last_event_callbacks\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/last_event_callbacks\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "5", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"22a96e0a5345206566da96013d98436d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "7bc44ec4-77b2-4277-a9c6-306a94ae8d6e", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 09:36:42 GMT", - "X-Served-By" : "cache-ams21066-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667986602.139127,VS0,VE41", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "5e25f72f-c716-4454-b94a-28a50f6505fd", - "persistent" : true, - "scenarioName" : "scenario-1-api-webhooks-mlQvnCBWrP", - "requiredScenarioState" : "scenario-1-api-webhooks-mlQvnCBWrP-3", - "newScenarioState" : "scenario-1-api-webhooks-mlQvnCBWrP-4", - "insertionIndex" : 186 -} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mlqvncbwrp-66a407b9-5fb6-4a42-8754-8bc6ea6f3718.json b/mock/mappings/api_webhooks_mlqvncbwrp-66a407b9-5fb6-4a42-8754-8bc6ea6f3718.json deleted file mode 100644 index 3df43e1..0000000 --- a/mock/mappings/api_webhooks_mlqvncbwrp-66a407b9-5fb6-4a42-8754-8bc6ea6f3718.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "id" : "66a407b9-5fb6-4a42-8754-8bc6ea6f3718", - "name" : "api_webhooks_mlqvncbwrp", - "request" : { - "url" : "/api/webhooks/mlQvnCBWrP", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "\n\n\n Error 404\n \n \n \n \n\n\n
\n \"Commerce\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n

Oops, page not found.

\n

The page you are looking for doesn't seem to\n exist. It might have been removed, had its name changed, or you might has mistyped the address.

\n
\n
\n
\n\n", - "headers" : { - "Server" : "Varnish", - "Retry-After" : "0", - "Content-Type" : "text/html", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 09:36:43 GMT", - "Via" : "1.1 varnish", - "X-Served-By" : "cache-ams21059-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667986603.032560,VS0,VE36" - } - }, - "uuid" : "66a407b9-5fb6-4a42-8754-8bc6ea6f3718", - "persistent" : true, - "scenarioName" : "scenario-1-api-webhooks-mlQvnCBWrP", - "requiredScenarioState" : "scenario-1-api-webhooks-mlQvnCBWrP-5", - "insertionIndex" : 190 -} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mlqvncbwrp-66e8551a-a941-4c02-86d5-93d623d89ec5.json b/mock/mappings/api_webhooks_mlqvncbwrp-66e8551a-a941-4c02-86d5-93d623d89ec5.json deleted file mode 100644 index cb78dde..0000000 --- a/mock/mappings/api_webhooks_mlqvncbwrp-66e8551a-a941-4c02-86d5-93d623d89ec5.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "66e8551a-a941-4c02-86d5-93d623d89ec5", - "name" : "api_webhooks_mlqvncbwrp", - "request" : { - "url" : "/api/webhooks/mlQvnCBWrP", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"mlQvnCBWrP\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP\"},\"attributes\":{\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\",\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"a0fbfa075b57e122769c38e484b942c8\",\"created_at\":\"2022-11-09T09:36:41.607Z\",\"updated_at\":\"2022-11-09T09:36:42.420Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/relationships/last_event_callbacks\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/last_event_callbacks\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "7", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"9f25f2f4338155f620a1491c4f05a9f7\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "cce62cee-dbf8-4ecc-bd43-5b7d9180f003", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 09:36:42 GMT", - "X-Served-By" : "cache-ams21025-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667986603.612327,VS0,VE80", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "66e8551a-a941-4c02-86d5-93d623d89ec5", - "persistent" : true, - "scenarioName" : "scenario-1-api-webhooks-mlQvnCBWrP", - "requiredScenarioState" : "scenario-1-api-webhooks-mlQvnCBWrP-4", - "newScenarioState" : "scenario-1-api-webhooks-mlQvnCBWrP-5", - "insertionIndex" : 188 -} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mlqvncbwrp-73b2e9a9-67cb-4fbf-93e4-a62f23fea092.json b/mock/mappings/api_webhooks_mlqvncbwrp-73b2e9a9-67cb-4fbf-93e4-a62f23fea092.json deleted file mode 100644 index 0bef85b..0000000 --- a/mock/mappings/api_webhooks_mlqvncbwrp-73b2e9a9-67cb-4fbf-93e4-a62f23fea092.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "73b2e9a9-67cb-4fbf-93e4-a62f23fea092", - "name" : "api_webhooks_mlqvncbwrp", - "request" : { - "url" : "/api/webhooks/mlQvnCBWrP", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "8", - "X-Ratelimit-Period" : "300", - "Cache-Control" : "no-cache", - "X-Request-Id" : "52d722c1-50f8-4359-b32c-7aad28bab882", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 09:36:42 GMT", - "X-Served-By" : "cache-ams21075-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667986603.879514,VS0,VE82", - "Vary" : "Origin" - } - }, - "uuid" : "73b2e9a9-67cb-4fbf-93e4-a62f23fea092", - "persistent" : true, - "insertionIndex" : 189 -} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mlqvncbwrp-a7517a00-361a-4ff4-a856-dcf7d5e297be.json b/mock/mappings/api_webhooks_mlqvncbwrp-a7517a00-361a-4ff4-a856-dcf7d5e297be.json deleted file mode 100644 index a28357a..0000000 --- a/mock/mappings/api_webhooks_mlqvncbwrp-a7517a00-361a-4ff4-a856-dcf7d5e297be.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "a7517a00-361a-4ff4-a856-dcf7d5e297be", - "name" : "api_webhooks_mlqvncbwrp", - "request" : { - "url" : "/api/webhooks/mlQvnCBWrP", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"mlQvnCBWrP\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"a0fbfa075b57e122769c38e484b942c8\",\"created_at\":\"2022-11-09T09:36:41.607Z\",\"updated_at\":\"2022-11-09T09:36:41.607Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/relationships/last_event_callbacks\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/last_event_callbacks\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "4", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"22a96e0a5345206566da96013d98436d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "c71788ca-1944-4804-b18e-4cac1b61bacd", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 09:36:41 GMT", - "X-Served-By" : "cache-ams21029-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667986602.903029,VS0,VE80", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "a7517a00-361a-4ff4-a856-dcf7d5e297be", - "persistent" : true, - "scenarioName" : "scenario-1-api-webhooks-mlQvnCBWrP", - "requiredScenarioState" : "scenario-1-api-webhooks-mlQvnCBWrP-2", - "newScenarioState" : "scenario-1-api-webhooks-mlQvnCBWrP-3", - "insertionIndex" : 185 -} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mlqvncbwrp-c31a8768-24d3-4412-9968-33d8c67d8286.json b/mock/mappings/api_webhooks_mlqvncbwrp-c31a8768-24d3-4412-9968-33d8c67d8286.json deleted file mode 100644 index 07de226..0000000 --- a/mock/mappings/api_webhooks_mlqvncbwrp-c31a8768-24d3-4412-9968-33d8c67d8286.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id" : "c31a8768-24d3-4412-9968-33d8c67d8286", - "name" : "api_webhooks_mlqvncbwrp", - "request" : { - "url" : "/api/webhooks/mlQvnCBWrP", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"mlQvnCBWrP\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"a0fbfa075b57e122769c38e484b942c8\",\"created_at\":\"2022-11-09T09:36:41.607Z\",\"updated_at\":\"2022-11-09T09:36:41.607Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/relationships/last_event_callbacks\",\"related\":\"https://the-green-brand-245.commercelayer.io/api/webhooks/mlQvnCBWrP/last_event_callbacks\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"VyjBZFOWJy\"}}}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "X-Ratelimit-Limit" : "600", - "X-Ratelimit-Count" : "3", - "X-Ratelimit-Period" : "300", - "Content-Type" : "application/vnd.api+json", - "Etag" : "W/\"22a96e0a5345206566da96013d98436d\"", - "Cache-Control" : "max-age=0, private, must-revalidate", - "X-Request-Id" : "4c21ce96-0282-4385-a1f0-26bcc92e6354", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Wed, 09 Nov 2022 09:36:41 GMT", - "X-Served-By" : "cache-ams21025-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1667986602.682967,VS0,VE40", - "Vary" : "Accept, Origin" - } - }, - "uuid" : "c31a8768-24d3-4412-9968-33d8c67d8286", - "persistent" : true, - "scenarioName" : "scenario-1-api-webhooks-mlQvnCBWrP", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-api-webhooks-mlQvnCBWrP-2", - "insertionIndex" : 184 -} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json b/mock/mappings/bing_geocoders-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json new file mode 100644 index 0000000..59de079 --- /dev/null +++ b/mock/mappings/bing_geocoders-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json @@ -0,0 +1,40 @@ +{ + "id" : "f525f83c-e960-44c4-a7a1-c17cf683f2b9", + "name" : "bing_geocoders", + "request" : { + "url" : "/bing_geocoders", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"key\":\"Bing Virtualearth Key\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"},\"name\":\"Incentro Bing Geocoder\",\"reference\":null,\"reference_origin\":null},\"type\":\"bing_geocoders\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:30.518Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7ce5ede6881de676f419ec85197b000172e7481559351be47c304e6d70419ea9\"}}}", + "headers" : { + "x-request-id" : "c29c330d-fcd6-433c-a0f7-84cd3869b27c", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "9cd89613044dbd169548784357bb8225", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:30 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"345ec92403fd24124cae0610d5026856\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f525f83c-e960-44c4-a7a1-c17cf683f2b9", + "persistent" : true, + "insertionIndex" : 270 +} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-16371e28-1401-4ac7-a81c-a0988cb4b54d.json b/mock/mappings/bing_geocoders_lxkgysqxbx-16371e28-1401-4ac7-a81c-a0988cb4b54d.json new file mode 100644 index 0000000..0ddd7a5 --- /dev/null +++ b/mock/mappings/bing_geocoders_lxkgysqxbx-16371e28-1401-4ac7-a81c-a0988cb4b54d.json @@ -0,0 +1,40 @@ +{ + "id" : "16371e28-1401-4ac7-a81c-a0988cb4b54d", + "name" : "bing_geocoders_lxkgysqxbx", + "request" : { + "url" : "/bing_geocoders/lxKgysqXBx", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"key\":\"Bing Virtualearth Key\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"},\"name\":\"Incentro Updated Bing Geocoder\",\"reference\":null,\"reference_origin\":null},\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:31.492Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d2cb830a5c41a2b65b8f5775a3119710a54c48f6183348893ca17d9e91267072\"}}}", + "headers" : { + "x-request-id" : "098ae3ff-78e4-4cbb-939c-c1641b051690", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "09315b16004dde05bd6c2b5fc97d8222", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:31 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"f78fcc276b620a602f989e987a691d46\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "16371e28-1401-4ac7-a81c-a0988cb4b54d", + "persistent" : true, + "insertionIndex" : 267 +} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-465eed74-eb0b-43f9-8484-13c1b7f3c833.json b/mock/mappings/bing_geocoders_lxkgysqxbx-465eed74-eb0b-43f9-8484-13c1b7f3c833.json new file mode 100644 index 0000000..1c66bdb --- /dev/null +++ b/mock/mappings/bing_geocoders_lxkgysqxbx-465eed74-eb0b-43f9-8484-13c1b7f3c833.json @@ -0,0 +1,38 @@ +{ + "id" : "465eed74-eb0b-43f9-8484-13c1b7f3c833", + "name" : "bing_geocoders_lxkgysqxbx", + "request" : { + "url" : "/bing_geocoders/lxKgysqXBx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:30.518Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7dea09a93f7802b99bd6b2fbd43fd1d804c87434989eb1e5e6f08bec50b72793\"}}}", + "headers" : { + "x-request-id" : "ef00844a-0d3b-47fa-a324-89204ea7289c", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "6b9baa19c499aa7456c3826111326c28", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:30 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c789593e65a4b02804998d4735a76884\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "465eed74-eb0b-43f9-8484-13c1b7f3c833", + "persistent" : true, + "scenarioName" : "scenario-42-bing_geocoders-lxKgysqXBx", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-2", + "insertionIndex" : 269 +} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json b/mock/mappings/bing_geocoders_lxkgysqxbx-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json new file mode 100644 index 0000000..30eac2c --- /dev/null +++ b/mock/mappings/bing_geocoders_lxkgysqxbx-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json @@ -0,0 +1,32 @@ +{ + "id" : "51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5", + "name" : "bing_geocoders_lxkgysqxbx", + "request" : { + "url" : "/bing_geocoders/lxKgysqXBx", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "c025c685-46aa-4de7-8d5e-cbdfed51c370", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "b4fe4d0b9ad15878b7095575be05fe59", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:32 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5", + "persistent" : true, + "insertionIndex" : 265 +} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-6a4a021e-845e-4059-ae6c-eeef7061e107.json b/mock/mappings/bing_geocoders_lxkgysqxbx-6a4a021e-845e-4059-ae6c-eeef7061e107.json new file mode 100644 index 0000000..e398745 --- /dev/null +++ b/mock/mappings/bing_geocoders_lxkgysqxbx-6a4a021e-845e-4059-ae6c-eeef7061e107.json @@ -0,0 +1,38 @@ +{ + "id" : "6a4a021e-845e-4059-ae6c-eeef7061e107", + "name" : "bing_geocoders_lxkgysqxbx", + "request" : { + "url" : "/bing_geocoders/lxKgysqXBx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:31.492Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d8fdc56a2aecf7cc124bf7c127e87bfe5be3d7b67b7a09718ef82e4214d54b92\"}}}", + "headers" : { + "x-request-id" : "143dba09-484a-426b-b07e-65bb07920373", + "x-kong-upstream-latency" : "41", + "X-Ratelimit-Remaining" : "89", + "x-kong-request-id" : "dd6c216c4cbbc9054c81993d23ee0318", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:31 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"1210c7cb88e488aa00014eabce90a992\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "6a4a021e-845e-4059-ae6c-eeef7061e107", + "persistent" : true, + "scenarioName" : "scenario-42-bing_geocoders-lxKgysqXBx", + "requiredScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-3", + "newScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-4", + "insertionIndex" : 266 +} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-735d2578-1567-4bc4-ba9b-0d4f036a36be.json b/mock/mappings/bing_geocoders_lxkgysqxbx-735d2578-1567-4bc4-ba9b-0d4f036a36be.json new file mode 100644 index 0000000..1fce51f --- /dev/null +++ b/mock/mappings/bing_geocoders_lxkgysqxbx-735d2578-1567-4bc4-ba9b-0d4f036a36be.json @@ -0,0 +1,36 @@ +{ + "id" : "735d2578-1567-4bc4-ba9b-0d4f036a36be", + "name" : "bing_geocoders_lxkgysqxbx", + "request" : { + "url" : "/bing_geocoders/lxKgysqXBx", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "fde643d5-e8aa-46de-9ff3-3467d97a1f01", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "88", + "x-kong-request-id" : "4d683365f0a78e3232e579586905473f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:32 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "735d2578-1567-4bc4-ba9b-0d4f036a36be", + "persistent" : true, + "scenarioName" : "scenario-42-bing_geocoders-lxKgysqXBx", + "requiredScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-4", + "insertionIndex" : 264 +} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-75081597-4c25-40a5-90e8-7f671ead5f6c.json b/mock/mappings/bing_geocoders_lxkgysqxbx-75081597-4c25-40a5-90e8-7f671ead5f6c.json new file mode 100644 index 0000000..e433546 --- /dev/null +++ b/mock/mappings/bing_geocoders_lxkgysqxbx-75081597-4c25-40a5-90e8-7f671ead5f6c.json @@ -0,0 +1,38 @@ +{ + "id" : "75081597-4c25-40a5-90e8-7f671ead5f6c", + "name" : "bing_geocoders_lxkgysqxbx", + "request" : { + "url" : "/bing_geocoders/lxKgysqXBx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:30.518Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c10632209907a89582b629a6eb8e41fa54ffdf143cc017cca6cb32299a10d0f2\"}}}", + "headers" : { + "x-request-id" : "fc59053e-5b7c-4102-9ba0-4f6bd569f94f", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "d8326212d1373a545b85cf5c8aa31358", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:31 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"00ec239ccba45b9be6d1c6ce0eb36224\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "75081597-4c25-40a5-90e8-7f671ead5f6c", + "persistent" : true, + "scenarioName" : "scenario-42-bing_geocoders-lxKgysqXBx", + "requiredScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-2", + "newScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-3", + "insertionIndex" : 268 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways-18b1fcc0-7c37-4d6d-93a3-855411622e62.json b/mock/mappings/braintree_gateways-18b1fcc0-7c37-4d6d-93a3-855411622e62.json new file mode 100644 index 0000000..ea2cc00 --- /dev/null +++ b/mock/mappings/braintree_gateways-18b1fcc0-7c37-4d6d-93a3-855411622e62.json @@ -0,0 +1,40 @@ +{ + "id" : "18b1fcc0-7c37-4d6d-93a3-855411622e62", + "name" : "braintree_gateways", + "request" : { + "url" : "/braintree_gateways", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"merchant_account_id\":\"xxxx-yyyy-zzzz\",\"merchant_id\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"name\":\"Incentro Braintree Gateway\",\"private_key\":\"xxxx-yyyy-zzzz\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null},\"type\":\"braintree_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:32.831Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d5c2b85a093711a04622e2223e4ca63de68dee8c8abd23420e326ab783892cbc\"}}}", + "headers" : { + "x-request-id" : "3c82d552-e6a3-4727-a03d-df702ac2165e", + "x-kong-upstream-latency" : "27", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "8401b907dc89ec54ae183a14eaf3d111", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:32 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"505c35db06d29f062cace1e3ab63e61d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "18b1fcc0-7c37-4d6d-93a3-855411622e62", + "persistent" : true, + "insertionIndex" : 263 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json new file mode 100644 index 0000000..e6afb69 --- /dev/null +++ b/mock/mappings/braintree_gateways_dkmlxsnjnj-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json @@ -0,0 +1,38 @@ +{ + "id" : "091bdfdb-6750-486f-ab2c-6202e5b8e68a", + "name" : "braintree_gateways_dkmlxsnjnj", + "request" : { + "url" : "/braintree_gateways/DkMLXsNJnj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:32.831Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6edc10b33b98309474fe0833016347893ffc2569e801ae07f4c36c7140c9a30a\"}}}", + "headers" : { + "x-request-id" : "faa5e5a7-4867-4cc4-a12a-8afbb198f3b5", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "87", + "x-kong-request-id" : "71a41d0da2a1963d04418c454790460d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:33 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"ff6c9bed7b2cc972e821a9a9ca85f201\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "091bdfdb-6750-486f-ab2c-6202e5b8e68a", + "persistent" : true, + "scenarioName" : "scenario-41-braintree_gateways-DkMLXsNJnj", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-2", + "insertionIndex" : 262 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-0971fd9e-eb22-4c87-989e-cda5738d0858.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-0971fd9e-eb22-4c87-989e-cda5738d0858.json new file mode 100644 index 0000000..780c7b9 --- /dev/null +++ b/mock/mappings/braintree_gateways_dkmlxsnjnj-0971fd9e-eb22-4c87-989e-cda5738d0858.json @@ -0,0 +1,38 @@ +{ + "id" : "0971fd9e-eb22-4c87-989e-cda5738d0858", + "name" : "braintree_gateways_dkmlxsnjnj", + "request" : { + "url" : "/braintree_gateways/DkMLXsNJnj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:32.831Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"452696f5ca9f52a56519ce8db863dd2e0f3879e2d5575ba275da16fa1137cad6\"}}}", + "headers" : { + "x-request-id" : "2f848f35-5940-4883-a6ce-5b3ced373fa8", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "86", + "x-kong-request-id" : "559afb0422265b6db0e6a007b9381077", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:33 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"3a0161945f31a8cdd8a044bfc9691c5d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0971fd9e-eb22-4c87-989e-cda5738d0858", + "persistent" : true, + "scenarioName" : "scenario-41-braintree_gateways-DkMLXsNJnj", + "requiredScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-2", + "newScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-3", + "insertionIndex" : 261 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-0d07ae32-151f-42f2-975f-3eeb1fceec35.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-0d07ae32-151f-42f2-975f-3eeb1fceec35.json new file mode 100644 index 0000000..37e9acd --- /dev/null +++ b/mock/mappings/braintree_gateways_dkmlxsnjnj-0d07ae32-151f-42f2-975f-3eeb1fceec35.json @@ -0,0 +1,38 @@ +{ + "id" : "0d07ae32-151f-42f2-975f-3eeb1fceec35", + "name" : "braintree_gateways_dkmlxsnjnj", + "request" : { + "url" : "/braintree_gateways/DkMLXsNJnj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway Changed\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:33.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b82a60e623312130c7103ab55775a0b990ed741b470398511f11c8b0a69b5271\"}}}", + "headers" : { + "x-request-id" : "678d26d7-e449-4b0f-befc-136a0c1a6847", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "85", + "x-kong-request-id" : "41210a2c4eb04f5b201d136614f03a44", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:34 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"db3fbb96cf18f19f468fb2c8251d4b08\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0d07ae32-151f-42f2-975f-3eeb1fceec35", + "persistent" : true, + "scenarioName" : "scenario-41-braintree_gateways-DkMLXsNJnj", + "requiredScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-3", + "newScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-4", + "insertionIndex" : 259 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-52e93e92-527d-4cb6-824c-6713dd08147c.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-52e93e92-527d-4cb6-824c-6713dd08147c.json new file mode 100644 index 0000000..f6a85ed --- /dev/null +++ b/mock/mappings/braintree_gateways_dkmlxsnjnj-52e93e92-527d-4cb6-824c-6713dd08147c.json @@ -0,0 +1,40 @@ +{ + "id" : "52e93e92-527d-4cb6-824c-6713dd08147c", + "name" : "braintree_gateways_dkmlxsnjnj", + "request" : { + "url" : "/braintree_gateways/DkMLXsNJnj", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"merchant_account_id\":\"xxxx-yyyy-zzzz\",\"merchant_id\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"name\":\"Incentro Braintree Gateway Changed\",\"private_key\":\"xxxx-yyyy-zzzz\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null},\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway Changed\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:33.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1d8cb58c01a37c372593464a185d59c83c60b5c7af21d3134bee38588023cf0a\"}}}", + "headers" : { + "x-request-id" : "05c20a38-2cd0-46a0-89f3-7283030ecbc6", + "x-kong-upstream-latency" : "27", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "0bdc484261327d3945a07a1cb9df1c52", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:33 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"67e0a872502b63dfa0551f26f1b30a68\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "52e93e92-527d-4cb6-824c-6713dd08147c", + "persistent" : true, + "insertionIndex" : 260 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-83e3238b-d012-4526-9104-401fcaafd2b1.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-83e3238b-d012-4526-9104-401fcaafd2b1.json new file mode 100644 index 0000000..7e680cc --- /dev/null +++ b/mock/mappings/braintree_gateways_dkmlxsnjnj-83e3238b-d012-4526-9104-401fcaafd2b1.json @@ -0,0 +1,36 @@ +{ + "id" : "83e3238b-d012-4526-9104-401fcaafd2b1", + "name" : "braintree_gateways_dkmlxsnjnj", + "request" : { + "url" : "/braintree_gateways/DkMLXsNJnj", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "d983a99b-aff0-4e01-b398-78b27f61d74d", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "84", + "x-kong-request-id" : "f2071b58f52661066941db33c7382967", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:34 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "83e3238b-d012-4526-9104-401fcaafd2b1", + "persistent" : true, + "scenarioName" : "scenario-41-braintree_gateways-DkMLXsNJnj", + "requiredScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-4", + "insertionIndex" : 257 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-ba50887e-11cc-4939-8438-1016d435b267.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-ba50887e-11cc-4939-8438-1016d435b267.json new file mode 100644 index 0000000..11492f4 --- /dev/null +++ b/mock/mappings/braintree_gateways_dkmlxsnjnj-ba50887e-11cc-4939-8438-1016d435b267.json @@ -0,0 +1,32 @@ +{ + "id" : "ba50887e-11cc-4939-8438-1016d435b267", + "name" : "braintree_gateways_dkmlxsnjnj", + "request" : { + "url" : "/braintree_gateways/DkMLXsNJnj", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "6a086688-799d-4068-87d0-5eabd39f393a", + "x-kong-upstream-latency" : "88", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "fb0059416811ef11ca007122d9ad8317", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:34 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "ba50887e-11cc-4939-8438-1016d435b267", + "persistent" : true, + "insertionIndex" : 258 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups-7014a1ce-5d68-4649-a5e4-3e4476be520a.json b/mock/mappings/customer_groups-7014a1ce-5d68-4649-a5e4-3e4476be520a.json new file mode 100644 index 0000000..5859ef9 --- /dev/null +++ b/mock/mappings/customer_groups-7014a1ce-5d68-4649-a5e4-3e4476be520a.json @@ -0,0 +1,40 @@ +{ + "id" : "7014a1ce-5d68-4649-a5e4-3e4476be520a", + "name" : "customer_groups", + "request" : { + "url" : "/customer_groups", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"},\"name\":\"Incentro customer group\",\"reference\":null,\"reference_origin\":null},\"type\":\"customer_groups\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:35.216Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"821c482c9fa6424c77e70656fed3d9ff0ac180a12e6f12cc88f871ff50a908f8\"}}}", + "headers" : { + "x-request-id" : "9cc8a366-63f9-40cf-8bb2-17b20e477888", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "0b91817f3dcb2a3c347b5455dceba377", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:35 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c52159f3a8dcee6afc155c19af256faa\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7014a1ce-5d68-4649-a5e4-3e4476be520a", + "persistent" : true, + "insertionIndex" : 256 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json b/mock/mappings/customer_groups_ypvbrhpgjp-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json new file mode 100644 index 0000000..8663b29 --- /dev/null +++ b/mock/mappings/customer_groups_ypvbrhpgjp-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json @@ -0,0 +1,36 @@ +{ + "id" : "3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c", + "name" : "customer_groups_ypvbrhpgjp", + "request" : { + "url" : "/customer_groups/YpvbrhPgjp", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "3635b8bf-31d9-401e-b05e-e4179213d348", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "80", + "x-kong-request-id" : "56c4d00fe5a17314d0318f2f26748136", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c", + "persistent" : true, + "scenarioName" : "scenario-40-customer_groups-YpvbrhPgjp", + "requiredScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-4", + "insertionIndex" : 250 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-3c3d864a-6c42-4cfd-b366-3133054c42e9.json b/mock/mappings/customer_groups_ypvbrhpgjp-3c3d864a-6c42-4cfd-b366-3133054c42e9.json new file mode 100644 index 0000000..72268cc --- /dev/null +++ b/mock/mappings/customer_groups_ypvbrhpgjp-3c3d864a-6c42-4cfd-b366-3133054c42e9.json @@ -0,0 +1,38 @@ +{ + "id" : "3c3d864a-6c42-4cfd-b366-3133054c42e9", + "name" : "customer_groups_ypvbrhpgjp", + "request" : { + "url" : "/customer_groups/YpvbrhPgjp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:35.216Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7dce93aade6a9a0d4ff53d9289e8a33781062ab6ca91f5c72d5d7edc63f3aa97\"}}}", + "headers" : { + "x-request-id" : "68fd8a32-bcda-460b-9992-0e2beed63dab", + "x-kong-upstream-latency" : "78", + "X-Ratelimit-Remaining" : "83", + "x-kong-request-id" : "399ff6085f20683b4cd66304ac6c5565", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:35 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"154af81e59a8fbd923e84c23a2ce8a9f\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "3c3d864a-6c42-4cfd-b366-3133054c42e9", + "persistent" : true, + "scenarioName" : "scenario-40-customer_groups-YpvbrhPgjp", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-2", + "insertionIndex" : 255 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-50fb8902-6164-491e-b20f-1e5d894cd652.json b/mock/mappings/customer_groups_ypvbrhpgjp-50fb8902-6164-491e-b20f-1e5d894cd652.json new file mode 100644 index 0000000..54e9e60 --- /dev/null +++ b/mock/mappings/customer_groups_ypvbrhpgjp-50fb8902-6164-491e-b20f-1e5d894cd652.json @@ -0,0 +1,32 @@ +{ + "id" : "50fb8902-6164-491e-b20f-1e5d894cd652", + "name" : "customer_groups_ypvbrhpgjp", + "request" : { + "url" : "/customer_groups/YpvbrhPgjp", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "df2f59d2-d584-4cd1-9e71-43f1710cc036", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "b8e850185873347e67411d0a5cd9ee6c", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:36 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "50fb8902-6164-491e-b20f-1e5d894cd652", + "persistent" : true, + "insertionIndex" : 251 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-75800631-5c7d-4848-abe3-65f861be3963.json b/mock/mappings/customer_groups_ypvbrhpgjp-75800631-5c7d-4848-abe3-65f861be3963.json new file mode 100644 index 0000000..9dcbcb1 --- /dev/null +++ b/mock/mappings/customer_groups_ypvbrhpgjp-75800631-5c7d-4848-abe3-65f861be3963.json @@ -0,0 +1,38 @@ +{ + "id" : "75800631-5c7d-4848-abe3-65f861be3963", + "name" : "customer_groups_ypvbrhpgjp", + "request" : { + "url" : "/customer_groups/YpvbrhPgjp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:35.216Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9bd758b5277d0c6e6a92d885f7a5bdc1acd00186da91806ddb468f10928bdba1\"}}}", + "headers" : { + "x-request-id" : "afcddec6-922d-4b8b-9384-01daf1a0afc3", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "efe6e27301ec2817adf363182ac9266e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:35 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"17c116de5306135aaf3850d0c84bd304\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "75800631-5c7d-4848-abe3-65f861be3963", + "persistent" : true, + "scenarioName" : "scenario-40-customer_groups-YpvbrhPgjp", + "requiredScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-2", + "newScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-3", + "insertionIndex" : 254 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-e2e8478d-ac07-493a-868d-8a48a521e561.json b/mock/mappings/customer_groups_ypvbrhpgjp-e2e8478d-ac07-493a-868d-8a48a521e561.json new file mode 100644 index 0000000..9219e95 --- /dev/null +++ b/mock/mappings/customer_groups_ypvbrhpgjp-e2e8478d-ac07-493a-868d-8a48a521e561.json @@ -0,0 +1,40 @@ +{ + "id" : "e2e8478d-ac07-493a-868d-8a48a521e561", + "name" : "customer_groups_ypvbrhpgjp", + "request" : { + "url" : "/customer_groups/YpvbrhPgjp", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"},\"name\":\"Incentro updated customer group\",\"reference\":null,\"reference_origin\":null},\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro updated customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:36.203Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7fce8874738f86a4ed36efe39b4290f97fc5e0d4fc18e4fa96e1202192a6f557\"}}}", + "headers" : { + "x-request-id" : "7fcb3247-19a7-4746-8521-8b1bc083309d", + "x-kong-upstream-latency" : "23", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "2a99911bd7f0b14feb7c063c209c0c3e", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:36 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"a654b0b68bcecd7348d1b4aae3ab5e12\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e2e8478d-ac07-493a-868d-8a48a521e561", + "persistent" : true, + "insertionIndex" : 253 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json b/mock/mappings/customer_groups_ypvbrhpgjp-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json new file mode 100644 index 0000000..604fab9 --- /dev/null +++ b/mock/mappings/customer_groups_ypvbrhpgjp-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json @@ -0,0 +1,38 @@ +{ + "id" : "f86bc4bd-1a0c-48b9-bf02-121922caff8d", + "name" : "customer_groups_ypvbrhpgjp", + "request" : { + "url" : "/customer_groups/YpvbrhPgjp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro updated customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:36.203Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4c39a735071e2290fca77ff83581809df69d50de08b9bd3cb2b0ae3da4a5e800\"}}}", + "headers" : { + "x-request-id" : "502ac895-fc7f-48bf-b858-3c060c910250", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "81", + "x-kong-request-id" : "2e0b4d43ed82d136d76f0618ac67807e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:36 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"856bd80822e9c3ca72eeae082c84e039\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f86bc4bd-1a0c-48b9-bf02-121922caff8d", + "persistent" : true, + "scenarioName" : "scenario-40-customer_groups-YpvbrhPgjp", + "requiredScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-3", + "newScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-4", + "insertionIndex" : 252 +} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times-7c0e6478-4d03-47c4-ae11-70119f779b4b.json b/mock/mappings/delivery_lead_times-7c0e6478-4d03-47c4-ae11-70119f779b4b.json new file mode 100644 index 0000000..758a112 --- /dev/null +++ b/mock/mappings/delivery_lead_times-7c0e6478-4d03-47c4-ae11-70119f779b4b.json @@ -0,0 +1,40 @@ +{ + "id" : "7c0e6478-4d03-47c4-ae11-70119f779b4b", + "name" : "delivery_lead_times", + "request" : { + "url" : "/delivery_lead_times", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"max_hours\":100,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_hours\":10,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"shipping_method\":{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\"}},\"stock_location\":{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\"}}},\"type\":\"delivery_lead_times\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:38.006Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9fd5564bbd78e257db1bebb3b792731ca3212d0f0661e39db64db443b74af827\"}}}", + "headers" : { + "x-request-id" : "711e4141-1334-4fd5-9465-5e28659aafd9", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "5a0dde4ef642e5281d910c6ddb958e52", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"f0d90b18e6476600c8d0d0364531ddca\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7c0e6478-4d03-47c4-ae11-70119f779b4b", + "persistent" : true, + "insertionIndex" : 246 +} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-4229326a-6840-4aa1-888e-dd1567c701e0.json b/mock/mappings/delivery_lead_times_nogemfnlrx-4229326a-6840-4aa1-888e-dd1567c701e0.json new file mode 100644 index 0000000..6ed63a6 --- /dev/null +++ b/mock/mappings/delivery_lead_times_nogemfnlrx-4229326a-6840-4aa1-888e-dd1567c701e0.json @@ -0,0 +1,39 @@ +{ + "id" : "4229326a-6840-4aa1-888e-dd1567c701e0", + "name" : "delivery_lead_times_nogemfnlrx", + "request" : { + "url" : "/delivery_lead_times/NOgEMFNLRx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:38.006Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"25720e232d16029ef25f2ab8df4abb375929b5080a6456e62115ce6509e4edaa\"}}}", + "headers" : { + "x-request-id" : "67045124-4f49-42fa-b232-471aec17bfa1", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "77", + "x-kong-request-id" : "7ff6f849f47f5e5933d6e15ed437b91a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"e862e63e32af95e3edb31b72dc1d314c\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "4229326a-6840-4aa1-888e-dd1567c701e0", + "persistent" : true, + "scenarioName" : "scenario-37-delivery_lead_times-NOgEMFNLRx", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-2", + "insertionIndex" : 242 +} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-7e9e1c7e-2540-46ed-abf1-144b867ce032.json b/mock/mappings/delivery_lead_times_nogemfnlrx-7e9e1c7e-2540-46ed-abf1-144b867ce032.json new file mode 100644 index 0000000..82698d1 --- /dev/null +++ b/mock/mappings/delivery_lead_times_nogemfnlrx-7e9e1c7e-2540-46ed-abf1-144b867ce032.json @@ -0,0 +1,40 @@ +{ + "id" : "7e9e1c7e-2540-46ed-abf1-144b867ce032", + "name" : "delivery_lead_times_nogemfnlrx", + "request" : { + "url" : "/delivery_lead_times/NOgEMFNLRx", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"max_hours\":200,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_hours\":20,\"reference\":null,\"reference_origin\":null},\"id\":\"NOgEMFNLRx\",\"relationships\":{\"shipping_method\":{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\"}},\"stock_location\":{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\"}}},\"type\":\"delivery_lead_times\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":20,\"max_hours\":200,\"min_days\":1,\"max_days\":8,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:39.553Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1d2fd162d82e0d64f941ca7bddbc73baa93e89efa63ea6c806b2379d044113ce\"}}}", + "headers" : { + "x-request-id" : "8ed90178-01d9-4cc9-b625-a3c58d6d0ed9", + "x-kong-upstream-latency" : "28", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "0d63237028c4ee4c10f57e6c7286327e", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"37194a3e58bad26856650932bf7a4f7d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7e9e1c7e-2540-46ed-abf1-144b867ce032", + "persistent" : true, + "insertionIndex" : 237 +} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-84fb75a5-98f7-4e10-bb40-71f33c455a94.json b/mock/mappings/delivery_lead_times_nogemfnlrx-84fb75a5-98f7-4e10-bb40-71f33c455a94.json new file mode 100644 index 0000000..d392391 --- /dev/null +++ b/mock/mappings/delivery_lead_times_nogemfnlrx-84fb75a5-98f7-4e10-bb40-71f33c455a94.json @@ -0,0 +1,39 @@ +{ + "id" : "84fb75a5-98f7-4e10-bb40-71f33c455a94", + "name" : "delivery_lead_times_nogemfnlrx", + "request" : { + "url" : "/delivery_lead_times/NOgEMFNLRx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":20,\"max_hours\":200,\"min_days\":1,\"max_days\":8,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:39.553Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"580800cd8b4f5be48c11ff30bfef1b95f1af7b0b0d5adaaa323db4ad1d4acf7d\"}}}", + "headers" : { + "x-request-id" : "0fd64622-a8ca-44c5-9069-14a044e6f5ae", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "71", + "x-kong-request-id" : "67500d6c2d05583a083ada708112dc09", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"6a426c4e12061d593b26d33bb908d085\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "84fb75a5-98f7-4e10-bb40-71f33c455a94", + "persistent" : true, + "scenarioName" : "scenario-37-delivery_lead_times-NOgEMFNLRx", + "requiredScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-3", + "newScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-4", + "insertionIndex" : 233 +} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json b/mock/mappings/delivery_lead_times_nogemfnlrx-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json new file mode 100644 index 0000000..207fe4a --- /dev/null +++ b/mock/mappings/delivery_lead_times_nogemfnlrx-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json @@ -0,0 +1,39 @@ +{ + "id" : "9cf722c5-12f9-4921-a7aa-c1c31c245ba4", + "name" : "delivery_lead_times_nogemfnlrx", + "request" : { + "url" : "/delivery_lead_times/NOgEMFNLRx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:38.006Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"25720e232d16029ef25f2ab8df4abb375929b5080a6456e62115ce6509e4edaa\"}}}", + "headers" : { + "x-request-id" : "67045124-4f49-42fa-b232-471aec17bfa1", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "74", + "x-kong-request-id" : "7ff6f849f47f5e5933d6e15ed437b91a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"e862e63e32af95e3edb31b72dc1d314c\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "9cf722c5-12f9-4921-a7aa-c1c31c245ba4", + "persistent" : true, + "scenarioName" : "scenario-37-delivery_lead_times-NOgEMFNLRx", + "requiredScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-2", + "newScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-3", + "insertionIndex" : 238 +} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-d744ba63-05b5-45de-aa94-8bf2762c9212.json b/mock/mappings/delivery_lead_times_nogemfnlrx-d744ba63-05b5-45de-aa94-8bf2762c9212.json new file mode 100644 index 0000000..8926e81 --- /dev/null +++ b/mock/mappings/delivery_lead_times_nogemfnlrx-d744ba63-05b5-45de-aa94-8bf2762c9212.json @@ -0,0 +1,32 @@ +{ + "id" : "d744ba63-05b5-45de-aa94-8bf2762c9212", + "name" : "delivery_lead_times_nogemfnlrx", + "request" : { + "url" : "/delivery_lead_times/NOgEMFNLRx", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "cbe2b79e-0475-4c41-91e8-911fd589dd79", + "x-kong-upstream-latency" : "27", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "577caa306ac9112072da35542d0f5738", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "d744ba63-05b5-45de-aa94-8bf2762c9212", + "persistent" : true, + "insertionIndex" : 232 +} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json b/mock/mappings/delivery_lead_times_nogemfnlrx-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json new file mode 100644 index 0000000..238d797 --- /dev/null +++ b/mock/mappings/delivery_lead_times_nogemfnlrx-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json @@ -0,0 +1,37 @@ +{ + "id" : "ec54d76e-3138-4c24-a3aa-581f39e5b64f", + "name" : "delivery_lead_times_nogemfnlrx", + "request" : { + "url" : "/delivery_lead_times/NOgEMFNLRx", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "e2cc801c-9faf-491a-a7c9-d47f53816bc2", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "69", + "x-kong-request-id" : "4e46865daec73f2b8da93021f4ad082b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "cache-control" : "no-cache", + "Age" : "0" + } + }, + "uuid" : "ec54d76e-3138-4c24-a3aa-581f39e5b64f", + "persistent" : true, + "scenarioName" : "scenario-37-delivery_lead_times-NOgEMFNLRx", + "requiredScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-4", + "insertionIndex" : 227 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json b/mock/mappings/external_gateways-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json new file mode 100644 index 0000000..46bfd49 --- /dev/null +++ b/mock/mappings/external_gateways-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json @@ -0,0 +1,40 @@ +{ + "id" : "014530b9-cd2d-4845-b8f7-4cd8f082dfb6", + "name" : "external_gateways", + "request" : { + "url" : "/external_gateways", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway\",\"reference\":null,\"reference_origin\":null,\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"void_url\":\"https://example.com\"},\"type\":\"external_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:41.908Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01b2bd0ca74545fd8a319847b5a739a3577eda97d8102d3410ca6c6cd537f6f2\"}}}", + "headers" : { + "x-request-id" : "addc52d6-d636-423b-b641-3b7d834eee4a", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "6ff84e3038126907e936e17eff1caa4a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"5cc0d45a9a2a91dbba547f3ef57226e0\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "014530b9-cd2d-4845-b8f7-4cd8f082dfb6", + "persistent" : true, + "insertionIndex" : 224 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-176afc29-2c80-4871-bb2f-01cd533b81e2.json b/mock/mappings/external_gateways_nxmoxsbbgj-176afc29-2c80-4871-bb2f-01cd533b81e2.json new file mode 100644 index 0000000..072088d --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-176afc29-2c80-4871-bb2f-01cd533b81e2.json @@ -0,0 +1,40 @@ +{ + "id" : "176afc29-2c80-4871-bb2f-01cd533b81e2", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":null,\"capture_url\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway_changed\",\"reference\":null,\"reference_origin\":null,\"refund_url\":null,\"token_url\":null,\"void_url\":null},\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:43.708Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":null,\"capture_url\":null,\"void_url\":null,\"refund_url\":null,\"token_url\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9ace1bde5fe70589730f5959e9fc32d6a33e45aa47eb9716592a41b3b553b973\"}}}", + "headers" : { + "x-request-id" : "a8c14e03-271a-44d7-99e7-3a6c28384bb5", + "x-kong-upstream-latency" : "29", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "103c5551fca158073ac4253eb2cb6272", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:43 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"710637aae8d8065d00d7feed4e045033\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "176afc29-2c80-4871-bb2f-01cd533b81e2", + "persistent" : true, + "insertionIndex" : 218 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-52d84087-7ffc-4083-9714-812daa9aa817.json b/mock/mappings/external_gateways_nxmoxsbbgj-52d84087-7ffc-4083-9714-812daa9aa817.json new file mode 100644 index 0000000..899ab82 --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-52d84087-7ffc-4083-9714-812daa9aa817.json @@ -0,0 +1,38 @@ +{ + "id" : "52d84087-7ffc-4083-9714-812daa9aa817", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:42.777Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e9bf26b8576b1c8457665aec5b80cff725e1d1fdb37d70f4b0c98237b1487b05\"}}}", + "headers" : { + "x-request-id" : "f7be4887-e9c1-4022-97bb-f6b4ef6fb335", + "x-kong-upstream-latency" : "22", + "X-Ratelimit-Remaining" : "64", + "x-kong-request-id" : "2cae4a09556e0f415dfd2416fa2b5d5e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:43 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"29925b1a1f1365447dc59dca34d4f0b5\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "52d84087-7ffc-4083-9714-812daa9aa817", + "persistent" : true, + "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", + "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-3", + "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-4", + "insertionIndex" : 220 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-5a8571ce-677f-4668-a3b4-9257076280e0.json b/mock/mappings/external_gateways_nxmoxsbbgj-5a8571ce-677f-4668-a3b4-9257076280e0.json new file mode 100644 index 0000000..9997d83 --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-5a8571ce-677f-4668-a3b4-9257076280e0.json @@ -0,0 +1,38 @@ +{ + "id" : "5a8571ce-677f-4668-a3b4-9257076280e0", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:42.777Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ee987408d2f9f5bb2a3c6131415444c5fb695ada1121fff119affbd943e0046a\"}}}", + "headers" : { + "x-request-id" : "4dbe1a03-4480-4bf7-bb86-73ba39876ee6", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "63", + "x-kong-request-id" : "58cf0736b8ced3547877c133e2f9b066", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:43 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b23cc4c600903ce6cdcd002047fb006a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "5a8571ce-677f-4668-a3b4-9257076280e0", + "persistent" : true, + "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", + "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-4", + "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-5", + "insertionIndex" : 219 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-62023398-28ff-488f-9e24-c959cb5895af.json b/mock/mappings/external_gateways_nxmoxsbbgj-62023398-28ff-488f-9e24-c959cb5895af.json new file mode 100644 index 0000000..15bd41c --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-62023398-28ff-488f-9e24-c959cb5895af.json @@ -0,0 +1,32 @@ +{ + "id" : "62023398-28ff-488f-9e24-c959cb5895af", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "43d398d4-3ce9-41f9-bfc4-8903f79685f2", + "x-kong-upstream-latency" : "37", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "519334090ccdad3e38c3223101a3b265", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:44 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "62023398-28ff-488f-9e24-c959cb5895af", + "persistent" : true, + "insertionIndex" : 216 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-660f7e8d-5dfc-4311-92df-246b274ca44e.json b/mock/mappings/external_gateways_nxmoxsbbgj-660f7e8d-5dfc-4311-92df-246b274ca44e.json new file mode 100644 index 0000000..f6d1b1a --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-660f7e8d-5dfc-4311-92df-246b274ca44e.json @@ -0,0 +1,36 @@ +{ + "id" : "660f7e8d-5dfc-4311-92df-246b274ca44e", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "e477068e-45c6-48c8-b3f9-b4ea9167ead6", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "61", + "x-kong-request-id" : "41872c50511c9f51561428378ec1a722", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:44 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "660f7e8d-5dfc-4311-92df-246b274ca44e", + "persistent" : true, + "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", + "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-6", + "insertionIndex" : 215 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-aa452eed-2253-45f2-a26c-575a0bc98e8e.json b/mock/mappings/external_gateways_nxmoxsbbgj-aa452eed-2253-45f2-a26c-575a0bc98e8e.json new file mode 100644 index 0000000..c673984 --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-aa452eed-2253-45f2-a26c-575a0bc98e8e.json @@ -0,0 +1,38 @@ +{ + "id" : "aa452eed-2253-45f2-a26c-575a0bc98e8e", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:41.908Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1791f2302ea42d88107553c9203ef464ea0e4c6c0ed9e01b68522b7d25f3dc07\"}}}", + "headers" : { + "x-request-id" : "7d02b446-bf53-421b-982c-311f11bffd53", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "66", + "x-kong-request-id" : "9f81eb7715b9e05ca55d3e6875e15600", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:42 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"ee82928a96c0a3d2b474595b76430842\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "aa452eed-2253-45f2-a26c-575a0bc98e8e", + "persistent" : true, + "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-2", + "insertionIndex" : 223 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json b/mock/mappings/external_gateways_nxmoxsbbgj-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json new file mode 100644 index 0000000..46c5d6d --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json @@ -0,0 +1,38 @@ +{ + "id" : "ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:43.708Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":null,\"capture_url\":null,\"void_url\":null,\"refund_url\":null,\"token_url\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8a9f6fbe066f7e3c6f217f1e8c6057a829c0a8126871400f9ca4e330ce6e61ea\"}}}", + "headers" : { + "x-request-id" : "ebd5d803-d8e9-486e-b261-319c242e61b2", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "62", + "x-kong-request-id" : "204f0e1ac174a220f7626131c5682024", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:44 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"168858c1421b2f8205dedeb9dfef3e2e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26", + "persistent" : true, + "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", + "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-5", + "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-6", + "insertionIndex" : 217 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-d71df068-9300-4b57-a734-5271a334aaa5.json b/mock/mappings/external_gateways_nxmoxsbbgj-d71df068-9300-4b57-a734-5271a334aaa5.json new file mode 100644 index 0000000..6e2c5ab --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-d71df068-9300-4b57-a734-5271a334aaa5.json @@ -0,0 +1,38 @@ +{ + "id" : "d71df068-9300-4b57-a734-5271a334aaa5", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:41.908Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ca2f596026e0e3bf8ce0c2f5ea9808cb2e692af80a658e3b972bc67958a71741\"}}}", + "headers" : { + "x-request-id" : "880e9d49-9f7f-42e6-a339-1bcd32418e59", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "65", + "x-kong-request-id" : "472a1f6f66b59a2db20a2b6d6a76b040", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:42 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c207b1bbaf8bf96829f4f6402c8009f1\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d71df068-9300-4b57-a734-5271a334aaa5", + "persistent" : true, + "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", + "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-2", + "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-3", + "insertionIndex" : 222 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json b/mock/mappings/external_gateways_nxmoxsbbgj-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json new file mode 100644 index 0000000..41672f8 --- /dev/null +++ b/mock/mappings/external_gateways_nxmoxsbbgj-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json @@ -0,0 +1,40 @@ +{ + "id" : "dbc56e6d-72bd-44d5-b67e-beff79e4750b", + "name" : "external_gateways_nxmoxsbbgj", + "request" : { + "url" : "/external_gateways/nxmoXsbBgj", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway_changed\",\"reference\":null,\"reference_origin\":null,\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\"},\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:42.777Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2147031ab5405edb3e47c166b2252896b557e7b197c4cc8956151454e31ae77d\"}}}", + "headers" : { + "x-request-id" : "c380c301-6a16-4b75-b6b7-ccc772731024", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "f298305fd437de05d8eab332dd15015c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:42 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c746517be410642cd1fc1090f38a159b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "dbc56e6d-72bd-44d5-b67e-beff79e4750b", + "persistent" : true, + "insertionIndex" : 221 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json b/mock/mappings/external_tax_calculators-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json new file mode 100644 index 0000000..b6fff6e --- /dev/null +++ b/mock/mappings/external_tax_calculators-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json @@ -0,0 +1,40 @@ +{ + "id" : "74b2a6ab-efbb-4048-8ed3-c628f8202e51", + "name" : "external_tax_calculators", + "request" : { + "url" : "/external_tax_calculators", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"name\":\"incentro_external_tax_calculator\",\"reference\":null,\"reference_origin\":null,\"tax_calculator_url\":\"https://example.com\"},\"type\":\"external_tax_calculators\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:44.887Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"29d3f8e63329a91bf94cb3dc495e09b336ed3fea7fc3277a6b84f9ae695a587d\"}}}", + "headers" : { + "x-request-id" : "2929a72f-da7b-40c2-a8dc-3bfecaed5d2c", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "89", + "x-kong-request-id" : "9cf08c4a36feec50450caf028a1e8124", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:44 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"4c9dddf5fd9c50118dd1bf9334d95996\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "74b2a6ab-efbb-4048-8ed3-c628f8202e51", + "persistent" : true, + "insertionIndex" : 214 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators-a002e74d-4717-48c1-a39a-98bc639b8f0a.json b/mock/mappings/external_tax_calculators-a002e74d-4717-48c1-a39a-98bc639b8f0a.json new file mode 100644 index 0000000..e2c1e0c --- /dev/null +++ b/mock/mappings/external_tax_calculators-a002e74d-4717-48c1-a39a-98bc639b8f0a.json @@ -0,0 +1,40 @@ +{ + "id" : "a002e74d-4717-48c1-a39a-98bc639b8f0a", + "name" : "external_tax_calculators", + "request" : { + "url" : "/external_tax_calculators", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"incentro_external_tax_calculator\",\"reference\":null,\"reference_origin\":null,\"tax_calculator_url\":\"https://example.com\"},\"type\":\"external_tax_calculators\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"RvMjlTRxPq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:52:06.953Z\",\"updated_at\":\"2024-10-24T15:52:06.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"69bb54542fe97db58ccfdedf5a761ca5\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d90bae92bb97b0d1429ddca9fbb96b26ef8a9748d07bac1cd7042d012ba63ab4\"}}}", + "headers" : { + "x-request-id" : "dac38249-144b-4130-a50e-9e125eaffe12", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "75", + "x-kong-request-id" : "daa90b386b0dd728fccecb3da3589060", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:06 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"9b6fb3aa5376f156927493e4cbe25b51\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a002e74d-4717-48c1-a39a-98bc639b8f0a", + "persistent" : true, + "insertionIndex" : 128 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json b/mock/mappings/external_tax_calculators_jnrqltraly-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json new file mode 100644 index 0000000..2be647a --- /dev/null +++ b/mock/mappings/external_tax_calculators_jnrqltraly-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json @@ -0,0 +1,38 @@ +{ + "id" : "27ad1ac6-9c8a-4602-b55c-311de2ec94b0", + "name" : "external_tax_calculators_jnrqltraly", + "request" : { + "url" : "/external_tax_calculators/JNrQLTraLy", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator_changed\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:45.967Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"5002013d39258ef930a9ffc88b328155ffa6a940b2f5aa1585d16e2069a7a5fa\"}}}", + "headers" : { + "x-request-id" : "70999fb1-1cc8-4e50-81de-ff6e5d35859f", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "58", + "x-kong-request-id" : "cffd7549ee94771ec3fbb56d92e9517b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:46 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d89639239cbbfb64a4aa1cd0763a3ae9\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "27ad1ac6-9c8a-4602-b55c-311de2ec94b0", + "persistent" : true, + "scenarioName" : "scenario-34-external_tax_calculators-JNrQLTraLy", + "requiredScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-3", + "newScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-4", + "insertionIndex" : 210 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-439da122-c274-46fb-8cc4-7931c4812e77.json b/mock/mappings/external_tax_calculators_jnrqltraly-439da122-c274-46fb-8cc4-7931c4812e77.json new file mode 100644 index 0000000..038aa20 --- /dev/null +++ b/mock/mappings/external_tax_calculators_jnrqltraly-439da122-c274-46fb-8cc4-7931c4812e77.json @@ -0,0 +1,38 @@ +{ + "id" : "439da122-c274-46fb-8cc4-7931c4812e77", + "name" : "external_tax_calculators_jnrqltraly", + "request" : { + "url" : "/external_tax_calculators/JNrQLTraLy", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:44.887Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"cc2d75c038f7665d4da20e0062a677bb8e2e245e4c564127d149630e891473a5\"}}}", + "headers" : { + "x-request-id" : "383b203c-fcd6-4edf-8fe1-d00b2868f4e0", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "60", + "x-kong-request-id" : "36dbe16804365b37a8fe0c31c3a2cf55", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:45 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"28969f1f620cd53ce5c38051421f34a5\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "439da122-c274-46fb-8cc4-7931c4812e77", + "persistent" : true, + "scenarioName" : "scenario-34-external_tax_calculators-JNrQLTraLy", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-2", + "insertionIndex" : 213 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json b/mock/mappings/external_tax_calculators_jnrqltraly-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json new file mode 100644 index 0000000..42a87a9 --- /dev/null +++ b/mock/mappings/external_tax_calculators_jnrqltraly-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json @@ -0,0 +1,38 @@ +{ + "id" : "83c56e1e-d05e-4d0d-bb31-de34bf6c00f6", + "name" : "external_tax_calculators_jnrqltraly", + "request" : { + "url" : "/external_tax_calculators/JNrQLTraLy", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:44.887Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e1ff790cda77bb032eadf36a5ff54ccb02432f2a13a41c70b6f06473fb2d7b5e\"}}}", + "headers" : { + "x-request-id" : "3713aeea-8edc-4d9f-bf29-cc04a235393d", + "x-kong-upstream-latency" : "107", + "X-Ratelimit-Remaining" : "59", + "x-kong-request-id" : "597f012fd979e56fbac95c6f6c2aea6e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:45 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"8702196afaf1e2f59a1bc3258fd99778\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "83c56e1e-d05e-4d0d-bb31-de34bf6c00f6", + "persistent" : true, + "scenarioName" : "scenario-34-external_tax_calculators-JNrQLTraLy", + "requiredScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-2", + "newScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-3", + "insertionIndex" : 212 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-ac23b896-4758-494d-ad8c-eb85959da17b.json b/mock/mappings/external_tax_calculators_jnrqltraly-ac23b896-4758-494d-ad8c-eb85959da17b.json new file mode 100644 index 0000000..d96bbf8 --- /dev/null +++ b/mock/mappings/external_tax_calculators_jnrqltraly-ac23b896-4758-494d-ad8c-eb85959da17b.json @@ -0,0 +1,32 @@ +{ + "id" : "ac23b896-4758-494d-ad8c-eb85959da17b", + "name" : "external_tax_calculators_jnrqltraly", + "request" : { + "url" : "/external_tax_calculators/JNrQLTraLy", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "d5014363-6fe6-4e1e-9299-9be319c72120", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "89", + "x-kong-request-id" : "607df954a7266e6f03b3e006f5fdda68", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:46 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "ac23b896-4758-494d-ad8c-eb85959da17b", + "persistent" : true, + "insertionIndex" : 209 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-d313976b-5cbb-4248-936e-fb2378ed5218.json b/mock/mappings/external_tax_calculators_jnrqltraly-d313976b-5cbb-4248-936e-fb2378ed5218.json new file mode 100644 index 0000000..d8e0b31 --- /dev/null +++ b/mock/mappings/external_tax_calculators_jnrqltraly-d313976b-5cbb-4248-936e-fb2378ed5218.json @@ -0,0 +1,40 @@ +{ + "id" : "d313976b-5cbb-4248-936e-fb2378ed5218", + "name" : "external_tax_calculators_jnrqltraly", + "request" : { + "url" : "/external_tax_calculators/JNrQLTraLy", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"name\":\"incentro_external_tax_calculator_changed\",\"reference\":null,\"reference_origin\":null,\"tax_calculator_url\":\"https://foo.com\"},\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator_changed\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:45.967Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2c45bbec3b6982543917f2a52aa112dd436a94219d081070cef4bcfdd7e9caa0\"}}}", + "headers" : { + "x-request-id" : "f322e9f8-2e80-47ec-8138-549f84e89267", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "81163f7792ac057acc0f840878772735", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:45 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"0e69b4251b87b533c98e1701b9f0b6d2\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d313976b-5cbb-4248-936e-fb2378ed5218", + "persistent" : true, + "insertionIndex" : 211 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json b/mock/mappings/external_tax_calculators_jnrqltraly-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json new file mode 100644 index 0000000..991f5cf --- /dev/null +++ b/mock/mappings/external_tax_calculators_jnrqltraly-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json @@ -0,0 +1,36 @@ +{ + "id" : "f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851", + "name" : "external_tax_calculators_jnrqltraly", + "request" : { + "url" : "/external_tax_calculators/JNrQLTraLy", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "249f0d1b-e6fb-4eb0-a29c-016d85e03d90", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "57", + "x-kong-request-id" : "02bed2486ba12e76c9b3817513208b42", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:46 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851", + "persistent" : true, + "scenarioName" : "scenario-34-external_tax_calculators-JNrQLTraLy", + "requiredScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-4", + "insertionIndex" : 208 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_rvmjltrxpq-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json b/mock/mappings/external_tax_calculators_rvmjltrxpq-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json new file mode 100644 index 0000000..922d823 --- /dev/null +++ b/mock/mappings/external_tax_calculators_rvmjltrxpq-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json @@ -0,0 +1,37 @@ +{ + "id" : "0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296", + "name" : "external_tax_calculators_rvmjltrxpq", + "request" : { + "url" : "/external_tax_calculators/RvMjlTRxPq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"RvMjlTRxPq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:52:06.953Z\",\"updated_at\":\"2024-10-24T15:52:06.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"69bb54542fe97db58ccfdedf5a761ca5\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2097172376f9d70da2bc40d3cdd7fea930123e436152df6becb0c3f14ffd1038\"}}}", + "headers" : { + "x-request-id" : "370ce46e-c92b-4470-8196-0b0556b67b1d", + "x-kong-upstream-latency" : "22", + "X-Ratelimit-Remaining" : "19", + "x-kong-request-id" : "a37090320de40b71ef13035e75277c11", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"94086e29bb663a1148689ace1635f1f7\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296", + "persistent" : true, + "scenarioName" : "scenario-17-external_tax_calculators-RvMjlTRxPq", + "requiredScenarioState" : "scenario-17-external_tax_calculators-RvMjlTRxPq-3", + "insertionIndex" : 106 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_rvmjltrxpq-18b75e7a-85d5-40c9-8341-082db0370dc5.json b/mock/mappings/external_tax_calculators_rvmjltrxpq-18b75e7a-85d5-40c9-8341-082db0370dc5.json new file mode 100644 index 0000000..cc25fb7 --- /dev/null +++ b/mock/mappings/external_tax_calculators_rvmjltrxpq-18b75e7a-85d5-40c9-8341-082db0370dc5.json @@ -0,0 +1,38 @@ +{ + "id" : "18b75e7a-85d5-40c9-8341-082db0370dc5", + "name" : "external_tax_calculators_rvmjltrxpq", + "request" : { + "url" : "/external_tax_calculators/RvMjlTRxPq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"RvMjlTRxPq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:52:06.953Z\",\"updated_at\":\"2024-10-24T15:52:06.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"69bb54542fe97db58ccfdedf5a761ca5\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"04786754832291ef7c8f0dd167d00ed553bb9ba8a606cc969804b9ad262bbe6c\"}}}", + "headers" : { + "x-request-id" : "9948f94f-1814-444f-8061-a1ad6c8f5314", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "26", + "x-kong-request-id" : "c2a71e1898bba235607ade43ad0a6952", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"db1f12907dc2e5e57e69f116519b4351\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "18b75e7a-85d5-40c9-8341-082db0370dc5", + "persistent" : true, + "scenarioName" : "scenario-17-external_tax_calculators-RvMjlTRxPq", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-17-external_tax_calculators-RvMjlTRxPq-2", + "insertionIndex" : 121 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_rvmjltrxpq-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json b/mock/mappings/external_tax_calculators_rvmjltrxpq-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json new file mode 100644 index 0000000..6aa889b --- /dev/null +++ b/mock/mappings/external_tax_calculators_rvmjltrxpq-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json @@ -0,0 +1,38 @@ +{ + "id" : "558bf45a-2dd4-4bf4-acf4-af3cf57c91b3", + "name" : "external_tax_calculators_rvmjltrxpq", + "request" : { + "url" : "/external_tax_calculators/RvMjlTRxPq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"RvMjlTRxPq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:52:06.953Z\",\"updated_at\":\"2024-10-24T15:52:06.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"69bb54542fe97db58ccfdedf5a761ca5\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6d30f3ca4fbbc3eba803a411d99135ed038a1bdfa5957158f1df3d75a1327e5f\"}}}", + "headers" : { + "x-request-id" : "57f137ac-3348-42ba-a60b-80a8408e60ac", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "23", + "x-kong-request-id" : "be80447b302aa3660a9f0b472aa82416", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"f1c7252d8be9efe22b14579f66d1aecd\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "558bf45a-2dd4-4bf4-acf4-af3cf57c91b3", + "persistent" : true, + "scenarioName" : "scenario-17-external_tax_calculators-RvMjlTRxPq", + "requiredScenarioState" : "scenario-17-external_tax_calculators-RvMjlTRxPq-2", + "newScenarioState" : "scenario-17-external_tax_calculators-RvMjlTRxPq-3", + "insertionIndex" : 116 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_rvmjltrxpq-d4155d36-7cfa-4910-811c-62b15611e606.json b/mock/mappings/external_tax_calculators_rvmjltrxpq-d4155d36-7cfa-4910-811c-62b15611e606.json new file mode 100644 index 0000000..bf98b5d --- /dev/null +++ b/mock/mappings/external_tax_calculators_rvmjltrxpq-d4155d36-7cfa-4910-811c-62b15611e606.json @@ -0,0 +1,32 @@ +{ + "id" : "d4155d36-7cfa-4910-811c-62b15611e606", + "name" : "external_tax_calculators_rvmjltrxpq", + "request" : { + "url" : "/external_tax_calculators/RvMjlTRxPq", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "932bbc0a-2737-4a37-80df-068bbe92a324", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "75", + "x-kong-request-id" : "441c2320a36c5e656046ae52b7ae9c79", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:11 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "d4155d36-7cfa-4910-811c-62b15611e606", + "persistent" : true, + "insertionIndex" : 103 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders-eda82c55-8c77-481e-83bd-693066fc8c94.json b/mock/mappings/google_geocoders-eda82c55-8c77-481e-83bd-693066fc8c94.json new file mode 100644 index 0000000..42cf7e9 --- /dev/null +++ b/mock/mappings/google_geocoders-eda82c55-8c77-481e-83bd-693066fc8c94.json @@ -0,0 +1,40 @@ +{ + "id" : "eda82c55-8c77-481e-83bd-693066fc8c94", + "name" : "google_geocoders", + "request" : { + "url" : "/google_geocoders", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"Google Geocoder API Key\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"},\"name\":\"Incentro Google Geocoder\",\"reference\":null,\"reference_origin\":null},\"type\":\"google_geocoders\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.077Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fc8ae56ceca2428d2b2de4453b921c364959efabb2b3dba183e543b6c98b3bc2\"}}}", + "headers" : { + "x-request-id" : "d89123ab-4ebc-4f4c-8073-84c600ca797d", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "88", + "x-kong-request-id" : "044a136483705b10a28c6a03b7877d45", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:47 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"da1b400fddc2240bb07a60a0a52140cd\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "eda82c55-8c77-481e-83bd-693066fc8c94", + "persistent" : true, + "insertionIndex" : 207 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-6a416c14-34f8-481f-a946-f08d106562b1.json b/mock/mappings/google_geocoders_mgwalsandn-6a416c14-34f8-481f-a946-f08d106562b1.json new file mode 100644 index 0000000..43b7d5c --- /dev/null +++ b/mock/mappings/google_geocoders_mgwalsandn-6a416c14-34f8-481f-a946-f08d106562b1.json @@ -0,0 +1,38 @@ +{ + "id" : "6a416c14-34f8-481f-a946-f08d106562b1", + "name" : "google_geocoders_mgwalsandn", + "request" : { + "url" : "/google_geocoders/MGWAlsaNDn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.939Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"663ddb1d4f684befb23d0aed9744bf0d1c022a1271e74330a6479806408cbfbc\"}}}", + "headers" : { + "x-request-id" : "bbdfab56-0148-4d55-9e02-60e9cc37afed", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "54", + "x-kong-request-id" : "5385913648ae5b6a3a9c70714bdb6f4f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:48 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"ccbf142e55243104b09f30bd031ecc71\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "6a416c14-34f8-481f-a946-f08d106562b1", + "persistent" : true, + "scenarioName" : "scenario-33-google_geocoders-MGWAlsaNDn", + "requiredScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-3", + "newScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-4", + "insertionIndex" : 203 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-73583ba6-0a14-4d3d-8b4a-f64b83668615.json b/mock/mappings/google_geocoders_mgwalsandn-73583ba6-0a14-4d3d-8b4a-f64b83668615.json new file mode 100644 index 0000000..89c2154 --- /dev/null +++ b/mock/mappings/google_geocoders_mgwalsandn-73583ba6-0a14-4d3d-8b4a-f64b83668615.json @@ -0,0 +1,36 @@ +{ + "id" : "73583ba6-0a14-4d3d-8b4a-f64b83668615", + "name" : "google_geocoders_mgwalsandn", + "request" : { + "url" : "/google_geocoders/MGWAlsaNDn", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "011091b0-427d-4450-9069-b55fb661f700", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "53", + "x-kong-request-id" : "cc8c5a583fb6d2618b68db0630382a69", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:48 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "73583ba6-0a14-4d3d-8b4a-f64b83668615", + "persistent" : true, + "scenarioName" : "scenario-33-google_geocoders-MGWAlsaNDn", + "requiredScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-4", + "insertionIndex" : 201 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json b/mock/mappings/google_geocoders_mgwalsandn-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json new file mode 100644 index 0000000..2dd7662 --- /dev/null +++ b/mock/mappings/google_geocoders_mgwalsandn-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json @@ -0,0 +1,38 @@ +{ + "id" : "834f75ab-16c3-4993-9aa4-cd135d6b45a7", + "name" : "google_geocoders_mgwalsandn", + "request" : { + "url" : "/google_geocoders/MGWAlsaNDn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.077Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"adfac19d318b5171ca8d81f6a12a13d66d2e62703b18e1fb57665fbe1ea2177f\"}}}", + "headers" : { + "x-request-id" : "fdb1b34e-6d80-4e3d-9d62-722e591cd04f", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "56", + "x-kong-request-id" : "e58e3f5e392c2a34bcafac7672c5943d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:47 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"65cca9823811eb9393d1c36cacd080ae\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "834f75ab-16c3-4993-9aa4-cd135d6b45a7", + "persistent" : true, + "scenarioName" : "scenario-33-google_geocoders-MGWAlsaNDn", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-2", + "insertionIndex" : 206 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json b/mock/mappings/google_geocoders_mgwalsandn-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json new file mode 100644 index 0000000..1aa02fd --- /dev/null +++ b/mock/mappings/google_geocoders_mgwalsandn-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json @@ -0,0 +1,38 @@ +{ + "id" : "8847faf3-d398-4b4e-87ac-d3cecee2dc24", + "name" : "google_geocoders_mgwalsandn", + "request" : { + "url" : "/google_geocoders/MGWAlsaNDn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.077Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"35b9a10fa5e3e49aca9d662b8db358d9b20e56b4cf7fcbe6cba47a0f85a22848\"}}}", + "headers" : { + "x-request-id" : "c1b2d937-6816-4046-b902-3afab9167118", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "55", + "x-kong-request-id" : "bcbafd78da570c36943474530ae00638", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:47 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"9511c43594adb5ccfa88a0a3c41661e2\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "8847faf3-d398-4b4e-87ac-d3cecee2dc24", + "persistent" : true, + "scenarioName" : "scenario-33-google_geocoders-MGWAlsaNDn", + "requiredScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-2", + "newScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-3", + "insertionIndex" : 205 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json b/mock/mappings/google_geocoders_mgwalsandn-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json new file mode 100644 index 0000000..2685294 --- /dev/null +++ b/mock/mappings/google_geocoders_mgwalsandn-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json @@ -0,0 +1,40 @@ +{ + "id" : "b9f4f1eb-286e-4187-86cc-5617ab790ee9", + "name" : "google_geocoders_mgwalsandn", + "request" : { + "url" : "/google_geocoders/MGWAlsaNDn", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"Google Geocoder API Key\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"},\"name\":\"Incentro Updated Google Geocoder\",\"reference\":null,\"reference_origin\":null},\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.939Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2ae2839cf65b729177de73e4117dcfbf520d99a8d519864413df43137a4a099b\"}}}", + "headers" : { + "x-request-id" : "324b01be-b757-4c35-9d57-52b633270f25", + "x-kong-upstream-latency" : "23", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "fb77a652d4e9f669f735d36d7f18ef1e", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:47 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"be0e87e889607a614f20c3b57b027604\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "b9f4f1eb-286e-4187-86cc-5617ab790ee9", + "persistent" : true, + "insertionIndex" : 204 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-efb838be-f6ca-438d-bf56-8aca2f9224e3.json b/mock/mappings/google_geocoders_mgwalsandn-efb838be-f6ca-438d-bf56-8aca2f9224e3.json new file mode 100644 index 0000000..7e549ff --- /dev/null +++ b/mock/mappings/google_geocoders_mgwalsandn-efb838be-f6ca-438d-bf56-8aca2f9224e3.json @@ -0,0 +1,32 @@ +{ + "id" : "efb838be-f6ca-438d-bf56-8aca2f9224e3", + "name" : "google_geocoders_mgwalsandn", + "request" : { + "url" : "/google_geocoders/MGWAlsaNDn", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "d40c7c8c-c835-4413-845d-5afdb2215471", + "x-kong-upstream-latency" : "26", + "X-Ratelimit-Remaining" : "88", + "x-kong-request-id" : "12e11240f0e7e268061a850c4e1c6e7a", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:48 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "efb838be-f6ca-438d-bf56-8aca2f9224e3", + "persistent" : true, + "insertionIndex" : 202 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models-5993645f-6ab5-4af3-9411-69228ea8b0bd.json b/mock/mappings/inventory_models-5993645f-6ab5-4af3-9411-69228ea8b0bd.json new file mode 100644 index 0000000..fac78f5 --- /dev/null +++ b/mock/mappings/inventory_models-5993645f-6ab5-4af3-9411-69228ea8b0bd.json @@ -0,0 +1,40 @@ +{ + "id" : "5993645f-6ab5-4af3-9411-69228ea8b0bd", + "name" : "inventory_models", + "request" : { + "url" : "/inventory_models", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Inventory Model\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:52:07.137Z\",\"updated_at\":\"2024-10-24T15:52:07.137Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"53659dbbb9bcb2a59a15dad7632daecee63bd15caafdb44f503f55f69ccbc4db\"}}}", + "headers" : { + "x-request-id" : "9e27c94b-d7f2-4953-8bc8-8972c179df64", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "74", + "x-kong-request-id" : "1825a7380d38ac66ba783915f195b64a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"15c1171d8b38e2957f35ecbc7d16e005\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "5993645f-6ab5-4af3-9411-69228ea8b0bd", + "persistent" : true, + "insertionIndex" : 127 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models-6073c1a5-bf59-4484-a253-387724986156.json b/mock/mappings/inventory_models-6073c1a5-bf59-4484-a253-387724986156.json new file mode 100644 index 0000000..ae26856 --- /dev/null +++ b/mock/mappings/inventory_models-6073c1a5-bf59-4484-a253-387724986156.json @@ -0,0 +1,40 @@ +{ + "id" : "6073c1a5-bf59-4484-a253-387724986156", + "name" : "inventory_models", + "request" : { + "url" : "/inventory_models", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"name\":\"Incentro Inventory Model\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:51.146Z\",\"updated_at\":\"2024-10-24T15:51:51.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"553d6de4f44b223243245bfd4708806215fe2fd63bf8f894c65c1741edeb05af\"}}}", + "headers" : { + "x-request-id" : "c9114e7f-90f3-4b45-92c9-097dc6224a1a", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "86", + "x-kong-request-id" : "8b016a5ddef7960b405b2c3ec8548a5d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:51 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"88a1e77ec91e271348ece9d15f835147\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "6073c1a5-bf59-4484-a253-387724986156", + "persistent" : true, + "insertionIndex" : 193 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models-6175c756-71e5-4f30-ab47-98420a36b6d8.json b/mock/mappings/inventory_models-6175c756-71e5-4f30-ab47-98420a36b6d8.json new file mode 100644 index 0000000..4fc32a6 --- /dev/null +++ b/mock/mappings/inventory_models-6175c756-71e5-4f30-ab47-98420a36b6d8.json @@ -0,0 +1,40 @@ +{ + "id" : "6175c756-71e5-4f30-ab47-98420a36b6d8", + "name" : "inventory_models", + "request" : { + "url" : "/inventory_models", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"name\":\"Incentro Inventory Model\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:55.558Z\",\"updated_at\":\"2024-10-24T15:51:55.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3f173555cff74f3589fe74093d31185af77f57846e64371e13ffc8283987ec66\"}}}", + "headers" : { + "x-request-id" : "ede5031f-5c4b-400c-96bf-f137e64d2e7f", + "x-kong-upstream-latency" : "23", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "037fe133c3fc1d59aee00776f5f5b147", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:55 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"881205165e9898d82c095fe93e505f69\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "6175c756-71e5-4f30-ab47-98420a36b6d8", + "persistent" : true, + "insertionIndex" : 171 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models-d2d297e5-4ec7-4901-886b-a7c86f530e32.json b/mock/mappings/inventory_models-d2d297e5-4ec7-4901-886b-a7c86f530e32.json new file mode 100644 index 0000000..a8fa1ad --- /dev/null +++ b/mock/mappings/inventory_models-d2d297e5-4ec7-4901-886b-a7c86f530e32.json @@ -0,0 +1,40 @@ +{ + "id" : "d2d297e5-4ec7-4901-886b-a7c86f530e32", + "name" : "inventory_models", + "request" : { + "url" : "/inventory_models", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"},\"name\":\"Incentro Inventory Model\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d7f9b7b5bdd66383be52935f4bd2e6f1b60017962e343a548e637c893c5a0fc1\"}}}", + "headers" : { + "x-request-id" : "313f923d-41c9-4ad8-97ed-ab4650efaef0", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "87", + "x-kong-request-id" : "0a9fde418deb435bba215402abaeaf27", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:49 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"8b32f8309cf0e8509eeea328d6e1ef55\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d2d297e5-4ec7-4901-886b-a7c86f530e32", + "persistent" : true, + "insertionIndex" : 200 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_lwlwdsayma-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json b/mock/mappings/inventory_models_lwlwdsayma-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json new file mode 100644 index 0000000..7e7d4b9 --- /dev/null +++ b/mock/mappings/inventory_models_lwlwdsayma-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json @@ -0,0 +1,38 @@ +{ + "id" : "2bbbf637-7a41-4fad-a52a-64cc6915fe5c", + "name" : "inventory_models_lwlwdsayma", + "request" : { + "url" : "/inventory_models/lWlwDSAyMa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:55.558Z\",\"updated_at\":\"2024-10-24T15:51:55.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"784ac2d9dd37b51e74ff654c4ae239df6bb4925aaf1882964686de1a5bca2167\"}}}", + "headers" : { + "x-request-id" : "254ee3b6-d82c-4be2-87d3-09354d6e12aa", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "482", + "x-kong-request-id" : "ef5b7b6d543c1a703274b4436dbcd969", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"88b9bbbf5329005d83448523a9dc0a0e\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "2" + } + }, + "uuid" : "2bbbf637-7a41-4fad-a52a-64cc6915fe5c", + "persistent" : true, + "scenarioName" : "scenario-27-inventory_models-lWlwDSAyMa", + "requiredScenarioState" : "scenario-27-inventory_models-lWlwDSAyMa-3", + "insertionIndex" : 158 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_lwlwdsayma-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json b/mock/mappings/inventory_models_lwlwdsayma-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json new file mode 100644 index 0000000..80d0299 --- /dev/null +++ b/mock/mappings/inventory_models_lwlwdsayma-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json @@ -0,0 +1,39 @@ +{ + "id" : "4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c", + "name" : "inventory_models_lwlwdsayma", + "request" : { + "url" : "/inventory_models/lWlwDSAyMa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:55.558Z\",\"updated_at\":\"2024-10-24T15:51:55.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"784ac2d9dd37b51e74ff654c4ae239df6bb4925aaf1882964686de1a5bca2167\"}}}", + "headers" : { + "x-request-id" : "254ee3b6-d82c-4be2-87d3-09354d6e12aa", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "486", + "x-kong-request-id" : "ef5b7b6d543c1a703274b4436dbcd969", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"88b9bbbf5329005d83448523a9dc0a0e\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c", + "persistent" : true, + "scenarioName" : "scenario-27-inventory_models-lWlwDSAyMa", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-27-inventory_models-lWlwDSAyMa-2", + "insertionIndex" : 167 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_lwlwdsayma-7bf60a76-a018-40eb-bb98-60a28abc28d1.json b/mock/mappings/inventory_models_lwlwdsayma-7bf60a76-a018-40eb-bb98-60a28abc28d1.json new file mode 100644 index 0000000..eeeb245 --- /dev/null +++ b/mock/mappings/inventory_models_lwlwdsayma-7bf60a76-a018-40eb-bb98-60a28abc28d1.json @@ -0,0 +1,32 @@ +{ + "id" : "7bf60a76-a018-40eb-bb98-60a28abc28d1", + "name" : "inventory_models_lwlwdsayma", + "request" : { + "url" : "/inventory_models/lWlwDSAyMa", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "1f03543a-c276-41b9-a485-fdd27f0d93cd", + "x-kong-upstream-latency" : "56", + "X-Ratelimit-Remaining" : "80", + "x-kong-request-id" : "73cdab00472dfa31133d5a04432c2a5d", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:59 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "7bf60a76-a018-40eb-bb98-60a28abc28d1", + "persistent" : true, + "insertionIndex" : 152 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_lwlwdsayma-b51fc668-2cac-45d8-ab3c-8bec37515adc.json b/mock/mappings/inventory_models_lwlwdsayma-b51fc668-2cac-45d8-ab3c-8bec37515adc.json new file mode 100644 index 0000000..da07147 --- /dev/null +++ b/mock/mappings/inventory_models_lwlwdsayma-b51fc668-2cac-45d8-ab3c-8bec37515adc.json @@ -0,0 +1,39 @@ +{ + "id" : "b51fc668-2cac-45d8-ab3c-8bec37515adc", + "name" : "inventory_models_lwlwdsayma", + "request" : { + "url" : "/inventory_models/lWlwDSAyMa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:55.558Z\",\"updated_at\":\"2024-10-24T15:51:55.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"784ac2d9dd37b51e74ff654c4ae239df6bb4925aaf1882964686de1a5bca2167\"}}}", + "headers" : { + "x-request-id" : "254ee3b6-d82c-4be2-87d3-09354d6e12aa", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "484", + "x-kong-request-id" : "ef5b7b6d543c1a703274b4436dbcd969", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"88b9bbbf5329005d83448523a9dc0a0e\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "b51fc668-2cac-45d8-ab3c-8bec37515adc", + "persistent" : true, + "scenarioName" : "scenario-27-inventory_models-lWlwDSAyMa", + "requiredScenarioState" : "scenario-27-inventory_models-lWlwDSAyMa-2", + "newScenarioState" : "scenario-27-inventory_models-lWlwDSAyMa-3", + "insertionIndex" : 163 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_qwgbzsxopa-27a39738-cc62-44d6-b487-55759d0d8ce8.json b/mock/mappings/inventory_models_qwgbzsxopa-27a39738-cc62-44d6-b487-55759d0d8ce8.json new file mode 100644 index 0000000..3935f87 --- /dev/null +++ b/mock/mappings/inventory_models_qwgbzsxopa-27a39738-cc62-44d6-b487-55759d0d8ce8.json @@ -0,0 +1,38 @@ +{ + "id" : "27a39738-cc62-44d6-b487-55759d0d8ce8", + "name" : "inventory_models_qwgbzsxopa", + "request" : { + "url" : "/inventory_models/qWGBzSXOPa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:52:07.137Z\",\"updated_at\":\"2024-10-24T15:52:07.137Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"76cf78044e334b8acd092637ba2d5d0f131c97ca0943f51e769107ea606eb84e\"}}}", + "headers" : { + "x-request-id" : "c08e1445-195c-4458-bd20-fb91a0048c2f", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "474", + "x-kong-request-id" : "9034d01e80c93b28d96631741520e252", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"49f846d0fb0faa12f675f59e4ea1a8e3\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "27a39738-cc62-44d6-b487-55759d0d8ce8", + "persistent" : true, + "scenarioName" : "scenario-18-inventory_models-qWGBzSXOPa", + "requiredScenarioState" : "scenario-18-inventory_models-qWGBzSXOPa-3", + "insertionIndex" : 107 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_qwgbzsxopa-437793c9-5f9d-421d-9bc1-906882042d40.json b/mock/mappings/inventory_models_qwgbzsxopa-437793c9-5f9d-421d-9bc1-906882042d40.json new file mode 100644 index 0000000..d416de1 --- /dev/null +++ b/mock/mappings/inventory_models_qwgbzsxopa-437793c9-5f9d-421d-9bc1-906882042d40.json @@ -0,0 +1,39 @@ +{ + "id" : "437793c9-5f9d-421d-9bc1-906882042d40", + "name" : "inventory_models_qwgbzsxopa", + "request" : { + "url" : "/inventory_models/qWGBzSXOPa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:52:07.137Z\",\"updated_at\":\"2024-10-24T15:52:07.137Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"63d26c8860095a3508180acd6f80427001fbbfcdc36143d166f87dcd9ae61754\"}}}", + "headers" : { + "x-request-id" : "1172c6dd-b7c1-4d45-9af3-6bdc61e055ff", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "476", + "x-kong-request-id" : "d005f54dc711301c7123fe742a3ca04c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"c53dcf6a7d3aecd5ac9f482dba84adc4\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "437793c9-5f9d-421d-9bc1-906882042d40", + "persistent" : true, + "scenarioName" : "scenario-18-inventory_models-qWGBzSXOPa", + "requiredScenarioState" : "scenario-18-inventory_models-qWGBzSXOPa-2", + "newScenarioState" : "scenario-18-inventory_models-qWGBzSXOPa-3", + "insertionIndex" : 114 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_qwgbzsxopa-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json b/mock/mappings/inventory_models_qwgbzsxopa-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json new file mode 100644 index 0000000..fb90d9f --- /dev/null +++ b/mock/mappings/inventory_models_qwgbzsxopa-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json @@ -0,0 +1,39 @@ +{ + "id" : "4cd8e9bd-00f1-442f-b86b-55103d5b4f07", + "name" : "inventory_models_qwgbzsxopa", + "request" : { + "url" : "/inventory_models/qWGBzSXOPa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:52:07.137Z\",\"updated_at\":\"2024-10-24T15:52:07.137Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"63d26c8860095a3508180acd6f80427001fbbfcdc36143d166f87dcd9ae61754\"}}}", + "headers" : { + "x-request-id" : "1172c6dd-b7c1-4d45-9af3-6bdc61e055ff", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "479", + "x-kong-request-id" : "d005f54dc711301c7123fe742a3ca04c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"c53dcf6a7d3aecd5ac9f482dba84adc4\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "4cd8e9bd-00f1-442f-b86b-55103d5b4f07", + "persistent" : true, + "scenarioName" : "scenario-18-inventory_models-qWGBzSXOPa", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-18-inventory_models-qWGBzSXOPa-2", + "insertionIndex" : 120 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_qwgbzsxopa-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json b/mock/mappings/inventory_models_qwgbzsxopa-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json new file mode 100644 index 0000000..336a79e --- /dev/null +++ b/mock/mappings/inventory_models_qwgbzsxopa-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json @@ -0,0 +1,32 @@ +{ + "id" : "8085bd75-a4f1-4a49-ae22-646dc7d95d5d", + "name" : "inventory_models_qwgbzsxopa", + "request" : { + "url" : "/inventory_models/qWGBzSXOPa", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "2007c769-c168-4205-8686-1acf547938d4", + "x-kong-upstream-latency" : "36", + "X-Ratelimit-Remaining" : "72", + "x-kong-request-id" : "75fc296d37a3d4289cd93537c9895e30", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:13 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "8085bd75-a4f1-4a49-ae22-646dc7d95d5d", + "persistent" : true, + "insertionIndex" : 100 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xlazqspzez-1f5648fe-e885-4d15-b6b5-308b50a7f282.json b/mock/mappings/inventory_models_xlazqspzez-1f5648fe-e885-4d15-b6b5-308b50a7f282.json new file mode 100644 index 0000000..18e9eb5 --- /dev/null +++ b/mock/mappings/inventory_models_xlazqspzez-1f5648fe-e885-4d15-b6b5-308b50a7f282.json @@ -0,0 +1,39 @@ +{ + "id" : "1f5648fe-e885-4d15-b6b5-308b50a7f282", + "name" : "inventory_models_xlazqspzez", + "request" : { + "url" : "/inventory_models/XLAzqSpzeZ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:51.146Z\",\"updated_at\":\"2024-10-24T15:51:51.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d6ee881e9d3ea9632f19f28c347e705c0822542065ea7b07edb4da8046ca0418\"}}}", + "headers" : { + "x-request-id" : "f7b7458b-22b3-481e-98cd-bd63b358ea3d", + "x-kong-upstream-latency" : "37", + "X-Ratelimit-Remaining" : "492", + "x-kong-request-id" : "8cbe4a783dac014a1cd13a0e474ee15d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"61d3578ac216fdc6bcfb41ff17cb457d\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "1f5648fe-e885-4d15-b6b5-308b50a7f282", + "persistent" : true, + "scenarioName" : "scenario-30-inventory_models-XLAzqSpzeZ", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-30-inventory_models-XLAzqSpzeZ-2", + "insertionIndex" : 189 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xlazqspzez-880ec645-9481-4237-8f39-298d9ed19e9c.json b/mock/mappings/inventory_models_xlazqspzez-880ec645-9481-4237-8f39-298d9ed19e9c.json new file mode 100644 index 0000000..b8898f7 --- /dev/null +++ b/mock/mappings/inventory_models_xlazqspzez-880ec645-9481-4237-8f39-298d9ed19e9c.json @@ -0,0 +1,38 @@ +{ + "id" : "880ec645-9481-4237-8f39-298d9ed19e9c", + "name" : "inventory_models_xlazqspzez", + "request" : { + "url" : "/inventory_models/XLAzqSpzeZ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:51.146Z\",\"updated_at\":\"2024-10-24T15:51:51.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d6ee881e9d3ea9632f19f28c347e705c0822542065ea7b07edb4da8046ca0418\"}}}", + "headers" : { + "x-request-id" : "f7b7458b-22b3-481e-98cd-bd63b358ea3d", + "x-kong-upstream-latency" : "37", + "X-Ratelimit-Remaining" : "488", + "x-kong-request-id" : "8cbe4a783dac014a1cd13a0e474ee15d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"61d3578ac216fdc6bcfb41ff17cb457d\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "2" + } + }, + "uuid" : "880ec645-9481-4237-8f39-298d9ed19e9c", + "persistent" : true, + "scenarioName" : "scenario-30-inventory_models-XLAzqSpzeZ", + "requiredScenarioState" : "scenario-30-inventory_models-XLAzqSpzeZ-3", + "insertionIndex" : 179 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xlazqspzez-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json b/mock/mappings/inventory_models_xlazqspzez-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json new file mode 100644 index 0000000..3ebe75d --- /dev/null +++ b/mock/mappings/inventory_models_xlazqspzez-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json @@ -0,0 +1,39 @@ +{ + "id" : "acb7ad07-538b-44f9-b1a6-a670278dcfd7", + "name" : "inventory_models_xlazqspzez", + "request" : { + "url" : "/inventory_models/XLAzqSpzeZ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:51.146Z\",\"updated_at\":\"2024-10-24T15:51:51.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d6ee881e9d3ea9632f19f28c347e705c0822542065ea7b07edb4da8046ca0418\"}}}", + "headers" : { + "x-request-id" : "f7b7458b-22b3-481e-98cd-bd63b358ea3d", + "x-kong-upstream-latency" : "37", + "X-Ratelimit-Remaining" : "490", + "x-kong-request-id" : "8cbe4a783dac014a1cd13a0e474ee15d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"61d3578ac216fdc6bcfb41ff17cb457d\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "acb7ad07-538b-44f9-b1a6-a670278dcfd7", + "persistent" : true, + "scenarioName" : "scenario-30-inventory_models-XLAzqSpzeZ", + "requiredScenarioState" : "scenario-30-inventory_models-XLAzqSpzeZ-2", + "newScenarioState" : "scenario-30-inventory_models-XLAzqSpzeZ-3", + "insertionIndex" : 185 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xlazqspzez-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json b/mock/mappings/inventory_models_xlazqspzez-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json new file mode 100644 index 0000000..dd6de1c --- /dev/null +++ b/mock/mappings/inventory_models_xlazqspzez-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json @@ -0,0 +1,32 @@ +{ + "id" : "d2e1633c-01e2-4cbd-bcc3-909bef74f81d", + "name" : "inventory_models_xlazqspzez", + "request" : { + "url" : "/inventory_models/XLAzqSpzeZ", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "aeaf7ca6-147a-4e47-b23e-e73bf423edf7", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "85", + "x-kong-request-id" : "30dbc05e7a869c5f25f8a15d52d4337d", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "d2e1633c-01e2-4cbd-bcc3-909bef74f81d", + "persistent" : true, + "insertionIndex" : 175 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json b/mock/mappings/inventory_models_xwqxqspqea-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json new file mode 100644 index 0000000..4eed995 --- /dev/null +++ b/mock/mappings/inventory_models_xwqxqspqea-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json @@ -0,0 +1,39 @@ +{ + "id" : "39cc05d4-cdb3-41c2-ad79-c2f833d489c4", + "name" : "inventory_models_xwqxqspqea", + "request" : { + "url" : "/inventory_models/XWqxqSpqEa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fc926cf2a5d2a6e58a085f6e8115e956fec5c14d1585f4052157feaa5b8b19e1\"}}}", + "headers" : { + "x-request-id" : "7cd9bcf4-44a8-454f-ba7f-8bd2ca01eddd", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "495", + "x-kong-request-id" : "f1177b081f9cfc2d6e645d04fe2bfd6b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:49 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"a33ef460a22b4a528856e98c2c9be9c9\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "39cc05d4-cdb3-41c2-ad79-c2f833d489c4", + "persistent" : true, + "scenarioName" : "scenario-32-inventory_models-XWqxqSpqEa", + "requiredScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-2", + "newScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-3", + "insertionIndex" : 198 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-64440d62-8ad5-48d6-80f8-fbff121a2128.json b/mock/mappings/inventory_models_xwqxqspqea-64440d62-8ad5-48d6-80f8-fbff121a2128.json new file mode 100644 index 0000000..d99e4fc --- /dev/null +++ b/mock/mappings/inventory_models_xwqxqspqea-64440d62-8ad5-48d6-80f8-fbff121a2128.json @@ -0,0 +1,32 @@ +{ + "id" : "64440d62-8ad5-48d6-80f8-fbff121a2128", + "name" : "inventory_models_xwqxqspqea", + "request" : { + "url" : "/inventory_models/XWqxqSpqEa", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "97732802-139a-4776-95d9-ec12325cea5b", + "x-kong-upstream-latency" : "27", + "X-Ratelimit-Remaining" : "87", + "x-kong-request-id" : "15c3663e812333088d25781577594866", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:50 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "64440d62-8ad5-48d6-80f8-fbff121a2128", + "persistent" : true, + "insertionIndex" : 195 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json b/mock/mappings/inventory_models_xwqxqspqea-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json new file mode 100644 index 0000000..cf838ea --- /dev/null +++ b/mock/mappings/inventory_models_xwqxqspqea-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json @@ -0,0 +1,39 @@ +{ + "id" : "8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9", + "name" : "inventory_models_xwqxqspqea", + "request" : { + "url" : "/inventory_models/XWqxqSpqEa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fc926cf2a5d2a6e58a085f6e8115e956fec5c14d1585f4052157feaa5b8b19e1\"}}}", + "headers" : { + "x-request-id" : "7cd9bcf4-44a8-454f-ba7f-8bd2ca01eddd", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "496", + "x-kong-request-id" : "f1177b081f9cfc2d6e645d04fe2bfd6b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:49 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"a33ef460a22b4a528856e98c2c9be9c9\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9", + "persistent" : true, + "scenarioName" : "scenario-32-inventory_models-XWqxqSpqEa", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-2", + "insertionIndex" : 199 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json b/mock/mappings/inventory_models_xwqxqspqea-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json new file mode 100644 index 0000000..71d8edc --- /dev/null +++ b/mock/mappings/inventory_models_xwqxqspqea-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json @@ -0,0 +1,40 @@ +{ + "id" : "b6a47ed2-2d56-45c0-981c-c8eeba56149b", + "name" : "inventory_models_xwqxqspqea", + "request" : { + "url" : "/inventory_models/XWqxqSpqEa", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"},\"name\":\"Incentro Inventory Model Changed\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":2,\"strategy\":\"split_shipments\"},\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.955Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4e5db86a32467a979612d852692efc1314aa43688794b1d9c8f8e163740087b1\"}}}", + "headers" : { + "x-request-id" : "e486acde-1a39-45e0-803b-d39ee38bf06c", + "x-kong-upstream-latency" : "34", + "X-Ratelimit-Remaining" : "89", + "x-kong-request-id" : "7a799c000361446b8b505771360da433", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:49 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"3550e29ade6cc3c89c4bc3003b23f1ae\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "b6a47ed2-2d56-45c0-981c-c8eeba56149b", + "persistent" : true, + "insertionIndex" : 197 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-c42cae13-2afc-47ef-baab-74f4549a0c91.json b/mock/mappings/inventory_models_xwqxqspqea-c42cae13-2afc-47ef-baab-74f4549a0c91.json new file mode 100644 index 0000000..1197120 --- /dev/null +++ b/mock/mappings/inventory_models_xwqxqspqea-c42cae13-2afc-47ef-baab-74f4549a0c91.json @@ -0,0 +1,37 @@ +{ + "id" : "c42cae13-2afc-47ef-baab-74f4549a0c91", + "name" : "inventory_models_xwqxqspqea", + "request" : { + "url" : "/inventory_models/XWqxqSpqEa", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "9c84dc07-05ed-42fb-8286-0b8b4b17db9d", + "x-kong-upstream-latency" : "9", + "X-Ratelimit-Remaining" : "493", + "x-kong-request-id" : "a5678c0a8b0ecc5ef3d9a73b25b01831", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:50 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "cache-control" : "no-cache", + "Age" : "0" + } + }, + "uuid" : "c42cae13-2afc-47ef-baab-74f4549a0c91", + "persistent" : true, + "scenarioName" : "scenario-32-inventory_models-XWqxqSpqEa", + "requiredScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-4", + "insertionIndex" : 194 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-da2e5490-4c78-458d-80c2-31b6cd168c05.json b/mock/mappings/inventory_models_xwqxqspqea-da2e5490-4c78-458d-80c2-31b6cd168c05.json new file mode 100644 index 0000000..05d4533 --- /dev/null +++ b/mock/mappings/inventory_models_xwqxqspqea-da2e5490-4c78-458d-80c2-31b6cd168c05.json @@ -0,0 +1,39 @@ +{ + "id" : "da2e5490-4c78-458d-80c2-31b6cd168c05", + "name" : "inventory_models_xwqxqspqea", + "request" : { + "url" : "/inventory_models/XWqxqSpqEa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.955Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"354decd9741314ed87d3e61d9a0c65cfef0b21782832e7cec03456ea739bdf4d\"}}}", + "headers" : { + "x-request-id" : "579a5f85-a001-4a8c-a8df-baa328f3af16", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "494", + "x-kong-request-id" : "a1aeeb651c4b49232476f244a6912309", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:50 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"32cf478f36f72f0f6ad5b53c988bbb05\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "da2e5490-4c78-458d-80c2-31b6cd168c05", + "persistent" : true, + "scenarioName" : "scenario-32-inventory_models-XWqxqSpqEa", + "requiredScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-3", + "newScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-4", + "insertionIndex" : 196 +} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json b/mock/mappings/inventory_return_locations-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json new file mode 100644 index 0000000..d0a5738 --- /dev/null +++ b/mock/mappings/inventory_return_locations-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json @@ -0,0 +1,40 @@ +{ + "id" : "95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab", + "name" : "inventory_return_locations", + "request" : { + "url" : "/inventory_return_locations", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"priority\":1,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_return_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:51.706Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"802014912b18b7e4ad2c761f51d79f713401a48146bfceef3a396e62803937d3\"}}}", + "headers" : { + "x-request-id" : "90d1947e-d20e-4dcb-bef6-e48b1ef8ae45", + "x-kong-upstream-latency" : "28", + "X-Ratelimit-Remaining" : "83", + "x-kong-request-id" : "c09dab006779c57bd675831831c4803c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:51 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"1358cfd3ed2fe990d72fbfa1367d6e2c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab", + "persistent" : true, + "insertionIndex" : 190 +} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json new file mode 100644 index 0000000..ae74e2d --- /dev/null +++ b/mock/mappings/inventory_return_locations_vlkzeirgrv-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json @@ -0,0 +1,40 @@ +{ + "id" : "28870b18-c1ca-47ce-a736-ee9ce78d26e9", + "name" : "inventory_return_locations_vlkzeirgrv", + "request" : { + "url" : "/inventory_return_locations/VlkzeiRGrv", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"priority\":2,\"reference\":null,\"reference_origin\":null},\"id\":\"VlkzeiRGrv\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_return_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":2,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:53.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7ce671dbd20fee7f86e7de88900f1e712ed4b200e2b96bf121f6c88df71b119b\"}}}", + "headers" : { + "x-request-id" : "19226f29-904c-42a0-898b-d1b72bea2e39", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "88", + "x-kong-request-id" : "7ef081691738543780cf1a5a4410ed4d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"fe3d2a108d190160d31e18f3b3c1e4e5\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "28870b18-c1ca-47ce-a736-ee9ce78d26e9", + "persistent" : true, + "insertionIndex" : 181 +} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-46f79876-f8dd-4de2-a912-d0f3098144e9.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-46f79876-f8dd-4de2-a912-d0f3098144e9.json new file mode 100644 index 0000000..36a211c --- /dev/null +++ b/mock/mappings/inventory_return_locations_vlkzeirgrv-46f79876-f8dd-4de2-a912-d0f3098144e9.json @@ -0,0 +1,32 @@ +{ + "id" : "46f79876-f8dd-4de2-a912-d0f3098144e9", + "name" : "inventory_return_locations_vlkzeirgrv", + "request" : { + "url" : "/inventory_return_locations/VlkzeiRGrv", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "e8dd1f73-8547-4662-bb34-93017ef748b9", + "x-kong-upstream-latency" : "27", + "X-Ratelimit-Remaining" : "86", + "x-kong-request-id" : "ab69c9433e122f087972f02787460328", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "46f79876-f8dd-4de2-a912-d0f3098144e9", + "persistent" : true, + "insertionIndex" : 176 +} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-79755483-1d1a-434a-8e12-b5d131a81786.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-79755483-1d1a-434a-8e12-b5d131a81786.json new file mode 100644 index 0000000..38697fd --- /dev/null +++ b/mock/mappings/inventory_return_locations_vlkzeirgrv-79755483-1d1a-434a-8e12-b5d131a81786.json @@ -0,0 +1,38 @@ +{ + "id" : "79755483-1d1a-434a-8e12-b5d131a81786", + "name" : "inventory_return_locations_vlkzeirgrv", + "request" : { + "url" : "/inventory_return_locations/VlkzeiRGrv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":2,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:53.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"493b957006f873d3926d4540f1e58e2332224619ea1208f82c5a505bc9db3ca5\"}}}", + "headers" : { + "x-request-id" : "1dbddc50-0279-4230-aa58-0263fc23c6c1", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "47", + "x-kong-request-id" : "70933b490acef619d762331a84e60a21", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c0712629f4288ef358b2f49e10cfc0d6\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "79755483-1d1a-434a-8e12-b5d131a81786", + "persistent" : true, + "scenarioName" : "scenario-28-inventory_return_locations-VlkzeiRGrv", + "requiredScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-3", + "newScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-4", + "insertionIndex" : 177 +} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-7eb45641-0128-4743-81a1-af728c9d140b.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-7eb45641-0128-4743-81a1-af728c9d140b.json new file mode 100644 index 0000000..6b26a0d --- /dev/null +++ b/mock/mappings/inventory_return_locations_vlkzeirgrv-7eb45641-0128-4743-81a1-af728c9d140b.json @@ -0,0 +1,38 @@ +{ + "id" : "7eb45641-0128-4743-81a1-af728c9d140b", + "name" : "inventory_return_locations_vlkzeirgrv", + "request" : { + "url" : "/inventory_return_locations/VlkzeiRGrv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:51.706Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"479a77add806e49605d7bd89c727fb6b2fd711a3f07e8f82cb0a3a634e700eec\"}}}", + "headers" : { + "x-request-id" : "00ec9781-6fbe-4988-838e-05e1edbbb274", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "49", + "x-kong-request-id" : "98e6ec03996efa1784783b7f0c692b6f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"6b203d599802ae507fc89742a094097b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7eb45641-0128-4743-81a1-af728c9d140b", + "persistent" : true, + "scenarioName" : "scenario-28-inventory_return_locations-VlkzeiRGrv", + "requiredScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-2", + "newScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-3", + "insertionIndex" : 182 +} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-c10eb423-9e4c-409d-9ce4-b620788a9aed.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-c10eb423-9e4c-409d-9ce4-b620788a9aed.json new file mode 100644 index 0000000..f5b1210 --- /dev/null +++ b/mock/mappings/inventory_return_locations_vlkzeirgrv-c10eb423-9e4c-409d-9ce4-b620788a9aed.json @@ -0,0 +1,38 @@ +{ + "id" : "c10eb423-9e4c-409d-9ce4-b620788a9aed", + "name" : "inventory_return_locations_vlkzeirgrv", + "request" : { + "url" : "/inventory_return_locations/VlkzeiRGrv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:51.706Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d8b2443316a2a64146d85228019d32c53ce47e61642241809203834378258c57\"}}}", + "headers" : { + "x-request-id" : "a7b90983-4d21-4d9a-a8bf-167615001b37", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "51", + "x-kong-request-id" : "55063a655475803ca18f627f3f74e46d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"f02d6cca01def3cc3c7f4aeab2abf1dd\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "c10eb423-9e4c-409d-9ce4-b620788a9aed", + "persistent" : true, + "scenarioName" : "scenario-28-inventory_return_locations-VlkzeiRGrv", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-2", + "insertionIndex" : 186 +} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-f515149b-a447-4f94-b548-e5942a056da9.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-f515149b-a447-4f94-b548-e5942a056da9.json new file mode 100644 index 0000000..46e9e2b --- /dev/null +++ b/mock/mappings/inventory_return_locations_vlkzeirgrv-f515149b-a447-4f94-b548-e5942a056da9.json @@ -0,0 +1,36 @@ +{ + "id" : "f515149b-a447-4f94-b548-e5942a056da9", + "name" : "inventory_return_locations_vlkzeirgrv", + "request" : { + "url" : "/inventory_return_locations/VlkzeiRGrv", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "3d4a3fe9-0a5c-4eb7-8712-18a6d71497a2", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "46", + "x-kong-request-id" : "6225236240a6c337fc652c1c9b566143", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:55 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "f515149b-a447-4f94-b548-e5942a056da9", + "persistent" : true, + "scenarioName" : "scenario-28-inventory_return_locations-VlkzeiRGrv", + "requiredScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-4", + "insertionIndex" : 172 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json b/mock/mappings/inventory_stock_locations-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json new file mode 100644 index 0000000..8e6bfb6 --- /dev/null +++ b/mock/mappings/inventory_stock_locations-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json @@ -0,0 +1,40 @@ +{ + "id" : "10b7c32e-ee76-4196-a54d-a209dd3db2bc", + "name" : "inventory_stock_locations", + "request" : { + "url" : "/inventory_stock_locations", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"on_hold\":true,\"priority\":1,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_stock_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:56.055Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f15675e76c6b3669ac1928ae86264aea33e2f5c3c0712f3764e0f9b113fd5308\"}}}", + "headers" : { + "x-request-id" : "d2ec0fb3-0fb1-4def-a0b0-2f945f461fc9", + "x-kong-upstream-latency" : "26", + "X-Ratelimit-Remaining" : "79", + "x-kong-request-id" : "6e965822a9d4951b8c2d360f991e036c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"07471f73a7e004fd79229ea304bd33dc\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "10b7c32e-ee76-4196-a54d-a209dd3db2bc", + "persistent" : true, + "insertionIndex" : 168 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json new file mode 100644 index 0000000..e94aa1e --- /dev/null +++ b/mock/mappings/inventory_stock_locations_pwmewsngnw-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json @@ -0,0 +1,36 @@ +{ + "id" : "77ebeb5e-b4fa-4537-b6db-eac72388c51b", + "name" : "inventory_stock_locations_pwmewsngnw", + "request" : { + "url" : "/inventory_stock_locations/PWmewSNGnW", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "3f207e88-5eb7-4b41-98c9-847133c9d9c5", + "x-kong-upstream-latency" : "6", + "X-Ratelimit-Remaining" : "39", + "x-kong-request-id" : "4977606ad9a7b20030dae553c5814b48", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:59 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "77ebeb5e-b4fa-4537-b6db-eac72388c51b", + "persistent" : true, + "scenarioName" : "scenario-24-inventory_stock_locations-PWmewSNGnW", + "requiredScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-4", + "insertionIndex" : 150 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-8662f5be-10bd-417d-b89c-d185f47d3e31.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-8662f5be-10bd-417d-b89c-d185f47d3e31.json new file mode 100644 index 0000000..af24477 --- /dev/null +++ b/mock/mappings/inventory_stock_locations_pwmewsngnw-8662f5be-10bd-417d-b89c-d185f47d3e31.json @@ -0,0 +1,32 @@ +{ + "id" : "8662f5be-10bd-417d-b89c-d185f47d3e31", + "name" : "inventory_stock_locations_pwmewsngnw", + "request" : { + "url" : "/inventory_stock_locations/PWmewSNGnW", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "ae6d7463-b0d0-4a38-ae6e-052ab51b8564", + "x-kong-upstream-latency" : "43", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "014006311dddba06122d5646fc932d18", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "8662f5be-10bd-417d-b89c-d185f47d3e31", + "persistent" : true, + "insertionIndex" : 154 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-a5627136-0910-48e7-bd87-87d0b759e5dc.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-a5627136-0910-48e7-bd87-87d0b759e5dc.json new file mode 100644 index 0000000..bbd908e --- /dev/null +++ b/mock/mappings/inventory_stock_locations_pwmewsngnw-a5627136-0910-48e7-bd87-87d0b759e5dc.json @@ -0,0 +1,38 @@ +{ + "id" : "a5627136-0910-48e7-bd87-87d0b759e5dc", + "name" : "inventory_stock_locations_pwmewsngnw", + "request" : { + "url" : "/inventory_stock_locations/PWmewSNGnW", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":2,\"on_hold\":false,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:57.838Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7ace34fa4c9e77b7fb44384e547323e491ae31f536d6eecab7e4d96aa27e9cfa\"}}}", + "headers" : { + "x-request-id" : "3292fbbc-21bc-4941-aa8c-6ed6e15d62ba", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "40", + "x-kong-request-id" : "b1aea2552fa79736b028df2e0d9ecb58", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"605e2360f4a2084fc09494134e4d0962\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a5627136-0910-48e7-bd87-87d0b759e5dc", + "persistent" : true, + "scenarioName" : "scenario-24-inventory_stock_locations-PWmewSNGnW", + "requiredScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-3", + "newScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-4", + "insertionIndex" : 155 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-ae1807ca-b068-40c8-bed1-2f65899c9d15.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-ae1807ca-b068-40c8-bed1-2f65899c9d15.json new file mode 100644 index 0000000..496e245 --- /dev/null +++ b/mock/mappings/inventory_stock_locations_pwmewsngnw-ae1807ca-b068-40c8-bed1-2f65899c9d15.json @@ -0,0 +1,38 @@ +{ + "id" : "ae1807ca-b068-40c8-bed1-2f65899c9d15", + "name" : "inventory_stock_locations_pwmewsngnw", + "request" : { + "url" : "/inventory_stock_locations/PWmewSNGnW", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:56.055Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2ed268dea31e0b2d096376996ef39c9f9f3df9c971f5f7571fb256203b5e562a\"}}}", + "headers" : { + "x-request-id" : "4555bfaa-0f8d-4f10-87c0-c85aadeb2e37", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "44", + "x-kong-request-id" : "9dfb4f127bec8253d2985815ec5b605e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"760f7cc916a388f6d5f2b6f5edcedb6b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ae1807ca-b068-40c8-bed1-2f65899c9d15", + "persistent" : true, + "scenarioName" : "scenario-24-inventory_stock_locations-PWmewSNGnW", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-2", + "insertionIndex" : 164 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-c73118b0-c1a9-48d7-8ee3-15951416b76f.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-c73118b0-c1a9-48d7-8ee3-15951416b76f.json new file mode 100644 index 0000000..394ca0f --- /dev/null +++ b/mock/mappings/inventory_stock_locations_pwmewsngnw-c73118b0-c1a9-48d7-8ee3-15951416b76f.json @@ -0,0 +1,40 @@ +{ + "id" : "c73118b0-c1a9-48d7-8ee3-15951416b76f", + "name" : "inventory_stock_locations_pwmewsngnw", + "request" : { + "url" : "/inventory_stock_locations/PWmewSNGnW", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"on_hold\":false,\"priority\":2,\"reference\":null,\"reference_origin\":null},\"id\":\"PWmewSNGnW\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_stock_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":2,\"on_hold\":false,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:57.838Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1b76b4518db7d806c338736660edc3451253d33782bf4eaf5533a58c5835a212\"}}}", + "headers" : { + "x-request-id" : "a7692d6a-3d2b-4ea5-98ea-60ac8eb3b5c6", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "87", + "x-kong-request-id" : "a5ec225afba31862c5c9f80e1f5c0e4a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:57 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"9de5ec8aee8b2ca9d2d687042600da09\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "c73118b0-c1a9-48d7-8ee3-15951416b76f", + "persistent" : true, + "insertionIndex" : 159 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-f7584548-1269-4442-88b2-8f62080f4e03.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-f7584548-1269-4442-88b2-8f62080f4e03.json new file mode 100644 index 0000000..6058e36 --- /dev/null +++ b/mock/mappings/inventory_stock_locations_pwmewsngnw-f7584548-1269-4442-88b2-8f62080f4e03.json @@ -0,0 +1,38 @@ +{ + "id" : "f7584548-1269-4442-88b2-8f62080f4e03", + "name" : "inventory_stock_locations_pwmewsngnw", + "request" : { + "url" : "/inventory_stock_locations/PWmewSNGnW", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:56.055Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"15451896229daa05ef4fb4adf1b3ea6bcd0494a8d8b811edc8d275c66dae6081\"}}}", + "headers" : { + "x-request-id" : "93b9687d-b776-4928-89d3-c6746965c044", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "42", + "x-kong-request-id" : "06e8890994b3df716b31c357d27b961e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:57 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"6a6a6579bf185f5c2e91667bb5407f3e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f7584548-1269-4442-88b2-8f62080f4e03", + "persistent" : true, + "scenarioName" : "scenario-24-inventory_stock_locations-PWmewSNGnW", + "requiredScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-2", + "newScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-3", + "insertionIndex" : 160 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways-8c90af06-c170-4a30-9b30-c936f52612f3.json b/mock/mappings/klarna_gateways-8c90af06-c170-4a30-9b30-c936f52612f3.json new file mode 100644 index 0000000..6f1a9ae --- /dev/null +++ b/mock/mappings/klarna_gateways-8c90af06-c170-4a30-9b30-c936f52612f3.json @@ -0,0 +1,40 @@ +{ + "id" : "8c90af06-c170-4a30-9b30-c936f52612f3", + "name" : "klarna_gateways", + "request" : { + "url" : "/klarna_gateways", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_secret\":\"xxxx-yyyy-zzzz\",\"country_code\":\"EU\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"},\"name\":\"Incentro Klarna Gateway\",\"reference\":null,\"reference_origin\":null},\"type\":\"klarna_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:51:59.780Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"864df89cca13f91d36e778438d7f1fd339570ec6693939ac623277bf91380de7\"}}}", + "headers" : { + "x-request-id" : "771f233d-1251-4a63-afa3-39abafa04646", + "x-kong-upstream-latency" : "23", + "X-Ratelimit-Remaining" : "78", + "x-kong-request-id" : "56c30c1d9aabd5411057615a1ede002d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:59 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"263999264572a06c1aea9b92e9140aec\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "8c90af06-c170-4a30-9b30-c936f52612f3", + "persistent" : true, + "insertionIndex" : 149 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-590ca422-50b6-427e-a292-fbb91ca4d126.json b/mock/mappings/klarna_gateways_ejjwlsjapk-590ca422-50b6-427e-a292-fbb91ca4d126.json new file mode 100644 index 0000000..b2953a0 --- /dev/null +++ b/mock/mappings/klarna_gateways_ejjwlsjapk-590ca422-50b6-427e-a292-fbb91ca4d126.json @@ -0,0 +1,32 @@ +{ + "id" : "590ca422-50b6-427e-a292-fbb91ca4d126", + "name" : "klarna_gateways_ejjwlsjapk", + "request" : { + "url" : "/klarna_gateways/EjJwlsJAPk", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "fbc9106d-3926-4717-9eca-bacfff70cbcf", + "x-kong-upstream-latency" : "41", + "X-Ratelimit-Remaining" : "78", + "x-kong-request-id" : "cfa5be5bf36df810c0d73d15a921c921", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:01 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "590ca422-50b6-427e-a292-fbb91ca4d126", + "persistent" : true, + "insertionIndex" : 144 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-6df381d7-cf5b-483b-8187-029fd14f8be0.json b/mock/mappings/klarna_gateways_ejjwlsjapk-6df381d7-cf5b-483b-8187-029fd14f8be0.json new file mode 100644 index 0000000..c76524c --- /dev/null +++ b/mock/mappings/klarna_gateways_ejjwlsjapk-6df381d7-cf5b-483b-8187-029fd14f8be0.json @@ -0,0 +1,36 @@ +{ + "id" : "6df381d7-cf5b-483b-8187-029fd14f8be0", + "name" : "klarna_gateways_ejjwlsjapk", + "request" : { + "url" : "/klarna_gateways/EjJwlsJAPk", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "95c131a9-1375-4e52-b37b-855facea98d7", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "35", + "x-kong-request-id" : "5519d63718ce0d79282d475e5d472a09", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:01 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "6df381d7-cf5b-483b-8187-029fd14f8be0", + "persistent" : true, + "scenarioName" : "scenario-23-klarna_gateways-EjJwlsJAPk", + "requiredScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-4", + "insertionIndex" : 143 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json b/mock/mappings/klarna_gateways_ejjwlsjapk-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json new file mode 100644 index 0000000..b56693e --- /dev/null +++ b/mock/mappings/klarna_gateways_ejjwlsjapk-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json @@ -0,0 +1,38 @@ +{ + "id" : "7ae61fa3-8cd9-4c9f-8b95-1959c12c0485", + "name" : "klarna_gateways_ejjwlsjapk", + "request" : { + "url" : "/klarna_gateways/EjJwlsJAPk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway Changed\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:52:00.932Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"753c7c9d090d5d5a37e19de86d56d130175000b80fa5c2aaf5a5039d2ab0361b\"}}}", + "headers" : { + "x-request-id" : "30b43ed5-a105-4325-b0ff-c6b8b52957b6", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "36", + "x-kong-request-id" : "6718ab64c0c4da4151e208435f72c121", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:01 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"93536a3b68e584c3b5c85c8e6bdafc9e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7ae61fa3-8cd9-4c9f-8b95-1959c12c0485", + "persistent" : true, + "scenarioName" : "scenario-23-klarna_gateways-EjJwlsJAPk", + "requiredScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-3", + "newScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-4", + "insertionIndex" : 145 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-9a24225b-8194-4c95-a22b-78cf50603ae0.json b/mock/mappings/klarna_gateways_ejjwlsjapk-9a24225b-8194-4c95-a22b-78cf50603ae0.json new file mode 100644 index 0000000..d704c95 --- /dev/null +++ b/mock/mappings/klarna_gateways_ejjwlsjapk-9a24225b-8194-4c95-a22b-78cf50603ae0.json @@ -0,0 +1,38 @@ +{ + "id" : "9a24225b-8194-4c95-a22b-78cf50603ae0", + "name" : "klarna_gateways_ejjwlsjapk", + "request" : { + "url" : "/klarna_gateways/EjJwlsJAPk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:51:59.780Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f351f896ffbb140da2136af3120bdeb1060ed31227c99007415da168adf01a32\"}}}", + "headers" : { + "x-request-id" : "03024aca-5048-43f9-8e8c-bb18a6701c26", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "38", + "x-kong-request-id" : "2016671e140ec6720d732b4ed3b28a46", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:00 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"888ddbb320f8083e76fb5fb2137989c7\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "9a24225b-8194-4c95-a22b-78cf50603ae0", + "persistent" : true, + "scenarioName" : "scenario-23-klarna_gateways-EjJwlsJAPk", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-2", + "insertionIndex" : 148 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-f80b6c98-10e3-485b-ad92-a5dc757551df.json b/mock/mappings/klarna_gateways_ejjwlsjapk-f80b6c98-10e3-485b-ad92-a5dc757551df.json new file mode 100644 index 0000000..bee7098 --- /dev/null +++ b/mock/mappings/klarna_gateways_ejjwlsjapk-f80b6c98-10e3-485b-ad92-a5dc757551df.json @@ -0,0 +1,38 @@ +{ + "id" : "f80b6c98-10e3-485b-ad92-a5dc757551df", + "name" : "klarna_gateways_ejjwlsjapk", + "request" : { + "url" : "/klarna_gateways/EjJwlsJAPk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:51:59.780Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2e4f76c72844bbb99ae7650f6566c6a7481a5e2fb57fbde4a4b1ef40697f781c\"}}}", + "headers" : { + "x-request-id" : "75bcc677-dded-45fb-a735-489488b9e90f", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "37", + "x-kong-request-id" : "8e3e697c6095023930231a6ca183093e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:00 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"711f485e5d29cee82b09fd6613c19e2b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f80b6c98-10e3-485b-ad92-a5dc757551df", + "persistent" : true, + "scenarioName" : "scenario-23-klarna_gateways-EjJwlsJAPk", + "requiredScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-2", + "newScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-3", + "insertionIndex" : 147 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-f96b0cde-70f8-42ad-93e4-558dc0925d35.json b/mock/mappings/klarna_gateways_ejjwlsjapk-f96b0cde-70f8-42ad-93e4-558dc0925d35.json new file mode 100644 index 0000000..86950ab --- /dev/null +++ b/mock/mappings/klarna_gateways_ejjwlsjapk-f96b0cde-70f8-42ad-93e4-558dc0925d35.json @@ -0,0 +1,40 @@ +{ + "id" : "f96b0cde-70f8-42ad-93e4-558dc0925d35", + "name" : "klarna_gateways_ejjwlsjapk", + "request" : { + "url" : "/klarna_gateways/EjJwlsJAPk", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_secret\":\"xxxx-yyyy-zzzz\",\"country_code\":\"EU\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"},\"name\":\"Incentro Klarna Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway Changed\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:52:00.932Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8dfc8bc73fc040588aa5accd9dbc7c3a69639f0b1b99db163e0134f8bd407b72\"}}}", + "headers" : { + "x-request-id" : "d62c6354-0e5c-40be-9607-5c407d134fef", + "x-kong-upstream-latency" : "31", + "X-Ratelimit-Remaining" : "86", + "x-kong-request-id" : "8931b37a233c3b0a13881b1a7b0b124c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:00 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"0e9ca28559d2fb93bfcc2a0c606c19b3\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f96b0cde-70f8-42ad-93e4-558dc0925d35", + "persistent" : true, + "insertionIndex" : 146 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways-d3622803-a267-474a-8f8b-5b9268069b0e.json b/mock/mappings/manual_gateways-d3622803-a267-474a-8f8b-5b9268069b0e.json new file mode 100644 index 0000000..c89bff7 --- /dev/null +++ b/mock/mappings/manual_gateways-d3622803-a267-474a-8f8b-5b9268069b0e.json @@ -0,0 +1,40 @@ +{ + "id" : "d3622803-a267-474a-8f8b-5b9268069b0e", + "name" : "manual_gateways", + "request" : { + "url" : "/manual_gateways", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"name\":\"Incentro Manual Gateway\",\"reference\":null,\"reference_origin\":null},\"type\":\"manual_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"62ba0e4c45a11f1e1bb2246a82cb9fb8d0594abc37917bedc7ac52ae0617be29\"}}}", + "headers" : { + "x-request-id" : "26a93999-36e6-4479-805b-c74a65e96a8b", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "77", + "x-kong-request-id" : "1e837071bb6f1d7c348b99563b068667", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:02 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"7f5bf566b52dc4a97ac09add25f8cc0d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d3622803-a267-474a-8f8b-5b9268069b0e", + "persistent" : true, + "insertionIndex" : 142 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-38d4f538-b44f-407c-bb99-61f23abd17a8.json b/mock/mappings/manual_gateways_oxoaeswmwj-38d4f538-b44f-407c-bb99-61f23abd17a8.json new file mode 100644 index 0000000..8b56da4 --- /dev/null +++ b/mock/mappings/manual_gateways_oxoaeswmwj-38d4f538-b44f-407c-bb99-61f23abd17a8.json @@ -0,0 +1,38 @@ +{ + "id" : "38d4f538-b44f-407c-bb99-61f23abd17a8", + "name" : "manual_gateways_oxoaeswmwj", + "request" : { + "url" : "/manual_gateways/oxoaEswMWj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"35cc26c236e4ff3ac46d7b6e4110edac30468f3e18025d40e00ede8d2b326243\"}}}", + "headers" : { + "x-request-id" : "b825bbcb-7678-41b9-88bc-2bb0168cb873", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "33", + "x-kong-request-id" : "2f0058761df541163f3646524d7e260f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:02 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d48a6c219065489e609a047e402f827a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "38d4f538-b44f-407c-bb99-61f23abd17a8", + "persistent" : true, + "scenarioName" : "scenario-22-manual_gateways-oxoaEswMWj", + "requiredScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-2", + "newScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-3", + "insertionIndex" : 140 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-cc81a913-7a1e-4e65-8185-6d74dcefc615.json b/mock/mappings/manual_gateways_oxoaeswmwj-cc81a913-7a1e-4e65-8185-6d74dcefc615.json new file mode 100644 index 0000000..89007d9 --- /dev/null +++ b/mock/mappings/manual_gateways_oxoaeswmwj-cc81a913-7a1e-4e65-8185-6d74dcefc615.json @@ -0,0 +1,40 @@ +{ + "id" : "cc81a913-7a1e-4e65-8185-6d74dcefc615", + "name" : "manual_gateways_oxoaeswmwj", + "request" : { + "url" : "/manual_gateways/oxoaEswMWj", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"name\":\"Incentro Manual Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway Changed\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.897Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1c73a334ef232d443870b9a99c0c9bc59d10600129093d83cb6032c60b5e065f\"}}}", + "headers" : { + "x-request-id" : "8d7cc8a4-2dda-4ab3-95bb-15646c25d039", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "85", + "x-kong-request-id" : "a4ec8306c2a0e576c277d57965f53c40", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:02 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"1c4bf76f08c2015d006bc7a9a8cd37a4\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "cc81a913-7a1e-4e65-8185-6d74dcefc615", + "persistent" : true, + "insertionIndex" : 139 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-cf7b7100-a786-4f64-aecc-532b7ed13548.json b/mock/mappings/manual_gateways_oxoaeswmwj-cf7b7100-a786-4f64-aecc-532b7ed13548.json new file mode 100644 index 0000000..ef85284 --- /dev/null +++ b/mock/mappings/manual_gateways_oxoaeswmwj-cf7b7100-a786-4f64-aecc-532b7ed13548.json @@ -0,0 +1,38 @@ +{ + "id" : "cf7b7100-a786-4f64-aecc-532b7ed13548", + "name" : "manual_gateways_oxoaeswmwj", + "request" : { + "url" : "/manual_gateways/oxoaEswMWj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway Changed\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.897Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"223c18a176e422d0efd3b26d4e814d040ac94dbcf2d9e2b8460a3696ae515b5b\"}}}", + "headers" : { + "x-request-id" : "ea30b21a-398b-4373-b8bd-466a558960fb", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "32", + "x-kong-request-id" : "7cf37457c3983d758e8f500b2b63b547", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:03 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"1e2437d8c4a5f0b2df605d1090d80e99\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "cf7b7100-a786-4f64-aecc-532b7ed13548", + "persistent" : true, + "scenarioName" : "scenario-22-manual_gateways-oxoaEswMWj", + "requiredScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-3", + "newScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-4", + "insertionIndex" : 138 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-db32005d-382f-43d4-9835-afb951d4113c.json b/mock/mappings/manual_gateways_oxoaeswmwj-db32005d-382f-43d4-9835-afb951d4113c.json new file mode 100644 index 0000000..f7e4e78 --- /dev/null +++ b/mock/mappings/manual_gateways_oxoaeswmwj-db32005d-382f-43d4-9835-afb951d4113c.json @@ -0,0 +1,38 @@ +{ + "id" : "db32005d-382f-43d4-9835-afb951d4113c", + "name" : "manual_gateways_oxoaeswmwj", + "request" : { + "url" : "/manual_gateways/oxoaEswMWj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"14d038435d313a1f4e67a94b2d32862c325b09325733e5cd911d0ce3efa0fae8\"}}}", + "headers" : { + "x-request-id" : "6a87ac73-8b7d-4eb2-a0c8-0e878fb221cf", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "34", + "x-kong-request-id" : "a2f3ed212f8e90354c918f20dce6b91a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:02 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"eef4bd33c8d2be5823d5fa3da3432916\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "db32005d-382f-43d4-9835-afb951d4113c", + "persistent" : true, + "scenarioName" : "scenario-22-manual_gateways-oxoaEswMWj", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-2", + "insertionIndex" : 141 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json b/mock/mappings/manual_gateways_oxoaeswmwj-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json new file mode 100644 index 0000000..1eb20db --- /dev/null +++ b/mock/mappings/manual_gateways_oxoaeswmwj-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json @@ -0,0 +1,36 @@ +{ + "id" : "e71a7c1f-7489-40c0-82b3-46195ab04fa2", + "name" : "manual_gateways_oxoaeswmwj", + "request" : { + "url" : "/manual_gateways/oxoaEswMWj", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "ff299791-34bc-4b9e-af99-604cd54d904a", + "x-kong-upstream-latency" : "10", + "X-Ratelimit-Remaining" : "31", + "x-kong-request-id" : "805a9e3e24237257dcbf6568fbf9d536", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:03 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "e71a7c1f-7489-40c0-82b3-46195ab04fa2", + "persistent" : true, + "scenarioName" : "scenario-22-manual_gateways-oxoaEswMWj", + "requiredScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-4", + "insertionIndex" : 136 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-fdd3d488-e259-4164-a702-bb60afdaa07e.json b/mock/mappings/manual_gateways_oxoaeswmwj-fdd3d488-e259-4164-a702-bb60afdaa07e.json new file mode 100644 index 0000000..09bdda3 --- /dev/null +++ b/mock/mappings/manual_gateways_oxoaeswmwj-fdd3d488-e259-4164-a702-bb60afdaa07e.json @@ -0,0 +1,32 @@ +{ + "id" : "fdd3d488-e259-4164-a702-bb60afdaa07e", + "name" : "manual_gateways_oxoaeswmwj", + "request" : { + "url" : "/manual_gateways/oxoaEswMWj", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "81039c65-3992-43ab-afb6-0eac65c9e457", + "x-kong-upstream-latency" : "36", + "X-Ratelimit-Remaining" : "77", + "x-kong-request-id" : "4ba6c115ac281d0edb98e851908cd21b", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:03 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "fdd3d488-e259-4164-a702-bb60afdaa07e", + "persistent" : true, + "insertionIndex" : 137 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json b/mock/mappings/manual_tax_calculators-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json new file mode 100644 index 0000000..b816dd5 --- /dev/null +++ b/mock/mappings/manual_tax_calculators-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json @@ -0,0 +1,40 @@ +{ + "id" : "ee90cbcc-44cf-40bf-8d88-f76a6eb93716", + "name" : "manual_tax_calculators", + "request" : { + "url" : "/manual_tax_calculators", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"},\"name\":\"Incentro Manual Tax Calculator\",\"reference\":null,\"reference_origin\":null},\"type\":\"manual_tax_calculators\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:03.975Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01c46a418ae4c2e30b9c98989378046e56d5219a0f3d5586d2f16d8c1f635dea\"}}}", + "headers" : { + "x-request-id" : "a04d022c-2b77-46fe-9596-c14e2070a83b", + "x-kong-upstream-latency" : "36", + "X-Ratelimit-Remaining" : "76", + "x-kong-request-id" : "d8017222a0884a04cc45630f71402337", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:03 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"92f2a7142c4f10878e6a588e5ec553d1\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ee90cbcc-44cf-40bf-8d88-f76a6eb93716", + "persistent" : true, + "insertionIndex" : 135 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json new file mode 100644 index 0000000..41d4089 --- /dev/null +++ b/mock/mappings/manual_tax_calculators_evvrmtjxav-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json @@ -0,0 +1,38 @@ +{ + "id" : "169c4445-cd22-4ba6-9c87-fa8f2bb3713b", + "name" : "manual_tax_calculators_evvrmtjxav", + "request" : { + "url" : "/manual_tax_calculators/EvVRMTJxAv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator Changed\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:04.791Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fd5cee47b927c134b8f076d915f67ff28f8528bc0dd9791740a17b30ab162d6f\"}}}", + "headers" : { + "x-request-id" : "5b6a5bbc-668b-4a66-a593-520bead78a6c", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "28", + "x-kong-request-id" : "bd3cd21c72c8f0012d4e420760860c0f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:05 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"3bcf2bcfdea6904de1feb545e0cd83e9\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "169c4445-cd22-4ba6-9c87-fa8f2bb3713b", + "persistent" : true, + "scenarioName" : "scenario-21-manual_tax_calculators-EvVRMTJxAv", + "requiredScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-3", + "newScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-4", + "insertionIndex" : 131 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json new file mode 100644 index 0000000..85d693a --- /dev/null +++ b/mock/mappings/manual_tax_calculators_evvrmtjxav-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json @@ -0,0 +1,38 @@ +{ + "id" : "2bab8ec0-013a-41e0-a688-8bd5dde5fc11", + "name" : "manual_tax_calculators_evvrmtjxav", + "request" : { + "url" : "/manual_tax_calculators/EvVRMTJxAv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:03.975Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d1fdcee8d8ddffb34ed30b07817935f83c0adb9f519b380eb7ed12893ad71a2e\"}}}", + "headers" : { + "x-request-id" : "eb2d084d-9842-438d-b308-8fb3a9dcfbfc", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "29", + "x-kong-request-id" : "ce1dfb3cfcdf743e08dac94ce7cee14e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:04 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"425cc9cecdda3a3e43f43b3c48b5ca54\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "2bab8ec0-013a-41e0-a688-8bd5dde5fc11", + "persistent" : true, + "scenarioName" : "scenario-21-manual_tax_calculators-EvVRMTJxAv", + "requiredScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-2", + "newScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-3", + "insertionIndex" : 133 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json new file mode 100644 index 0000000..892ccbe --- /dev/null +++ b/mock/mappings/manual_tax_calculators_evvrmtjxav-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json @@ -0,0 +1,38 @@ +{ + "id" : "44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3", + "name" : "manual_tax_calculators_evvrmtjxav", + "request" : { + "url" : "/manual_tax_calculators/EvVRMTJxAv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:03.975Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"326442176ecee40daeefcf9440e984ea52504dfae5ef516d425f964efbdcd85a\"}}}", + "headers" : { + "x-request-id" : "47d2efdd-c9d0-4034-abfe-99e90cfcddbc", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "30", + "x-kong-request-id" : "ca3c3f343c373b15644ae8020416bd3d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:04 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"3c5701f7ce5efad5800687d0684ac9a1\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3", + "persistent" : true, + "scenarioName" : "scenario-21-manual_tax_calculators-EvVRMTJxAv", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-2", + "insertionIndex" : 134 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json new file mode 100644 index 0000000..d829b39 --- /dev/null +++ b/mock/mappings/manual_tax_calculators_evvrmtjxav-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json @@ -0,0 +1,36 @@ +{ + "id" : "4b525f45-1d07-4891-9879-7fd4cccd1dd5", + "name" : "manual_tax_calculators_evvrmtjxav", + "request" : { + "url" : "/manual_tax_calculators/EvVRMTJxAv", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "ab0c4b90-e9a3-445a-9bf5-f124e3baef19", + "x-kong-upstream-latency" : "10", + "X-Ratelimit-Remaining" : "27", + "x-kong-request-id" : "12690b17ce13c468c6220e4095587b23", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:05 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "4b525f45-1d07-4891-9879-7fd4cccd1dd5", + "persistent" : true, + "scenarioName" : "scenario-21-manual_tax_calculators-EvVRMTJxAv", + "requiredScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-4", + "insertionIndex" : 129 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json new file mode 100644 index 0000000..e2069d5 --- /dev/null +++ b/mock/mappings/manual_tax_calculators_evvrmtjxav-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json @@ -0,0 +1,40 @@ +{ + "id" : "e8b74286-bccf-4f9f-b4bd-bab7233f987a", + "name" : "manual_tax_calculators_evvrmtjxav", + "request" : { + "url" : "/manual_tax_calculators/EvVRMTJxAv", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"},\"name\":\"Incentro Manual Tax Calculator Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator Changed\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:04.791Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"cd727d42378a79b8a5c25cab062118b7d8030a7fd047ce6e14102e10c2232a16\"}}}", + "headers" : { + "x-request-id" : "ab10c6bf-f515-44b0-84b8-fa866840f7f5", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "84", + "x-kong-request-id" : "9cc5e504a464cb2d34b22c63acd43611", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:04 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"dae4cd491ac6546b5af06835912fda10\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e8b74286-bccf-4f9f-b4bd-bab7233f987a", + "persistent" : true, + "insertionIndex" : 132 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json new file mode 100644 index 0000000..dd7d4ad --- /dev/null +++ b/mock/mappings/manual_tax_calculators_evvrmtjxav-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json @@ -0,0 +1,32 @@ +{ + "id" : "f5c2a278-3139-4892-a508-dbb20cbc9ef5", + "name" : "manual_tax_calculators_evvrmtjxav", + "request" : { + "url" : "/manual_tax_calculators/EvVRMTJxAv", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "3b53fab7-f877-4912-b780-e9f997ca26a4", + "x-kong-upstream-latency" : "26", + "X-Ratelimit-Remaining" : "76", + "x-kong-request-id" : "9e9f240549b21c606af4251e515e6715", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:05 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "f5c2a278-3139-4892-a508-dbb20cbc9ef5", + "persistent" : true, + "insertionIndex" : 130 +} \ No newline at end of file diff --git a/mock/mappings/markets-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json b/mock/mappings/markets-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json new file mode 100644 index 0000000..0d5f318 --- /dev/null +++ b/mock/mappings/markets-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json @@ -0,0 +1,40 @@ +{ + "id" : "e26ba0e1-0de2-4812-b67e-793be0e22d6f", + "name" : "markets", + "request" : { + "url" : "/markets", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"checkout_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"external_prices_url\":null,\"facebook_pixel_id\":\"pixel\",\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Market\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\"}},\"merchant\":{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\"}},\"price_list\":{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\"}}},\"type\":\"markets\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:07.716Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"37e4de3e2bd053edd4716156e0dead736d6710a8413af611ac4f23a50c3d1ee1\"}}}", + "headers" : { + "x-request-id" : "82ec4585-dd5a-4710-9d9a-2fa57fb4be08", + "x-kong-upstream-latency" : "93", + "X-Ratelimit-Remaining" : "70", + "x-kong-request-id" : "26face64f3dba7160d21c657f9571d38", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"bce275c042940471becf3315fc8117f9\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e26ba0e1-0de2-4812-b67e-793be0e22d6f", + "persistent" : true, + "insertionIndex" : 123 +} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-3942aa83-8d03-431a-918a-fc11435415dd.json b/mock/mappings/markets_rjepzhzyro-3942aa83-8d03-431a-918a-fc11435415dd.json new file mode 100644 index 0000000..1516dc2 --- /dev/null +++ b/mock/mappings/markets_rjepzhzyro-3942aa83-8d03-431a-918a-fc11435415dd.json @@ -0,0 +1,39 @@ +{ + "id" : "3942aa83-8d03-431a-918a-fc11435415dd", + "name" : "markets_rjepzhzyro", + "request" : { + "url" : "/markets/rjEPzhzyRo", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:07.716Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"64851f5cab318bf0a50fe6c05ea3c4cc93e752bbae8d847c1b7ab7b86448d285\"}}}", + "headers" : { + "x-request-id" : "8f0b9b82-8c7c-4ae0-b5cc-9b928e311d22", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "475", + "x-kong-request-id" : "1fac45479e28b62e1c41a17c571cb63a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"58fce88ee580c11b206f042c572a1ccb\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "3942aa83-8d03-431a-918a-fc11435415dd", + "persistent" : true, + "scenarioName" : "scenario-15-markets-rjEPzhzyRo", + "requiredScenarioState" : "scenario-15-markets-rjEPzhzyRo-2", + "newScenarioState" : "scenario-15-markets-rjEPzhzyRo-3", + "insertionIndex" : 111 +} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json b/mock/mappings/markets_rjepzhzyro-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json new file mode 100644 index 0000000..e52f0fb --- /dev/null +++ b/mock/mappings/markets_rjepzhzyro-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json @@ -0,0 +1,39 @@ +{ + "id" : "4c839a9e-21cb-4940-b5b0-ba3b95f7aa97", + "name" : "markets_rjepzhzyro", + "request" : { + "url" : "/markets/rjEPzhzyRo", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:07.716Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"64851f5cab318bf0a50fe6c05ea3c4cc93e752bbae8d847c1b7ab7b86448d285\"}}}", + "headers" : { + "x-request-id" : "8f0b9b82-8c7c-4ae0-b5cc-9b928e311d22", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "478", + "x-kong-request-id" : "1fac45479e28b62e1c41a17c571cb63a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"58fce88ee580c11b206f042c572a1ccb\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "4c839a9e-21cb-4940-b5b0-ba3b95f7aa97", + "persistent" : true, + "scenarioName" : "scenario-15-markets-rjEPzhzyRo", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-15-markets-rjEPzhzyRo-2", + "insertionIndex" : 117 +} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json b/mock/mappings/markets_rjepzhzyro-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json new file mode 100644 index 0000000..16b9bb4 --- /dev/null +++ b/mock/mappings/markets_rjepzhzyro-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json @@ -0,0 +1,39 @@ +{ + "id" : "5cfd35c2-7084-429e-b1e9-6ecc71438dff", + "name" : "markets_rjepzhzyro", + "request" : { + "url" : "/markets/rjEPzhzyRo", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market Changed\",\"code\":null,\"facebook_pixel_id\":\"pixelchanged\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:09.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"596861d666d9548ee5a11db744bc3df5cf9fe68fc16374636d3044f314151276\"}}}", + "headers" : { + "x-request-id" : "b7bf5bfa-1773-44ff-acb2-fa66897cf523", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "472", + "x-kong-request-id" : "2dd78e5ffcd2d44b50a0835ae8c5a237", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:11 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-content-type-options" : "nosniff", + "x-xss-protection" : "1; mode=block", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json", + "etag" : "W/\"6c138410dc0d0d1940904ed327ada072\"", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "5cfd35c2-7084-429e-b1e9-6ecc71438dff", + "persistent" : true, + "scenarioName" : "scenario-15-markets-rjEPzhzyRo", + "requiredScenarioState" : "scenario-15-markets-rjEPzhzyRo-3", + "newScenarioState" : "scenario-15-markets-rjEPzhzyRo-4", + "insertionIndex" : 104 +} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-779594c5-6309-4cd8-b8e5-9c860d56af67.json b/mock/mappings/markets_rjepzhzyro-779594c5-6309-4cd8-b8e5-9c860d56af67.json new file mode 100644 index 0000000..afa1eeb --- /dev/null +++ b/mock/mappings/markets_rjepzhzyro-779594c5-6309-4cd8-b8e5-9c860d56af67.json @@ -0,0 +1,40 @@ +{ + "id" : "779594c5-6309-4cd8-b8e5-9c860d56af67", + "name" : "markets_rjepzhzyro", + "request" : { + "url" : "/markets/rjEPzhzyRo", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"checkout_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"external_prices_url\":null,\"facebook_pixel_id\":\"pixelchanged\",\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Market Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"rjEPzhzyRo\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\"}},\"merchant\":{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\"}},\"price_list\":{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\"}}},\"type\":\"markets\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market Changed\",\"code\":null,\"facebook_pixel_id\":\"pixelchanged\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:09.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1633fd8f82d9682df880453b74e316ea67e9819b96d7eac02ce464ce4e55edb4\"}}}", + "headers" : { + "x-request-id" : "4fd66621-8ed5-4838-b44c-a9d8d12c453c", + "x-kong-upstream-latency" : "75", + "X-Ratelimit-Remaining" : "83", + "x-kong-request-id" : "8f50fe5aedec40533dbecb41bc07f458", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"25edecfd2cb9b323a6511b15b74badd6\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "779594c5-6309-4cd8-b8e5-9c860d56af67", + "persistent" : true, + "insertionIndex" : 110 +} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-db4cca06-bf19-4c77-9816-47f41c996816.json b/mock/mappings/markets_rjepzhzyro-db4cca06-bf19-4c77-9816-47f41c996816.json new file mode 100644 index 0000000..e7b0840 --- /dev/null +++ b/mock/mappings/markets_rjepzhzyro-db4cca06-bf19-4c77-9816-47f41c996816.json @@ -0,0 +1,37 @@ +{ + "id" : "db4cca06-bf19-4c77-9816-47f41c996816", + "name" : "markets_rjepzhzyro", + "request" : { + "url" : "/markets/rjEPzhzyRo", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "ef62f8d6-5fe7-46d8-964a-77ca28f50f44", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "471", + "x-kong-request-id" : "18e6b73969b95b17e4d1973bc3042128", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:14 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "cache-control" : "no-cache", + "Age" : "0" + } + }, + "uuid" : "db4cca06-bf19-4c77-9816-47f41c996816", + "persistent" : true, + "scenarioName" : "scenario-15-markets-rjEPzhzyRo", + "requiredScenarioState" : "scenario-15-markets-rjEPzhzyRo-4", + "insertionIndex" : 97 +} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-ec677699-f440-47be-b662-b24e3ad09fdb.json b/mock/mappings/markets_rjepzhzyro-ec677699-f440-47be-b662-b24e3ad09fdb.json new file mode 100644 index 0000000..1263647 --- /dev/null +++ b/mock/mappings/markets_rjepzhzyro-ec677699-f440-47be-b662-b24e3ad09fdb.json @@ -0,0 +1,32 @@ +{ + "id" : "ec677699-f440-47be-b662-b24e3ad09fdb", + "name" : "markets_rjepzhzyro", + "request" : { + "url" : "/markets/rjEPzhzyRo", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "4e5dfb65-0624-4668-bc81-484a0c5614a9", + "x-kong-upstream-latency" : "2024", + "X-Ratelimit-Remaining" : "74", + "x-kong-request-id" : "3d3f714a5a13e425dfe2e56ca8c78207", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:13 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "ec677699-f440-47be-b662-b24e3ad09fdb", + "persistent" : true, + "insertionIndex" : 102 +} \ No newline at end of file diff --git a/mock/mappings/merchants-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json b/mock/mappings/merchants-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json new file mode 100644 index 0000000..0527cad --- /dev/null +++ b/mock/mappings/merchants-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json @@ -0,0 +1,40 @@ +{ + "id" : "ec7f3307-6453-4d6b-88a0-c76ce343e0e8", + "name" : "merchants", + "request" : { + "url" : "/merchants", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Merchant\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"address\":{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:07.555Z\",\"updated_at\":\"2024-10-24T15:52:07.555Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4505be79b19e0a5f36d543bd397c8d2b410bacbc9d284d47a31d59bce8785d0e\"}}}", + "headers" : { + "x-request-id" : "df504221-29ac-40c1-bef5-54949608b382", + "x-kong-upstream-latency" : "28", + "X-Ratelimit-Remaining" : "71", + "x-kong-request-id" : "958d5d3c74a8490580a0ca23ab3c9e77", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d4034c32162bd3e5b41faf4a7def9cfa\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ec7f3307-6453-4d6b-88a0-c76ce343e0e8", + "persistent" : true, + "insertionIndex" : 124 +} \ No newline at end of file diff --git a/mock/mappings/merchants-f862cb11-79fb-4849-8dc5-ab53304cfccc.json b/mock/mappings/merchants-f862cb11-79fb-4849-8dc5-ab53304cfccc.json new file mode 100644 index 0000000..87c3679 --- /dev/null +++ b/mock/mappings/merchants-f862cb11-79fb-4849-8dc5-ab53304cfccc.json @@ -0,0 +1,40 @@ +{ + "id" : "f862cb11-79fb-4849-8dc5-ab53304cfccc", + "name" : "merchants", + "request" : { + "url" : "/merchants", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"name\":\"Incentro Merchant\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"address\":{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:14.813Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8896cd944a305433342d9dff38b2ba33fb5030793185d6367d3cee82ef573af0\"}}}", + "headers" : { + "x-request-id" : "737ac2b0-882a-4979-8c3b-841e87e4bd1f", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "68", + "x-kong-request-id" : "fe39a51d493c8f041599602cc055f247", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:14 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"37ae2901afdc3d986018d843df4b1d39\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f862cb11-79fb-4849-8dc5-ab53304cfccc", + "persistent" : true, + "insertionIndex" : 95 +} \ No newline at end of file diff --git a/mock/mappings/merchants_dbdevhrvam-affb452e-c3ea-4e41-804b-b574ac90ad8a.json b/mock/mappings/merchants_dbdevhrvam-affb452e-c3ea-4e41-804b-b574ac90ad8a.json new file mode 100644 index 0000000..a8e68eb --- /dev/null +++ b/mock/mappings/merchants_dbdevhrvam-affb452e-c3ea-4e41-804b-b574ac90ad8a.json @@ -0,0 +1,32 @@ +{ + "id" : "affb452e-c3ea-4e41-804b-b574ac90ad8a", + "name" : "merchants_dbdevhrvam", + "request" : { + "url" : "/merchants/dbdeVHRVAM", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "d33432a9-6ee5-4144-8420-dd52233abb18", + "x-kong-upstream-latency" : "32", + "X-Ratelimit-Remaining" : "71", + "x-kong-request-id" : "e4e1f97e0437917a692df62b5a8f574f", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:13 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "affb452e-c3ea-4e41-804b-b574ac90ad8a", + "persistent" : true, + "insertionIndex" : 99 +} \ No newline at end of file diff --git a/mock/mappings/merchants_dbdevhrvam-bbc19227-afdd-431d-bca0-b71194911169.json b/mock/mappings/merchants_dbdevhrvam-bbc19227-afdd-431d-bca0-b71194911169.json new file mode 100644 index 0000000..37cef4f --- /dev/null +++ b/mock/mappings/merchants_dbdevhrvam-bbc19227-afdd-431d-bca0-b71194911169.json @@ -0,0 +1,38 @@ +{ + "id" : "bbc19227-afdd-431d-bca0-b71194911169", + "name" : "merchants_dbdevhrvam", + "request" : { + "url" : "/merchants/dbdeVHRVAM", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:07.555Z\",\"updated_at\":\"2024-10-24T15:52:07.555Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"aab797f16e7ac852227468cf4344d0d0dd92a0ed08a1c1180222d6212b8252dd\"}}}", + "headers" : { + "x-request-id" : "b475254e-fec3-4b3b-b641-0a3f1e465c67", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "24", + "x-kong-request-id" : "3d1eaf0eec383843b3bfc04e92b82711", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"e23f8a9e5097a3b6d72af9a6c48e9702\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bbc19227-afdd-431d-bca0-b71194911169", + "persistent" : true, + "scenarioName" : "scenario-16-merchants-dbdeVHRVAM", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-16-merchants-dbdeVHRVAM-2", + "insertionIndex" : 118 +} \ No newline at end of file diff --git a/mock/mappings/merchants_dbdevhrvam-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json b/mock/mappings/merchants_dbdevhrvam-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json new file mode 100644 index 0000000..9376982 --- /dev/null +++ b/mock/mappings/merchants_dbdevhrvam-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json @@ -0,0 +1,38 @@ +{ + "id" : "bcd30109-8bd8-41ea-b9cd-f445ba1340b5", + "name" : "merchants_dbdevhrvam", + "request" : { + "url" : "/merchants/dbdeVHRVAM", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:07.555Z\",\"updated_at\":\"2024-10-24T15:52:07.555Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9f88ab2c7128bf86d720cb4bec76fbaeb0151f66d79e4722740e522ea6ea3090\"}}}", + "headers" : { + "x-request-id" : "535deafe-1e85-4c93-a450-cefe084d9b01", + "x-kong-upstream-latency" : "71", + "X-Ratelimit-Remaining" : "21", + "x-kong-request-id" : "cce664594bb6ac760c6067238425615b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"fbc6c60e8d3f180b321c5dff3cf982bf\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bcd30109-8bd8-41ea-b9cd-f445ba1340b5", + "persistent" : true, + "scenarioName" : "scenario-16-merchants-dbdeVHRVAM", + "requiredScenarioState" : "scenario-16-merchants-dbdeVHRVAM-2", + "newScenarioState" : "scenario-16-merchants-dbdeVHRVAM-3", + "insertionIndex" : 112 +} \ No newline at end of file diff --git a/mock/mappings/merchants_dbdevhrvam-c38de940-4b0c-446f-ad2a-78fc78342033.json b/mock/mappings/merchants_dbdevhrvam-c38de940-4b0c-446f-ad2a-78fc78342033.json new file mode 100644 index 0000000..6d4ae32 --- /dev/null +++ b/mock/mappings/merchants_dbdevhrvam-c38de940-4b0c-446f-ad2a-78fc78342033.json @@ -0,0 +1,37 @@ +{ + "id" : "c38de940-4b0c-446f-ad2a-78fc78342033", + "name" : "merchants_dbdevhrvam", + "request" : { + "url" : "/merchants/dbdeVHRVAM", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:07.555Z\",\"updated_at\":\"2024-10-24T15:52:07.555Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3d26f0063fee3a84abe003a59156711581ea949c56de48c1cff89aab5ddec820\"}}}", + "headers" : { + "x-request-id" : "33402993-3d08-4143-a6a4-19baa18bf2ab", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "18", + "x-kong-request-id" : "069a304c9cbcbe59fca49c2455350711", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"73b62d9c0c2a2ea7bd23a17b880bf995\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "c38de940-4b0c-446f-ad2a-78fc78342033", + "persistent" : true, + "scenarioName" : "scenario-16-merchants-dbdeVHRVAM", + "requiredScenarioState" : "scenario-16-merchants-dbdeVHRVAM-3", + "insertionIndex" : 105 +} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-16f65432-4b51-4f33-9e22-900c95d15ba4.json b/mock/mappings/merchants_vxzdbhveom-16f65432-4b51-4f33-9e22-900c95d15ba4.json new file mode 100644 index 0000000..8295709 --- /dev/null +++ b/mock/mappings/merchants_vxzdbhveom-16f65432-4b51-4f33-9e22-900c95d15ba4.json @@ -0,0 +1,36 @@ +{ + "id" : "16f65432-4b51-4f33-9e22-900c95d15ba4", + "name" : "merchants_vxzdbhveom", + "request" : { + "url" : "/merchants/vxZdBHVeOM", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "b063d2e3-d9c2-4ad8-bab5-8d257243eab9", + "x-kong-upstream-latency" : "6", + "X-Ratelimit-Remaining" : "10", + "x-kong-request-id" : "c0690a590e6e484424b169390997836e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:17 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "16f65432-4b51-4f33-9e22-900c95d15ba4", + "persistent" : true, + "scenarioName" : "scenario-13-merchants-vxZdBHVeOM", + "requiredScenarioState" : "scenario-13-merchants-vxZdBHVeOM-4", + "insertionIndex" : 84 +} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json b/mock/mappings/merchants_vxzdbhveom-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json new file mode 100644 index 0000000..34897b0 --- /dev/null +++ b/mock/mappings/merchants_vxzdbhveom-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json @@ -0,0 +1,38 @@ +{ + "id" : "22ab6826-3cd9-4c11-9829-a1c277cf4d3a", + "name" : "merchants_vxzdbhveom", + "request" : { + "url" : "/merchants/vxZdBHVeOM", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Updated Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:16.044Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ad5be2c050d464af41a54e27e5d7edc8024f2cb2b80d3813c96390d645ae457c\"}}}", + "headers" : { + "x-request-id" : "f98559e3-28cf-49cf-a409-83aff1fb5ba8", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "12", + "x-kong-request-id" : "0f01d97edb5d0a204ac4575f760ce667", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"aa1548f8e5202706c04db40ba363a8ba\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "22ab6826-3cd9-4c11-9829-a1c277cf4d3a", + "persistent" : true, + "scenarioName" : "scenario-13-merchants-vxZdBHVeOM", + "requiredScenarioState" : "scenario-13-merchants-vxZdBHVeOM-3", + "newScenarioState" : "scenario-13-merchants-vxZdBHVeOM-4", + "insertionIndex" : 88 +} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-275de801-77d9-46b1-b0c3-5c09bf7ec676.json b/mock/mappings/merchants_vxzdbhveom-275de801-77d9-46b1-b0c3-5c09bf7ec676.json new file mode 100644 index 0000000..6c6820d --- /dev/null +++ b/mock/mappings/merchants_vxzdbhveom-275de801-77d9-46b1-b0c3-5c09bf7ec676.json @@ -0,0 +1,40 @@ +{ + "id" : "275de801-77d9-46b1-b0c3-5c09bf7ec676", + "name" : "merchants_vxzdbhveom", + "request" : { + "url" : "/merchants/vxZdBHVeOM", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"name\":\"Incentro Updated Merchant\",\"reference\":null,\"reference_origin\":null},\"id\":\"vxZdBHVeOM\",\"relationships\":{\"address\":{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Updated Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:16.044Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fbf850a189b66ae129bacf81dea52f19612b54be58b28374273403fd3dc1e28b\"}}}", + "headers" : { + "x-request-id" : "fb90dfef-1510-43ee-bde2-0354efec0f38", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "00f07147033e3c3702682b650f0e9e1b", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"012fcb120b63013818bb0bee9a179e71\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "275de801-77d9-46b1-b0c3-5c09bf7ec676", + "persistent" : true, + "insertionIndex" : 90 +} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json b/mock/mappings/merchants_vxzdbhveom-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json new file mode 100644 index 0000000..a7c578e --- /dev/null +++ b/mock/mappings/merchants_vxzdbhveom-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json @@ -0,0 +1,38 @@ +{ + "id" : "a7a26d3e-2b37-41e9-b454-e08f0cdc54d5", + "name" : "merchants_vxzdbhveom", + "request" : { + "url" : "/merchants/vxZdBHVeOM", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:14.813Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"138d6b5117d4ddc04ed15446761790197f5275911a42b8db61dd0e5c9a299209\"}}}", + "headers" : { + "x-request-id" : "08b11cd3-9517-42d5-9bff-0dee806469de", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "14", + "x-kong-request-id" : "44147341e0f7ef55b1ec28516f05e95c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:15 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"245a67d491b76cdc6f7ea3ed0bd8c658\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a7a26d3e-2b37-41e9-b454-e08f0cdc54d5", + "persistent" : true, + "scenarioName" : "scenario-13-merchants-vxZdBHVeOM", + "requiredScenarioState" : "scenario-13-merchants-vxZdBHVeOM-2", + "newScenarioState" : "scenario-13-merchants-vxZdBHVeOM-3", + "insertionIndex" : 91 +} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json b/mock/mappings/merchants_vxzdbhveom-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json new file mode 100644 index 0000000..7769853 --- /dev/null +++ b/mock/mappings/merchants_vxzdbhveom-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json @@ -0,0 +1,32 @@ +{ + "id" : "aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f", + "name" : "merchants_vxzdbhveom", + "request" : { + "url" : "/merchants/vxZdBHVeOM", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "8eeeb444-f4d4-4809-9815-fa2137051fa7", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "69", + "x-kong-request-id" : "e599022d3267076e34d041090325e36b", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f", + "persistent" : true, + "insertionIndex" : 87 +} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-ed9577ad-34cf-4d64-8512-507568760010.json b/mock/mappings/merchants_vxzdbhveom-ed9577ad-34cf-4d64-8512-507568760010.json new file mode 100644 index 0000000..e459109 --- /dev/null +++ b/mock/mappings/merchants_vxzdbhveom-ed9577ad-34cf-4d64-8512-507568760010.json @@ -0,0 +1,38 @@ +{ + "id" : "ed9577ad-34cf-4d64-8512-507568760010", + "name" : "merchants_vxzdbhveom", + "request" : { + "url" : "/merchants/vxZdBHVeOM", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:14.813Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"deea92e115a7950944ded21bdb450b4685f598d79fae05e40121a4e3b000a50f\"}}}", + "headers" : { + "x-request-id" : "36b1fdeb-9d57-4d6e-ac24-020c2fb1a7cc", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "16", + "x-kong-request-id" : "cda70113b306666bc9f4fe7ecf61e069", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:15 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"57e09d2683c5ff56d5c028709547ecd8\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ed9577ad-34cf-4d64-8512-507568760010", + "persistent" : true, + "scenarioName" : "scenario-13-merchants-vxZdBHVeOM", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-13-merchants-vxZdBHVeOM-2", + "insertionIndex" : 93 +} \ No newline at end of file diff --git a/mock/mappings/oauth_token-461ec5eb-7afc-4e5a-b0f5-afd97103ec86.json b/mock/mappings/oauth_token-461ec5eb-7afc-4e5a-b0f5-afd97103ec86.json deleted file mode 100644 index b711531..0000000 --- a/mock/mappings/oauth_token-461ec5eb-7afc-4e5a-b0f5-afd97103ec86.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "id" : "461ec5eb-7afc-4e5a-b0f5-afd97103ec86", - "name" : "oauth_token", - "request" : { - "url" : "/oauth/token", - "method" : "POST", - "bodyPatterns" : [ { - "equalTo" : "grant_type=client_credentials", - "caseInsensitive" : false - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"access_token\":\"eyJhbGciOiJIUzUxMiJ9.eyJvcmdhbml6YXRpb24iOnsiaWQiOiJWeWpCWkZPV0p5Iiwic2x1ZyI6InRoZS1ncmVlbi1icmFuZC0yNDUiLCJlbnRlcnByaXNlIjpmYWxzZX0sImFwcGxpY2F0aW9uIjp7ImlkIjoibEdxWG5pYWpFTiIsImtpbmQiOiJpbnRlZ3JhdGlvbiIsInB1YmxpYyI6ZmFsc2V9LCJ0ZXN0Ijp0cnVlLCJleHAiOjE2NjY4NjYwNTAsInJhbmQiOjAuMTQ4MTM4NjYzNjUwOTgyNX0.ozXRvowt6bAh_yVnRrdpCGGFM29-5ExRZDx5ItRPwWgnMsRAqBgxm4qEhI1kqq5KhG7bbAz0nCAZEBDloRvQAQ\",\"token_type\":\"Bearer\",\"expires_in\":5072,\"scope\":\"market:all\",\"created_at\":1666858850}", - "headers" : { - "Server" : "Cowboy", - "X-Frame-Options" : "SAMEORIGIN", - "X-Xss-Protection" : "1; mode=block", - "X-Content-Type-Options" : "nosniff", - "X-Download-Options" : "noopen", - "X-Permitted-Cross-Domain-Policies" : "none", - "Referrer-Policy" : "strict-origin-when-cross-origin", - "Cache-Control" : "no-store", - "Pragma" : "no-cache", - "Content-Type" : "application/json; charset=utf-8", - "Etag" : "W/\"db53409210e1904282caa22870eadc99\"", - "X-Request-Id" : "3089b1d1-b968-4311-890c-be561ac59d64", - "Strict-Transport-Security" : "max-age=63072000; includeSubDomains", - "Via" : "1.1 vegur, 1.1 varnish", - "Accept-Ranges" : "bytes", - "Date" : "Thu, 27 Oct 2022 08:56:18 GMT", - "X-Served-By" : "cache-ams21081-AMS", - "X-Cache" : "MISS", - "X-Cache-Hits" : "0", - "X-Timer" : "S1666860979.635696,VS0,VE75", - "Vary" : "Origin" - } - }, - "uuid" : "461ec5eb-7afc-4e5a-b0f5-afd97103ec86", - "persistent" : true, - "insertionIndex" : 1 -} \ No newline at end of file diff --git a/mock/mappings/payment_methods-d1c94c81-7b2a-4385-b232-7b37c265255d.json b/mock/mappings/payment_methods-d1c94c81-7b2a-4385-b232-7b37c265255d.json new file mode 100644 index 0000000..c42e18d --- /dev/null +++ b/mock/mappings/payment_methods-d1c94c81-7b2a-4385-b232-7b37c265255d.json @@ -0,0 +1,40 @@ +{ + "id" : "d1c94c81-7b2a-4385-b232-7b37c265255d", + "name" : "payment_methods", + "request" : { + "url" : "/payment_methods", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"moto\":false,\"payment_source_type\":\"AdyenPayment\",\"price_amount_cents\":10,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"payment_gateway\":{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"payment_gateways\"}}},\"type\":\"payment_methods\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:17.815Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"19904a30a2105ba0c0497d5982769bc33e201b41f044979e596e6eb57f08fa8d\"}}}", + "headers" : { + "x-request-id" : "bfb0f5a7-33fb-46a7-81f2-f1bea81f6db9", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "66", + "x-kong-request-id" : "29452913e6257d7f059ea17eb6dc033e", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:17 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"fbf200a4a184117dfb676b5f1b0d8b65\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d1c94c81-7b2a-4385-b232-7b37c265255d", + "persistent" : true, + "insertionIndex" : 82 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-093f8f69-985c-462e-89fc-69a46096856f.json b/mock/mappings/payment_methods_pmwzdsrdde-093f8f69-985c-462e-89fc-69a46096856f.json new file mode 100644 index 0000000..b899270 --- /dev/null +++ b/mock/mappings/payment_methods_pmwzdsrdde-093f8f69-985c-462e-89fc-69a46096856f.json @@ -0,0 +1,32 @@ +{ + "id" : "093f8f69-985c-462e-89fc-69a46096856f", + "name" : "payment_methods_pmwzdsrdde", + "request" : { + "url" : "/payment_methods/pmWZdsrDdE", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "e23ba31a-0f8a-4bbe-a947-f60ecc0ee120", + "x-kong-upstream-latency" : "23", + "X-Ratelimit-Remaining" : "67", + "x-kong-request-id" : "a16a20428e952c4af6decb6d7f08952a", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "093f8f69-985c-462e-89fc-69a46096856f", + "persistent" : true, + "insertionIndex" : 74 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-53d1c651-a1a3-47ec-af04-671296453348.json b/mock/mappings/payment_methods_pmwzdsrdde-53d1c651-a1a3-47ec-af04-671296453348.json new file mode 100644 index 0000000..8c0af1a --- /dev/null +++ b/mock/mappings/payment_methods_pmwzdsrdde-53d1c651-a1a3-47ec-af04-671296453348.json @@ -0,0 +1,38 @@ +{ + "id" : "53d1c651-a1a3-47ec-af04-671296453348", + "name" : "payment_methods_pmwzdsrdde", + "request" : { + "url" : "/payment_methods/pmWZdsrDdE", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":5,\"price_amount_float\":0.05,\"formatted_price_amount\":\"€0,05\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:19.029Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a567d1ea7b70bd54fe274397bdc2d422946d616a39e7f7dfe44110ff868570d6\"}}}", + "headers" : { + "x-request-id" : "de4a960f-c698-4d67-bc60-2366285ad3b4", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "4", + "x-kong-request-id" : "c4e5810e0c399053056f4f74cac0cd73", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"deda2848e5cd50d7119e221a219893bd\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "53d1c651-a1a3-47ec-af04-671296453348", + "persistent" : true, + "scenarioName" : "scenario-12-payment_methods-pmWZdsrDdE", + "requiredScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-3", + "newScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-4", + "insertionIndex" : 75 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json b/mock/mappings/payment_methods_pmwzdsrdde-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json new file mode 100644 index 0000000..2e37111 --- /dev/null +++ b/mock/mappings/payment_methods_pmwzdsrdde-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json @@ -0,0 +1,38 @@ +{ + "id" : "6af80003-47c5-4f28-987f-6fa0ff52b8c8", + "name" : "payment_methods_pmwzdsrdde", + "request" : { + "url" : "/payment_methods/pmWZdsrDdE", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:17.815Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6bbf45eb6ee635834232007e38bb7f1c240c3342ddc0b365e0295f7a44067a31\"}}}", + "headers" : { + "x-request-id" : "a4a2c03e-c0fb-481e-b064-26c4982d693a", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "8", + "x-kong-request-id" : "ec096935540cee76f3ae422e38da5d6e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:18 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"054d1afb3585a92548dfaa113c73e40e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "6af80003-47c5-4f28-987f-6fa0ff52b8c8", + "persistent" : true, + "scenarioName" : "scenario-12-payment_methods-pmWZdsrDdE", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-2", + "insertionIndex" : 80 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-b1f1837c-af9d-472d-a78e-e1c4741406eb.json b/mock/mappings/payment_methods_pmwzdsrdde-b1f1837c-af9d-472d-a78e-e1c4741406eb.json new file mode 100644 index 0000000..3923e20 --- /dev/null +++ b/mock/mappings/payment_methods_pmwzdsrdde-b1f1837c-af9d-472d-a78e-e1c4741406eb.json @@ -0,0 +1,36 @@ +{ + "id" : "b1f1837c-af9d-472d-a78e-e1c4741406eb", + "name" : "payment_methods_pmwzdsrdde", + "request" : { + "url" : "/payment_methods/pmWZdsrDdE", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "dca4bb34-5447-4a6f-b1cf-2045299b51ca", + "x-kong-upstream-latency" : "6", + "X-Ratelimit-Remaining" : "3", + "x-kong-request-id" : "6ded027061251b3a43aecc0905c90b0c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:20 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "b1f1837c-af9d-472d-a78e-e1c4741406eb", + "persistent" : true, + "scenarioName" : "scenario-12-payment_methods-pmWZdsrDdE", + "requiredScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-4", + "insertionIndex" : 72 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json b/mock/mappings/payment_methods_pmwzdsrdde-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json new file mode 100644 index 0000000..a16902b --- /dev/null +++ b/mock/mappings/payment_methods_pmwzdsrdde-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json @@ -0,0 +1,40 @@ +{ + "id" : "cf93def7-feff-4d0d-9d32-ada48ff4b9fb", + "name" : "payment_methods_pmwzdsrdde", + "request" : { + "url" : "/payment_methods/pmWZdsrDdE", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"moto\":false,\"payment_source_type\":\"AdyenPayment\",\"price_amount_cents\":5,\"reference\":null,\"reference_origin\":null},\"id\":\"pmWZdsrDdE\",\"relationships\":{\"payment_gateway\":{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"payment_gateways\"}}},\"type\":\"payment_methods\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":5,\"price_amount_float\":0.05,\"formatted_price_amount\":\"€0,05\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:19.029Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7cee8b0dbe83a25a3f27ec719f6cc6179a82a494b895d8ecef5100748c3dbbc7\"}}}", + "headers" : { + "x-request-id" : "4c4541bd-4def-4fd1-abd2-52305b5676e9", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "81", + "x-kong-request-id" : "429ae27cf2a01e2553bd664484bb8576", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b07d69eb5c0027198b61c1c481a11025\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "cf93def7-feff-4d0d-9d32-ada48ff4b9fb", + "persistent" : true, + "insertionIndex" : 77 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-d181f089-a311-416e-9ccb-e629e5b8743f.json b/mock/mappings/payment_methods_pmwzdsrdde-d181f089-a311-416e-9ccb-e629e5b8743f.json new file mode 100644 index 0000000..4dc96e0 --- /dev/null +++ b/mock/mappings/payment_methods_pmwzdsrdde-d181f089-a311-416e-9ccb-e629e5b8743f.json @@ -0,0 +1,38 @@ +{ + "id" : "d181f089-a311-416e-9ccb-e629e5b8743f", + "name" : "payment_methods_pmwzdsrdde", + "request" : { + "url" : "/payment_methods/pmWZdsrDdE", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:17.815Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"917c2a1b457f9db00e160bdd1ebd7a3d6b8f3161186fdfddde56766b428db7ee\"}}}", + "headers" : { + "x-request-id" : "07f05c92-d2d3-408c-86fa-48aace3bcae7", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "6", + "x-kong-request-id" : "a6115f3b205eb904b6dbf95cdc6e7c54", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:18 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"1c6ded599ce12bfe47e34f81b294a45e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d181f089-a311-416e-9ccb-e629e5b8743f", + "persistent" : true, + "scenarioName" : "scenario-12-payment_methods-pmWZdsrDdE", + "requiredScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-2", + "newScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-3", + "insertionIndex" : 78 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways-55519fa8-16e1-419b-833a-993c8be014e3.json b/mock/mappings/paypal_gateways-55519fa8-16e1-419b-833a-993c8be014e3.json new file mode 100644 index 0000000..005b543 --- /dev/null +++ b/mock/mappings/paypal_gateways-55519fa8-16e1-419b-833a-993c8be014e3.json @@ -0,0 +1,40 @@ +{ + "id" : "55519fa8-16e1-419b-833a-993c8be014e3", + "name" : "paypal_gateways", + "request" : { + "url" : "/paypal_gateways", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"client_id\":\"xxxx-yyyy-zzzz\",\"client_secret\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"},\"name\":\"Incentro Paypal Gateway\",\"reference\":null,\"reference_origin\":null},\"type\":\"paypal_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:20.694Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"15ec1d5f8d3e0efad2f3264776f8b991a79c5130f811e8c0eeda952f0ece3a27\"}}}", + "headers" : { + "x-request-id" : "ad19f0dd-9b37-4bb3-8244-12ce46686c19", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "65", + "x-kong-request-id" : "69df624873492e12706a980b45e6ca57", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:20 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"12b4649d9a6c29151586f8d28fbb014b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "55519fa8-16e1-419b-833a-993c8be014e3", + "persistent" : true, + "insertionIndex" : 70 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json b/mock/mappings/paypal_gateways_jklbysepav-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json new file mode 100644 index 0000000..e6c64f4 --- /dev/null +++ b/mock/mappings/paypal_gateways_jklbysepav-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json @@ -0,0 +1,29 @@ +{ + "id" : "0ebc446f-6f6d-47be-b95d-0ed3af62aed2", + "name" : "paypal_gateways_jklbysepav", + "request" : { + "url" : "/paypal_gateways/JkLbysepAv", + "method" : "GET" + }, + "response" : { + "status" : 429, + "body" : "{\n \"errors\": {\n \"title\": \"Too Many Requests\",\n \"code\": \"THROTTLED\",\n \"status\": 429\n }\n}", + "headers" : { + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "Cache-Control" : "no-cache", + "Retry-After" : "0", + "Access-Control-Allow-Origin" : "*", + "X-Ratelimit-Remaining" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:21 GMT", + "Content-Type" : "application/json; charset=utf-8" + } + }, + "uuid" : "0ebc446f-6f6d-47be-b95d-0ed3af62aed2", + "persistent" : true, + "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", + "requiredScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-3", + "newScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-4", + "insertionIndex" : 66 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-51c345dd-7ba8-444e-8737-e4f1a4bce845.json b/mock/mappings/paypal_gateways_jklbysepav-51c345dd-7ba8-444e-8737-e4f1a4bce845.json new file mode 100644 index 0000000..2d1c6bd --- /dev/null +++ b/mock/mappings/paypal_gateways_jklbysepav-51c345dd-7ba8-444e-8737-e4f1a4bce845.json @@ -0,0 +1,32 @@ +{ + "id" : "51c345dd-7ba8-444e-8737-e4f1a4bce845", + "name" : "paypal_gateways_jklbysepav", + "request" : { + "url" : "/paypal_gateways/JkLbysepAv", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "2a0fcd9c-fcc3-47c0-b3a9-d2aa61c77f46", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "1a319063ed873b7e2a0ada5e8fc2ac02", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:22 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "51c345dd-7ba8-444e-8737-e4f1a4bce845", + "persistent" : true, + "insertionIndex" : 64 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-6e4c2502-405b-4635-951a-256ff31022aa.json b/mock/mappings/paypal_gateways_jklbysepav-6e4c2502-405b-4635-951a-256ff31022aa.json new file mode 100644 index 0000000..f514826 --- /dev/null +++ b/mock/mappings/paypal_gateways_jklbysepav-6e4c2502-405b-4635-951a-256ff31022aa.json @@ -0,0 +1,40 @@ +{ + "id" : "6e4c2502-405b-4635-951a-256ff31022aa", + "name" : "paypal_gateways_jklbysepav", + "request" : { + "url" : "/paypal_gateways/JkLbysepAv", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"client_id\":\"xxxx-yyyy-zzzz\",\"client_secret\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"},\"name\":\"Incentro Paypal Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway Changed\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:21.623Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ee3fab4e5022e26bdc4d923a02ba88a15d297500835aa4a1100b3060c14381db\"}}}", + "headers" : { + "x-request-id" : "e31a9985-ec9e-46eb-93e5-d70ede060b7e", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "80", + "x-kong-request-id" : "c6c9fb0c340f34544d1c79327597274f", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:21 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"abaf7853f739ca7a816e0073834946b8\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "6e4c2502-405b-4635-951a-256ff31022aa", + "persistent" : true, + "insertionIndex" : 67 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-b22aac35-2569-45e3-867c-325c1a3e3025.json b/mock/mappings/paypal_gateways_jklbysepav-b22aac35-2569-45e3-867c-325c1a3e3025.json new file mode 100644 index 0000000..432cd30 --- /dev/null +++ b/mock/mappings/paypal_gateways_jklbysepav-b22aac35-2569-45e3-867c-325c1a3e3025.json @@ -0,0 +1,38 @@ +{ + "id" : "b22aac35-2569-45e3-867c-325c1a3e3025", + "name" : "paypal_gateways_jklbysepav", + "request" : { + "url" : "/paypal_gateways/JkLbysepAv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:20.694Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"90911cf55c78374fba8ee351974bb9a163a548040ede0415fc56b8c1333ff1d8\"}}}", + "headers" : { + "x-request-id" : "c6fd7e60-1d35-4f3a-9737-d61b6c23848d", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "0", + "x-kong-request-id" : "fa174e429a685c6753e1ae36d4a5046d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:21 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"bd272fcf49d7ae545e148a7e672abcd6\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "b22aac35-2569-45e3-867c-325c1a3e3025", + "persistent" : true, + "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", + "requiredScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-2", + "newScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-3", + "insertionIndex" : 68 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json b/mock/mappings/paypal_gateways_jklbysepav-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json new file mode 100644 index 0000000..7abe715 --- /dev/null +++ b/mock/mappings/paypal_gateways_jklbysepav-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json @@ -0,0 +1,36 @@ +{ + "id" : "bf3aaa1e-e1f6-493a-b3fc-0162925dfa45", + "name" : "paypal_gateways_jklbysepav", + "request" : { + "url" : "/paypal_gateways/JkLbysepAv", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "6f901ffe-e692-4aa1-9651-3c0bd9a2792e", + "x-kong-upstream-latency" : "9", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "bff1ca5d7692f10ee039a650c0f7dd07", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:22 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "bf3aaa1e-e1f6-493a-b3fc-0162925dfa45", + "persistent" : true, + "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", + "requiredScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-5", + "insertionIndex" : 63 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json b/mock/mappings/paypal_gateways_jklbysepav-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json new file mode 100644 index 0000000..3a36b83 --- /dev/null +++ b/mock/mappings/paypal_gateways_jklbysepav-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json @@ -0,0 +1,38 @@ +{ + "id" : "c4c620b5-9d85-4b52-aa96-5fb0ba8794b0", + "name" : "paypal_gateways_jklbysepav", + "request" : { + "url" : "/paypal_gateways/JkLbysepAv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:20.694Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2329ba132cab1d2b18e43d52660287d2e6ef40597f5fb4461ed2142ac8df2c9f\"}}}", + "headers" : { + "x-request-id" : "d6202f88-078f-4855-be6a-535686e24588", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "1", + "x-kong-request-id" : "6700133c34afce1e80d1dd32e73e7d51", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:21 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"4e44098f0ae9def8f4987bf4c72666a2\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "c4c620b5-9d85-4b52-aa96-5fb0ba8794b0", + "persistent" : true, + "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-2", + "insertionIndex" : 69 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-edc679b6-624c-4d51-a627-8bbd3bc0373b.json b/mock/mappings/paypal_gateways_jklbysepav-edc679b6-624c-4d51-a627-8bbd3bc0373b.json new file mode 100644 index 0000000..aa30464 --- /dev/null +++ b/mock/mappings/paypal_gateways_jklbysepav-edc679b6-624c-4d51-a627-8bbd3bc0373b.json @@ -0,0 +1,38 @@ +{ + "id" : "edc679b6-624c-4d51-a627-8bbd3bc0373b", + "name" : "paypal_gateways_jklbysepav", + "request" : { + "url" : "/paypal_gateways/JkLbysepAv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway Changed\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:21.623Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"70e5d506af296f9c23ab6ae9eb61f5223dead5592483571b1ef05f283bae6a10\"}}}", + "headers" : { + "x-request-id" : "024bcf07-18e8-47bc-a442-f40ccb47a2bd", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "72ff874dfe911651765b7d3a5a946606", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:22 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"a7c365a55bebe62688d263dcdfcdf519\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "edc679b6-624c-4d51-a627-8bbd3bc0373b", + "persistent" : true, + "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", + "requiredScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-4", + "newScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-5", + "insertionIndex" : 65 +} \ No newline at end of file diff --git a/mock/mappings/price_lists-8192612f-1dd3-4b33-a3eb-4f548818daa6.json b/mock/mappings/price_lists-8192612f-1dd3-4b33-a3eb-4f548818daa6.json new file mode 100644 index 0000000..cc714dc --- /dev/null +++ b/mock/mappings/price_lists-8192612f-1dd3-4b33-a3eb-4f548818daa6.json @@ -0,0 +1,40 @@ +{ + "id" : "8192612f-1dd3-4b33-a3eb-4f548818daa6", + "name" : "price_lists", + "request" : { + "url" : "/price_lists", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"incentro price list\",\"reference\":null,\"reference_origin\":null,\"tax_included\":true},\"type\":\"price_lists\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:52:07.273Z\",\"updated_at\":\"2024-10-24T15:52:07.273Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"326f261fc8ef0b790525eeecda2e38bc42df7f6f1454b0fac99066e8df64612d\"}}}", + "headers" : { + "x-request-id" : "91d9a024-dc9e-48df-8b4f-5ed82dca867d", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "73", + "x-kong-request-id" : "408aa863c0a4760b53195c34a6ac2b2f", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"90ebe2ea123ea32073cd079aa6280726\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "8192612f-1dd3-4b33-a3eb-4f548818daa6", + "persistent" : true, + "insertionIndex" : 126 +} \ No newline at end of file diff --git a/mock/mappings/price_lists-f804d51d-1493-4cff-b644-4526ea147c43.json b/mock/mappings/price_lists-f804d51d-1493-4cff-b644-4526ea147c43.json new file mode 100644 index 0000000..65b8c6b --- /dev/null +++ b/mock/mappings/price_lists-f804d51d-1493-4cff-b644-4526ea147c43.json @@ -0,0 +1,40 @@ +{ + "id" : "f804d51d-1493-4cff-b644-4526ea147c43", + "name" : "price_lists", + "request" : { + "url" : "/price_lists", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"},\"name\":\"incentro price list\",\"reference\":null,\"reference_origin\":null,\"tax_included\":true},\"type\":\"price_lists\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:22.937Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c35023a2ffeb515e4436f8c0722c3f935653c743736984a4b371a98bd1937798\"}}}", + "headers" : { + "x-request-id" : "cf4bf5d8-fe63-4b1d-93bb-5b8540909bf3", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "aa5d804f9ea0e972c3ead924f84f916a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:53:22 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"99307195583f355b84409d71d49c76cd\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f804d51d-1493-4cff-b644-4526ea147c43", + "persistent" : true, + "insertionIndex" : 62 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_akebycwjml-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json b/mock/mappings/price_lists_akebycwjml-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json new file mode 100644 index 0000000..2ea24fa --- /dev/null +++ b/mock/mappings/price_lists_akebycwjml-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json @@ -0,0 +1,38 @@ +{ + "id" : "3927c92f-7c88-4fd0-b7cb-17f19cf79af5", + "name" : "price_lists_akebycwjml", + "request" : { + "url" : "/price_lists/AkebyCWJml", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:52:07.273Z\",\"updated_at\":\"2024-10-24T15:52:07.273Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2f4837968d5ca00e2254ac8569fe08039cfce513cf2bb8e1c1cea0eba09e450a\"}}}", + "headers" : { + "x-request-id" : "15b953a5-1cf9-4aca-a5e2-c3703d15c54f", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "474", + "x-kong-request-id" : "996a864db6d81315f3a3a842478f045b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"780bf65e8a370bbddafa64292d00e5cc\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "3927c92f-7c88-4fd0-b7cb-17f19cf79af5", + "persistent" : true, + "scenarioName" : "scenario-20-price_lists-AkebyCWJml", + "requiredScenarioState" : "scenario-20-price_lists-AkebyCWJml-3", + "insertionIndex" : 109 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_akebycwjml-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json b/mock/mappings/price_lists_akebycwjml-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json new file mode 100644 index 0000000..90525d2 --- /dev/null +++ b/mock/mappings/price_lists_akebycwjml-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json @@ -0,0 +1,32 @@ +{ + "id" : "76e1f0d2-feb5-4aa0-a9b9-053becd18744", + "name" : "price_lists_akebycwjml", + "request" : { + "url" : "/price_lists/AkebyCWJml", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "255f118c-f91d-4e39-a64d-2af9f92ea9cc", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "73", + "x-kong-request-id" : "eb7a2f448653ed0f72e906049c63a064", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:52:13 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "76e1f0d2-feb5-4aa0-a9b9-053becd18744", + "persistent" : true, + "insertionIndex" : 101 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_akebycwjml-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json b/mock/mappings/price_lists_akebycwjml-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json new file mode 100644 index 0000000..837a545 --- /dev/null +++ b/mock/mappings/price_lists_akebycwjml-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json @@ -0,0 +1,39 @@ +{ + "id" : "b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360", + "name" : "price_lists_akebycwjml", + "request" : { + "url" : "/price_lists/AkebyCWJml", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:52:07.273Z\",\"updated_at\":\"2024-10-24T15:52:07.273Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a63c6124bb181cfa354eb0faaa86910543cd1b35f2d3097e171c1d71ed76a593\"}}}", + "headers" : { + "x-request-id" : "cfe56f4c-327f-4c99-9ff3-e55040f7b159", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "480", + "x-kong-request-id" : "44ca341bd0a07657de439e1de04a4772", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"4b33468bc13c6d27cb1ca5f4dcfae738\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360", + "persistent" : true, + "scenarioName" : "scenario-20-price_lists-AkebyCWJml", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-20-price_lists-AkebyCWJml-2", + "insertionIndex" : 122 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_akebycwjml-b760ce36-eeea-4a16-a826-df745cf55ee1.json b/mock/mappings/price_lists_akebycwjml-b760ce36-eeea-4a16-a826-df745cf55ee1.json new file mode 100644 index 0000000..623f1ec --- /dev/null +++ b/mock/mappings/price_lists_akebycwjml-b760ce36-eeea-4a16-a826-df745cf55ee1.json @@ -0,0 +1,39 @@ +{ + "id" : "b760ce36-eeea-4a16-a826-df745cf55ee1", + "name" : "price_lists_akebycwjml", + "request" : { + "url" : "/price_lists/AkebyCWJml", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:52:07.273Z\",\"updated_at\":\"2024-10-24T15:52:07.273Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a63c6124bb181cfa354eb0faaa86910543cd1b35f2d3097e171c1d71ed76a593\"}}}", + "headers" : { + "x-request-id" : "cfe56f4c-327f-4c99-9ff3-e55040f7b159", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "477", + "x-kong-request-id" : "44ca341bd0a07657de439e1de04a4772", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"4b33468bc13c6d27cb1ca5f4dcfae738\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "b760ce36-eeea-4a16-a826-df745cf55ee1", + "persistent" : true, + "scenarioName" : "scenario-20-price_lists-AkebyCWJml", + "requiredScenarioState" : "scenario-20-price_lists-AkebyCWJml-2", + "newScenarioState" : "scenario-20-price_lists-AkebyCWJml-3", + "insertionIndex" : 115 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-11f10920-f791-464e-9375-5275360a1fd4.json b/mock/mappings/price_lists_nlnwecrekb-11f10920-f791-464e-9375-5275360a1fd4.json new file mode 100644 index 0000000..3ec305e --- /dev/null +++ b/mock/mappings/price_lists_nlnwecrekb-11f10920-f791-464e-9375-5275360a1fd4.json @@ -0,0 +1,39 @@ +{ + "id" : "11f10920-f791-464e-9375-5275360a1fd4", + "name" : "price_lists_nlnwecrekb", + "request" : { + "url" : "/price_lists/nLNWECREKB", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro updated price list\",\"code\":null,\"currency_code\":\"CHF\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:23.775Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"cd19f101ab305076753d9f5c135eead44d278ed1ac7364adc5ec906f12c472a6\"}}}", + "headers" : { + "x-request-id" : "2d6f5730-68e6-45e2-9e4f-98b00deeeb0e", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "497", + "x-kong-request-id" : "1972b352fb94520c8a645921945d683b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:24 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"3d77011bbc42096e90f382955d3c7830\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "11f10920-f791-464e-9375-5275360a1fd4", + "persistent" : true, + "scenarioName" : "scenario-9-price_lists-nLNWECREKB", + "requiredScenarioState" : "scenario-9-price_lists-nLNWECREKB-3", + "newScenarioState" : "scenario-9-price_lists-nLNWECREKB-4", + "insertionIndex" : 58 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-74b55a1d-12a3-43f8-b165-257430af426a.json b/mock/mappings/price_lists_nlnwecrekb-74b55a1d-12a3-43f8-b165-257430af426a.json new file mode 100644 index 0000000..57ac14f --- /dev/null +++ b/mock/mappings/price_lists_nlnwecrekb-74b55a1d-12a3-43f8-b165-257430af426a.json @@ -0,0 +1,32 @@ +{ + "id" : "74b55a1d-12a3-43f8-b165-257430af426a", + "name" : "price_lists_nlnwecrekb", + "request" : { + "url" : "/price_lists/nLNWECREKB", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "fdef366b-f440-4ece-8ff9-3fe6a203628a", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "f6d16f38626ad414e38c6827511f8a5c", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:24 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "74b55a1d-12a3-43f8-b165-257430af426a", + "persistent" : true, + "insertionIndex" : 57 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-76d1145b-ed14-47c8-bbff-114aab364c8b.json b/mock/mappings/price_lists_nlnwecrekb-76d1145b-ed14-47c8-bbff-114aab364c8b.json new file mode 100644 index 0000000..d5ec284 --- /dev/null +++ b/mock/mappings/price_lists_nlnwecrekb-76d1145b-ed14-47c8-bbff-114aab364c8b.json @@ -0,0 +1,37 @@ +{ + "id" : "76d1145b-ed14-47c8-bbff-114aab364c8b", + "name" : "price_lists_nlnwecrekb", + "request" : { + "url" : "/price_lists/nLNWECREKB", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "34501314-4495-4aff-8069-f8cc24615fdf", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "496", + "x-kong-request-id" : "180bca6d3ff09d289135f70939a89b35", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:24 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "cache-control" : "no-cache", + "Age" : "0" + } + }, + "uuid" : "76d1145b-ed14-47c8-bbff-114aab364c8b", + "persistent" : true, + "scenarioName" : "scenario-9-price_lists-nLNWECREKB", + "requiredScenarioState" : "scenario-9-price_lists-nLNWECREKB-4", + "insertionIndex" : 56 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-84715bce-e82f-4507-a8c6-b3c2c516ea72.json b/mock/mappings/price_lists_nlnwecrekb-84715bce-e82f-4507-a8c6-b3c2c516ea72.json new file mode 100644 index 0000000..a95520b --- /dev/null +++ b/mock/mappings/price_lists_nlnwecrekb-84715bce-e82f-4507-a8c6-b3c2c516ea72.json @@ -0,0 +1,39 @@ +{ + "id" : "84715bce-e82f-4507-a8c6-b3c2c516ea72", + "name" : "price_lists_nlnwecrekb", + "request" : { + "url" : "/price_lists/nLNWECREKB", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:22.937Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"647d0c347ca23aff92270a429fd136a04ce107cdacce4b3a3e00b5e4c8cee0b7\"}}}", + "headers" : { + "x-request-id" : "03ea18a4-9d3d-4bc6-9285-8f5a06ccf355", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "498", + "x-kong-request-id" : "2ea7cb120512d1286f5ba95886d8b859", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:23 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"9bbe3d1d256f39450b08aadd4a4f8872\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "84715bce-e82f-4507-a8c6-b3c2c516ea72", + "persistent" : true, + "scenarioName" : "scenario-9-price_lists-nLNWECREKB", + "requiredScenarioState" : "scenario-9-price_lists-nLNWECREKB-2", + "newScenarioState" : "scenario-9-price_lists-nLNWECREKB-3", + "insertionIndex" : 60 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-854ff045-a298-4574-9d2b-553cfe2cc4c4.json b/mock/mappings/price_lists_nlnwecrekb-854ff045-a298-4574-9d2b-553cfe2cc4c4.json new file mode 100644 index 0000000..3e17f9b --- /dev/null +++ b/mock/mappings/price_lists_nlnwecrekb-854ff045-a298-4574-9d2b-553cfe2cc4c4.json @@ -0,0 +1,39 @@ +{ + "id" : "854ff045-a298-4574-9d2b-553cfe2cc4c4", + "name" : "price_lists_nlnwecrekb", + "request" : { + "url" : "/price_lists/nLNWECREKB", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:22.937Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"647d0c347ca23aff92270a429fd136a04ce107cdacce4b3a3e00b5e4c8cee0b7\"}}}", + "headers" : { + "x-request-id" : "03ea18a4-9d3d-4bc6-9285-8f5a06ccf355", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "499", + "x-kong-request-id" : "2ea7cb120512d1286f5ba95886d8b859", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:23 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"9bbe3d1d256f39450b08aadd4a4f8872\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "854ff045-a298-4574-9d2b-553cfe2cc4c4", + "persistent" : true, + "scenarioName" : "scenario-9-price_lists-nLNWECREKB", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-9-price_lists-nLNWECREKB-2", + "insertionIndex" : 61 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json b/mock/mappings/price_lists_nlnwecrekb-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json new file mode 100644 index 0000000..c303564 --- /dev/null +++ b/mock/mappings/price_lists_nlnwecrekb-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json @@ -0,0 +1,40 @@ +{ + "id" : "da5e6515-301a-4e63-bec2-2d2ce1f7d102", + "name" : "price_lists_nlnwecrekb", + "request" : { + "url" : "/price_lists/nLNWECREKB", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"CHF\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"},\"name\":\"incentro updated price list\",\"reference\":null,\"reference_origin\":null,\"tax_included\":true},\"id\":\"nLNWECREKB\",\"type\":\"price_lists\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro updated price list\",\"code\":null,\"currency_code\":\"CHF\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:23.775Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0f79d8b3ec7e0a931ceb3d0ad6b05f36c4be0aa436e6c30a9cc78e8103221073\"}}}", + "headers" : { + "x-request-id" : "b95b4bfe-b50e-4da4-8f11-f2b103223f2f", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "e889de32052f4f3aa77e0609a1c14525", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:53:23 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"8d312b3c4a3523a3daa86429a36695ea\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "da5e6515-301a-4e63-bec2-2d2ce1f7d102", + "persistent" : true, + "insertionIndex" : 59 +} \ No newline at end of file diff --git a/mock/mappings/shipping_categories-3a89b7e7-372d-4a02-95da-f025168f7c4a.json b/mock/mappings/shipping_categories-3a89b7e7-372d-4a02-95da-f025168f7c4a.json new file mode 100644 index 0000000..f37b82c --- /dev/null +++ b/mock/mappings/shipping_categories-3a89b7e7-372d-4a02-95da-f025168f7c4a.json @@ -0,0 +1,40 @@ +{ + "id" : "3a89b7e7-372d-4a02-95da-f025168f7c4a", + "name" : "shipping_categories", + "request" : { + "url" : "/shipping_categories", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"},\"name\":\"Incentro Shipping Category\",\"reference\":null,\"reference_origin\":null},\"type\":\"shipping_categories\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"27eb45fa7eb67762cfe3a6130f25192b8bd09875709d8cd0c381844bd6d0d506\"}}}", + "headers" : { + "x-request-id" : "a8e7a8fa-92c3-4154-a9b3-7c9c30a0c7ab", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "922a4122b7555900f4a5cf3f1340151a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b7dd06734d2ed968957be7bc484b32cd\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "3a89b7e7-372d-4a02-95da-f025168f7c4a", + "persistent" : true, + "insertionIndex" : 55 +} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-10a04027-1d06-4136-a2c8-509f2fa915b7.json b/mock/mappings/shipping_categories_enbljfzglw-10a04027-1d06-4136-a2c8-509f2fa915b7.json new file mode 100644 index 0000000..f2c47c0 --- /dev/null +++ b/mock/mappings/shipping_categories_enbljfzglw-10a04027-1d06-4136-a2c8-509f2fa915b7.json @@ -0,0 +1,40 @@ +{ + "id" : "10a04027-1d06-4136-a2c8-509f2fa915b7", + "name" : "shipping_categories_enbljfzglw", + "request" : { + "url" : "/shipping_categories/ENblJFZgLW", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"},\"name\":\"Incentro Shipping Category Updated\",\"reference\":null,\"reference_origin\":null},\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category Updated\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.927Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"966ff929d160c9446b58e4ca5f6b78501366efa832e4346708ec6b84be2f5701\"}}}", + "headers" : { + "x-request-id" : "bde1268d-3066-43fb-995b-a406aa042aef", + "x-kong-upstream-latency" : "28", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "f1a54925738188495c2cb212da2d0011", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"bea73c061bc973d2691022102bdf6ecd\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "10a04027-1d06-4136-a2c8-509f2fa915b7", + "persistent" : true, + "insertionIndex" : 52 +} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json b/mock/mappings/shipping_categories_enbljfzglw-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json new file mode 100644 index 0000000..c1d46d0 --- /dev/null +++ b/mock/mappings/shipping_categories_enbljfzglw-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json @@ -0,0 +1,38 @@ +{ + "id" : "2f7e44a9-40a9-40eb-b17e-caedb528b25a", + "name" : "shipping_categories_enbljfzglw", + "request" : { + "url" : "/shipping_categories/ENblJFZgLW", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bfed94d83065908798b7a7c551c7d30abd4ade07d435428fa4059f92399d0910\"}}}", + "headers" : { + "x-request-id" : "f8161b0b-c8c6-4f92-9004-a39cbfa53d56", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "84f74f2ce3d1951c82a1435f5898586f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"e803735f4a9c65c73adef0a47b0610b0\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "2f7e44a9-40a9-40eb-b17e-caedb528b25a", + "persistent" : true, + "scenarioName" : "scenario-8-shipping_categories-ENblJFZgLW", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-2", + "insertionIndex" : 54 +} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json b/mock/mappings/shipping_categories_enbljfzglw-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json new file mode 100644 index 0000000..c103cf6 --- /dev/null +++ b/mock/mappings/shipping_categories_enbljfzglw-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json @@ -0,0 +1,32 @@ +{ + "id" : "306fc883-a8cd-4fe4-89a5-2f62c58b7bcc", + "name" : "shipping_categories_enbljfzglw", + "request" : { + "url" : "/shipping_categories/ENblJFZgLW", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "ce871a81-9067-4c48-bf5b-f5d579ee3981", + "x-kong-upstream-latency" : "26", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "a66f70237eb78373fce6520b77957a14", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "306fc883-a8cd-4fe4-89a5-2f62c58b7bcc", + "persistent" : true, + "insertionIndex" : 50 +} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-408a24db-193f-4979-be1d-bba839acdf4f.json b/mock/mappings/shipping_categories_enbljfzglw-408a24db-193f-4979-be1d-bba839acdf4f.json new file mode 100644 index 0000000..ab9b82d --- /dev/null +++ b/mock/mappings/shipping_categories_enbljfzglw-408a24db-193f-4979-be1d-bba839acdf4f.json @@ -0,0 +1,38 @@ +{ + "id" : "408a24db-193f-4979-be1d-bba839acdf4f", + "name" : "shipping_categories_enbljfzglw", + "request" : { + "url" : "/shipping_categories/ENblJFZgLW", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a69469b0eed93ebbd0c18d24e57e5db3aaf79e4ae93435a88f80e6db5283249c\"}}}", + "headers" : { + "x-request-id" : "15d8b449-ae2a-4c7b-a5d4-fff9373aa89c", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "116c271e149b50421636891a11f3e948", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d82f55c8c52470ac293c3d32da353ca1\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "408a24db-193f-4979-be1d-bba839acdf4f", + "persistent" : true, + "scenarioName" : "scenario-8-shipping_categories-ENblJFZgLW", + "requiredScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-2", + "newScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-3", + "insertionIndex" : 53 +} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json b/mock/mappings/shipping_categories_enbljfzglw-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json new file mode 100644 index 0000000..96e252e --- /dev/null +++ b/mock/mappings/shipping_categories_enbljfzglw-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json @@ -0,0 +1,36 @@ +{ + "id" : "9c32de2b-c619-46d7-95b3-9b9ae4c82509", + "name" : "shipping_categories_enbljfzglw", + "request" : { + "url" : "/shipping_categories/ENblJFZgLW", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "ad0d5f11-5a61-4428-9015-9fb151c57546", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "79759464d77ff058c647821ebb501b7c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "9c32de2b-c619-46d7-95b3-9b9ae4c82509", + "persistent" : true, + "scenarioName" : "scenario-8-shipping_categories-ENblJFZgLW", + "requiredScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-4", + "insertionIndex" : 49 +} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json b/mock/mappings/shipping_categories_enbljfzglw-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json new file mode 100644 index 0000000..e06fa45 --- /dev/null +++ b/mock/mappings/shipping_categories_enbljfzglw-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json @@ -0,0 +1,38 @@ +{ + "id" : "dc3e55b9-b604-4b7b-9af4-6a8daa34479a", + "name" : "shipping_categories_enbljfzglw", + "request" : { + "url" : "/shipping_categories/ENblJFZgLW", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category Updated\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.927Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d9fb43d4ef613db1063f36ddfedf5244445a383cc8d465d97fedbbc73125f4b4\"}}}", + "headers" : { + "x-request-id" : "fbc679b7-04ab-493c-9eed-d0ab9a964e29", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "95f01a4afac6e45c4ff9d9392309af3e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"dbafe557f99c75107d9d3b00be729cb4\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "dc3e55b9-b604-4b7b-9af4-6a8daa34479a", + "persistent" : true, + "scenarioName" : "scenario-8-shipping_categories-ENblJFZgLW", + "requiredScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-3", + "newScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-4", + "insertionIndex" : 51 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json b/mock/mappings/shipping_methods-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json new file mode 100644 index 0000000..4d56898 --- /dev/null +++ b/mock/mappings/shipping_methods-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json @@ -0,0 +1,40 @@ +{ + "id" : "0620d31c-17f9-4b38-9dd6-8cfcee89cc2e", + "name" : "shipping_methods", + "request" : { + "url" : "/shipping_methods", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"_enable\":true,\"currency_code\":\"EUR\",\"external_prices_url\":null,\"free_over_amount_cents\":10000,\"max_weight\":10,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_weight\":0.5,\"name\":\"Incentro Test Shipping Method\",\"price_amount_cents\":1000,\"reference\":null,\"reference_origin\":null,\"scheme\":\"flat\",\"unit_of_weight\":\"kg\",\"use_subtotal\":false},\"relationships\":{},\"type\":\"shipping_methods\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:51:37.570Z\",\"updated_at\":\"2024-10-24T15:51:37.570Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"30467facea24c160c60494345e7fe065d70028b5d968de5ccba58a7c6d237ea0\"}}}", + "headers" : { + "x-request-id" : "84a6a7c2-b80c-4cdc-ac38-ad5448dde85e", + "x-kong-upstream-latency" : "46", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "a5617c0e8973240c8f120c7beb099132", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"6b039e2dc095569667cf38e9c45558f6\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0620d31c-17f9-4b38-9dd6-8cfcee89cc2e", + "persistent" : true, + "insertionIndex" : 248 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods-15d31379-0a42-4667-bcf5-7c90563c3028.json b/mock/mappings/shipping_methods-15d31379-0a42-4667-bcf5-7c90563c3028.json new file mode 100644 index 0000000..f93c197 --- /dev/null +++ b/mock/mappings/shipping_methods-15d31379-0a42-4667-bcf5-7c90563c3028.json @@ -0,0 +1,40 @@ +{ + "id" : "15d31379-0a42-4667-bcf5-7c90563c3028", + "name" : "shipping_methods", + "request" : { + "url" : "/shipping_methods", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"_enable\":true,\"currency_code\":\"EUR\",\"external_prices_url\":null,\"free_over_amount_cents\":10000,\"max_weight\":10,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"},\"min_weight\":0.5,\"name\":\"Incentro Test Shipping Method\",\"price_amount_cents\":1000,\"reference\":null,\"reference_origin\":null,\"scheme\":\"flat\",\"unit_of_weight\":\"kg\",\"use_subtotal\":false},\"relationships\":{},\"type\":\"shipping_methods\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.118Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ae1478d37fe552a06d6984ba06e7d494d6a0cdb89d0554cf6c980690c0ea4e49\"}}}", + "headers" : { + "x-request-id" : "390a7e15-c70d-4614-aa36-e687316c8275", + "x-kong-upstream-latency" : "29", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "b6a2aa6ab3e8151c42bb3636041beb47", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:53:27 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"9e901513a9d89268654ae8dda1d5288d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "15d31379-0a42-4667-bcf5-7c90563c3028", + "persistent" : true, + "insertionIndex" : 48 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-12145955-1d6e-4c70-b364-893a13f3b57e.json b/mock/mappings/shipping_methods_avqkgfqjjo-12145955-1d6e-4c70-b364-893a13f3b57e.json new file mode 100644 index 0000000..c1b78f7 --- /dev/null +++ b/mock/mappings/shipping_methods_avqkgfqjjo-12145955-1d6e-4c70-b364-893a13f3b57e.json @@ -0,0 +1,40 @@ +{ + "id" : "12145955-1d6e-4c70-b364-893a13f3b57e", + "name" : "shipping_methods_avqkgfqjjo", + "request" : { + "url" : "/shipping_methods/aVQkGFqJJO", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"_disable\":true,\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"free_over_amount_cents\":1,\"max_weight\":20,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"},\"min_weight\":1,\"name\":\"Incentro Test Shipping Method Updated\",\"price_amount_cents\":1,\"reference\":null,\"reference_origin\":null,\"scheme\":\"external\",\"unit_of_weight\":\"oz\",\"use_subtotal\":true},\"id\":\"aVQkGFqJJO\",\"relationships\":{},\"type\":\"shipping_methods\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method Updated\",\"scheme\":\"external\",\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"price_amount_cents\":1,\"price_amount_float\":0.01,\"formatted_price_amount\":\"CHF 0.01\",\"free_over_amount_cents\":1,\"free_over_amount_float\":0.01,\"formatted_free_over_amount\":\"CHF 0.01\",\"use_subtotal\":true,\"price_amount_for_shipment_cents\":1,\"price_amount_for_shipment_float\":0.01,\"formatted_price_amount_for_shipment\":\"CHF 0.01\",\"min_weight\":1.0,\"max_weight\":20.0,\"unit_of_weight\":\"oz\",\"disabled_at\":\"2024-10-24T15:53:27.944Z\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.947Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0b3f00bfc696dc958ad76201f373ff2e81831b7358311a0b0c0a41177bd59ad5\"}}}", + "headers" : { + "x-request-id" : "5289a14e-1e65-4177-9976-fdabda57a347", + "x-kong-upstream-latency" : "47", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "62072b3cb7ff1714f20e123d310e422d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:27 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"5f3facff0315560f9cbedb57942f942c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "12145955-1d6e-4c70-b364-893a13f3b57e", + "persistent" : true, + "insertionIndex" : 45 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json b/mock/mappings/shipping_methods_avqkgfqjjo-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json new file mode 100644 index 0000000..8d43b48 --- /dev/null +++ b/mock/mappings/shipping_methods_avqkgfqjjo-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json @@ -0,0 +1,32 @@ +{ + "id" : "5cd716c6-aaac-4283-95b2-29bf4fe0c6ab", + "name" : "shipping_methods_avqkgfqjjo", + "request" : { + "url" : "/shipping_methods/aVQkGFqJJO", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "cefc434c-30c3-4b14-918b-770359b47b75", + "x-kong-upstream-latency" : "37", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "5c4dc56666bfe3765a0d0568baa1990f", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:28 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "5cd716c6-aaac-4283-95b2-29bf4fe0c6ab", + "persistent" : true, + "insertionIndex" : 43 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json b/mock/mappings/shipping_methods_avqkgfqjjo-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json new file mode 100644 index 0000000..aa520f4 --- /dev/null +++ b/mock/mappings/shipping_methods_avqkgfqjjo-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json @@ -0,0 +1,39 @@ +{ + "id" : "77ffefa7-6e69-40a9-9391-dd6fe1c6a75d", + "name" : "shipping_methods_avqkgfqjjo", + "request" : { + "url" : "/shipping_methods/aVQkGFqJJO", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.118Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c48738e52e264cb738bc4eed38bf995d412e32953e8ff1b87839491df3872c35\"}}}", + "headers" : { + "x-request-id" : "7bf1afe8-9606-4af0-b401-dffce5ca72f6", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "98b30045bf88831e3e563c344f56ab2f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:27 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"8876bd4ba39e8c2d3d3fcae06643b767\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "77ffefa7-6e69-40a9-9391-dd6fe1c6a75d", + "persistent" : true, + "scenarioName" : "scenario-7-shipping_methods-aVQkGFqJJO", + "requiredScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-2", + "newScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-3", + "insertionIndex" : 46 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-7a7184ed-15bd-4613-8653-894aee50fd3d.json b/mock/mappings/shipping_methods_avqkgfqjjo-7a7184ed-15bd-4613-8653-894aee50fd3d.json new file mode 100644 index 0000000..cd477a3 --- /dev/null +++ b/mock/mappings/shipping_methods_avqkgfqjjo-7a7184ed-15bd-4613-8653-894aee50fd3d.json @@ -0,0 +1,39 @@ +{ + "id" : "7a7184ed-15bd-4613-8653-894aee50fd3d", + "name" : "shipping_methods_avqkgfqjjo", + "request" : { + "url" : "/shipping_methods/aVQkGFqJJO", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.118Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c48738e52e264cb738bc4eed38bf995d412e32953e8ff1b87839491df3872c35\"}}}", + "headers" : { + "x-request-id" : "7bf1afe8-9606-4af0-b401-dffce5ca72f6", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "98b30045bf88831e3e563c344f56ab2f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:27 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"8876bd4ba39e8c2d3d3fcae06643b767\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "7a7184ed-15bd-4613-8653-894aee50fd3d", + "persistent" : true, + "scenarioName" : "scenario-7-shipping_methods-aVQkGFqJJO", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-2", + "insertionIndex" : 47 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json b/mock/mappings/shipping_methods_avqkgfqjjo-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json new file mode 100644 index 0000000..ac31d1e --- /dev/null +++ b/mock/mappings/shipping_methods_avqkgfqjjo-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json @@ -0,0 +1,37 @@ +{ + "id" : "d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb", + "name" : "shipping_methods_avqkgfqjjo", + "request" : { + "url" : "/shipping_methods/aVQkGFqJJO", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "ecbed094-e7c0-48ac-a90d-34433d7fa37a", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "89cf031892aed341523b5d1b1d517525", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:28 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "cache-control" : "no-cache", + "Age" : "0" + } + }, + "uuid" : "d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb", + "persistent" : true, + "scenarioName" : "scenario-7-shipping_methods-aVQkGFqJJO", + "requiredScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-4", + "insertionIndex" : 42 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-e0c92868-59ae-4324-9202-c913cd2b149a.json b/mock/mappings/shipping_methods_avqkgfqjjo-e0c92868-59ae-4324-9202-c913cd2b149a.json new file mode 100644 index 0000000..9fec3a4 --- /dev/null +++ b/mock/mappings/shipping_methods_avqkgfqjjo-e0c92868-59ae-4324-9202-c913cd2b149a.json @@ -0,0 +1,39 @@ +{ + "id" : "e0c92868-59ae-4324-9202-c913cd2b149a", + "name" : "shipping_methods_avqkgfqjjo", + "request" : { + "url" : "/shipping_methods/aVQkGFqJJO", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method Updated\",\"scheme\":\"external\",\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"price_amount_cents\":1,\"price_amount_float\":0.01,\"formatted_price_amount\":\"CHF 0.01\",\"free_over_amount_cents\":1,\"free_over_amount_float\":0.01,\"formatted_free_over_amount\":\"CHF 0.01\",\"use_subtotal\":true,\"price_amount_for_shipment_cents\":1,\"price_amount_for_shipment_float\":0.01,\"formatted_price_amount_for_shipment\":\"CHF 0.01\",\"min_weight\":1.0,\"max_weight\":20.0,\"unit_of_weight\":\"oz\",\"disabled_at\":\"2024-10-24T15:53:27.944Z\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.947Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2cc5555770038af9d4fe70d017d812c692f621fa0377cc52679200651002d518\"}}}", + "headers" : { + "x-request-id" : "45be8b0b-8101-4d80-a591-24031138e875", + "x-kong-upstream-latency" : "22", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "22baab701b27213d759fd73c529de128", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:28 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"0493367360e9d125b95dbc214a4217c7\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "e0c92868-59ae-4324-9202-c913cd2b149a", + "persistent" : true, + "scenarioName" : "scenario-7-shipping_methods-aVQkGFqJJO", + "requiredScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-3", + "newScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-4", + "insertionIndex" : 44 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-14b8db65-0273-4b45-a670-f4e9a21b5666.json b/mock/mappings/shipping_methods_mvjqofzjyn-14b8db65-0273-4b45-a670-f4e9a21b5666.json new file mode 100644 index 0000000..ba71807 --- /dev/null +++ b/mock/mappings/shipping_methods_mvjqofzjyn-14b8db65-0273-4b45-a670-f4e9a21b5666.json @@ -0,0 +1,39 @@ +{ + "id" : "14b8db65-0273-4b45-a670-f4e9a21b5666", + "name" : "shipping_methods_mvjqofzjyn", + "request" : { + "url" : "/shipping_methods/mVJQoFZJyN", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:51:37.570Z\",\"updated_at\":\"2024-10-24T15:51:37.570Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"12876492c85d9cf558e12cd3285ab4a56960fd9c7499a5869f7119343737e27e\"}}}", + "headers" : { + "x-request-id" : "bd26270f-de49-4b4e-aa4d-6de3dd147dee", + "x-kong-upstream-latency" : "39", + "X-Ratelimit-Remaining" : "72", + "x-kong-request-id" : "0648c565129d4b3cbdd6563f16cee466", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"8996c0986f315c53f7a2ebaebec55035\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "14b8db65-0273-4b45-a670-f4e9a21b5666", + "persistent" : true, + "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", + "requiredScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-3", + "newScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-4", + "insertionIndex" : 235 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-4dfed22a-45de-4d63-bc3d-26c39407b01e.json b/mock/mappings/shipping_methods_mvjqofzjyn-4dfed22a-45de-4d63-bc3d-26c39407b01e.json new file mode 100644 index 0000000..f82e786 --- /dev/null +++ b/mock/mappings/shipping_methods_mvjqofzjyn-4dfed22a-45de-4d63-bc3d-26c39407b01e.json @@ -0,0 +1,32 @@ +{ + "id" : "4dfed22a-45de-4d63-bc3d-26c39407b01e", + "name" : "shipping_methods_mvjqofzjyn", + "request" : { + "url" : "/shipping_methods/mVJQoFZJyN", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "9087506b-02a3-4e55-b262-a0117e669d8a", + "x-kong-upstream-latency" : "38", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "08dc4728c2ec92537614bb14f5d0ed0b", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "4dfed22a-45de-4d63-bc3d-26c39407b01e", + "persistent" : true, + "insertionIndex" : 230 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json b/mock/mappings/shipping_methods_mvjqofzjyn-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json new file mode 100644 index 0000000..696fa98 --- /dev/null +++ b/mock/mappings/shipping_methods_mvjqofzjyn-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json @@ -0,0 +1,38 @@ +{ + "id" : "7f1669d9-de2a-46f6-9fdd-7335e5d11db0", + "name" : "shipping_methods_mvjqofzjyn", + "request" : { + "url" : "/shipping_methods/mVJQoFZJyN", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "a0a9ed54-0bf4-4f62-ae04-fff96f25f070", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "68", + "x-kong-request-id" : "1d4f06222da1c905a91b3a2bba055127", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "cache-control" : "no-cache", + "Age" : "0" + } + }, + "uuid" : "7f1669d9-de2a-46f6-9fdd-7335e5d11db0", + "persistent" : true, + "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", + "requiredScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-4", + "newScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-5", + "insertionIndex" : 226 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-7f30fb03-a0ef-466b-aef4-33139aea7227.json b/mock/mappings/shipping_methods_mvjqofzjyn-7f30fb03-a0ef-466b-aef4-33139aea7227.json new file mode 100644 index 0000000..ba1dfcc --- /dev/null +++ b/mock/mappings/shipping_methods_mvjqofzjyn-7f30fb03-a0ef-466b-aef4-33139aea7227.json @@ -0,0 +1,37 @@ +{ + "id" : "7f30fb03-a0ef-466b-aef4-33139aea7227", + "name" : "shipping_methods_mvjqofzjyn", + "request" : { + "url" : "/shipping_methods/mVJQoFZJyN", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "a0a9ed54-0bf4-4f62-ae04-fff96f25f070", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "67", + "x-kong-request-id" : "1d4f06222da1c905a91b3a2bba055127", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "cache-control" : "no-cache", + "Age" : "0" + } + }, + "uuid" : "7f30fb03-a0ef-466b-aef4-33139aea7227", + "persistent" : true, + "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", + "requiredScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-5", + "insertionIndex" : 225 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json b/mock/mappings/shipping_methods_mvjqofzjyn-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json new file mode 100644 index 0000000..0c96a9b --- /dev/null +++ b/mock/mappings/shipping_methods_mvjqofzjyn-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json @@ -0,0 +1,39 @@ +{ + "id" : "c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0", + "name" : "shipping_methods_mvjqofzjyn", + "request" : { + "url" : "/shipping_methods/mVJQoFZJyN", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:51:37.570Z\",\"updated_at\":\"2024-10-24T15:51:37.570Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a3edf333104a84f35e9b190adfbd58b1bf692ae0db60c9060e673f90cd844ca6\"}}}", + "headers" : { + "x-request-id" : "a028a02f-1f68-4a53-bc40-9d6a93d5d45a", + "x-kong-upstream-latency" : "41", + "X-Ratelimit-Remaining" : "76", + "x-kong-request-id" : "6507a0252e8c665ad252c073ebfeec24", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"13be216d9b78bd1985137bd3af0c59c6\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0", + "persistent" : true, + "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", + "requiredScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-2", + "newScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-3", + "insertionIndex" : 241 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json b/mock/mappings/shipping_methods_mvjqofzjyn-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json new file mode 100644 index 0000000..c34da78 --- /dev/null +++ b/mock/mappings/shipping_methods_mvjqofzjyn-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json @@ -0,0 +1,39 @@ +{ + "id" : "d65146dc-f8ef-4fdb-969e-c573ad70a8ea", + "name" : "shipping_methods_mvjqofzjyn", + "request" : { + "url" : "/shipping_methods/mVJQoFZJyN", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:51:37.570Z\",\"updated_at\":\"2024-10-24T15:51:37.570Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a3edf333104a84f35e9b190adfbd58b1bf692ae0db60c9060e673f90cd844ca6\"}}}", + "headers" : { + "x-request-id" : "a028a02f-1f68-4a53-bc40-9d6a93d5d45a", + "x-kong-upstream-latency" : "41", + "X-Ratelimit-Remaining" : "78", + "x-kong-request-id" : "6507a0252e8c665ad252c073ebfeec24", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"13be216d9b78bd1985137bd3af0c59c6\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "d65146dc-f8ef-4fdb-969e-c573ad70a8ea", + "persistent" : true, + "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-2", + "insertionIndex" : 244 +} \ No newline at end of file diff --git a/mock/mappings/shipping_zones-d95c6987-72d9-4998-b692-833c165dbf9d.json b/mock/mappings/shipping_zones-d95c6987-72d9-4998-b692-833c165dbf9d.json new file mode 100644 index 0000000..3d56068 --- /dev/null +++ b/mock/mappings/shipping_zones-d95c6987-72d9-4998-b692-833c165dbf9d.json @@ -0,0 +1,40 @@ +{ + "id" : "d95c6987-72d9-4998-b692-833c165dbf9d", + "name" : "shipping_zones", + "request" : { + "url" : "/shipping_zones", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"country_code_regex\":\".*\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"},\"name\":\"Incentro Shipping Zone\",\"not_country_code_regex\":\"[^i*\\u00262@]\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"not_zip_code_regex\":\".+\",\"reference\":null,\"reference_origin\":null,\"state_code_regex\":\"^dog\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\"},\"type\":\"shipping_zones\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:29.156Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7249bb067628038aeb6936371ef6baea20a4c6c5d14d4ec1598c0ef8a4712479\"}}}", + "headers" : { + "x-request-id" : "fb104822-9cef-4c87-8628-8b369f3b607d", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "c348805004d6c84c9ddf1219ddaa570a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"08f067b503b207a44047a149285259b7\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d95c6987-72d9-4998-b692-833c165dbf9d", + "persistent" : true, + "insertionIndex" : 41 +} \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json b/mock/mappings/shipping_zones_ekvlvtjyxq-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json new file mode 100644 index 0000000..b6cc251 --- /dev/null +++ b/mock/mappings/shipping_zones_ekvlvtjyxq-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json @@ -0,0 +1,40 @@ +{ + "id" : "08094f36-a4fe-4735-ab3a-05e7a4a5c3b1", + "name" : "shipping_zones_ekvlvtjyxq", + "request" : { + "url" : "/shipping_zones/EKVlVtJYxQ", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"country_code_regex\":\".+\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"},\"name\":\"Incentro Shipping Zone Updated\",\"not_country_code_regex\":\"[^i*\\u00262@]G\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"not_zip_code_regex\":\".*\",\"reference\":null,\"reference_origin\":null,\"state_code_regex\":\"^cat\",\"zip_code_regex\":\"[a-z]{1,2}\"},\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone Updated\",\"country_code_regex\":\".+\",\"not_country_code_regex\":\"[^i*&2@]G\",\"state_code_regex\":\"^cat\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"zip_code_regex\":\"[a-z]{1,2}\",\"not_zip_code_regex\":\".*\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:30.082Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"273fb6c009ce1ea23d40c441c84fee3c322e2f83a087cc0aa8b4d705536fd92d\"}}}", + "headers" : { + "x-request-id" : "b9527d6d-d3a2-4779-bd6e-8cfb69ddb4bf", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "7049e222bbf5f3206658047b4ddad94e", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:53:30 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b18aaf6e052e2bf74b66f64b7711d7f9\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "08094f36-a4fe-4735-ab3a-05e7a4a5c3b1", + "persistent" : true, + "insertionIndex" : 38 +} \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-0da83c66-d888-4134-a3f1-89c62a57657f.json b/mock/mappings/shipping_zones_ekvlvtjyxq-0da83c66-d888-4134-a3f1-89c62a57657f.json new file mode 100644 index 0000000..f9b788c --- /dev/null +++ b/mock/mappings/shipping_zones_ekvlvtjyxq-0da83c66-d888-4134-a3f1-89c62a57657f.json @@ -0,0 +1,32 @@ +{ + "id" : "0da83c66-d888-4134-a3f1-89c62a57657f", + "name" : "shipping_zones_ekvlvtjyxq", + "request" : { + "url" : "/shipping_zones/EKVlVtJYxQ", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "6799a1ec-7e16-47ef-a6af-a6e645add646", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "ad739c6f2002b6021ca17453fd167b20", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:53:30 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "0da83c66-d888-4134-a3f1-89c62a57657f", + "persistent" : true, + "insertionIndex" : 36 +} \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json b/mock/mappings/shipping_zones_ekvlvtjyxq-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json new file mode 100644 index 0000000..b9f3305 --- /dev/null +++ b/mock/mappings/shipping_zones_ekvlvtjyxq-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json @@ -0,0 +1,38 @@ +{ + "id" : "11da5df1-8d0d-4ddb-9cdb-445fb7dd8435", + "name" : "shipping_zones_ekvlvtjyxq", + "request" : { + "url" : "/shipping_zones/EKVlVtJYxQ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone Updated\",\"country_code_regex\":\".+\",\"not_country_code_regex\":\"[^i*&2@]G\",\"state_code_regex\":\"^cat\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"zip_code_regex\":\"[a-z]{1,2}\",\"not_zip_code_regex\":\".*\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:30.082Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"889f526cb4dae13acbdfdbc8651551313b256c56775f31d2e581ecb1ce502adc\"}}}", + "headers" : { + "x-request-id" : "19c8cd90-bb18-4cf2-a331-31a9c5a12a4a", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "87", + "x-kong-request-id" : "3421246f6ade303199c96127207fbd2a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:30 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"453c3ee459db475ed06612b406869f13\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "11da5df1-8d0d-4ddb-9cdb-445fb7dd8435", + "persistent" : true, + "scenarioName" : "scenario-6-shipping_zones-EKVlVtJYxQ", + "requiredScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-3", + "newScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-4", + "insertionIndex" : 37 +} \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-927fd378-cd26-4238-b127-951ff99290d5.json b/mock/mappings/shipping_zones_ekvlvtjyxq-927fd378-cd26-4238-b127-951ff99290d5.json new file mode 100644 index 0000000..f6be039 --- /dev/null +++ b/mock/mappings/shipping_zones_ekvlvtjyxq-927fd378-cd26-4238-b127-951ff99290d5.json @@ -0,0 +1,38 @@ +{ + "id" : "927fd378-cd26-4238-b127-951ff99290d5", + "name" : "shipping_zones_ekvlvtjyxq", + "request" : { + "url" : "/shipping_zones/EKVlVtJYxQ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:29.156Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f114b58136df20344332db9c21fb8fd07921962e399a135bb04db8542e53665e\"}}}", + "headers" : { + "x-request-id" : "e2db6674-1e5f-4726-9af3-a5a71cb89d94", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "89", + "x-kong-request-id" : "6c85fa453596ab40d8bd8974f331a428", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"71e919dc3e3f1fab396b487715195f5c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "927fd378-cd26-4238-b127-951ff99290d5", + "persistent" : true, + "scenarioName" : "scenario-6-shipping_zones-EKVlVtJYxQ", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-2", + "insertionIndex" : 40 +} \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-bd9c9d43-94e3-457d-9419-c3158e0d0362.json b/mock/mappings/shipping_zones_ekvlvtjyxq-bd9c9d43-94e3-457d-9419-c3158e0d0362.json new file mode 100644 index 0000000..f67da04 --- /dev/null +++ b/mock/mappings/shipping_zones_ekvlvtjyxq-bd9c9d43-94e3-457d-9419-c3158e0d0362.json @@ -0,0 +1,38 @@ +{ + "id" : "bd9c9d43-94e3-457d-9419-c3158e0d0362", + "name" : "shipping_zones_ekvlvtjyxq", + "request" : { + "url" : "/shipping_zones/EKVlVtJYxQ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:29.156Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01c3259f7b63c8be3414e3ac033a3306fb53a1d9f77aed218ae71e9cf5897def\"}}}", + "headers" : { + "x-request-id" : "d550275e-65c4-4fcf-8734-bd1c9280def5", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "88", + "x-kong-request-id" : "18b8242be58882588c649b25f6268c1a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"8f843842d844cce76af1bd9004954383\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bd9c9d43-94e3-457d-9419-c3158e0d0362", + "persistent" : true, + "scenarioName" : "scenario-6-shipping_zones-EKVlVtJYxQ", + "requiredScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-2", + "newScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-3", + "insertionIndex" : 39 +} \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-dfef547f-6604-45af-8e31-808c0a573b3c.json b/mock/mappings/shipping_zones_ekvlvtjyxq-dfef547f-6604-45af-8e31-808c0a573b3c.json new file mode 100644 index 0000000..ac2b92b --- /dev/null +++ b/mock/mappings/shipping_zones_ekvlvtjyxq-dfef547f-6604-45af-8e31-808c0a573b3c.json @@ -0,0 +1,36 @@ +{ + "id" : "dfef547f-6604-45af-8e31-808c0a573b3c", + "name" : "shipping_zones_ekvlvtjyxq", + "request" : { + "url" : "/shipping_zones/EKVlVtJYxQ", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "051ffc7d-1c61-4542-be02-6b004f19d7ba", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "86", + "x-kong-request-id" : "9cf1a354f6b58a4ac6a99736b8f1b438", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:30 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "dfef547f-6604-45af-8e31-808c0a573b3c", + "persistent" : true, + "scenarioName" : "scenario-6-shipping_zones-EKVlVtJYxQ", + "requiredScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-4", + "insertionIndex" : 35 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json b/mock/mappings/stock_locations-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json new file mode 100644 index 0000000..b4cbd32 --- /dev/null +++ b/mock/mappings/stock_locations-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json @@ -0,0 +1,40 @@ +{ + "id" : "a1fb7884-5462-4a09-89ff-3c28f7e66b27", + "name" : "stock_locations", + "request" : { + "url" : "/stock_locations", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk\"},\"attributes\":{\"number\":25279,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:51.513Z\",\"updated_at\":\"2024-10-24T15:51:51.513Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"5114b3c22096b0321588f324f4c980dee0cfe5f987969f16f998c9d4fe5b5dbf\"}}}", + "headers" : { + "x-request-id" : "d734d01e-2574-4e00-b95a-b3d250ec0622", + "x-kong-upstream-latency" : "66", + "X-Ratelimit-Remaining" : "84", + "x-kong-request-id" : "1057917bedc81455c8c6c332c49cfb0b", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:51 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"580c1d780ee2ba596c7cd2af572946c1\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a1fb7884-5462-4a09-89ff-3c28f7e66b27", + "persistent" : true, + "insertionIndex" : 191 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations-d730271e-e618-4dd8-af9e-edc244602dcb.json b/mock/mappings/stock_locations-d730271e-e618-4dd8-af9e-edc244602dcb.json new file mode 100644 index 0000000..72484b6 --- /dev/null +++ b/mock/mappings/stock_locations-d730271e-e618-4dd8-af9e-edc244602dcb.json @@ -0,0 +1,40 @@ +{ + "id" : "d730271e-e618-4dd8-af9e-edc244602dcb", + "name" : "stock_locations", + "request" : { + "url" : "/stock_locations", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG\"},\"attributes\":{\"number\":25278,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:37.752Z\",\"updated_at\":\"2024-10-24T15:51:37.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4cf104a9b14cf3590fc84fb27ed065dfc7ce5889f42fdbb116316acea2f9527a\"}}}", + "headers" : { + "x-request-id" : "d680aa40-ac3d-49b0-a207-039fb6452df9", + "x-kong-upstream-latency" : "53", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "56bd2261286236432108357668cd1315", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"4be4d734e5675c741b7f376679d86dd9\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d730271e-e618-4dd8-af9e-edc244602dcb", + "persistent" : true, + "insertionIndex" : 247 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json b/mock/mappings/stock_locations-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json new file mode 100644 index 0000000..2d5d0e1 --- /dev/null +++ b/mock/mappings/stock_locations-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json @@ -0,0 +1,40 @@ +{ + "id" : "eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae", + "name" : "stock_locations", + "request" : { + "url" : "/stock_locations", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG\"},\"attributes\":{\"number\":25280,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:55.809Z\",\"updated_at\":\"2024-10-24T15:51:55.809Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f02c704e856ae3c488909644221550c9746ef4dffff2985243b0bc7f852dbfe9\"}}}", + "headers" : { + "x-request-id" : "9d9684bb-6974-4f2c-ba4e-73423b27c51f", + "x-kong-upstream-latency" : "69", + "X-Ratelimit-Remaining" : "80", + "x-kong-request-id" : "4e95cc17a4476c70ab20e0736b66be0a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:51:55 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c0a8c715886520dccde9092e280f3752\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae", + "persistent" : true, + "insertionIndex" : 169 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations-f94a6c29-5446-4fc7-9857-7d0178580e68.json b/mock/mappings/stock_locations-f94a6c29-5446-4fc7-9857-7d0178580e68.json new file mode 100644 index 0000000..cfc4afc --- /dev/null +++ b/mock/mappings/stock_locations-f94a6c29-5446-4fc7-9857-7d0178580e68.json @@ -0,0 +1,40 @@ +{ + "id" : "f94a6c29-5446-4fc7-9857-7d0178580e68", + "name" : "stock_locations", + "request" : { + "url" : "/stock_locations", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:31.310Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"029433b96c6e4253a57d7d1d173b94d97cbcc67a765f97a6fe69e579222e1394\"}}}", + "headers" : { + "x-request-id" : "a833e698-5e47-4497-9f52-3b53cd7af969", + "x-kong-upstream-latency" : "50", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "83a7412ae80bd87397f6bf12aac0d41b", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:31 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"f0a0a3cdf98acdbf81956f023aece8bf\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f94a6c29-5446-4fc7-9857-7d0178580e68", + "persistent" : true, + "insertionIndex" : 33 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_bkeequwyyk-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json b/mock/mappings/stock_locations_bkeequwyyk-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json new file mode 100644 index 0000000..e37a68f --- /dev/null +++ b/mock/mappings/stock_locations_bkeequwyyk-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json @@ -0,0 +1,32 @@ +{ + "id" : "3a8c6f58-630b-4a03-9b27-d50da487c1bc", + "name" : "stock_locations_bkeequwyyk", + "request" : { + "url" : "/stock_locations/bkEeQuWyYk", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "d4e0240a-e48f-4fc2-ab32-445bd7ba9104", + "x-kong-upstream-latency" : "81", + "X-Ratelimit-Remaining" : "84", + "x-kong-request-id" : "1af116468cec172323e04c206e3dd11c", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "3a8c6f58-630b-4a03-9b27-d50da487c1bc", + "persistent" : true, + "insertionIndex" : 174 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_bkeequwyyk-60a49051-d491-4c78-8242-220aa743ec50.json b/mock/mappings/stock_locations_bkeequwyyk-60a49051-d491-4c78-8242-220aa743ec50.json new file mode 100644 index 0000000..45b6947 --- /dev/null +++ b/mock/mappings/stock_locations_bkeequwyyk-60a49051-d491-4c78-8242-220aa743ec50.json @@ -0,0 +1,39 @@ +{ + "id" : "60a49051-d491-4c78-8242-220aa743ec50", + "name" : "stock_locations_bkeequwyyk", + "request" : { + "url" : "/stock_locations/bkEeQuWyYk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk\"},\"attributes\":{\"number\":25279,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:51.513Z\",\"updated_at\":\"2024-10-24T15:51:51.513Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f6e66fac42b397bb9af74c7c2318d8e9d107a1253ebc8230f5fb0bd02b6c66d3\"}}}", + "headers" : { + "x-request-id" : "31bc3526-5611-484d-b690-47ec6dbca33b", + "x-kong-upstream-latency" : "10", + "X-Ratelimit-Remaining" : "491", + "x-kong-request-id" : "402eb3600cce425b0470c005aa5d3b04", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"2a1d280135efadbca2d30470f398535f\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "60a49051-d491-4c78-8242-220aa743ec50", + "persistent" : true, + "scenarioName" : "scenario-29-stock_locations-bkEeQuWyYk", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-29-stock_locations-bkEeQuWyYk-2", + "insertionIndex" : 187 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_bkeequwyyk-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json b/mock/mappings/stock_locations_bkeequwyyk-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json new file mode 100644 index 0000000..4356254 --- /dev/null +++ b/mock/mappings/stock_locations_bkeequwyyk-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json @@ -0,0 +1,39 @@ +{ + "id" : "78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d", + "name" : "stock_locations_bkeequwyyk", + "request" : { + "url" : "/stock_locations/bkEeQuWyYk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk\"},\"attributes\":{\"number\":25279,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:51.513Z\",\"updated_at\":\"2024-10-24T15:51:51.513Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f6e66fac42b397bb9af74c7c2318d8e9d107a1253ebc8230f5fb0bd02b6c66d3\"}}}", + "headers" : { + "x-request-id" : "31bc3526-5611-484d-b690-47ec6dbca33b", + "x-kong-upstream-latency" : "10", + "X-Ratelimit-Remaining" : "489", + "x-kong-request-id" : "402eb3600cce425b0470c005aa5d3b04", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"2a1d280135efadbca2d30470f398535f\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d", + "persistent" : true, + "scenarioName" : "scenario-29-stock_locations-bkEeQuWyYk", + "requiredScenarioState" : "scenario-29-stock_locations-bkEeQuWyYk-2", + "newScenarioState" : "scenario-29-stock_locations-bkEeQuWyYk-3", + "insertionIndex" : 183 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_bkeequwyyk-c185c581-52d4-4f0c-97eb-841f963cad6d.json b/mock/mappings/stock_locations_bkeequwyyk-c185c581-52d4-4f0c-97eb-841f963cad6d.json new file mode 100644 index 0000000..fb4fd03 --- /dev/null +++ b/mock/mappings/stock_locations_bkeequwyyk-c185c581-52d4-4f0c-97eb-841f963cad6d.json @@ -0,0 +1,38 @@ +{ + "id" : "c185c581-52d4-4f0c-97eb-841f963cad6d", + "name" : "stock_locations_bkeequwyyk", + "request" : { + "url" : "/stock_locations/bkEeQuWyYk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk\"},\"attributes\":{\"number\":25279,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:51.513Z\",\"updated_at\":\"2024-10-24T15:51:51.513Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f6e66fac42b397bb9af74c7c2318d8e9d107a1253ebc8230f5fb0bd02b6c66d3\"}}}", + "headers" : { + "x-request-id" : "31bc3526-5611-484d-b690-47ec6dbca33b", + "x-kong-upstream-latency" : "10", + "X-Ratelimit-Remaining" : "488", + "x-kong-request-id" : "402eb3600cce425b0470c005aa5d3b04", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"2a1d280135efadbca2d30470f398535f\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "c185c581-52d4-4f0c-97eb-841f963cad6d", + "persistent" : true, + "scenarioName" : "scenario-29-stock_locations-bkEeQuWyYk", + "requiredScenarioState" : "scenario-29-stock_locations-bkEeQuWyYk-3", + "insertionIndex" : 178 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_ekbqqudzmg-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json b/mock/mappings/stock_locations_ekbqqudzmg-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json new file mode 100644 index 0000000..50a260d --- /dev/null +++ b/mock/mappings/stock_locations_ekbqqudzmg-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json @@ -0,0 +1,39 @@ +{ + "id" : "2ee23a69-8e4a-4c37-ab8e-5a34eec70243", + "name" : "stock_locations_ekbqqudzmg", + "request" : { + "url" : "/stock_locations/ekbqQudZmG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG\"},\"attributes\":{\"number\":25278,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:37.752Z\",\"updated_at\":\"2024-10-24T15:51:37.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"96cdeb1550284bb8171d5dca1544e6eac45df17cf08964ef78857e955c1e0009\"}}}", + "headers" : { + "x-request-id" : "fcf4f7d4-a729-483f-9a0f-2dfcfd6aac36", + "x-kong-upstream-latency" : "10", + "X-Ratelimit-Remaining" : "499", + "x-kong-request-id" : "64609849595a0b17b023173b0b46536c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"f1eb354c5c34252e7f5dfdb07f923612\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "2ee23a69-8e4a-4c37-ab8e-5a34eec70243", + "persistent" : true, + "scenarioName" : "scenario-39-stock_locations-ekbqQudZmG", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-39-stock_locations-ekbqQudZmG-2", + "insertionIndex" : 243 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_ekbqqudzmg-b665ee32-0657-42ca-83bd-11883854e6c3.json b/mock/mappings/stock_locations_ekbqqudzmg-b665ee32-0657-42ca-83bd-11883854e6c3.json new file mode 100644 index 0000000..ebba726 --- /dev/null +++ b/mock/mappings/stock_locations_ekbqqudzmg-b665ee32-0657-42ca-83bd-11883854e6c3.json @@ -0,0 +1,39 @@ +{ + "id" : "b665ee32-0657-42ca-83bd-11883854e6c3", + "name" : "stock_locations_ekbqqudzmg", + "request" : { + "url" : "/stock_locations/ekbqQudZmG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG\"},\"attributes\":{\"number\":25278,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:37.752Z\",\"updated_at\":\"2024-10-24T15:51:37.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"96cdeb1550284bb8171d5dca1544e6eac45df17cf08964ef78857e955c1e0009\"}}}", + "headers" : { + "x-request-id" : "fcf4f7d4-a729-483f-9a0f-2dfcfd6aac36", + "x-kong-upstream-latency" : "10", + "X-Ratelimit-Remaining" : "498", + "x-kong-request-id" : "64609849595a0b17b023173b0b46536c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"f1eb354c5c34252e7f5dfdb07f923612\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "b665ee32-0657-42ca-83bd-11883854e6c3", + "persistent" : true, + "scenarioName" : "scenario-39-stock_locations-ekbqQudZmG", + "requiredScenarioState" : "scenario-39-stock_locations-ekbqQudZmG-2", + "newScenarioState" : "scenario-39-stock_locations-ekbqQudZmG-3", + "insertionIndex" : 239 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_ekbqqudzmg-bb16c65f-d84b-4655-808c-d51fd7ef956f.json b/mock/mappings/stock_locations_ekbqqudzmg-bb16c65f-d84b-4655-808c-d51fd7ef956f.json new file mode 100644 index 0000000..0cbbe93 --- /dev/null +++ b/mock/mappings/stock_locations_ekbqqudzmg-bb16c65f-d84b-4655-808c-d51fd7ef956f.json @@ -0,0 +1,32 @@ +{ + "id" : "bb16c65f-d84b-4655-808c-d51fd7ef956f", + "name" : "stock_locations_ekbqqudzmg", + "request" : { + "url" : "/stock_locations/ekbqQudZmG", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "6fda8045-2113-4536-bd54-636d2df686fa", + "x-kong-upstream-latency" : "100", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "cf4f0e56971ee4302ef1131e45aa0f54", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "bb16c65f-d84b-4655-808c-d51fd7ef956f", + "persistent" : true, + "insertionIndex" : 231 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_ekbqqudzmg-c0043439-e0e4-435b-aef9-110381ecc4bd.json b/mock/mappings/stock_locations_ekbqqudzmg-c0043439-e0e4-435b-aef9-110381ecc4bd.json new file mode 100644 index 0000000..4d6a5c9 --- /dev/null +++ b/mock/mappings/stock_locations_ekbqqudzmg-c0043439-e0e4-435b-aef9-110381ecc4bd.json @@ -0,0 +1,38 @@ +{ + "id" : "c0043439-e0e4-435b-aef9-110381ecc4bd", + "name" : "stock_locations_ekbqqudzmg", + "request" : { + "url" : "/stock_locations/ekbqQudZmG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG\"},\"attributes\":{\"number\":25278,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:37.752Z\",\"updated_at\":\"2024-10-24T15:51:37.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"96cdeb1550284bb8171d5dca1544e6eac45df17cf08964ef78857e955c1e0009\"}}}", + "headers" : { + "x-request-id" : "fcf4f7d4-a729-483f-9a0f-2dfcfd6aac36", + "x-kong-upstream-latency" : "10", + "X-Ratelimit-Remaining" : "497", + "x-kong-request-id" : "64609849595a0b17b023173b0b46536c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"f1eb354c5c34252e7f5dfdb07f923612\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "2" + } + }, + "uuid" : "c0043439-e0e4-435b-aef9-110381ecc4bd", + "persistent" : true, + "scenarioName" : "scenario-39-stock_locations-ekbqQudZmG", + "requiredScenarioState" : "scenario-39-stock_locations-ekbqQudZmG-3", + "insertionIndex" : 234 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_qkpoyuxerg-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json b/mock/mappings/stock_locations_qkpoyuxerg-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json new file mode 100644 index 0000000..ac5d65f --- /dev/null +++ b/mock/mappings/stock_locations_qkpoyuxerg-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json @@ -0,0 +1,38 @@ +{ + "id" : "1d100a97-ac50-4b6d-86bf-d0f3409bfc03", + "name" : "stock_locations_qkpoyuxerg", + "request" : { + "url" : "/stock_locations/qkpOyuXErG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG\"},\"attributes\":{\"number\":25280,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:55.809Z\",\"updated_at\":\"2024-10-24T15:51:55.809Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bbe93194c0a653640cf042d9f7be1ac67b8d68d45d7c97d6029e2a17a2a2f32d\"}}}", + "headers" : { + "x-request-id" : "78270026-58ff-46e9-a854-9f851f29950a", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "481", + "x-kong-request-id" : "618f8e090cf4fd49192f036c5b5c2041", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"cac0ce6f98d745533763dbc97ff63b30\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "2" + } + }, + "uuid" : "1d100a97-ac50-4b6d-86bf-d0f3409bfc03", + "persistent" : true, + "scenarioName" : "scenario-25-stock_locations-qkpOyuXErG", + "requiredScenarioState" : "scenario-25-stock_locations-qkpOyuXErG-3", + "insertionIndex" : 156 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_qkpoyuxerg-94f54298-cfc8-4f88-ba4b-8d1412171286.json b/mock/mappings/stock_locations_qkpoyuxerg-94f54298-cfc8-4f88-ba4b-8d1412171286.json new file mode 100644 index 0000000..549debf --- /dev/null +++ b/mock/mappings/stock_locations_qkpoyuxerg-94f54298-cfc8-4f88-ba4b-8d1412171286.json @@ -0,0 +1,39 @@ +{ + "id" : "94f54298-cfc8-4f88-ba4b-8d1412171286", + "name" : "stock_locations_qkpoyuxerg", + "request" : { + "url" : "/stock_locations/qkpOyuXErG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG\"},\"attributes\":{\"number\":25280,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:55.809Z\",\"updated_at\":\"2024-10-24T15:51:55.809Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bbe93194c0a653640cf042d9f7be1ac67b8d68d45d7c97d6029e2a17a2a2f32d\"}}}", + "headers" : { + "x-request-id" : "78270026-58ff-46e9-a854-9f851f29950a", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "483", + "x-kong-request-id" : "618f8e090cf4fd49192f036c5b5c2041", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:57 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"cac0ce6f98d745533763dbc97ff63b30\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "94f54298-cfc8-4f88-ba4b-8d1412171286", + "persistent" : true, + "scenarioName" : "scenario-25-stock_locations-qkpOyuXErG", + "requiredScenarioState" : "scenario-25-stock_locations-qkpOyuXErG-2", + "newScenarioState" : "scenario-25-stock_locations-qkpOyuXErG-3", + "insertionIndex" : 161 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_qkpoyuxerg-956ff1f4-b530-4337-9b54-2d37b71bf096.json b/mock/mappings/stock_locations_qkpoyuxerg-956ff1f4-b530-4337-9b54-2d37b71bf096.json new file mode 100644 index 0000000..d2a0a11 --- /dev/null +++ b/mock/mappings/stock_locations_qkpoyuxerg-956ff1f4-b530-4337-9b54-2d37b71bf096.json @@ -0,0 +1,39 @@ +{ + "id" : "956ff1f4-b530-4337-9b54-2d37b71bf096", + "name" : "stock_locations_qkpoyuxerg", + "request" : { + "url" : "/stock_locations/qkpOyuXErG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG\"},\"attributes\":{\"number\":25280,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:55.809Z\",\"updated_at\":\"2024-10-24T15:51:55.809Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bbe93194c0a653640cf042d9f7be1ac67b8d68d45d7c97d6029e2a17a2a2f32d\"}}}", + "headers" : { + "x-request-id" : "78270026-58ff-46e9-a854-9f851f29950a", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "485", + "x-kong-request-id" : "618f8e090cf4fd49192f036c5b5c2041", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"cac0ce6f98d745533763dbc97ff63b30\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "956ff1f4-b530-4337-9b54-2d37b71bf096", + "persistent" : true, + "scenarioName" : "scenario-25-stock_locations-qkpOyuXErG", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-25-stock_locations-qkpOyuXErG-2", + "insertionIndex" : 165 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_qkpoyuxerg-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json b/mock/mappings/stock_locations_qkpoyuxerg-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json new file mode 100644 index 0000000..a4b321b --- /dev/null +++ b/mock/mappings/stock_locations_qkpoyuxerg-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json @@ -0,0 +1,32 @@ +{ + "id" : "ed6f9ec3-ccc6-48a6-8400-afdd01ff448f", + "name" : "stock_locations_qkpoyuxerg", + "request" : { + "url" : "/stock_locations/qkpOyuXErG", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "67e04e2a-12ec-4aff-a2d5-6ed285c71b3b", + "x-kong-upstream-latency" : "77", + "X-Ratelimit-Remaining" : "81", + "x-kong-request-id" : "7208e03d719e683ece88f723710eca76", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "ed6f9ec3-ccc6-48a6-8400-afdd01ff448f", + "persistent" : true, + "insertionIndex" : 153 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-158cd75d-739d-4b7f-86d2-a519006a893c.json b/mock/mappings/stock_locations_rneebuyjln-158cd75d-739d-4b7f-86d2-a519006a893c.json new file mode 100644 index 0000000..6a9ee75 --- /dev/null +++ b/mock/mappings/stock_locations_rneebuyjln-158cd75d-739d-4b7f-86d2-a519006a893c.json @@ -0,0 +1,40 @@ +{ + "id" : "158cd75d-739d-4b7f-86d2-a519006a893c", + "name" : "stock_locations_rneebuyjln", + "request" : { + "url" : "/stock_locations/rneEbuYJLn", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PDF\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"name\":\"Incentro Stock Location Updated\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":false},\"id\":\"rneEbuYJLn\",\"relationships\":{\"address\":{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location Updated\",\"code\":null,\"label_format\":\"PDF\",\"suppress_etd\":false,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:32.381Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d45c8c9ae5ce0f2d661dc1949d65eab195eac279b4cb55c5f2541e8d08e21a07\"}}}", + "headers" : { + "x-request-id" : "12fc2ea4-0a98-4276-a80e-e387f96c9515", + "x-kong-upstream-latency" : "63", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "550c8716e0b9257cb94e373d7443e447", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"53cbed9031164ae38cd6f3ae44ae024c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "158cd75d-739d-4b7f-86d2-a519006a893c", + "persistent" : true, + "insertionIndex" : 28 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-29a47602-f959-423b-8abd-729a4890d3e8.json b/mock/mappings/stock_locations_rneebuyjln-29a47602-f959-423b-8abd-729a4890d3e8.json new file mode 100644 index 0000000..4215eee --- /dev/null +++ b/mock/mappings/stock_locations_rneebuyjln-29a47602-f959-423b-8abd-729a4890d3e8.json @@ -0,0 +1,32 @@ +{ + "id" : "29a47602-f959-423b-8abd-729a4890d3e8", + "name" : "stock_locations_rneebuyjln", + "request" : { + "url" : "/stock_locations/rneEbuYJLn", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "693f9589-3585-4622-a4de-90ced9dc1644", + "x-kong-upstream-latency" : "61", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "d1e4760e07f15e5d01e7630c6a9ae51a", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:33 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "29a47602-f959-423b-8abd-729a4890d3e8", + "persistent" : true, + "insertionIndex" : 25 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-6c4f7873-a681-4339-a0c5-929662bba461.json b/mock/mappings/stock_locations_rneebuyjln-6c4f7873-a681-4339-a0c5-929662bba461.json new file mode 100644 index 0000000..a105276 --- /dev/null +++ b/mock/mappings/stock_locations_rneebuyjln-6c4f7873-a681-4339-a0c5-929662bba461.json @@ -0,0 +1,39 @@ +{ + "id" : "6c4f7873-a681-4339-a0c5-929662bba461", + "name" : "stock_locations_rneebuyjln", + "request" : { + "url" : "/stock_locations/rneEbuYJLn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location Updated\",\"code\":null,\"label_format\":\"PDF\",\"suppress_etd\":false,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:32.381Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f800e8ca141921bd03927fbe21f2fc399a068441bc583bd68acbf6f123b15d06\"}}}", + "headers" : { + "x-request-id" : "97a47cee-3cc8-497a-8955-1592c067363d", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "493", + "x-kong-request-id" : "9b9f09140010b118f8243f71e1de617c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"8949feb19690b3d6f3b803b30d613bdb\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "6c4f7873-a681-4339-a0c5-929662bba461", + "persistent" : true, + "scenarioName" : "scenario-4-stock_locations-rneEbuYJLn", + "requiredScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-3", + "newScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-4", + "insertionIndex" : 26 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-b59f2a00-610f-490c-b399-afbb424841b7.json b/mock/mappings/stock_locations_rneebuyjln-b59f2a00-610f-490c-b399-afbb424841b7.json new file mode 100644 index 0000000..6c962d9 --- /dev/null +++ b/mock/mappings/stock_locations_rneebuyjln-b59f2a00-610f-490c-b399-afbb424841b7.json @@ -0,0 +1,39 @@ +{ + "id" : "b59f2a00-610f-490c-b399-afbb424841b7", + "name" : "stock_locations_rneebuyjln", + "request" : { + "url" : "/stock_locations/rneEbuYJLn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:31.310Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3015acae70f0978f6197eb76afbaee18d8305bacef186d4f8dec8b2eafe0d98d\"}}}", + "headers" : { + "x-request-id" : "e0747d9e-054a-495a-989f-4f6a118cd693", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "494", + "x-kong-request-id" : "29d7f64550c2bf09b90f6f69afb10c07", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"f0286e801c28de61ad860299fd4af852\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "b59f2a00-610f-490c-b399-afbb424841b7", + "persistent" : true, + "scenarioName" : "scenario-4-stock_locations-rneEbuYJLn", + "requiredScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-2", + "newScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-3", + "insertionIndex" : 29 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-f4d11818-49ba-4c90-b84d-573241e8e1e1.json b/mock/mappings/stock_locations_rneebuyjln-f4d11818-49ba-4c90-b84d-573241e8e1e1.json new file mode 100644 index 0000000..cd8a749 --- /dev/null +++ b/mock/mappings/stock_locations_rneebuyjln-f4d11818-49ba-4c90-b84d-573241e8e1e1.json @@ -0,0 +1,39 @@ +{ + "id" : "f4d11818-49ba-4c90-b84d-573241e8e1e1", + "name" : "stock_locations_rneebuyjln", + "request" : { + "url" : "/stock_locations/rneEbuYJLn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:31.310Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3015acae70f0978f6197eb76afbaee18d8305bacef186d4f8dec8b2eafe0d98d\"}}}", + "headers" : { + "x-request-id" : "e0747d9e-054a-495a-989f-4f6a118cd693", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "495", + "x-kong-request-id" : "29d7f64550c2bf09b90f6f69afb10c07", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:31 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"f0286e801c28de61ad860299fd4af852\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "f4d11818-49ba-4c90-b84d-573241e8e1e1", + "persistent" : true, + "scenarioName" : "scenario-4-stock_locations-rneEbuYJLn", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-2", + "insertionIndex" : 31 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json b/mock/mappings/stock_locations_rneebuyjln-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json new file mode 100644 index 0000000..891c5b1 --- /dev/null +++ b/mock/mappings/stock_locations_rneebuyjln-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json @@ -0,0 +1,37 @@ +{ + "id" : "f7eb5500-dae7-4b21-b4f4-522098e59bd6", + "name" : "stock_locations_rneebuyjln", + "request" : { + "url" : "/stock_locations/rneEbuYJLn", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "a8c139c7-a8e9-444c-99aa-1814d72a5934", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "492", + "x-kong-request-id" : "4345bf1044a0265e0f79b634e0090e7c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:33 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "cache-control" : "no-cache", + "Age" : "0" + } + }, + "uuid" : "f7eb5500-dae7-4b21-b4f4-522098e59bd6", + "persistent" : true, + "scenarioName" : "scenario-4-stock_locations-rneEbuYJLn", + "requiredScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-4", + "insertionIndex" : 23 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways-44d939ca-4a54-459e-901a-df3eae051476.json b/mock/mappings/stripe_gateways-44d939ca-4a54-459e-901a-df3eae051476.json new file mode 100644 index 0000000..135ab20 --- /dev/null +++ b/mock/mappings/stripe_gateways-44d939ca-4a54-459e-901a-df3eae051476.json @@ -0,0 +1,40 @@ +{ + "id" : "44d939ca-4a54-459e-901a-df3eae051476", + "name" : "stripe_gateways", + "request" : { + "url" : "/stripe_gateways", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"login\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"name\":\"Incentro Stripe Gateway\",\"publishable_key\":\"aaaa-bbbb-cccc\",\"reference\":null,\"reference_origin\":null},\"type\":\"stripe_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:33.972Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"075713a4bcacd294721ce20b0a4bf05d2060a2417f72c0ade1df118f635bdb1b\"}}}", + "headers" : { + "x-request-id" : "a0358835-a3e4-4c9d-8c7e-2f803bc7996a", + "x-kong-upstream-latency" : "49", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "6e631b23f08e0b192d39af2abea95602", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:34 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d7e6a108c87bb9c0efef96ceebbaa9f3\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "44d939ca-4a54-459e-901a-df3eae051476", + "persistent" : true, + "insertionIndex" : 22 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json b/mock/mappings/stripe_gateways_mjrmbswxyv-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json new file mode 100644 index 0000000..1978f95 --- /dev/null +++ b/mock/mappings/stripe_gateways_mjrmbswxyv-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json @@ -0,0 +1,38 @@ +{ + "id" : "36558ecc-dc3b-46e5-bf36-bf24c0e45921", + "name" : "stripe_gateways_mjrmbswxyv", + "request" : { + "url" : "/stripe_gateways/MjRMbsWXYv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway Changed\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:34.937Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c22b90260f9971b86e42535f7d136a7cd521fb9184d2cc6009e71e140dba8752\"}}}", + "headers" : { + "x-request-id" : "85e098a9-52cb-42e3-90bf-6eb1f8f2e192", + "x-kong-upstream-latency" : "33", + "X-Ratelimit-Remaining" : "80", + "x-kong-request-id" : "a46811488c2299176b8a806d26abff5f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:35 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b4feb89dd0147b21fa2e9f1f977ec5ae\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "36558ecc-dc3b-46e5-bf36-bf24c0e45921", + "persistent" : true, + "scenarioName" : "scenario-3-stripe_gateways-MjRMbsWXYv", + "requiredScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-3", + "newScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-4", + "insertionIndex" : 18 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-7eb5c230-1642-497a-86cc-f81bd7217cfb.json b/mock/mappings/stripe_gateways_mjrmbswxyv-7eb5c230-1642-497a-86cc-f81bd7217cfb.json new file mode 100644 index 0000000..3e9a2ae --- /dev/null +++ b/mock/mappings/stripe_gateways_mjrmbswxyv-7eb5c230-1642-497a-86cc-f81bd7217cfb.json @@ -0,0 +1,38 @@ +{ + "id" : "7eb5c230-1642-497a-86cc-f81bd7217cfb", + "name" : "stripe_gateways_mjrmbswxyv", + "request" : { + "url" : "/stripe_gateways/MjRMbsWXYv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:33.972Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6f38a84a580aaecab8a9beead22279624c9344070e30d2b3000604d653f6dada\"}}}", + "headers" : { + "x-request-id" : "9185b2af-016e-476b-b882-a32be1284401", + "x-kong-upstream-latency" : "23", + "X-Ratelimit-Remaining" : "81", + "x-kong-request-id" : "453a534894e1523362613b57a50c923c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:34 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"9ef49bd89100c9a86ab11501b6687ee8\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7eb5c230-1642-497a-86cc-f81bd7217cfb", + "persistent" : true, + "scenarioName" : "scenario-3-stripe_gateways-MjRMbsWXYv", + "requiredScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-2", + "newScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-3", + "insertionIndex" : 20 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-81fb0ed1-62d8-44f6-ac98-13106b51684b.json b/mock/mappings/stripe_gateways_mjrmbswxyv-81fb0ed1-62d8-44f6-ac98-13106b51684b.json new file mode 100644 index 0000000..3d8a5ba --- /dev/null +++ b/mock/mappings/stripe_gateways_mjrmbswxyv-81fb0ed1-62d8-44f6-ac98-13106b51684b.json @@ -0,0 +1,36 @@ +{ + "id" : "81fb0ed1-62d8-44f6-ac98-13106b51684b", + "name" : "stripe_gateways_mjrmbswxyv", + "request" : { + "url" : "/stripe_gateways/MjRMbsWXYv", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "5bde010c-90bb-4b75-8803-323336a6d89c", + "x-kong-upstream-latency" : "9", + "X-Ratelimit-Remaining" : "79", + "x-kong-request-id" : "ed032528d42c033b87a8b54299c63a71", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:35 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "81fb0ed1-62d8-44f6-ac98-13106b51684b", + "persistent" : true, + "scenarioName" : "scenario-3-stripe_gateways-MjRMbsWXYv", + "requiredScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-4", + "insertionIndex" : 16 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-93a5764d-0689-4fda-a31a-366e5a265190.json b/mock/mappings/stripe_gateways_mjrmbswxyv-93a5764d-0689-4fda-a31a-366e5a265190.json new file mode 100644 index 0000000..9302f57 --- /dev/null +++ b/mock/mappings/stripe_gateways_mjrmbswxyv-93a5764d-0689-4fda-a31a-366e5a265190.json @@ -0,0 +1,38 @@ +{ + "id" : "93a5764d-0689-4fda-a31a-366e5a265190", + "name" : "stripe_gateways_mjrmbswxyv", + "request" : { + "url" : "/stripe_gateways/MjRMbsWXYv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:33.972Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ab81580e072e27ee232ce500dda90f59559b87b6290daa7b3510d9c304cfb717\"}}}", + "headers" : { + "x-request-id" : "ceb77fc7-4e6b-422c-9389-a68c72167ac4", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "7f5335433acfac674e13ed162512ed03", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:34 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"6136e33d006dbac4827ce4fb7d1f1518\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "93a5764d-0689-4fda-a31a-366e5a265190", + "persistent" : true, + "scenarioName" : "scenario-3-stripe_gateways-MjRMbsWXYv", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-2", + "insertionIndex" : 21 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-e04d3158-431f-4d9b-b050-f5591cc7ccea.json b/mock/mappings/stripe_gateways_mjrmbswxyv-e04d3158-431f-4d9b-b050-f5591cc7ccea.json new file mode 100644 index 0000000..4feca84 --- /dev/null +++ b/mock/mappings/stripe_gateways_mjrmbswxyv-e04d3158-431f-4d9b-b050-f5591cc7ccea.json @@ -0,0 +1,40 @@ +{ + "id" : "e04d3158-431f-4d9b-b050-f5591cc7ccea", + "name" : "stripe_gateways_mjrmbswxyv", + "request" : { + "url" : "/stripe_gateways/MjRMbsWXYv", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"name\":\"Incentro Stripe Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway Changed\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:34.937Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ef386c20d0092cecd0113380f612c201574f3f1a38c24dff3375be7eab0539c1\"}}}", + "headers" : { + "x-request-id" : "ffb6fbd5-048d-4d8f-a219-a753783cc06d", + "x-kong-upstream-latency" : "48", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "425c311865a5c47fc9cd4354bab3d140", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:34 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"bdb501aae9b5e073a5a48a2ba9879e7b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e04d3158-431f-4d9b-b050-f5591cc7ccea", + "persistent" : true, + "insertionIndex" : 19 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json b/mock/mappings/stripe_gateways_mjrmbswxyv-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json new file mode 100644 index 0000000..3512ca7 --- /dev/null +++ b/mock/mappings/stripe_gateways_mjrmbswxyv-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json @@ -0,0 +1,32 @@ +{ + "id" : "f6975abb-0ebd-49f6-9bd7-2a102feffff7", + "name" : "stripe_gateways_mjrmbswxyv", + "request" : { + "url" : "/stripe_gateways/MjRMbsWXYv", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "df98a3de-dda2-4b72-a088-a125d19de88e", + "x-kong-upstream-latency" : "39", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "7f23901755d5851342a547367758f241", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:53:35 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "f6975abb-0ebd-49f6-9bd7-2a102feffff7", + "persistent" : true, + "insertionIndex" : 17 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json b/mock/mappings/taxjar_accounts-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json new file mode 100644 index 0000000..ed7194f --- /dev/null +++ b/mock/mappings/taxjar_accounts-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json @@ -0,0 +1,40 @@ +{ + "id" : "d39f0cc3-a754-4ada-8f24-2dbe32f96210", + "name" : "taxjar_accounts", + "request" : { + "url" : "/taxjar_accounts", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"TAXJAR_API_KEY\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"},\"name\":\"Incentro Taxjar Account\",\"reference\":null,\"reference_origin\":null},\"type\":\"taxjar_accounts\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.032Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3b7ac95be4905d7e0925bdb30462dce54698c2701a9a04aa88055fa5b8317c75\"}}}", + "headers" : { + "x-request-id" : "d4f449a7-f2e8-447c-8316-660bc1545f51", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "378fd006a8beda31f1c53568de782677", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:36 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b416bb39430f74fde8474ccee29e225d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d39f0cc3-a754-4ada-8f24-2dbe32f96210", + "persistent" : true, + "insertionIndex" : 15 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-215a324c-cf6a-44c1-8777-af57fa28a70f.json b/mock/mappings/taxjar_accounts_kyzeltzedq-215a324c-cf6a-44c1-8777-af57fa28a70f.json new file mode 100644 index 0000000..881a4e3 --- /dev/null +++ b/mock/mappings/taxjar_accounts_kyzeltzedq-215a324c-cf6a-44c1-8777-af57fa28a70f.json @@ -0,0 +1,36 @@ +{ + "id" : "215a324c-cf6a-44c1-8777-af57fa28a70f", + "name" : "taxjar_accounts_kyzeltzedq", + "request" : { + "url" : "/taxjar_accounts/kyzeLTzEdq", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "907e891b-9596-4626-9180-a4eb04b52041", + "x-kong-upstream-latency" : "9", + "X-Ratelimit-Remaining" : "75", + "x-kong-request-id" : "50a91c314638d163739db072ac175417", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "215a324c-cf6a-44c1-8777-af57fa28a70f", + "persistent" : true, + "scenarioName" : "scenario-2-taxjar_accounts-kyzeLTzEdq", + "requiredScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-4", + "insertionIndex" : 9 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json b/mock/mappings/taxjar_accounts_kyzeltzedq-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json new file mode 100644 index 0000000..ce96f69 --- /dev/null +++ b/mock/mappings/taxjar_accounts_kyzeltzedq-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json @@ -0,0 +1,40 @@ +{ + "id" : "6832fdf9-9cf9-43db-9459-2d6aff6ff5bd", + "name" : "taxjar_accounts_kyzeltzedq", + "request" : { + "url" : "/taxjar_accounts/kyzeLTzEdq", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"},\"name\":\"Incentro Taxjar Account Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account Changed\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.948Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3aa92c2546e9bd0b7e08cabc2692e20bc6115e46261922b41df1261a7b815c4d\"}}}", + "headers" : { + "x-request-id" : "51360fdc-a883-4c36-ad57-c2b2d2e66ea4", + "x-kong-upstream-latency" : "31", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "bbfc7424e0b4087b03f91e232fcee73a", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:36 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"22021f30ed1f5a3d323a526082ecb6d4\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "6832fdf9-9cf9-43db-9459-2d6aff6ff5bd", + "persistent" : true, + "insertionIndex" : 12 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json b/mock/mappings/taxjar_accounts_kyzeltzedq-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json new file mode 100644 index 0000000..91a1ac9 --- /dev/null +++ b/mock/mappings/taxjar_accounts_kyzeltzedq-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json @@ -0,0 +1,38 @@ +{ + "id" : "bfa68a82-b92b-42c6-9880-e8de8af1aa35", + "name" : "taxjar_accounts_kyzeltzedq", + "request" : { + "url" : "/taxjar_accounts/kyzeLTzEdq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account Changed\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.948Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0f08ca0f914de79d4a23e3eb7fd7006d95c0a45737f350d2ad1d1584e750eb05\"}}}", + "headers" : { + "x-request-id" : "975c9e4b-3317-486f-b590-905bbc49ffa1", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "76", + "x-kong-request-id" : "c851150734486e669677197c5f1ca66f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"6e508f4b807406c14e8599bce862884a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bfa68a82-b92b-42c6-9880-e8de8af1aa35", + "persistent" : true, + "scenarioName" : "scenario-2-taxjar_accounts-kyzeLTzEdq", + "requiredScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-3", + "newScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-4", + "insertionIndex" : 11 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-d0c22512-542d-437b-a696-a96780a082d5.json b/mock/mappings/taxjar_accounts_kyzeltzedq-d0c22512-542d-437b-a696-a96780a082d5.json new file mode 100644 index 0000000..df3dc3b --- /dev/null +++ b/mock/mappings/taxjar_accounts_kyzeltzedq-d0c22512-542d-437b-a696-a96780a082d5.json @@ -0,0 +1,38 @@ +{ + "id" : "d0c22512-542d-437b-a696-a96780a082d5", + "name" : "taxjar_accounts_kyzeltzedq", + "request" : { + "url" : "/taxjar_accounts/kyzeLTzEdq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.032Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1cb5c80ee3faebe48f807e1ad4416d8055a6833f9a64f5d6fdfd57abb7d46aa1\"}}}", + "headers" : { + "x-request-id" : "5bcab9b1-1152-4ed8-8b65-2cca8d290df4", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "77", + "x-kong-request-id" : "82c5642079dfe90be393c9564dd82401", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:36 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"5c40339d20072073f831586c0034fa7a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d0c22512-542d-437b-a696-a96780a082d5", + "persistent" : true, + "scenarioName" : "scenario-2-taxjar_accounts-kyzeLTzEdq", + "requiredScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-2", + "newScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-3", + "insertionIndex" : 13 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json b/mock/mappings/taxjar_accounts_kyzeltzedq-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json new file mode 100644 index 0000000..d3a3a8b --- /dev/null +++ b/mock/mappings/taxjar_accounts_kyzeltzedq-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json @@ -0,0 +1,32 @@ +{ + "id" : "eaaa5509-f22d-41e5-b08e-c497d8f4d375", + "name" : "taxjar_accounts_kyzeltzedq", + "request" : { + "url" : "/taxjar_accounts/kyzeLTzEdq", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "f0559dfb-bab8-41f0-b462-0c9fda1e2dc9", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "c8010a4980d58b152cbbd9128e74c05f", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "eaaa5509-f22d-41e5-b08e-c497d8f4d375", + "persistent" : true, + "insertionIndex" : 10 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-f38da734-a436-4c58-b40a-e969eec120f9.json b/mock/mappings/taxjar_accounts_kyzeltzedq-f38da734-a436-4c58-b40a-e969eec120f9.json new file mode 100644 index 0000000..3a60daa --- /dev/null +++ b/mock/mappings/taxjar_accounts_kyzeltzedq-f38da734-a436-4c58-b40a-e969eec120f9.json @@ -0,0 +1,38 @@ +{ + "id" : "f38da734-a436-4c58-b40a-e969eec120f9", + "name" : "taxjar_accounts_kyzeltzedq", + "request" : { + "url" : "/taxjar_accounts/kyzeLTzEdq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.032Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"36bdbcfdcdb4bb6970065e44412c81d5a15f34e7924864e3c592a00cf7297c52\"}}}", + "headers" : { + "x-request-id" : "4c4b3998-6f17-4d2a-b987-0b850ab627d7", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "78", + "x-kong-request-id" : "d6ced37e26d7295f3f1b421279e5984e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:36 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"536450bc5a35df030a02779953fdaea6\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f38da734-a436-4c58-b40a-e969eec120f9", + "persistent" : true, + "scenarioName" : "scenario-2-taxjar_accounts-kyzeLTzEdq", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-2", + "insertionIndex" : 14 +} \ No newline at end of file diff --git a/mock/mappings/webhooks-48ba9633-eb4f-4342-8cff-6821113f0bac.json b/mock/mappings/webhooks-48ba9633-eb4f-4342-8cff-6821113f0bac.json new file mode 100644 index 0000000..77a442f --- /dev/null +++ b/mock/mappings/webhooks-48ba9633-eb4f-4342-8cff-6821113f0bac.json @@ -0,0 +1,40 @@ +{ + "id" : "48ba9633-eb4f-4342-8cff-6821113f0bac", + "name" : "webhooks", + "request" : { + "url" : "/webhooks", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"},\"name\":\"incentro webhook\",\"reference\":null,\"reference_origin\":null,\"topic\":\"orders.create\"},\"type\":\"webhooks\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:38.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1a31c01287506f4819863706bb361c7dc4f6644ef440b631f95a17cafcee1172\"}}}", + "headers" : { + "x-request-id" : "9827e7e8-e095-473d-9fb3-da011d57bfc4", + "x-kong-upstream-latency" : "22", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "262bc8223e4af164a643d85f1093296e", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:38 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"fc427e39fe88ffd676fb52aa86b8a49c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "48ba9633-eb4f-4342-8cff-6821113f0bac", + "persistent" : true, + "insertionIndex" : 8 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-15b09980-bc6c-4b56-bfe6-a0a38418c001.json b/mock/mappings/webhooks_epqzocjdyk-15b09980-bc6c-4b56-bfe6-a0a38418c001.json new file mode 100644 index 0000000..c5317b0 --- /dev/null +++ b/mock/mappings/webhooks_epqzocjdyk-15b09980-bc6c-4b56-bfe6-a0a38418c001.json @@ -0,0 +1,38 @@ +{ + "id" : "15b09980-bc6c-4b56-bfe6-a0a38418c001", + "name" : "webhooks_epqzocjdyk", + "request" : { + "url" : "/webhooks/ePqzoCJDYK", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:38.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"75b87bed0c247fd56e235c0e3ff24193d2ad6d8d6452b9e5f01202dfaf583885\"}}}", + "headers" : { + "x-request-id" : "fa122a49-a66b-4fc6-88fd-f922a5ab5a9a", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "73", + "x-kong-request-id" : "5eeb7b764d1fbe09944bee3a1fd2ad11", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:38 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"dbb004d9669d61312ca9b7938fbc164c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "15b09980-bc6c-4b56-bfe6-a0a38418c001", + "persistent" : true, + "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", + "requiredScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-2", + "newScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-3", + "insertionIndex" : 6 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json b/mock/mappings/webhooks_epqzocjdyk-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json new file mode 100644 index 0000000..b19ac16 --- /dev/null +++ b/mock/mappings/webhooks_epqzocjdyk-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json @@ -0,0 +1,36 @@ +{ + "id" : "60203ee0-8252-4e54-aac8-a3c3f313e5e9", + "name" : "webhooks_epqzocjdyk", + "request" : { + "url" : "/webhooks/ePqzoCJDYK", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "b6bf5af7-52db-4ecb-8d38-80e34d997a7a", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "70", + "x-kong-request-id" : "7f929132eb77990c10e7c8319e558e06", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:39 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "60203ee0-8252-4e54-aac8-a3c3f313e5e9", + "persistent" : true, + "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", + "requiredScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-5", + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json b/mock/mappings/webhooks_epqzocjdyk-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json new file mode 100644 index 0000000..77a1b54 --- /dev/null +++ b/mock/mappings/webhooks_epqzocjdyk-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json @@ -0,0 +1,38 @@ +{ + "id" : "8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661", + "name" : "webhooks_epqzocjdyk", + "request" : { + "url" : "/webhooks/ePqzoCJDYK", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\",\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:39.186Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a77d3991ca64e1cbdef480a23b3362f0648d71d068e210de57470ccab41ec13e\"}}}", + "headers" : { + "x-request-id" : "785557bb-3bfc-4656-8494-742e745fbb04", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "71", + "x-kong-request-id" : "bad98b6212dee2367a5b58000d567250", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:39 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"f4a35befbf94d43e1bd1ba48577c0f09\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661", + "persistent" : true, + "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", + "requiredScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-4", + "newScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-5", + "insertionIndex" : 3 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-a1fbb10d-de25-495d-bd9f-a57f24648559.json b/mock/mappings/webhooks_epqzocjdyk-a1fbb10d-de25-495d-bd9f-a57f24648559.json new file mode 100644 index 0000000..a7b69fd --- /dev/null +++ b/mock/mappings/webhooks_epqzocjdyk-a1fbb10d-de25-495d-bd9f-a57f24648559.json @@ -0,0 +1,40 @@ +{ + "id" : "a1fbb10d-de25-495d-bd9f-a57f24648559", + "name" : "webhooks_epqzocjdyk", + "request" : { + "url" : "/webhooks/ePqzoCJDYK", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"},\"name\":\"incentro updated webhook\",\"reference\":null,\"reference_origin\":null,\"topic\":\"orders.place\"},\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\",\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:39.186Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d996447fa99826b56d7599fc0e9958d9b3fe32d47dd9b594095e2490570e9b43\"}}}", + "headers" : { + "x-request-id" : "2bfe50ee-c910-4e58-9a70-145db8d0d008", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "4414ac4f608d331c6c63433ac66c8162", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 15:53:39 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"04b2856d02b5b3fbe21e14b5e494e617\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a1fbb10d-de25-495d-bd9f-a57f24648559", + "persistent" : true, + "insertionIndex" : 4 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json b/mock/mappings/webhooks_epqzocjdyk-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json new file mode 100644 index 0000000..53afb56 --- /dev/null +++ b/mock/mappings/webhooks_epqzocjdyk-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json @@ -0,0 +1,38 @@ +{ + "id" : "a9a093fa-457a-4d5a-9932-d9cf3d28421f", + "name" : "webhooks_epqzocjdyk", + "request" : { + "url" : "/webhooks/ePqzoCJDYK", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:38.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"641b9179f5fc298d1cbad9948945d3c3d269aa1bf3bbb452220d033d7945c780\"}}}", + "headers" : { + "x-request-id" : "6a5fabfd-97e0-4967-93a7-62520af77d1a", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "74", + "x-kong-request-id" : "0e49e001ff6c8450f2b41838298f9477", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:38 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"f3ddc945ca53f7d647f47f1cb41a1c4c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a9a093fa-457a-4d5a-9932-d9cf3d28421f", + "persistent" : true, + "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-2", + "insertionIndex" : 7 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-b1926da9-ec00-4bb2-95e7-01c07b532a99.json b/mock/mappings/webhooks_epqzocjdyk-b1926da9-ec00-4bb2-95e7-01c07b532a99.json new file mode 100644 index 0000000..29b4c22 --- /dev/null +++ b/mock/mappings/webhooks_epqzocjdyk-b1926da9-ec00-4bb2-95e7-01c07b532a99.json @@ -0,0 +1,38 @@ +{ + "id" : "b1926da9-ec00-4bb2-95e7-01c07b532a99", + "name" : "webhooks_epqzocjdyk", + "request" : { + "url" : "/webhooks/ePqzoCJDYK", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:38.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"616c9632c62fe7af699dde2ac87d80f430861c9a09f76aae5587f3c18435b1fa\"}}}", + "headers" : { + "x-request-id" : "f57cd768-498a-4ab0-8d95-7c57f798a6bd", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "72", + "x-kong-request-id" : "1e439d2ecb80ac38379efe6f969d327e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 15:53:38 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"481299decdaa2bbfabc498c678447ff1\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "b1926da9-ec00-4bb2-95e7-01c07b532a99", + "persistent" : true, + "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", + "requiredScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-3", + "newScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-4", + "insertionIndex" : 5 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json b/mock/mappings/webhooks_epqzocjdyk-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json new file mode 100644 index 0000000..24870fa --- /dev/null +++ b/mock/mappings/webhooks_epqzocjdyk-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json @@ -0,0 +1,32 @@ +{ + "id" : "f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee", + "name" : "webhooks_epqzocjdyk", + "request" : { + "url" : "/webhooks/ePqzoCJDYK", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "2bf91081-89d5-483d-a5ba-f47e4551f3cf", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "a9949d20ee560d43b737de5ab347d862", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 15:53:39 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file From dc06897f87f71577f0b706bd2708d4c452c1c583 Mon Sep 17 00:00:00 2001 From: Thomas De Meyer Date: Thu, 24 Oct 2024 18:10:07 +0200 Subject: [PATCH 4/4] feat: fixed auth --- ...-702b83aa-beb1-43a0-8db8-045e75e30b02.json | 38 ------------------ ...-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json | 38 ------------------ ...-c22bc5ea-12bd-4491-8808-e805d23e929e.json | 38 ------------------ ...-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json | 38 ------------------ ...-0cda247c-05a2-4b99-bb5d-885db5710ea4.json | 38 ------------------ ...-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json | 37 ----------------- ...-ff5e84a9-3151-45db-8033-5935b02c2838.json | 38 ------------------ ...-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json | 32 --------------- ...-4298d60c-1077-498b-b71d-0d991d2f97cd.json | 38 ------------------ ...-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json | 38 ------------------ ...-4d92824f-0c17-4087-afc2-d7f143a2feec.json | 38 ------------------ ...-63504a6f-b242-4d46-a43d-64a184c69189.json | 38 ------------------ ...6a1cd246-c52f-4d99-a6fe-55f79b25ebab.json} | 22 +++++----- ...9c9e0402-8b8f-42aa-b900-3ef2a8b7c9a6.json} | 22 +++++----- ...9fcd6d5f-f08d-42b7-9dd7-31e44c331fd9.json} | 22 +++++----- ...ccb72c36-a074-47d9-ba2b-7072012f3ffc.json} | 22 +++++----- ...e6f442b5-49f8-4ac7-bcc7-ca4b3097cfa1.json} | 24 +++++------ ...edc30a38-828d-4e07-bbcc-e94603866639.json} | 22 +++++----- ...f3ecee5d-6277-40ff-8e25-47516428646a.json} | 26 ++++++------ ...1c111938-3dfd-4dba-ac7e-f0d4fda0cc57.json} | 28 ++++++------- ...487ee899-5818-4a6b-bdf1-e5e85a1150d7.json} | 30 +++++++------- ...5c23212e-324a-483d-90fd-ce6ecd1fd31c.json} | 22 +++++----- ...a2bcd90a-0323-40f6-9478-398083a11fff.json} | 26 ++++++------ ...e7bd3c21-a208-42c4-ad59-0003fc234110.json} | 20 +++++----- ...571dc8b3-be93-4a14-b3bb-401a8ec02e14.json} | 18 ++++----- ...87765652-1ea5-4187-aa1c-c486643af5ee.json} | 28 ++++++------- ...a67e503e-753b-4219-b991-0d0a7e649b08.json} | 26 ++++++------ ...fa9228f5-81ce-497c-bfe1-10b53afffe8f.json} | 30 +++++++------- ...095d2053-51b8-4e29-8d65-eef701d88c3a.json} | 28 ++++++------- ...12d66c62-b908-4861-b869-cf9edc765c7d.json} | 28 ++++++------- ...-1512e109-3d1c-439c-8215-873ca57bca55.json | 38 ++++++++++++++++++ ...22381670-a0f2-42cd-91b5-d6bb672c41b1.json} | 24 +++++------ ...9953aebf-c833-4821-84bc-6e952c21b910.json} | 22 +++++----- ...d32d2090-d7e7-4582-93fc-2250df0e8a60.json} | 18 ++++----- ...0154501b-7d68-4147-b4b8-3597dd438e33.json} | 18 ++++----- ...188ca3c1-1cfc-445f-a8c9-332d1bd4c5c4.json} | 26 ++++++------ ...4e4a5e1f-fe13-44bc-8bc9-338cefc27839.json} | 26 ++++++------ ...c3683e30-a74c-4faa-9ac9-60de58c4fb01.json} | 28 ++++++------- ...0da2cd2d-08c4-4dde-ab82-3a8e36954bc0.json} | 27 ++++++------- ...629eaee0-03b4-4ab7-af70-d19c584854dd.json} | 18 ++++----- ...851fc2d0-678c-447d-a868-fc99fe39900a.json} | 29 +++++++------- ...ec7d2176-1699-447b-a82d-2fb81bdda2f8.json} | 28 ++++++------- ...-0a20f8a0-6fd5-43ab-81ee-932de6c10cf9.json | 38 ++++++++++++++++++ ...-19de9c4d-a92b-4079-a2e2-4f48e24b2928.json | 38 ++++++++++++++++++ ...-3d27db6d-24ea-440a-bf2b-f0c8eba40322.json | 38 ++++++++++++++++++ ...40aa0aed-ee2c-4a9c-9633-15445d874af9.json} | 24 +++++------ ...a495acfb-6b7b-4c56-9cfa-017225d376be.json} | 18 ++++----- ...-70360ef8-8e21-4d0e-b969-6b0e8afb2939.json | 38 ++++++++++++++++++ ...936a48ca-4bb3-4634-84d9-539648a583c7.json} | 18 ++++----- ...-a85567e9-ad39-43a4-ab82-7806ea654d4f.json | 38 ++++++++++++++++++ ...-bbe2e659-5181-4431-953e-721619f1d090.json | 37 +++++++++++++++++ ...a6345dae-6239-4745-bc14-0c79b237e494.json} | 24 +++++------ ...b1406909-5dee-4dd1-b612-37785b2fd2d1.json} | 24 +++++------ ...40a880b4-07c2-4024-baa8-0690ca3e1c1d.json} | 22 +++++----- ...6b4c973f-93af-41e2-873c-9899a3f4498b.json} | 26 ++++++------ ...80fb2e7b-c7c1-43c3-a2b9-04b487ce58ca.json} | 18 ++++----- ...-ae58577d-fca0-4621-becc-5b7128ef10f2.json | 38 ++++++++++++++++++ ...-c1b43eb5-36b9-406b-b094-38dba7acf284.json | 38 ++++++++++++++++++ ...00347543-4e00-4302-8ec7-c9f406fd3def.json} | 26 ++++++------ ...-0d9a9551-ba12-4fb3-8fd3-ff957b069f0c.json | 38 ++++++++++++++++++ ...79bdec12-7dd7-4901-a4ed-d30b2c46e83e.json} | 26 ++++++------ ...b43c7d2d-0f65-43bc-83a0-e704ab925045.json} | 24 +++++------ ...-cc8ac6aa-d2a0-435d-a0c5-284f28b0753d.json | 38 ++++++++++++++++++ ...e11a37a8-d3ef-4e93-ba10-fab3d733a5ef.json} | 18 ++++----- ...de06e81e-c047-4034-be78-741ff496490e.json} | 22 +++++----- ...04fafff7-d476-4b4e-b346-da5cf208c72f.json} | 20 +++++----- ...-0a1eecf4-026f-487a-9471-1cd2ff0ede9f.json | 38 ++++++++++++++++++ ...3a36bdd0-9d51-4121-9fe1-f4a117185edf.json} | 26 ++++++------ ...9abc1516-c65f-4d8f-9658-60259615af5f.json} | 18 ++++----- ...-a9596e5d-7221-4e58-b593-03883c996f94.json | 38 ++++++++++++++++++ ...-e09e507b-5dd0-4dc7-a031-e2892401c0f3.json | 38 ++++++++++++++++++ ...47534f05-082a-425d-bfae-74ae0302cd3f.json} | 24 +++++------ ...-2b2059e5-18c4-4b0d-b4e4-385443c792cd.json | 38 ++++++++++++++++++ ...50736e60-619a-40e2-84b3-64eb18858032.json} | 24 +++++------ ...-9f42c20a-463f-48bc-b754-1a25a0b74e69.json | 32 +++++++++++++++ ...a443bc4f-9064-490f-875b-4eb88c906346.json} | 22 +++++----- ...-bc6e0343-6dc2-4011-855c-61a85dedd97c.json | 38 ++++++++++++++++++ ...-e3456f0a-d0ff-44cd-b9c4-4a90c6d6fc9a.json | 38 ++++++++++++++++++ ...aaf8ea4e-4d46-49c8-af22-7a38bc6cf419.json} | 22 +++++----- ...3dcdc8a6-5c89-43ab-9c9d-adf3cb167924.json} | 22 +++++----- ...8a7bdd8f-c6f7-4f18-9f7e-8f249eaa10b8.json} | 18 ++++----- ...-90434a71-3988-4fe4-b1dd-73146c537929.json | 38 ++++++++++++++++++ ...9be29ccc-b90b-4884-b178-5c9fa0480992.json} | 24 +++++------ ...-d4855bb6-6c1e-4bba-9e68-3dd0fa24dae2.json | 38 ++++++++++++++++++ ...-fe5b5e18-da72-4bc5-bb1c-2fb35d71cdfc.json | 38 ++++++++++++++++++ ...591bd954-711c-4f30-ba87-d08b365ad414.json} | 24 +++++------ ...-1b1489fe-f827-40a8-8b87-78212f3d1f96.json | 39 ++++++++++++++++++ ...-318fd728-db1b-4353-835c-63ab416a4ba0.json | 40 +++++++++++++++++++ ...-a87981ff-97d8-4958-90ce-21d9fe78bce1.json | 39 ++++++++++++++++++ ...-c5efd68b-ffca-43e5-8b7c-ad2d3b40c505.json | 39 ++++++++++++++++++ ...cb85cec2-c7d9-4518-beaa-ad5517b0f1cd.json} | 20 +++++----- ...fce4b0a9-0b19-4716-b619-66483932d522.json} | 24 +++++------ ...9742549e-2a66-4671-8e03-ecadf47adf49.json} | 24 +++++------ ...265386a5-4c5c-48e5-9064-eead7ff59cea.json} | 32 +++++++-------- ...68930ed0-f854-441c-b719-0f149ddff095.json} | 26 ++++++------ ...6a80449f-20f9-42c7-8bc1-bbe182d6bcc8.json} | 24 +++++------ ...708950f8-7b81-48b7-a589-be6c2e01c5f7.json} | 18 ++++----- ...-835386b4-6520-46fe-9f84-9dc839c716b7.json | 38 ++++++++++++++++++ ...9d31a211-de57-46e3-b20f-f59ab337eedd.json} | 24 +++++------ ...9d39fa6a-3b69-450f-bcd6-f44b42c963b0.json} | 28 ++++++------- ...de159f26-5b28-48a5-9881-3cefaf718463.json} | 26 ++++++------ ...-f4b07e7a-05ff-4728-af31-a3f1aa7e3785.json | 38 ++++++++++++++++++ ...46147416-a6fb-4afe-be07-71a2d0398029.json} | 24 +++++------ ...b6a0f140-7ec9-40fd-b5fa-8903a7ac991b.json} | 24 +++++------ ...-047afc93-a809-44fe-83eb-bb20089cc0a7.json | 38 ++++++++++++++++++ ...-23f8ad61-f84d-483c-9511-48aec3bebe77.json | 38 ++++++++++++++++++ ...78ba2919-2332-4317-a5d8-42689269fb95.json} | 24 +++++------ ...-7a2eea67-234b-493d-9626-398622a93126.json | 38 ++++++++++++++++++ ...9d73f43c-774a-4fff-b11c-3250376e2995.json} | 20 +++++----- ...b8a609ed-b568-426c-bc20-ea12b67773ad.json} | 20 +++++----- ...26f74a1e-db5a-40a5-97ae-8c12dc9ea3ae.json} | 18 ++++----- ...-43d62826-bb9f-44dc-b979-28262187734d.json | 38 ++++++++++++++++++ ...-72bc835f-4e0a-47f3-ae8d-e774cef763ba.json | 37 +++++++++++++++++ ...-eedb1dde-703d-4bd8-aea8-62e6437d94a3.json | 38 ++++++++++++++++++ ...4a643221-b273-4a9a-9a74-773708ab9602.json} | 24 +++++------ ...-15cc7b98-7e82-42ed-976c-fc073b4a29f4.json | 38 ++++++++++++++++++ ...-729f652e-1798-4446-9032-cd19c9561f67.json | 38 ++++++++++++++++++ ...-b45f3555-fd65-4dab-81b7-6b883af09ee8.json | 38 ++++++++++++++++++ ...c36faee9-a080-4e26-8fe5-bc1a79e0d1ea.json} | 22 +++++----- ...f39c30e5-7308-4d62-a45a-ec0e11726748.json} | 22 +++++----- ...f3f1c96d-f9bd-4858-9546-e297b823d0f4.json} | 20 +++++----- ...262b2fc6-8694-4e51-bff6-d30ac1e70aab.json} | 24 +++++------ ...3697be27-132b-45f5-a302-1ba53eb242c0.json} | 22 +++++----- ...3abc94d3-d5c2-4951-aa30-98f3b49afa56.json} | 22 +++++----- ...6a046475-67d9-4a33-b0e7-c25a1e4751be.json} | 24 +++++------ ...15ad8440-8a77-4b8c-976b-7735a92e8271.json} | 18 ++++----- ...a0d62e55-7f6c-4be9-ae38-26fe9e974772.json} | 28 ++++++------- ...dcb68f44-2ece-497b-a383-b232c79955af.json} | 30 +++++++------- ...ffc59cca-c45c-4c07-be58-44fe582d71a6.json} | 26 ++++++------ ...3d32c778-304c-45c1-beb1-9eac6de0ad10.json} | 24 +++++------ ...7b50a9ff-2984-4227-b99d-26cfcf2796eb.json} | 26 ++++++------ ...80df76e2-c697-422e-b6d6-eb5d6f0c78b4.json} | 18 ++++----- ...a337840c-8d4b-4329-bea5-550b0b313383.json} | 24 +++++------ ...202854c0-821c-4f5e-99de-0ad10f7bdc14.json} | 26 ++++++------ ...-330e706e-3c55-4ffc-8a00-13f2a1132f3e.json | 32 +++++++++++++++ ...6c6aa7a0-7dc3-4f3a-bfc5-9f14921512a0.json} | 24 +++++------ ...-6d0d3efd-3d97-4cb2-86ab-b8b438bd0b1c.json | 39 ++++++++++++++++++ ...865aa76b-056f-49b1-b3bc-e1124f402b3a.json} | 24 +++++------ ...ed6d04a7-b648-4730-856a-2f717f76598d.json} | 26 ++++++------ ...-319f898f-891f-4fdd-9b92-f10afb1a0c07.json | 39 ++++++++++++++++++ ...-4549adb1-55f9-4790-8e75-d14bc8d81b14.json | 39 ++++++++++++++++++ ...-cf18d211-8c1a-4e15-97d9-a7112dd7082c.json | 32 +++++++++++++++ ...-dfdeb33b-64d8-40ca-a109-97997117f211.json | 38 ++++++++++++++++++ ...b2176814-a4fe-45ee-a466-99b78d68d82f.json} | 24 +++++------ ...-208b0f9c-7cd4-4033-8d3a-0fbaac80df07.json | 38 ++++++++++++++++++ ...-756da867-07cb-48e0-aa15-397f061204cf.json | 40 +++++++++++++++++++ ...-882bedd5-7970-486e-be8b-f6422fade160.json | 38 ++++++++++++++++++ ...-8aa5f4ef-a793-4844-b349-ff5d412d61be.json | 36 +++++++++++++++++ ...-d63d6b22-dc61-4eef-9e7a-3863e1da2c73.json | 32 +++++++++++++++ ...-e6825df4-4ebb-421d-946f-16611654a356.json | 38 ++++++++++++++++++ ...b1e48f78-a1ef-45d2-b37b-5371f4d3ffbb.json} | 26 ++++++------ ...45450872-471a-4dd3-bfd4-3a1d6c37b7ab.json} | 26 ++++++------ ...519cef76-f69c-4cc6-8703-d5ff0c685ff3.json} | 20 +++++----- ...-8bf9dc41-a356-4c67-af09-dd15c31a3f3e.json | 38 ++++++++++++++++++ ...-9a6b13be-7b2e-47ab-b888-9e44b2133d8a.json | 36 +++++++++++++++++ ...-cc6bf357-4cd0-4963-a5f4-35fe8d526d6b.json | 38 ++++++++++++++++++ ...e388e0e7-55bf-4b5c-8713-fb2895388611.json} | 26 ++++++------ ...ac49c015-24e3-42de-972f-eb1a98240a84.json} | 22 +++++----- ...3cecdd12-9c01-41b5-9f2e-22601c94dcf1.json} | 20 +++++----- ...-3ff51e8c-9393-4994-b0b5-43ea8d0f3294.json | 38 ++++++++++++++++++ ...84958eaf-2cda-4df3-858a-29add206fb36.json} | 22 +++++----- ...-849d60d3-7353-484c-9aa9-c4d9ff67003f.json | 38 ++++++++++++++++++ ...ae7ca76a-24e5-407e-969f-3e91291c01dc.json} | 24 +++++------ ...-bd0bff65-8457-480a-a623-43ca476de41e.json | 38 ++++++++++++++++++ ...a1d76a8f-5189-4c1f-a62a-3387c28b779d.json} | 24 +++++------ ...080d7dfe-110a-4f89-a1e0-9f2824f100e4.json} | 24 +++++------ ...-20ce7e16-888a-4e50-8408-cd6721256a60.json | 32 +++++++++++++++ ...-3610014e-6ad4-4cec-8f3b-a864a92d0086.json | 38 ++++++++++++++++++ ...-528b5848-39dd-43dd-b293-dc6b1fcaba43.json | 38 ++++++++++++++++++ ...-5b984139-e3f3-47a2-aeb6-55d854870a45.json | 36 +++++++++++++++++ ...-d9100517-a8a4-40ab-9f1c-fb200d6c7a67.json | 38 ++++++++++++++++++ ...d33a5a3d-6eb2-4f2f-88bf-6804e2c3ac34.json} | 22 +++++----- ...-13b5fea9-82f8-4c8a-989b-8f2d0c02591e.json | 38 ++++++++++++++++++ ...1a0181cf-9509-4d0d-9b5e-08ec1734d421.json} | 22 +++++----- ...3aa83e0a-23cf-4379-867a-01111f38a2ca.json} | 24 +++++------ ...-8f7b3836-82e0-4c1b-b66f-06817f5f38b5.json | 38 ++++++++++++++++++ ...-916a503d-4981-4f2f-a7a1-988d13a65c7d.json | 38 ++++++++++++++++++ ...-9df420e0-46b9-486e-9164-e8692cafa142.json | 32 +++++++++++++++ ...-1a87d54e-5d2d-4bf8-b762-1813dff8f641.json | 40 +++++++++++++++++++ ...-2329486c-1492-47cc-a608-519ef1c30e58.json | 40 +++++++++++++++++++ ...-37c4e23c-d482-4ca8-82c8-84b556829529.json | 39 ++++++++++++++++++ ...38f45706-9445-49e4-a98e-4914a336f787.json} | 24 +++++------ ...-5bf45d4e-7d5d-41ac-962c-e41def54e8c0.json | 39 ++++++++++++++++++ ...ce01078a-2202-4323-996d-f07551474cbb.json} | 20 +++++----- ...-e61d926c-53db-40b4-87a3-27ca6fd5b2db.json | 39 ++++++++++++++++++ ...5a60eda9-4898-4442-89ca-92945b3f8bec.json} | 24 +++++------ ...beb1d70c-1b62-4b8e-a075-090681369210.json} | 26 ++++++------ ...-0dcc7e2c-e4ed-4410-b6be-4956dffb54ba.json | 38 ++++++++++++++++++ ...23a1ad3c-d455-443b-9925-d8eac270a146.json} | 24 +++++------ ...-a2cd0f42-3782-481d-bf2e-2d362a319668.json | 38 ++++++++++++++++++ ...-a3245254-223e-47e9-99cd-5e5fc2e19bb6.json | 40 +++++++++++++++++++ ...c921784a-4877-4ab2-b25e-35ebb612969e.json} | 18 ++++----- ...-ee2e07fe-8723-4d40-8da3-bf3a060d051d.json | 38 ++++++++++++++++++ ...6e25a9cc-e70b-429c-afd9-30209e6c21a1.json} | 18 ++++----- ...-a6a362c8-fef1-4a6d-9002-7bf34badbf8a.json | 37 +++++++++++++++++ ...-b10444ed-626b-4800-b8bc-2c7f6ad30f7f.json | 38 ++++++++++++++++++ ...-e8517a23-a2b8-450b-9a6e-92cc383d1f1c.json | 38 ++++++++++++++++++ ...e12b00e4-7260-414e-981d-253f57de4613.json} | 24 +++++------ ...-0149dfb6-27b5-4b0e-925c-b03038017ff3.json | 32 +++++++++++++++ ...-0946bf88-ae7c-4c70-b703-637bf627b483.json | 38 ++++++++++++++++++ ...43937e1d-9ba4-4058-9819-026de825677e.json} | 26 ++++++------ ...-56707e4f-c2d5-4b35-8ec6-c38a12fcd5c3.json | 38 ++++++++++++++++++ ...d481314b-8c88-49dc-bf54-1683db50ee3b.json} | 20 +++++----- ...f8cfc944-d579-4123-8b71-a4a69c5dcc66.json} | 24 +++++------ ...bd3d7112-4a1b-4513-9ac6-664a8d3c0f3f.json} | 24 +++++------ ...-00e3d720-2c65-4e46-be20-a59278e06e38.json | 32 +++++++++++++++ ...61d08a4b-91eb-46a6-b193-fb57456724c5.json} | 18 ++++----- ...-c39bb07f-cae8-4a84-826b-65994a40e6da.json | 38 ++++++++++++++++++ ...c3d5bcc5-91d5-43bd-b688-ebbbbeec8a10.json} | 26 ++++++------ ...-d854aaf2-540b-4525-ae1d-db698f9944ff.json | 38 ++++++++++++++++++ ...-efc97b91-1b8e-4bff-9ffc-15dcb6687c85.json | 38 ++++++++++++++++++ ...fe9692fa-1dc3-4167-a30c-f2d54acfb6b6.json} | 22 +++++----- ...362f4706-48ca-4d19-90d4-2fd94d7dcfdf.json} | 24 +++++------ ...73e88280-cdf5-4240-86f2-d15eda52b0a6.json} | 24 +++++------ ...-0771d47e-51cf-48bf-85e6-8c185166dad6.json | 38 ++++++++++++++++++ ...07f2829b-a203-4417-826e-c192362de4be.json} | 18 ++++----- ...-135d3438-8fc1-4d66-9f61-a33d8d98e743.json | 39 ++++++++++++++++++ ...-b8de358a-25fd-4198-8192-f5b48771fd59.json | 39 ++++++++++++++++++ ...15d29cd9-1a91-45b7-8868-9c85d89a8a45.json} | 18 ++++----- ...-3003b543-2c46-421c-94a9-20d8bcbf4684.json | 39 ++++++++++++++++++ ...64cc9921-6967-45c5-8a07-a368dc104005.json} | 24 +++++------ ...-bcbe73fd-1585-4bab-8c01-bfc30656e825.json | 39 ++++++++++++++++++ ...c35e228e-96c6-4085-afe1-eab88c66e176.json} | 24 +++++------ ...caa119bf-db37-488b-b6e1-2526efda9dcf.json} | 26 ++++++------ ...048995e3-f502-49d8-a4b7-96071b912a3d.json} | 24 +++++------ ...2dcaaa21-dfdf-4dab-9f54-b5fbeb37377a.json} | 18 ++++----- ...488f8eef-4e1a-45ff-81a4-5cbacc930861.json} | 24 +++++------ ...-835add12-0700-4885-b687-f371e75f6a8f.json | 38 ++++++++++++++++++ ...995cda40-c923-4a9b-b036-95ec07636a27.json} | 22 +++++----- ...-bd7dfe78-88ee-424f-87e1-7848d3d1e0dd.json | 38 ++++++++++++++++++ ...-dd5c3ce9-e489-49af-824f-ee0c5cc8d1d2.json | 38 ++++++++++++++++++ ...0f14e125-f390-4919-b08a-50667e5fece0.json} | 26 ++++++------ ...2a0768b1-55d4-4921-96f3-096866dae886.json} | 22 +++++----- ...045694e2-fc86-4ffa-b85e-51fc7eb7371f.json} | 26 ++++++------ ...34cec9a3-a9af-41fd-b623-b12e5520df23.json} | 28 ++++++------- ...602d7c7f-60c4-446c-94e7-d4df8a0a06d2.json} | 24 +++++------ ...a761793d-029e-4d31-a275-a27366f6048a.json} | 22 +++++----- ...b7b95089-2033-4bf0-92b2-d835bbc2740b.json} | 20 +++++----- ...d6167c8e-c5aa-4651-a63b-7cb7cdfcc7dc.json} | 28 ++++++------- ...36655318-fde9-4612-9f6f-4248c622dd45.json} | 22 +++++----- ...-4dfbd49c-4731-4b2b-b55e-70b3d3936ab0.json | 39 ++++++++++++++++++ ...6aaa15b9-4c9c-4382-bba4-a8449021196f.json} | 18 ++++----- ...89e93989-fe01-4da3-a0d8-50fbbb9792e5.json} | 28 ++++++------- ...9436309e-4180-4902-beb9-34fe18d219b5.json} | 26 ++++++------ ...cda8013f-a82c-48aa-a447-95a98d07898c.json} | 26 ++++++------ ...228d4d36-9998-4943-8da1-a9b9f1e4c0ab.json} | 22 +++++----- ...0e32a0e1-f52d-424c-9e31-7d30ee909732.json} | 20 +++++----- ...11e6cca7-52ab-4a0f-b344-c7a73b21272a.json} | 26 ++++++------ ...-4715c2b9-0d9b-44ca-8c07-54a7e9ee3490.json | 38 ++++++++++++++++++ ...8425252b-6f56-406e-a56c-d75d02d3e61b.json} | 26 ++++++------ ...9a9da595-08d7-49b7-b8f0-f36a4a319c04.json} | 18 ++++----- ...fcf6f0d8-6e8d-427a-87b9-18f0467b2b46.json} | 28 ++++++------- ...2f96002d-6ec8-42e5-975d-15f8fc050f4c.json} | 24 +++++------ ...9f7af7ea-88a8-49c9-b8d9-f21f33cb9793.json} | 26 ++++++------ ...a5498580-3784-4263-a15b-da71c1d774ed.json} | 26 ++++++------ ...c67cbf10-f907-481c-9b05-503558ab0854.json} | 24 +++++------ ...076e23d1-28f7-45ae-8016-73cc65541c1c.json} | 16 ++++---- ...-16aea91e-0cd6-4d40-bd64-ce329ee25e9b.json | 39 ++++++++++++++++++ ...-56230053-e3ed-49b6-a69a-de968ce09c6f.json | 38 ++++++++++++++++++ ...-5787bb17-27cc-4de2-9da0-382fcc8d0ed7.json | 39 ++++++++++++++++++ ...-08742d6b-93c2-4b26-b357-fa57c554b1e1.json | 39 ++++++++++++++++++ ...-18733807-6d23-49f5-b73e-c9965e3ad87a.json | 39 ++++++++++++++++++ ...-19ac9e67-93c4-4d7b-a230-25dd89e5c8a7.json | 38 ++++++++++++++++++ ...bf437996-ec62-41fd-a1d0-1605d04de786.json} | 20 +++++----- ...-3fb7c940-5bbe-44b5-9714-508966d0f984.json | 39 ++++++++++++++++++ ...51e9aea3-f03b-4b75-bc98-721747f91c4c.json} | 18 ++++----- ...-6dd7e0bb-771d-456c-b79f-8b27c46f0475.json | 38 ++++++++++++++++++ ...-ee512139-6a76-45b4-9d5f-e81ea1c1087d.json | 39 ++++++++++++++++++ ...16b440b3-2727-44a1-9374-c87c2878759d.json} | 24 +++++------ ...-2253ee09-b491-4124-84ca-cf60bf29a6eb.json | 39 ++++++++++++++++++ ...33c7cc16-5279-4640-a69a-2000427e5440.json} | 20 +++++----- ...-38e56a52-7a0d-4eff-aaa2-a0a4f3369813.json | 39 ++++++++++++++++++ ...44c73591-5bc6-4986-b8dd-2297125acb34.json} | 18 ++++----- ...-f19d1249-8f00-40e6-8af5-0688583a2f12.json | 39 ++++++++++++++++++ ...6af970ec-1597-458c-b35b-44e3303f6477.json} | 22 +++++----- ...1acf4ae3-be5e-4f1a-8078-d3981c8372d9.json} | 18 ++++----- ...-1e4df003-5d94-49ff-a913-9a78306446a6.json | 38 ++++++++++++++++++ ...-79364ca4-0920-49b4-bab2-6faa41ff5f84.json | 38 ++++++++++++++++++ ...-85e15a08-9741-4994-834a-b51a58954c78.json | 36 +++++++++++++++++ ...a4c81a4d-d8fa-4540-9256-36c96c65c988.json} | 24 +++++------ ...-b5519154-8e2e-467a-9b24-a6c165643f35.json | 38 ++++++++++++++++++ ...7c6e4e53-82aa-49c5-9960-859c2cbc51ba.json} | 24 +++++------ ...01ea972d-22b0-48cc-8778-45050ab00749.json} | 24 +++++------ ...-648b0de1-1655-42ce-a46f-4c425f39b573.json | 38 ++++++++++++++++++ ...-8510fb4d-1cc8-4e96-aec5-5cb92e8069b8.json | 38 ++++++++++++++++++ ...9be0cc95-0bd4-4196-bed1-8be0ec35bfc2.json} | 20 +++++----- ...a975d9b4-fcc2-43cf-b9ae-0d3f5f1b784f.json} | 18 ++++----- ...-bc1d51bd-3131-4589-aad6-df64197015b9.json | 38 ++++++++++++++++++ ...088ac46b-31f5-48f6-91fc-bf2b678a008f.json} | 22 +++++----- ...0041d3ee-3515-4f04-95b8-11bfc58cecc9.json} | 20 +++++----- ...-67b2c179-91b4-4eed-87ce-f7b7a63dfb27.json | 38 ++++++++++++++++++ ...77e4a178-eff7-496b-a38d-f36e1c5e76f8.json} | 22 +++++----- ...-7a691042-5ad1-4245-b64c-5748bc8d9864.json | 38 ++++++++++++++++++ ...-bd5de5ce-020a-4696-bb0e-e8fad95fadc8.json | 38 ++++++++++++++++++ ...-c158d8cd-0066-4c4b-8ef4-db65ed478a8d.json | 38 ++++++++++++++++++ ...effc75de-360e-4c77-be65-1a5f4e893e7d.json} | 26 ++++++------ ...-465eed74-eb0b-43f9-8484-13c1b7f3c833.json | 38 ------------------ ...-6a4a021e-845e-4059-ae6c-eeef7061e107.json | 38 ------------------ ...-75081597-4c25-40a5-90e8-7f671ead5f6c.json | 38 ------------------ ...-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json | 38 ------------------ ...-0971fd9e-eb22-4c87-989e-cda5738d0858.json | 38 ------------------ ...-0d07ae32-151f-42f2-975f-3eeb1fceec35.json | 38 ------------------ ...-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json | 36 ----------------- ...-3c3d864a-6c42-4cfd-b366-3133054c42e9.json | 38 ------------------ ...-75800631-5c7d-4848-abe3-65f861be3963.json | 38 ------------------ ...-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json | 38 ------------------ ...-4229326a-6840-4aa1-888e-dd1567c701e0.json | 39 ------------------ ...-7e9e1c7e-2540-46ed-abf1-144b867ce032.json | 40 ------------------- ...-84fb75a5-98f7-4e10-bb40-71f33c455a94.json | 39 ------------------ ...-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json | 39 ------------------ ...-62023398-28ff-488f-9e24-c959cb5895af.json | 32 --------------- ...-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json | 38 ------------------ ...-d71df068-9300-4b57-a734-5271a334aaa5.json | 38 ------------------ ...-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json | 38 ------------------ ...-439da122-c274-46fb-8cc4-7931c4812e77.json | 38 ------------------ ...-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json | 38 ------------------ ...-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json | 37 ----------------- ...-18b75e7a-85d5-40c9-8341-082db0370dc5.json | 38 ------------------ ...-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json | 38 ------------------ ...-6a416c14-34f8-481f-a946-f08d106562b1.json | 38 ------------------ ...-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json | 38 ------------------ ...-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json | 38 ------------------ ...-27a39738-cc62-44d6-b487-55759d0d8ce8.json | 38 ------------------ ...-437793c9-5f9d-421d-9bc1-906882042d40.json | 39 ------------------ ...-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json | 39 ------------------ ...-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json | 32 --------------- ...-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json | 32 --------------- ...-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json | 39 ------------------ ...-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json | 40 ------------------- ...-79755483-1d1a-434a-8e12-b5d131a81786.json | 38 ------------------ ...-7eb45641-0128-4743-81a1-af728c9d140b.json | 38 ------------------ ...-c10eb423-9e4c-409d-9ce4-b620788a9aed.json | 38 ------------------ ...-f515149b-a447-4f94-b548-e5942a056da9.json | 36 ----------------- ...-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json | 36 ----------------- ...-8662f5be-10bd-417d-b89c-d185f47d3e31.json | 32 --------------- ...-a5627136-0910-48e7-bd87-87d0b759e5dc.json | 38 ------------------ ...-f7584548-1269-4442-88b2-8f62080f4e03.json | 38 ------------------ ...-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json | 38 ------------------ ...-9a24225b-8194-4c95-a22b-78cf50603ae0.json | 38 ------------------ ...-f80b6c98-10e3-485b-ad92-a5dc757551df.json | 38 ------------------ ...-38d4f538-b44f-407c-bb99-61f23abd17a8.json | 38 ------------------ ...-cf7b7100-a786-4f64-aecc-532b7ed13548.json | 38 ------------------ ...-db32005d-382f-43d4-9835-afb951d4113c.json | 38 ------------------ ...-fdd3d488-e259-4164-a702-bb60afdaa07e.json | 32 --------------- ...-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json | 38 ------------------ ...-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json | 38 ------------------ ...-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json | 38 ------------------ ...-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json | 40 ------------------- ...-3942aa83-8d03-431a-918a-fc11435415dd.json | 39 ------------------ ...-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json | 39 ------------------ ...-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json | 39 ------------------ ...-779594c5-6309-4cd8-b8e5-9c860d56af67.json | 40 ------------------- ...-bbc19227-afdd-431d-bca0-b71194911169.json | 38 ------------------ ...-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json | 38 ------------------ ...-c38de940-4b0c-446f-ad2a-78fc78342033.json | 37 ----------------- ...-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json | 38 ------------------ ...-275de801-77d9-46b1-b0c3-5c09bf7ec676.json | 40 ------------------- ...-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json | 38 ------------------ ...-ed9577ad-34cf-4d64-8512-507568760010.json | 38 ------------------ ...-5d469a08-1362-4336-bf55-cad40fabdef0.json | 39 ++++++++++++++++++ ...-53d1c651-a1a3-47ec-af04-671296453348.json | 38 ------------------ ...-b1f1837c-af9d-472d-a78e-e1c4741406eb.json | 36 ----------------- ...-d181f089-a311-416e-9ccb-e629e5b8743f.json | 38 ------------------ ...-b22aac35-2569-45e3-867c-325c1a3e3025.json | 38 ------------------ ...-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json | 38 ------------------ ...-edc679b6-624c-4d51-a627-8bbd3bc0373b.json | 38 ------------------ ...-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json | 38 ------------------ ...-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json | 39 ------------------ ...-b760ce36-eeea-4a16-a826-df745cf55ee1.json | 39 ------------------ ...-11f10920-f791-464e-9375-5275360a1fd4.json | 39 ------------------ ...-84715bce-e82f-4507-a8c6-b3c2c516ea72.json | 39 ------------------ ...-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json | 38 ------------------ ...-408a24db-193f-4979-be1d-bba839acdf4f.json | 38 ------------------ ...-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json | 38 ------------------ ...-e0c92868-59ae-4324-9202-c913cd2b149a.json | 39 ------------------ ...-bd9c9d43-94e3-457d-9419-c3158e0d0362.json | 38 ------------------ ...-60a49051-d491-4c78-8242-220aa743ec50.json | 39 ------------------ ...-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json | 39 ------------------ ...-c185c581-52d4-4f0c-97eb-841f963cad6d.json | 38 ------------------ ...-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json | 39 ------------------ ...-b665ee32-0657-42ca-83bd-11883854e6c3.json | 39 ------------------ ...-c0043439-e0e4-435b-aef9-110381ecc4bd.json | 38 ------------------ ...-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json | 38 ------------------ ...-94f54298-cfc8-4f88-ba4b-8d1412171286.json | 39 ------------------ ...-956ff1f4-b530-4337-9b54-2d37b71bf096.json | 39 ------------------ ...-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json | 32 --------------- ...-6c4f7873-a681-4339-a0c5-929662bba461.json | 39 ------------------ ...-b59f2a00-610f-490c-b399-afbb424841b7.json | 39 ------------------ ...-f4d11818-49ba-4c90-b84d-573241e8e1e1.json | 39 ------------------ ...-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json | 38 ------------------ ...-7eb5c230-1642-497a-86cc-f81bd7217cfb.json | 38 ------------------ ...-93a5764d-0689-4fda-a31a-366e5a265190.json | 38 ------------------ ...-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json | 38 ------------------ ...-d0c22512-542d-437b-a696-a96780a082d5.json | 38 ------------------ ...-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json | 32 --------------- ...-f38da734-a436-4c58-b40a-e969eec120f9.json | 38 ------------------ ...-15b09980-bc6c-4b56-bfe6-a0a38418c001.json | 38 ------------------ ...-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json | 38 ------------------ ...-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json | 38 ------------------ ...-b1926da9-ec00-4bb2-95e7-01c07b532a99.json | 38 ------------------ 400 files changed, 6340 insertions(+), 6301 deletions(-) delete mode 100644 mock/mappings/addresses_bazyuqxgqj-702b83aa-beb1-43a0-8db8-045e75e30b02.json delete mode 100644 mock/mappings/addresses_boelupqapl-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json delete mode 100644 mock/mappings/addresses_boelupqapl-c22bc5ea-12bd-4491-8808-e805d23e929e.json delete mode 100644 mock/mappings/addresses_boelupqapl-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json delete mode 100644 mock/mappings/addresses_djekumglnx-0cda247c-05a2-4b99-bb5d-885db5710ea4.json delete mode 100644 mock/mappings/addresses_djekumglnx-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json delete mode 100644 mock/mappings/addresses_djekumglnx-ff5e84a9-3151-45db-8033-5935b02c2838.json delete mode 100644 mock/mappings/addresses_djekumgyyo-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json delete mode 100644 mock/mappings/adyen_gateways_nknmksokbj-4298d60c-1077-498b-b71d-0d991d2f97cd.json delete mode 100644 mock/mappings/adyen_gateways_nknmksokbj-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json delete mode 100644 mock/mappings/adyen_gateways_pkaqrsdyzk-4d92824f-0c17-4087-afc2-d7f143a2feec.json delete mode 100644 mock/mappings/adyen_gateways_pkaqrsdyzk-63504a6f-b242-4d46-a43d-64a184c69189.json rename mock/mappings/{addresses-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json => api_addresses-6a1cd246-c52f-4d99-a6fe-55f79b25ebab.json} (66%) rename mock/mappings/{addresses-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json => api_addresses-9c9e0402-8b8f-42aa-b900-3ef2a8b7c9a6.json} (64%) rename mock/mappings/{addresses-1cdf04a4-a664-428f-88bd-44d9991cd823.json => api_addresses-9fcd6d5f-f08d-42b7-9dd7-31e44c331fd9.json} (59%) rename mock/mappings/{addresses-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json => api_addresses-ccb72c36-a074-47d9-ba2b-7072012f3ffc.json} (64%) rename mock/mappings/{addresses-184cb485-be00-4590-af90-6524d31e6338.json => api_addresses-e6f442b5-49f8-4ac7-bcc7-ca4b3097cfa1.json} (63%) rename mock/mappings/{addresses-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json => api_addresses-edc30a38-828d-4e07-bbcc-e94603866639.json} (66%) rename mock/mappings/{addresses-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json => api_addresses-f3ecee5d-6277-40ff-8e25-47516428646a.json} (57%) rename mock/mappings/{addresses_bkzqueglkr-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json => api_addresses_bajxupoyjj-1c111938-3dfd-4dba-ac7e-f0d4fda0cc57.json} (53%) rename mock/mappings/{addresses_bkzqueglkr-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json => api_addresses_bajxupoyjj-487ee899-5818-4a6b-bdf1-e5e85a1150d7.json} (52%) rename mock/mappings/{addresses_bkzqueglkr-51616306-4952-4db5-9eba-1d4b0af93ab5.json => api_addresses_bajxupoyjj-5c23212e-324a-483d-90fd-ce6ecd1fd31c.json} (62%) rename mock/mappings/{addresses_bkzqueglkr-a5ed938c-498c-4161-b650-34fa3ba00c83.json => api_addresses_bajxupoyjj-a2bcd90a-0323-40f6-9478-398083a11fff.json} (55%) rename mock/mappings/{addresses_bkzqueglkr-5219acae-078d-47d5-975c-b3701741b752.json => api_addresses_bajxupoyjj-e7bd3c21-a208-42c4-ad59-0003fc234110.json} (56%) rename mock/mappings/{adyen_gateways_nknmksokbj-b059e544-8b22-458a-b96b-51759af06f0e.json => api_addresses_bejouljmjo-571dc8b3-be93-4a14-b3bb-401a8ec02e14.json} (59%) rename mock/mappings/{addresses_djekumgyyo-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json => api_addresses_bejouljmjo-87765652-1ea5-4187-aa1c-c486643af5ee.json} (55%) rename mock/mappings/{addresses_djekumgyyo-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json => api_addresses_bejouljmjo-a67e503e-753b-4219-b991-0d0a7e649b08.json} (56%) rename mock/mappings/{addresses_djekumgyyo-168afcac-c58b-434d-bd68-af28b2a87023.json => api_addresses_bejouljmjo-fa9228f5-81ce-497c-bfe1-10b53afffe8f.json} (53%) rename mock/mappings/{addresses_bazyuqxgqj-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json => api_addresses_bkepukgpvd-095d2053-51b8-4e29-8d65-eef701d88c3a.json} (54%) rename mock/mappings/{addresses_bazyuqxgqj-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json => api_addresses_bkepukgpvd-12d66c62-b908-4861-b869-cf9edc765c7d.json} (53%) create mode 100644 mock/mappings/api_addresses_bkepukgpvd-1512e109-3d1c-439c-8215-873ca57bca55.json rename mock/mappings/{addresses_bazyuqxgqj-84bb3e51-cd54-4890-879a-1f965aef5588.json => api_addresses_bkepukgpvd-22381670-a0f2-42cd-91b5-d6bb672c41b1.json} (58%) rename mock/mappings/{adyen_gateways_nknmksokbj-946715e8-e818-424d-9ad8-e5afe9449325.json => api_addresses_bkepukgpvd-9953aebf-c833-4821-84bc-6e952c21b910.json} (62%) rename mock/mappings/{payment_methods_pmwzdsrdde-093f8f69-985c-462e-89fc-69a46096856f.json => api_addresses_bkepukgpvd-d32d2090-d7e7-4582-93fc-2250df0e8a60.json} (59%) rename mock/mappings/{addresses_bkzqueglle-a528706c-5cf0-4a59-a8be-60569adf8081.json => api_addresses_bqxrurpapj-0154501b-7d68-4147-b4b8-3597dd438e33.json} (59%) rename mock/mappings/{addresses_bkzqueglle-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json => api_addresses_bqxrurpapj-188ca3c1-1cfc-445f-a8c9-332d1bd4c5c4.json} (56%) rename mock/mappings/{addresses_bkzqueglle-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json => api_addresses_bqxrurpapj-4e4a5e1f-fe13-44bc-8bc9-338cefc27839.json} (56%) rename mock/mappings/{addresses_bkzqueglle-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json => api_addresses_bqxrurpapj-c3683e30-a74c-4faa-9ac9-60de58c4fb01.json} (54%) rename mock/mappings/{addresses_bzkoumknnk-86d5413b-2a85-4926-9b65-9070041b471d.json => api_addresses_djekumglrw-0da2cd2d-08c4-4dde-ab82-3a8e36954bc0.json} (54%) rename mock/mappings/{manual_tax_calculators_evvrmtjxav-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json => api_addresses_djekumglrw-629eaee0-03b4-4ab7-af70-d19c584854dd.json} (58%) rename mock/mappings/{addresses_bzkoumknnk-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json => api_addresses_djekumglrw-851fc2d0-678c-447d-a868-fc99fe39900a.json} (52%) rename mock/mappings/{addresses_bzkoumknnk-32efe943-750b-4a6b-b710-ba844e059f32.json => api_addresses_djekumglrw-ec7d2176-1699-447b-a82d-2fb81bdda2f8.json} (54%) create mode 100644 mock/mappings/api_addresses_dynyujkekw-0a20f8a0-6fd5-43ab-81ee-932de6c10cf9.json create mode 100644 mock/mappings/api_addresses_dynyujkekw-19de9c4d-a92b-4079-a2e2-4f48e24b2928.json create mode 100644 mock/mappings/api_addresses_dynyujkekw-3d27db6d-24ea-440a-bf2b-f0c8eba40322.json rename mock/mappings/{webhooks_epqzocjdyk-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json => api_addresses_dynyujkekw-40aa0aed-ee2c-4a9c-9633-15445d874af9.json} (59%) rename mock/mappings/{price_lists_akebycwjml-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json => api_addresses_dynyujkekw-a495acfb-6b7b-4c56-9cfa-017225d376be.json} (59%) create mode 100644 mock/mappings/api_addresses_woelupqxvn-70360ef8-8e21-4d0e-b969-6b0e8afb2939.json rename mock/mappings/{addresses_djekumglnx-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json => api_addresses_woelupqxvn-936a48ca-4bb3-4634-84d9-539648a583c7.json} (59%) create mode 100644 mock/mappings/api_addresses_woelupqxvn-a85567e9-ad39-43a4-ab82-7806ea654d4f.json create mode 100644 mock/mappings/api_addresses_woelupqxvn-bbe2e659-5181-4431-953e-721619f1d090.json rename mock/mappings/{adyen_gateways-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json => api_adyen_gateways-a6345dae-6239-4745-bc14-0c79b237e494.json} (61%) rename mock/mappings/{adyen_gateways-1951ffa5-fb14-4e22-960f-072d26f88ab8.json => api_adyen_gateways-b1406909-5dee-4dd1-b612-37785b2fd2d1.json} (61%) rename mock/mappings/{addresses_bazyuqxgqj-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json => api_adyen_gateways_bxzlvszgyj-40a880b4-07c2-4024-baa8-0690ca3e1c1d.json} (61%) rename mock/mappings/{adyen_gateways_pkaqrsdyzk-023161d7-1588-4ac2-b760-2fd7797bf189.json => api_adyen_gateways_bxzlvszgyj-6b4c973f-93af-41e2-873c-9899a3f4498b.json} (51%) rename mock/mappings/{inventory_return_locations_vlkzeirgrv-46f79876-f8dd-4de2-a912-d0f3098144e9.json => api_adyen_gateways_bxzlvszgyj-80fb2e7b-c7c1-43c3-a2b9-04b487ce58ca.json} (58%) create mode 100644 mock/mappings/api_adyen_gateways_bxzlvszgyj-ae58577d-fca0-4621-becc-5b7128ef10f2.json create mode 100644 mock/mappings/api_adyen_gateways_bxzlvszgyj-c1b43eb5-36b9-406b-b094-38dba7acf284.json rename mock/mappings/{adyen_gateways_nknmksokbj-638ff192-a608-4203-9d87-f959b656ce38.json => api_adyen_gateways_wjqgrspznx-00347543-4e00-4302-8ec7-c9f406fd3def.json} (51%) create mode 100644 mock/mappings/api_adyen_gateways_wjqgrspznx-0d9a9551-ba12-4fb3-8fd3-ff957b069f0c.json rename mock/mappings/{adyen_gateways_nknmksokbj-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json => api_adyen_gateways_wjqgrspznx-79bdec12-7dd7-4901-a4ed-d30b2c46e83e.json} (57%) rename mock/mappings/{stripe_gateways_mjrmbswxyv-81fb0ed1-62d8-44f6-ac98-13106b51684b.json => api_adyen_gateways_wjqgrspznx-b43c7d2d-0f65-43bc-83a0-e704ab925045.json} (61%) create mode 100644 mock/mappings/api_adyen_gateways_wjqgrspznx-cc8ac6aa-d2a0-435d-a0c5-284f28b0753d.json rename mock/mappings/{price_lists_nlnwecrekb-74b55a1d-12a3-43f8-b165-257430af426a.json => api_adyen_gateways_wjqgrspznx-e11a37a8-d3ef-4e93-ba10-fab3d733a5ef.json} (58%) rename mock/mappings/{bing_geocoders-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json => api_bing_geocoders-de06e81e-c047-4034-be78-741ff496490e.json} (54%) rename mock/mappings/{bing_geocoders_lxkgysqxbx-735d2578-1567-4bc4-ba9b-0d4f036a36be.json => api_bing_geocoders_agbwkszdme-04fafff7-d476-4b4e-b346-da5cf208c72f.json} (64%) create mode 100644 mock/mappings/api_bing_geocoders_agbwkszdme-0a1eecf4-026f-487a-9471-1cd2ff0ede9f.json rename mock/mappings/{bing_geocoders_lxkgysqxbx-16371e28-1401-4ac7-a81c-a0988cb4b54d.json => api_bing_geocoders_agbwkszdme-3a36bdd0-9d51-4121-9fe1-f4a117185edf.json} (57%) rename mock/mappings/{bing_geocoders_lxkgysqxbx-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json => api_bing_geocoders_agbwkszdme-9abc1516-c65f-4d8f-9658-60259615af5f.json} (58%) create mode 100644 mock/mappings/api_bing_geocoders_agbwkszdme-a9596e5d-7221-4e58-b593-03883c996f94.json create mode 100644 mock/mappings/api_bing_geocoders_agbwkszdme-e09e507b-5dd0-4dc7-a031-e2892401c0f3.json rename mock/mappings/{braintree_gateways-18b1fcc0-7c37-4d6d-93a3-855411622e62.json => api_braintree_gateways-47534f05-082a-425d-bfae-74ae0302cd3f.json} (56%) create mode 100644 mock/mappings/api_braintree_gateways_rjplwsmxrj-2b2059e5-18c4-4b0d-b4e4-385443c792cd.json rename mock/mappings/{braintree_gateways_dkmlxsnjnj-52e93e92-527d-4cb6-824c-6713dd08147c.json => api_braintree_gateways_rjplwsmxrj-50736e60-619a-40e2-84b3-64eb18858032.json} (58%) create mode 100644 mock/mappings/api_braintree_gateways_rjplwsmxrj-9f42c20a-463f-48bc-b754-1a25a0b74e69.json rename mock/mappings/{braintree_gateways_dkmlxsnjnj-83e3238b-d012-4526-9104-401fcaafd2b1.json => api_braintree_gateways_rjplwsmxrj-a443bc4f-9064-490f-875b-4eb88c906346.json} (60%) create mode 100644 mock/mappings/api_braintree_gateways_rjplwsmxrj-bc6e0343-6dc2-4011-855c-61a85dedd97c.json create mode 100644 mock/mappings/api_braintree_gateways_rjplwsmxrj-e3456f0a-d0ff-44cd-b9c4-4a90c6d6fc9a.json rename mock/mappings/{customer_groups-7014a1ce-5d68-4649-a5e4-3e4476be520a.json => api_customer_groups-aaf8ea4e-4d46-49c8-af22-7a38bc6cf419.json} (56%) rename mock/mappings/{paypal_gateways_jklbysepav-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json => api_customer_groups_odjmwhjarp-3dcdc8a6-5c89-43ab-9c9d-adf3cb167924.json} (61%) rename mock/mappings/{customer_groups_ypvbrhpgjp-50fb8902-6164-491e-b20f-1e5d894cd652.json => api_customer_groups_odjmwhjarp-8a7bdd8f-c6f7-4f18-9f7e-8f249eaa10b8.json} (58%) create mode 100644 mock/mappings/api_customer_groups_odjmwhjarp-90434a71-3988-4fe4-b1dd-73146c537929.json rename mock/mappings/{customer_groups_ypvbrhpgjp-e2e8478d-ac07-493a-868d-8a48a521e561.json => api_customer_groups_odjmwhjarp-9be29ccc-b90b-4884-b178-5c9fa0480992.json} (51%) create mode 100644 mock/mappings/api_customer_groups_odjmwhjarp-d4855bb6-6c1e-4bba-9e68-3dd0fa24dae2.json create mode 100644 mock/mappings/api_customer_groups_odjmwhjarp-fe5b5e18-da72-4bc5-bb1c-2fb35d71cdfc.json rename mock/mappings/{delivery_lead_times-7c0e6478-4d03-47c4-ae11-70119f779b4b.json => api_delivery_lead_times-591bd954-711c-4f30-ba87-d08b365ad414.json} (53%) create mode 100644 mock/mappings/api_delivery_lead_times_xonayfdvrp-1b1489fe-f827-40a8-8b87-78212f3d1f96.json create mode 100644 mock/mappings/api_delivery_lead_times_xonayfdvrp-318fd728-db1b-4353-835c-63ab416a4ba0.json create mode 100644 mock/mappings/api_delivery_lead_times_xonayfdvrp-a87981ff-97d8-4958-90ce-21d9fe78bce1.json create mode 100644 mock/mappings/api_delivery_lead_times_xonayfdvrp-c5efd68b-ffca-43e5-8b7c-ad2d3b40c505.json rename mock/mappings/{stock_locations_rneebuyjln-29a47602-f959-423b-8abd-729a4890d3e8.json => api_delivery_lead_times_xonayfdvrp-cb85cec2-c7d9-4518-beaa-ad5517b0f1cd.json} (54%) rename mock/mappings/{delivery_lead_times_nogemfnlrx-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json => api_delivery_lead_times_xonayfdvrp-fce4b0a9-0b19-4716-b619-66483932d522.json} (58%) rename mock/mappings/{external_gateways-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json => api_external_gateways-9742549e-2a66-4671-8e03-ecadf47adf49.json} (59%) rename mock/mappings/{external_gateways_nxmoxsbbgj-52d84087-7ffc-4083-9714-812daa9aa817.json => api_external_gateways_exqbrsrbjv-265386a5-4c5c-48e5-9064-eead7ff59cea.json} (50%) rename mock/mappings/{external_gateways_nxmoxsbbgj-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json => api_external_gateways_exqbrsrbjv-68930ed0-f854-441c-b719-0f149ddff095.json} (61%) rename mock/mappings/{external_gateways_nxmoxsbbgj-176afc29-2c80-4871-bb2f-01cd533b81e2.json => api_external_gateways_exqbrsrbjv-6a80449f-20f9-42c7-8bc1-bbe182d6bcc8.json} (55%) rename mock/mappings/{merchants_dbdevhrvam-affb452e-c3ea-4e41-804b-b574ac90ad8a.json => api_external_gateways_exqbrsrbjv-708950f8-7b81-48b7-a589-be6c2e01c5f7.json} (58%) create mode 100644 mock/mappings/api_external_gateways_exqbrsrbjv-835386b4-6520-46fe-9f84-9dc839c716b7.json rename mock/mappings/{external_gateways_nxmoxsbbgj-660f7e8d-5dfc-4311-92df-246b274ca44e.json => api_external_gateways_exqbrsrbjv-9d31a211-de57-46e3-b20f-f59ab337eedd.json} (58%) rename mock/mappings/{external_gateways_nxmoxsbbgj-5a8571ce-677f-4668-a3b4-9257076280e0.json => api_external_gateways_exqbrsrbjv-9d39fa6a-3b69-450f-bcd6-f44b42c963b0.json} (52%) rename mock/mappings/{external_gateways_nxmoxsbbgj-aa452eed-2253-45f2-a26c-575a0bc98e8e.json => api_external_gateways_exqbrsrbjv-de159f26-5b28-48a5-9881-3cefaf718463.json} (50%) create mode 100644 mock/mappings/api_external_gateways_exqbrsrbjv-f4b07e7a-05ff-4728-af31-a3f1aa7e3785.json rename mock/mappings/{external_tax_calculators-a002e74d-4717-48c1-a39a-98bc639b8f0a.json => api_external_tax_calculators-46147416-a6fb-4afe-be07-71a2d0398029.json} (55%) rename mock/mappings/{external_tax_calculators-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json => api_external_tax_calculators-b6a0f140-7ec9-40fd-b5fa-8903a7ac991b.json} (55%) create mode 100644 mock/mappings/api_external_tax_calculators_evklotwdwq-047afc93-a809-44fe-83eb-bb20089cc0a7.json create mode 100644 mock/mappings/api_external_tax_calculators_evklotwdwq-23f8ad61-f84d-483c-9511-48aec3bebe77.json rename mock/mappings/{external_tax_calculators_jnrqltraly-d313976b-5cbb-4248-936e-fb2378ed5218.json => api_external_tax_calculators_evklotwdwq-78ba2919-2332-4317-a5d8-42689269fb95.json} (56%) create mode 100644 mock/mappings/api_external_tax_calculators_evklotwdwq-7a2eea67-234b-493d-9626-398622a93126.json rename mock/mappings/{external_tax_calculators_jnrqltraly-ac23b896-4758-494d-ad8c-eb85959da17b.json => api_external_tax_calculators_evklotwdwq-9d73f43c-774a-4fff-b11c-3250376e2995.json} (54%) rename mock/mappings/{external_tax_calculators_jnrqltraly-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json => api_external_tax_calculators_evklotwdwq-b8a609ed-b568-426c-bc20-ea12b67773ad.json} (62%) rename mock/mappings/{addresses_boelupqapl-62c20dd8-2870-4417-b596-4fb176cfb377.json => api_external_tax_calculators_ynlrjtwjoq-26f74a1e-db5a-40a5-97ae-8c12dc9ea3ae.json} (57%) create mode 100644 mock/mappings/api_external_tax_calculators_ynlrjtwjoq-43d62826-bb9f-44dc-b979-28262187734d.json create mode 100644 mock/mappings/api_external_tax_calculators_ynlrjtwjoq-72bc835f-4e0a-47f3-ae8d-e774cef763ba.json create mode 100644 mock/mappings/api_external_tax_calculators_ynlrjtwjoq-eedb1dde-703d-4bd8-aea8-62e6437d94a3.json rename mock/mappings/{google_geocoders-eda82c55-8c77-481e-83bd-693066fc8c94.json => api_google_geocoders-4a643221-b273-4a9a-9a74-773708ab9602.json} (54%) create mode 100644 mock/mappings/api_google_geocoders_agqqasarwg-15cc7b98-7e82-42ed-976c-fc073b4a29f4.json create mode 100644 mock/mappings/api_google_geocoders_agqqasarwg-729f652e-1798-4446-9032-cd19c9561f67.json create mode 100644 mock/mappings/api_google_geocoders_agqqasarwg-b45f3555-fd65-4dab-81b7-6b883af09ee8.json rename mock/mappings/{google_geocoders_mgwalsandn-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json => api_google_geocoders_agqqasarwg-c36faee9-a080-4e26-8fe5-bc1a79e0d1ea.json} (59%) rename mock/mappings/{google_geocoders_mgwalsandn-73583ba6-0a14-4d3d-8b4a-f64b83668615.json => api_google_geocoders_agqqasarwg-f39c30e5-7308-4d62-a45a-ec0e11726748.json} (61%) rename mock/mappings/{shipping_categories_enbljfzglw-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json => api_google_geocoders_agqqasarwg-f3f1c96d-f9bd-4858-9546-e297b823d0f4.json} (55%) rename mock/mappings/{inventory_models-6175c756-71e5-4f30-ab47-98420a36b6d8.json => api_inventory_models-262b2fc6-8694-4e51-bff6-d30ac1e70aab.json} (59%) rename mock/mappings/{inventory_models-6073c1a5-bf59-4484-a253-387724986156.json => api_inventory_models-3697be27-132b-45f5-a302-1ba53eb242c0.json} (60%) rename mock/mappings/{inventory_models-d2d297e5-4ec7-4901-886b-a7c86f530e32.json => api_inventory_models-3abc94d3-d5c2-4951-aa30-98f3b49afa56.json} (58%) rename mock/mappings/{inventory_models-5993645f-6ab5-4af3-9411-69228ea8b0bd.json => api_inventory_models-6a046475-67d9-4a33-b0e7-c25a1e4751be.json} (55%) rename mock/mappings/{delivery_lead_times_nogemfnlrx-d744ba63-05b5-45de-aa94-8bf2762c9212.json => api_inventory_models_dzngysxrva-15ad8440-8a77-4b8c-976b-7735a92e8271.json} (58%) rename mock/mappings/{inventory_models_xlazqspzez-880ec645-9481-4237-8f39-298d9ed19e9c.json => api_inventory_models_dzngysxrva-a0d62e55-7f6c-4be9-ae38-26fe9e974772.json} (51%) rename mock/mappings/{inventory_models_xlazqspzez-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json => api_inventory_models_dzngysxrva-dcb68f44-2ece-497b-a383-b232c79955af.json} (50%) rename mock/mappings/{inventory_models_xlazqspzez-1f5648fe-e885-4d15-b6b5-308b50a7f282.json => api_inventory_models_dzngysxrva-ffc59cca-c45c-4c07-be58-44fe582d71a6.json} (52%) rename mock/mappings/{inventory_models_lwlwdsayma-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json => api_inventory_models_jazqxsymmz-3d32c778-304c-45c1-beb1-9eac6de0ad10.json} (53%) rename mock/mappings/{inventory_models_lwlwdsayma-b51fc668-2cac-45d8-ab3c-8bec37515adc.json => api_inventory_models_jazqxsymmz-7b50a9ff-2984-4227-b99d-26cfcf2796eb.json} (52%) rename mock/mappings/{addresses_bzkoumknnk-869313a5-5279-4e94-b7c4-c7c01fdf2161.json => api_inventory_models_jazqxsymmz-80df76e2-c697-422e-b6d6-eb5d6f0c78b4.json} (58%) rename mock/mappings/{inventory_models_lwlwdsayma-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json => api_inventory_models_jazqxsymmz-a337840c-8d4b-4329-bea5-550b0b313383.json} (53%) rename mock/mappings/{inventory_models_xwqxqspqea-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json => api_inventory_models_kapovsbryz-202854c0-821c-4f5e-99de-0ad10f7bdc14.json} (51%) create mode 100644 mock/mappings/api_inventory_models_kapovsbryz-330e706e-3c55-4ffc-8a00-13f2a1132f3e.json rename mock/mappings/{inventory_models_xwqxqspqea-c42cae13-2afc-47ef-baab-74f4549a0c91.json => api_inventory_models_kapovsbryz-6c6aa7a0-7dc3-4f3a-bfc5-9f14921512a0.json} (59%) create mode 100644 mock/mappings/api_inventory_models_kapovsbryz-6d0d3efd-3d97-4cb2-86ab-b8b438bd0b1c.json rename mock/mappings/{inventory_models_xwqxqspqea-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json => api_inventory_models_kapovsbryz-865aa76b-056f-49b1-b3bc-e1124f402b3a.json} (58%) rename mock/mappings/{inventory_models_xwqxqspqea-da2e5490-4c78-458d-80c2-31b6cd168c05.json => api_inventory_models_kapovsbryz-ed6d04a7-b648-4730-856a-2f717f76598d.json} (52%) create mode 100644 mock/mappings/api_inventory_models_kzxevsyrea-319f898f-891f-4fdd-9b92-f10afb1a0c07.json create mode 100644 mock/mappings/api_inventory_models_kzxevsyrea-4549adb1-55f9-4790-8e75-d14bc8d81b14.json create mode 100644 mock/mappings/api_inventory_models_kzxevsyrea-cf18d211-8c1a-4e15-97d9-a7112dd7082c.json create mode 100644 mock/mappings/api_inventory_models_kzxevsyrea-dfdeb33b-64d8-40ca-a109-97997117f211.json rename mock/mappings/{inventory_return_locations-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json => api_inventory_return_locations-b2176814-a4fe-45ee-a466-99b78d68d82f.json} (50%) create mode 100644 mock/mappings/api_inventory_return_locations_vzxpwiyzmz-208b0f9c-7cd4-4033-8d3a-0fbaac80df07.json create mode 100644 mock/mappings/api_inventory_return_locations_vzxpwiyzmz-756da867-07cb-48e0-aa15-397f061204cf.json create mode 100644 mock/mappings/api_inventory_return_locations_vzxpwiyzmz-882bedd5-7970-486e-be8b-f6422fade160.json create mode 100644 mock/mappings/api_inventory_return_locations_vzxpwiyzmz-8aa5f4ef-a793-4844-b349-ff5d412d61be.json create mode 100644 mock/mappings/api_inventory_return_locations_vzxpwiyzmz-d63d6b22-dc61-4eef-9e7a-3863e1da2c73.json create mode 100644 mock/mappings/api_inventory_return_locations_vzxpwiyzmz-e6825df4-4ebb-421d-946f-16611654a356.json rename mock/mappings/{inventory_stock_locations-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json => api_inventory_stock_locations-b1e48f78-a1ef-45d2-b37b-5371f4d3ffbb.json} (55%) rename mock/mappings/{inventory_stock_locations_pwmewsngnw-ae1807ca-b068-40c8-bed1-2f65899c9d15.json => api_inventory_stock_locations_ljolosndyw-45450872-471a-4dd3-bfd4-3a1d6c37b7ab.json} (52%) rename mock/mappings/{external_tax_calculators_rvmjltrxpq-d4155d36-7cfa-4910-811c-62b15611e606.json => api_inventory_stock_locations_ljolosndyw-519cef76-f69c-4cc6-8703-d5ff0c685ff3.json} (54%) create mode 100644 mock/mappings/api_inventory_stock_locations_ljolosndyw-8bf9dc41-a356-4c67-af09-dd15c31a3f3e.json create mode 100644 mock/mappings/api_inventory_stock_locations_ljolosndyw-9a6b13be-7b2e-47ab-b888-9e44b2133d8a.json create mode 100644 mock/mappings/api_inventory_stock_locations_ljolosndyw-cc6bf357-4cd0-4963-a5f4-35fe8d526d6b.json rename mock/mappings/{inventory_stock_locations_pwmewsngnw-c73118b0-c1a9-48d7-8ee3-15951416b76f.json => api_inventory_stock_locations_ljolosndyw-e388e0e7-55bf-4b5c-8713-fb2895388611.json} (53%) rename mock/mappings/{klarna_gateways-8c90af06-c170-4a30-9b30-c936f52612f3.json => api_klarna_gateways-ac49c015-24e3-42de-972f-eb1a98240a84.json} (57%) rename mock/mappings/{klarna_gateways_ejjwlsjapk-590ca422-50b6-427e-a292-fbb91ca4d126.json => api_klarna_gateways_wkwnjszpmj-3cecdd12-9c01-41b5-9f2e-22601c94dcf1.json} (55%) create mode 100644 mock/mappings/api_klarna_gateways_wkwnjszpmj-3ff51e8c-9393-4994-b0b5-43ea8d0f3294.json rename mock/mappings/{klarna_gateways_ejjwlsjapk-6df381d7-cf5b-483b-8187-029fd14f8be0.json => api_klarna_gateways_wkwnjszpmj-84958eaf-2cda-4df3-858a-29add206fb36.json} (61%) create mode 100644 mock/mappings/api_klarna_gateways_wkwnjszpmj-849d60d3-7353-484c-9aa9-c4d9ff67003f.json rename mock/mappings/{klarna_gateways_ejjwlsjapk-f96b0cde-70f8-42ad-93e4-558dc0925d35.json => api_klarna_gateways_wkwnjszpmj-ae7ca76a-24e5-407e-969f-3e91291c01dc.json} (52%) create mode 100644 mock/mappings/api_klarna_gateways_wkwnjszpmj-bd0bff65-8457-480a-a623-43ca476de41e.json rename mock/mappings/{manual_gateways-d3622803-a267-474a-8f8b-5b9268069b0e.json => api_manual_gateways-a1d76a8f-5189-4c1f-a62a-3387c28b779d.json} (54%) rename mock/mappings/{manual_gateways_oxoaeswmwj-cc81a913-7a1e-4e65-8185-6d74dcefc615.json => api_manual_gateways_ajyqyszpoj-080d7dfe-110a-4f89-a1e0-9f2824f100e4.json} (52%) create mode 100644 mock/mappings/api_manual_gateways_ajyqyszpoj-20ce7e16-888a-4e50-8408-cd6721256a60.json create mode 100644 mock/mappings/api_manual_gateways_ajyqyszpoj-3610014e-6ad4-4cec-8f3b-a864a92d0086.json create mode 100644 mock/mappings/api_manual_gateways_ajyqyszpoj-528b5848-39dd-43dd-b293-dc6b1fcaba43.json create mode 100644 mock/mappings/api_manual_gateways_ajyqyszpoj-5b984139-e3f3-47a2-aeb6-55d854870a45.json create mode 100644 mock/mappings/api_manual_gateways_ajyqyszpoj-d9100517-a8a4-40ab-9f1c-fb200d6c7a67.json rename mock/mappings/{manual_tax_calculators-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json => api_manual_tax_calculators-d33a5a3d-6eb2-4f2f-88bf-6804e2c3ac34.json} (54%) create mode 100644 mock/mappings/api_manual_tax_calculators_byxxmtpbky-13b5fea9-82f8-4c8a-989b-8f2d0c02591e.json rename mock/mappings/{manual_tax_calculators_evvrmtjxav-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json => api_manual_tax_calculators_byxxmtpbky-1a0181cf-9509-4d0d-9b5e-08ec1734d421.json} (60%) rename mock/mappings/{manual_tax_calculators_evvrmtjxav-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json => api_manual_tax_calculators_byxxmtpbky-3aa83e0a-23cf-4379-867a-01111f38a2ca.json} (54%) create mode 100644 mock/mappings/api_manual_tax_calculators_byxxmtpbky-8f7b3836-82e0-4c1b-b66f-06817f5f38b5.json create mode 100644 mock/mappings/api_manual_tax_calculators_byxxmtpbky-916a503d-4981-4f2f-a7a1-988d13a65c7d.json create mode 100644 mock/mappings/api_manual_tax_calculators_byxxmtpbky-9df420e0-46b9-486e-9164-e8692cafa142.json create mode 100644 mock/mappings/api_markets-1a87d54e-5d2d-4bf8-b762-1813dff8f641.json create mode 100644 mock/mappings/api_markets_xjbdyhlyol-2329486c-1492-47cc-a608-519ef1c30e58.json create mode 100644 mock/mappings/api_markets_xjbdyhlyol-37c4e23c-d482-4ca8-82c8-84b556829529.json rename mock/mappings/{markets_rjepzhzyro-db4cca06-bf19-4c77-9816-47f41c996816.json => api_markets_xjbdyhlyol-38f45706-9445-49e4-a98e-4914a336f787.json} (60%) create mode 100644 mock/mappings/api_markets_xjbdyhlyol-5bf45d4e-7d5d-41ac-962c-e41def54e8c0.json rename mock/mappings/{markets_rjepzhzyro-ec677699-f440-47be-b662-b24e3ad09fdb.json => api_markets_xjbdyhlyol-ce01078a-2202-4323-996d-f07551474cbb.json} (56%) create mode 100644 mock/mappings/api_markets_xjbdyhlyol-e61d926c-53db-40b4-87a3-27ca6fd5b2db.json rename mock/mappings/{merchants-f862cb11-79fb-4849-8dc5-ab53304cfccc.json => api_merchants-5a60eda9-4898-4442-89ca-92945b3f8bec.json} (52%) rename mock/mappings/{merchants-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json => api_merchants-beb1d70c-1b62-4b8e-a075-090681369210.json} (51%) create mode 100644 mock/mappings/api_merchants_mnykrhxvvb-0dcc7e2c-e4ed-4410-b6be-4956dffb54ba.json rename mock/mappings/{merchants_vxzdbhveom-16f65432-4b51-4f33-9e22-900c95d15ba4.json => api_merchants_mnykrhxvvb-23a1ad3c-d455-443b-9925-d8eac270a146.json} (59%) create mode 100644 mock/mappings/api_merchants_mnykrhxvvb-a2cd0f42-3782-481d-bf2e-2d362a319668.json create mode 100644 mock/mappings/api_merchants_mnykrhxvvb-a3245254-223e-47e9-99cd-5e5fc2e19bb6.json rename mock/mappings/{merchants_vxzdbhveom-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json => api_merchants_mnykrhxvvb-c921784a-4877-4ab2-b25e-35ebb612969e.json} (59%) create mode 100644 mock/mappings/api_merchants_mnykrhxvvb-ee2e07fe-8723-4d40-8da3-bf3a060d051d.json rename mock/mappings/{addresses_bazyuqxgqj-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json => api_merchants_qnzzlhqmpn-6e25a9cc-e70b-429c-afd9-30209e6c21a1.json} (59%) create mode 100644 mock/mappings/api_merchants_qnzzlhqmpn-a6a362c8-fef1-4a6d-9002-7bf34badbf8a.json create mode 100644 mock/mappings/api_merchants_qnzzlhqmpn-b10444ed-626b-4800-b8bc-2c7f6ad30f7f.json create mode 100644 mock/mappings/api_merchants_qnzzlhqmpn-e8517a23-a2b8-450b-9a6e-92cc383d1f1c.json rename mock/mappings/{payment_methods-d1c94c81-7b2a-4385-b232-7b37c265255d.json => api_payment_methods-e12b00e4-7260-414e-981d-253f57de4613.json} (58%) create mode 100644 mock/mappings/api_payment_methods_veawjsboak-0149dfb6-27b5-4b0e-925c-b03038017ff3.json create mode 100644 mock/mappings/api_payment_methods_veawjsboak-0946bf88-ae7c-4c70-b703-637bf627b483.json rename mock/mappings/{payment_methods_pmwzdsrdde-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json => api_payment_methods_veawjsboak-43937e1d-9ba4-4058-9819-026de825677e.json} (50%) create mode 100644 mock/mappings/api_payment_methods_veawjsboak-56707e4f-c2d5-4b35-8ec6-c38a12fcd5c3.json rename mock/mappings/{adyen_gateways_pkaqrsdyzk-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json => api_payment_methods_veawjsboak-d481314b-8c88-49dc-bf54-1683db50ee3b.json} (63%) rename mock/mappings/{payment_methods_pmwzdsrdde-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json => api_payment_methods_veawjsboak-f8cfc944-d579-4123-8b71-a4a69c5dcc66.json} (54%) rename mock/mappings/{paypal_gateways-55519fa8-16e1-419b-833a-993c8be014e3.json => api_paypal_gateways-bd3d7112-4a1b-4513-9ac6-664a8d3c0f3f.json} (55%) create mode 100644 mock/mappings/api_paypal_gateways_rxemeszgnx-00e3d720-2c65-4e46-be20-a59278e06e38.json rename mock/mappings/{paypal_gateways_jklbysepav-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json => api_paypal_gateways_rxemeszgnx-61d08a4b-91eb-46a6-b193-fb57456724c5.json} (55%) create mode 100644 mock/mappings/api_paypal_gateways_rxemeszgnx-c39bb07f-cae8-4a84-826b-65994a40e6da.json rename mock/mappings/{paypal_gateways_jklbysepav-6e4c2502-405b-4635-951a-256ff31022aa.json => api_paypal_gateways_rxemeszgnx-c3d5bcc5-91d5-43bd-b688-ebbbbeec8a10.json} (52%) create mode 100644 mock/mappings/api_paypal_gateways_rxemeszgnx-d854aaf2-540b-4525-ae1d-db698f9944ff.json create mode 100644 mock/mappings/api_paypal_gateways_rxemeszgnx-efc97b91-1b8e-4bff-9ffc-15dcb6687c85.json rename mock/mappings/{manual_gateways_oxoaeswmwj-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json => api_paypal_gateways_rxemeszgnx-fe9692fa-1dc3-4167-a30c-f2d54acfb6b6.json} (61%) rename mock/mappings/{price_lists-f804d51d-1493-4cff-b644-4526ea147c43.json => api_price_lists-362f4706-48ca-4d19-90d4-2fd94d7dcfdf.json} (55%) rename mock/mappings/{price_lists-8192612f-1dd3-4b33-a3eb-4f548818daa6.json => api_price_lists-73e88280-cdf5-4240-86f2-d15eda52b0a6.json} (53%) create mode 100644 mock/mappings/api_price_lists_akyyacerek-0771d47e-51cf-48bf-85e6-8c185166dad6.json rename mock/mappings/{google_geocoders_mgwalsandn-efb838be-f6ca-438d-bf56-8aca2f9224e3.json => api_price_lists_akyyacerek-07f2829b-a203-4417-826e-c192362de4be.json} (59%) create mode 100644 mock/mappings/api_price_lists_akyyacerek-135d3438-8fc1-4d66-9f61-a33d8d98e743.json create mode 100644 mock/mappings/api_price_lists_akyyacerek-b8de358a-25fd-4198-8192-f5b48771fd59.json rename mock/mappings/{inventory_models_xwqxqspqea-64440d62-8ad5-48d6-80f8-fbff121a2128.json => api_price_lists_xlqjnczxql-15d29cd9-1a91-45b7-8868-9c85d89a8a45.json} (59%) create mode 100644 mock/mappings/api_price_lists_xlqjnczxql-3003b543-2c46-421c-94a9-20d8bcbf4684.json rename mock/mappings/{price_lists_nlnwecrekb-76d1145b-ed14-47c8-bbff-114aab364c8b.json => api_price_lists_xlqjnczxql-64cc9921-6967-45c5-8a07-a368dc104005.json} (60%) create mode 100644 mock/mappings/api_price_lists_xlqjnczxql-bcbe73fd-1585-4bab-8c01-bfc30656e825.json rename mock/mappings/{price_lists_nlnwecrekb-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json => api_price_lists_xlqjnczxql-c35e228e-96c6-4085-afe1-eab88c66e176.json} (50%) rename mock/mappings/{price_lists_nlnwecrekb-854ff045-a298-4574-9d2b-553cfe2cc4c4.json => api_price_lists_xlqjnczxql-caa119bf-db37-488b-b6e1-2526efda9dcf.json} (50%) rename mock/mappings/{shipping_categories-3a89b7e7-372d-4a02-95da-f025168f7c4a.json => api_shipping_categories-048995e3-f502-49d8-a4b7-96071b912a3d.json} (56%) rename mock/mappings/{shipping_zones_ekvlvtjyxq-0da83c66-d888-4134-a3f1-89c62a57657f.json => api_shipping_categories_pwzqyfvnrn-2dcaaa21-dfdf-4dab-9f54-b5fbeb37377a.json} (58%) rename mock/mappings/{shipping_categories_enbljfzglw-10a04027-1d06-4136-a2c8-509f2fa915b7.json => api_shipping_categories_pwzqyfvnrn-488f8eef-4e1a-45ff-81a4-5cbacc930861.json} (53%) create mode 100644 mock/mappings/api_shipping_categories_pwzqyfvnrn-835add12-0700-4885-b687-f371e75f6a8f.json rename mock/mappings/{shipping_categories_enbljfzglw-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json => api_shipping_categories_pwzqyfvnrn-995cda40-c923-4a9b-b036-95ec07636a27.json} (60%) create mode 100644 mock/mappings/api_shipping_categories_pwzqyfvnrn-bd7dfe78-88ee-424f-87e1-7848d3d1e0dd.json create mode 100644 mock/mappings/api_shipping_categories_pwzqyfvnrn-dd5c3ce9-e489-49af-824f-ee0c5cc8d1d2.json rename mock/mappings/{shipping_methods-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json => api_shipping_methods-0f14e125-f390-4919-b08a-50667e5fece0.json} (60%) rename mock/mappings/{shipping_methods-15d31379-0a42-4667-bcf5-7c90563c3028.json => api_shipping_methods-2a0768b1-55d4-4921-96f3-096866dae886.json} (58%) rename mock/mappings/{shipping_methods_mvjqofzjyn-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json => api_shipping_methods_jorxbfarpv-045694e2-fc86-4ffa-b85e-51fc7eb7371f.json} (55%) rename mock/mappings/{shipping_methods_mvjqofzjyn-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json => api_shipping_methods_jorxbfarpv-34cec9a3-a9af-41fd-b623-b12e5520df23.json} (53%) rename mock/mappings/{shipping_methods_mvjqofzjyn-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json => api_shipping_methods_jorxbfarpv-602d7c7f-60c4-446c-94e7-d4df8a0a06d2.json} (58%) rename mock/mappings/{shipping_methods_mvjqofzjyn-7f30fb03-a0ef-466b-aef4-33139aea7227.json => api_shipping_methods_jorxbfarpv-a761793d-029e-4d31-a275-a27366f6048a.json} (61%) rename mock/mappings/{shipping_methods_mvjqofzjyn-4dfed22a-45de-4d63-bc3d-26c39407b01e.json => api_shipping_methods_jorxbfarpv-b7b95089-2033-4bf0-92b2-d835bbc2740b.json} (55%) rename mock/mappings/{shipping_methods_mvjqofzjyn-14b8db65-0273-4b45-a670-f4e9a21b5666.json => api_shipping_methods_jorxbfarpv-d6167c8e-c5aa-4651-a63b-7cb7cdfcc7dc.json} (53%) rename mock/mappings/{shipping_methods_avqkgfqjjo-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json => api_shipping_methods_yepkyfrnav-36655318-fde9-4612-9f6f-4248c622dd45.json} (61%) create mode 100644 mock/mappings/api_shipping_methods_yepkyfrnav-4dfbd49c-4731-4b2b-b55e-70b3d3936ab0.json rename mock/mappings/{shipping_methods_avqkgfqjjo-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json => api_shipping_methods_yepkyfrnav-6aaa15b9-4c9c-4382-bba4-a8449021196f.json} (58%) rename mock/mappings/{shipping_methods_avqkgfqjjo-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json => api_shipping_methods_yepkyfrnav-89e93989-fe01-4da3-a0d8-50fbbb9792e5.json} (50%) rename mock/mappings/{shipping_methods_avqkgfqjjo-7a7184ed-15bd-4613-8653-894aee50fd3d.json => api_shipping_methods_yepkyfrnav-9436309e-4180-4902-beb9-34fe18d219b5.json} (51%) rename mock/mappings/{shipping_methods_avqkgfqjjo-12145955-1d6e-4c70-b364-893a13f3b57e.json => api_shipping_methods_yepkyfrnav-cda8013f-a82c-48aa-a447-95a98d07898c.json} (56%) rename mock/mappings/{shipping_zones-d95c6987-72d9-4998-b692-833c165dbf9d.json => api_shipping_zones-228d4d36-9998-4943-8da1-a9b9f1e4c0ab.json} (62%) rename mock/mappings/{shipping_zones_ekvlvtjyxq-dfef547f-6604-45af-8e31-808c0a573b3c.json => api_shipping_zones_xkywytdpzq-0e32a0e1-f52d-424c-9e31-7d30ee909732.json} (64%) rename mock/mappings/{shipping_zones_ekvlvtjyxq-927fd378-cd26-4238-b127-951ff99290d5.json => api_shipping_zones_xkywytdpzq-11e6cca7-52ab-4a0f-b344-c7a73b21272a.json} (50%) create mode 100644 mock/mappings/api_shipping_zones_xkywytdpzq-4715c2b9-0d9b-44ca-8c07-54a7e9ee3490.json rename mock/mappings/{shipping_zones_ekvlvtjyxq-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json => api_shipping_zones_xkywytdpzq-8425252b-6f56-406e-a56c-d75d02d3e61b.json} (60%) rename mock/mappings/{webhooks_epqzocjdyk-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json => api_shipping_zones_xkywytdpzq-9a9da595-08d7-49b7-b8f0-f36a4a319c04.json} (59%) rename mock/mappings/{shipping_zones_ekvlvtjyxq-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json => api_shipping_zones_xkywytdpzq-fcf6f0d8-6e8d-427a-87b9-18f0467b2b46.json} (50%) rename mock/mappings/{stock_locations-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json => api_stock_locations-2f96002d-6ec8-42e5-975d-15f8fc050f4c.json} (51%) rename mock/mappings/{stock_locations-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json => api_stock_locations-9f7af7ea-88a8-49c9-b8d9-f21f33cb9793.json} (50%) rename mock/mappings/{stock_locations-f94a6c29-5446-4fc7-9857-7d0178580e68.json => api_stock_locations-a5498580-3784-4263-a15b-da71c1d774ed.json} (53%) rename mock/mappings/{stock_locations-d730271e-e618-4dd8-af9e-edc244602dcb.json => api_stock_locations-c67cbf10-f907-481c-9b05-503558ab0854.json} (55%) rename mock/mappings/{inventory_models_lwlwdsayma-7bf60a76-a018-40eb-bb98-60a28abc28d1.json => api_stock_locations_bgoxpullwk-076e23d1-28f7-45ae-8016-73cc65541c1c.json} (62%) create mode 100644 mock/mappings/api_stock_locations_bgoxpullwk-16aea91e-0cd6-4d40-bd64-ce329ee25e9b.json create mode 100644 mock/mappings/api_stock_locations_bgoxpullwk-56230053-e3ed-49b6-a69a-de968ce09c6f.json create mode 100644 mock/mappings/api_stock_locations_bgoxpullwk-5787bb17-27cc-4de2-9da0-382fcc8d0ed7.json create mode 100644 mock/mappings/api_stock_locations_ekjpouwnan-08742d6b-93c2-4b26-b357-fa57c554b1e1.json create mode 100644 mock/mappings/api_stock_locations_ekjpouwnan-18733807-6d23-49f5-b73e-c9965e3ad87a.json create mode 100644 mock/mappings/api_stock_locations_ekjpouwnan-19ac9e67-93c4-4d7b-a230-25dd89e5c8a7.json rename mock/mappings/{stock_locations_ekbqqudzmg-bb16c65f-d84b-4655-808c-d51fd7ef956f.json => api_stock_locations_ekjpouwnan-bf437996-ec62-41fd-a1d0-1605d04de786.json} (55%) create mode 100644 mock/mappings/api_stock_locations_nnoyjuqoqk-3fb7c940-5bbe-44b5-9714-508966d0f984.json rename mock/mappings/{stock_locations_bkeequwyyk-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json => api_stock_locations_nnoyjuqoqk-51e9aea3-f03b-4b75-bc98-721747f91c4c.json} (58%) create mode 100644 mock/mappings/api_stock_locations_nnoyjuqoqk-6dd7e0bb-771d-456c-b79f-8b27c46f0475.json create mode 100644 mock/mappings/api_stock_locations_nnoyjuqoqk-ee512139-6a76-45b4-9d5f-e81ea1c1087d.json rename mock/mappings/{stock_locations_rneebuyjln-158cd75d-739d-4b7f-86d2-a519006a893c.json => api_stock_locations_xmxbxuomzg-16b440b3-2727-44a1-9374-c87c2878759d.json} (53%) create mode 100644 mock/mappings/api_stock_locations_xmxbxuomzg-2253ee09-b491-4124-84ca-cf60bf29a6eb.json rename mock/mappings/{stock_locations_rneebuyjln-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json => api_stock_locations_xmxbxuomzg-33c7cc16-5279-4640-a69a-2000427e5440.json} (64%) create mode 100644 mock/mappings/api_stock_locations_xmxbxuomzg-38e56a52-7a0d-4eff-aaa2-a0a4f3369813.json rename mock/mappings/{braintree_gateways_dkmlxsnjnj-ba50887e-11cc-4939-8438-1016d435b267.json => api_stock_locations_xmxbxuomzg-44c73591-5bc6-4986-b8dd-2297125acb34.json} (59%) create mode 100644 mock/mappings/api_stock_locations_xmxbxuomzg-f19d1249-8f00-40e6-8af5-0688583a2f12.json rename mock/mappings/{stripe_gateways-44d939ca-4a54-459e-901a-df3eae051476.json => api_stripe_gateways-6af970ec-1597-458c-b35b-44e3303f6477.json} (57%) rename mock/mappings/{stripe_gateways_mjrmbswxyv-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json => api_stripe_gateways_ljbaqsaezv-1acf4ae3-be5e-4f1a-8078-d3981c8372d9.json} (59%) create mode 100644 mock/mappings/api_stripe_gateways_ljbaqsaezv-1e4df003-5d94-49ff-a913-9a78306446a6.json create mode 100644 mock/mappings/api_stripe_gateways_ljbaqsaezv-79364ca4-0920-49b4-bab2-6faa41ff5f84.json create mode 100644 mock/mappings/api_stripe_gateways_ljbaqsaezv-85e15a08-9741-4994-834a-b51a58954c78.json rename mock/mappings/{stripe_gateways_mjrmbswxyv-e04d3158-431f-4d9b-b050-f5591cc7ccea.json => api_stripe_gateways_ljbaqsaezv-a4c81a4d-d8fa-4540-9256-36c96c65c988.json} (54%) create mode 100644 mock/mappings/api_stripe_gateways_ljbaqsaezv-b5519154-8e2e-467a-9b24-a6c165643f35.json rename mock/mappings/{taxjar_accounts-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json => api_taxjar_accounts-7c6e4e53-82aa-49c5-9960-859c2cbc51ba.json} (51%) rename mock/mappings/{taxjar_accounts_kyzeltzedq-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json => api_taxjar_accounts_jynpytlmlv-01ea972d-22b0-48cc-8778-45050ab00749.json} (52%) create mode 100644 mock/mappings/api_taxjar_accounts_jynpytlmlv-648b0de1-1655-42ce-a46f-4c425f39b573.json create mode 100644 mock/mappings/api_taxjar_accounts_jynpytlmlv-8510fb4d-1cc8-4e96-aec5-5cb92e8069b8.json rename mock/mappings/{taxjar_accounts_kyzeltzedq-215a324c-cf6a-44c1-8777-af57fa28a70f.json => api_taxjar_accounts_jynpytlmlv-9be0cc95-0bd4-4196-bed1-8be0ec35bfc2.json} (64%) rename mock/mappings/{paypal_gateways_jklbysepav-51c345dd-7ba8-444e-8737-e4f1a4bce845.json => api_taxjar_accounts_jynpytlmlv-a975d9b4-fcc2-43cf-b9ae-0d3f5f1b784f.json} (59%) create mode 100644 mock/mappings/api_taxjar_accounts_jynpytlmlv-bc1d51bd-3131-4589-aad6-df64197015b9.json rename mock/mappings/{webhooks-48ba9633-eb4f-4342-8cff-6821113f0bac.json => api_webhooks-088ac46b-31f5-48f6-91fc-bf2b678a008f.json} (56%) rename mock/mappings/{adyen_gateways_pkaqrsdyzk-7ef30764-8a25-46ee-a0d0-79f611d521cc.json => api_webhooks_mppvrcreod-0041d3ee-3515-4f04-95b8-11bfc58cecc9.json} (55%) create mode 100644 mock/mappings/api_webhooks_mppvrcreod-67b2c179-91b4-4eed-87ce-f7b7a63dfb27.json rename mock/mappings/{addresses_boelupqapl-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json => api_webhooks_mppvrcreod-77e4a178-eff7-496b-a38d-f36e1c5e76f8.json} (62%) create mode 100644 mock/mappings/api_webhooks_mppvrcreod-7a691042-5ad1-4245-b64c-5748bc8d9864.json create mode 100644 mock/mappings/api_webhooks_mppvrcreod-bd5de5ce-020a-4696-bb0e-e8fad95fadc8.json create mode 100644 mock/mappings/api_webhooks_mppvrcreod-c158d8cd-0066-4c4b-8ef4-db65ed478a8d.json rename mock/mappings/{webhooks_epqzocjdyk-a1fbb10d-de25-495d-bd9f-a57f24648559.json => api_webhooks_mppvrcreod-effc75de-360e-4c77-be65-1a5f4e893e7d.json} (57%) delete mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-465eed74-eb0b-43f9-8484-13c1b7f3c833.json delete mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-6a4a021e-845e-4059-ae6c-eeef7061e107.json delete mode 100644 mock/mappings/bing_geocoders_lxkgysqxbx-75081597-4c25-40a5-90e8-7f671ead5f6c.json delete mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json delete mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-0971fd9e-eb22-4c87-989e-cda5738d0858.json delete mode 100644 mock/mappings/braintree_gateways_dkmlxsnjnj-0d07ae32-151f-42f2-975f-3eeb1fceec35.json delete mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json delete mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-3c3d864a-6c42-4cfd-b366-3133054c42e9.json delete mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-75800631-5c7d-4848-abe3-65f861be3963.json delete mode 100644 mock/mappings/customer_groups_ypvbrhpgjp-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json delete mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-4229326a-6840-4aa1-888e-dd1567c701e0.json delete mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-7e9e1c7e-2540-46ed-abf1-144b867ce032.json delete mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-84fb75a5-98f7-4e10-bb40-71f33c455a94.json delete mode 100644 mock/mappings/delivery_lead_times_nogemfnlrx-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json delete mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-62023398-28ff-488f-9e24-c959cb5895af.json delete mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json delete mode 100644 mock/mappings/external_gateways_nxmoxsbbgj-d71df068-9300-4b57-a734-5271a334aaa5.json delete mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json delete mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-439da122-c274-46fb-8cc4-7931c4812e77.json delete mode 100644 mock/mappings/external_tax_calculators_jnrqltraly-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json delete mode 100644 mock/mappings/external_tax_calculators_rvmjltrxpq-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json delete mode 100644 mock/mappings/external_tax_calculators_rvmjltrxpq-18b75e7a-85d5-40c9-8341-082db0370dc5.json delete mode 100644 mock/mappings/external_tax_calculators_rvmjltrxpq-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json delete mode 100644 mock/mappings/google_geocoders_mgwalsandn-6a416c14-34f8-481f-a946-f08d106562b1.json delete mode 100644 mock/mappings/google_geocoders_mgwalsandn-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json delete mode 100644 mock/mappings/google_geocoders_mgwalsandn-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json delete mode 100644 mock/mappings/inventory_models_qwgbzsxopa-27a39738-cc62-44d6-b487-55759d0d8ce8.json delete mode 100644 mock/mappings/inventory_models_qwgbzsxopa-437793c9-5f9d-421d-9bc1-906882042d40.json delete mode 100644 mock/mappings/inventory_models_qwgbzsxopa-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json delete mode 100644 mock/mappings/inventory_models_qwgbzsxopa-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json delete mode 100644 mock/mappings/inventory_models_xlazqspzez-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json delete mode 100644 mock/mappings/inventory_models_xwqxqspqea-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json delete mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json delete mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-79755483-1d1a-434a-8e12-b5d131a81786.json delete mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-7eb45641-0128-4743-81a1-af728c9d140b.json delete mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-c10eb423-9e4c-409d-9ce4-b620788a9aed.json delete mode 100644 mock/mappings/inventory_return_locations_vlkzeirgrv-f515149b-a447-4f94-b548-e5942a056da9.json delete mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json delete mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-8662f5be-10bd-417d-b89c-d185f47d3e31.json delete mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-a5627136-0910-48e7-bd87-87d0b759e5dc.json delete mode 100644 mock/mappings/inventory_stock_locations_pwmewsngnw-f7584548-1269-4442-88b2-8f62080f4e03.json delete mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json delete mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-9a24225b-8194-4c95-a22b-78cf50603ae0.json delete mode 100644 mock/mappings/klarna_gateways_ejjwlsjapk-f80b6c98-10e3-485b-ad92-a5dc757551df.json delete mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-38d4f538-b44f-407c-bb99-61f23abd17a8.json delete mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-cf7b7100-a786-4f64-aecc-532b7ed13548.json delete mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-db32005d-382f-43d4-9835-afb951d4113c.json delete mode 100644 mock/mappings/manual_gateways_oxoaeswmwj-fdd3d488-e259-4164-a702-bb60afdaa07e.json delete mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json delete mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json delete mode 100644 mock/mappings/manual_tax_calculators_evvrmtjxav-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json delete mode 100644 mock/mappings/markets-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json delete mode 100644 mock/mappings/markets_rjepzhzyro-3942aa83-8d03-431a-918a-fc11435415dd.json delete mode 100644 mock/mappings/markets_rjepzhzyro-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json delete mode 100644 mock/mappings/markets_rjepzhzyro-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json delete mode 100644 mock/mappings/markets_rjepzhzyro-779594c5-6309-4cd8-b8e5-9c860d56af67.json delete mode 100644 mock/mappings/merchants_dbdevhrvam-bbc19227-afdd-431d-bca0-b71194911169.json delete mode 100644 mock/mappings/merchants_dbdevhrvam-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json delete mode 100644 mock/mappings/merchants_dbdevhrvam-c38de940-4b0c-446f-ad2a-78fc78342033.json delete mode 100644 mock/mappings/merchants_vxzdbhveom-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json delete mode 100644 mock/mappings/merchants_vxzdbhveom-275de801-77d9-46b1-b0c3-5c09bf7ec676.json delete mode 100644 mock/mappings/merchants_vxzdbhveom-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json delete mode 100644 mock/mappings/merchants_vxzdbhveom-ed9577ad-34cf-4d64-8512-507568760010.json create mode 100644 mock/mappings/oauth_token-5d469a08-1362-4336-bf55-cad40fabdef0.json delete mode 100644 mock/mappings/payment_methods_pmwzdsrdde-53d1c651-a1a3-47ec-af04-671296453348.json delete mode 100644 mock/mappings/payment_methods_pmwzdsrdde-b1f1837c-af9d-472d-a78e-e1c4741406eb.json delete mode 100644 mock/mappings/payment_methods_pmwzdsrdde-d181f089-a311-416e-9ccb-e629e5b8743f.json delete mode 100644 mock/mappings/paypal_gateways_jklbysepav-b22aac35-2569-45e3-867c-325c1a3e3025.json delete mode 100644 mock/mappings/paypal_gateways_jklbysepav-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json delete mode 100644 mock/mappings/paypal_gateways_jklbysepav-edc679b6-624c-4d51-a627-8bbd3bc0373b.json delete mode 100644 mock/mappings/price_lists_akebycwjml-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json delete mode 100644 mock/mappings/price_lists_akebycwjml-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json delete mode 100644 mock/mappings/price_lists_akebycwjml-b760ce36-eeea-4a16-a826-df745cf55ee1.json delete mode 100644 mock/mappings/price_lists_nlnwecrekb-11f10920-f791-464e-9375-5275360a1fd4.json delete mode 100644 mock/mappings/price_lists_nlnwecrekb-84715bce-e82f-4507-a8c6-b3c2c516ea72.json delete mode 100644 mock/mappings/shipping_categories_enbljfzglw-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json delete mode 100644 mock/mappings/shipping_categories_enbljfzglw-408a24db-193f-4979-be1d-bba839acdf4f.json delete mode 100644 mock/mappings/shipping_categories_enbljfzglw-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json delete mode 100644 mock/mappings/shipping_methods_avqkgfqjjo-e0c92868-59ae-4324-9202-c913cd2b149a.json delete mode 100644 mock/mappings/shipping_zones_ekvlvtjyxq-bd9c9d43-94e3-457d-9419-c3158e0d0362.json delete mode 100644 mock/mappings/stock_locations_bkeequwyyk-60a49051-d491-4c78-8242-220aa743ec50.json delete mode 100644 mock/mappings/stock_locations_bkeequwyyk-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json delete mode 100644 mock/mappings/stock_locations_bkeequwyyk-c185c581-52d4-4f0c-97eb-841f963cad6d.json delete mode 100644 mock/mappings/stock_locations_ekbqqudzmg-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json delete mode 100644 mock/mappings/stock_locations_ekbqqudzmg-b665ee32-0657-42ca-83bd-11883854e6c3.json delete mode 100644 mock/mappings/stock_locations_ekbqqudzmg-c0043439-e0e4-435b-aef9-110381ecc4bd.json delete mode 100644 mock/mappings/stock_locations_qkpoyuxerg-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json delete mode 100644 mock/mappings/stock_locations_qkpoyuxerg-94f54298-cfc8-4f88-ba4b-8d1412171286.json delete mode 100644 mock/mappings/stock_locations_qkpoyuxerg-956ff1f4-b530-4337-9b54-2d37b71bf096.json delete mode 100644 mock/mappings/stock_locations_qkpoyuxerg-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json delete mode 100644 mock/mappings/stock_locations_rneebuyjln-6c4f7873-a681-4339-a0c5-929662bba461.json delete mode 100644 mock/mappings/stock_locations_rneebuyjln-b59f2a00-610f-490c-b399-afbb424841b7.json delete mode 100644 mock/mappings/stock_locations_rneebuyjln-f4d11818-49ba-4c90-b84d-573241e8e1e1.json delete mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json delete mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-7eb5c230-1642-497a-86cc-f81bd7217cfb.json delete mode 100644 mock/mappings/stripe_gateways_mjrmbswxyv-93a5764d-0689-4fda-a31a-366e5a265190.json delete mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json delete mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-d0c22512-542d-437b-a696-a96780a082d5.json delete mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json delete mode 100644 mock/mappings/taxjar_accounts_kyzeltzedq-f38da734-a436-4c58-b40a-e969eec120f9.json delete mode 100644 mock/mappings/webhooks_epqzocjdyk-15b09980-bc6c-4b56-bfe6-a0a38418c001.json delete mode 100644 mock/mappings/webhooks_epqzocjdyk-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json delete mode 100644 mock/mappings/webhooks_epqzocjdyk-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json delete mode 100644 mock/mappings/webhooks_epqzocjdyk-b1926da9-ec00-4bb2-95e7-01c07b532a99.json diff --git a/mock/mappings/addresses_bazyuqxgqj-702b83aa-beb1-43a0-8db8-045e75e30b02.json b/mock/mappings/addresses_bazyuqxgqj-702b83aa-beb1-43a0-8db8-045e75e30b02.json deleted file mode 100644 index d0211ae..0000000 --- a/mock/mappings/addresses_bazyuqxgqj-702b83aa-beb1-43a0-8db8-045e75e30b02.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "702b83aa-beb1-43a0-8db8-045e75e30b02", - "name" : "addresses_bazyuqxgqj", - "request" : { - "url" : "/addresses/baZYuqxgqJ", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"city\":\"Amsterdam\",\"zip_code\":\"1013 BC\",\"state_code\":\"NH\",\"country_code\":\"NL\",\"phone\":\"020 409 0444\",\"full_address\":\"Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"name\":\"Incentro, Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:26.946Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"35dc4d2a45e53767e8c6105c559651e4a2504e0a84e7d609e16e69792d41c071\"}}}", - "headers" : { - "x-request-id" : "fa4057e0-3c8e-4483-be19-4fc2a7dcd1ad", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "97", - "x-kong-request-id" : "4ee80336a180f77c09409f2bbc755f6e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:27 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"d76354de42d01f55e716936d5445d235\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "702b83aa-beb1-43a0-8db8-045e75e30b02", - "persistent" : true, - "scenarioName" : "scenario-44-addresses-baZYuqxgqJ", - "requiredScenarioState" : "scenario-44-addresses-baZYuqxgqJ-3", - "newScenarioState" : "scenario-44-addresses-baZYuqxgqJ-4", - "insertionIndex" : 280 -} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json b/mock/mappings/addresses_boelupqapl-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json deleted file mode 100644 index 7a40825..0000000 --- a/mock/mappings/addresses_boelupqapl-7a05f04d-8c4e-4f9c-818c-e44a2c081764.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "7a05f04d-8c4e-4f9c-818c-e44a2c081764", - "name" : "addresses_boelupqapl", - "request" : { - "url" : "/addresses/Boelupqapl", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:37.446Z\",\"updated_at\":\"2024-10-24T15:51:37.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bc832e2b74207fb461e163e546dbde1f216b83d031292a2f6ad7845869bbeaa0\"}}}", - "headers" : { - "x-request-id" : "06301cf6-8d52-4443-9a60-a20714d4b3fb", - "x-kong-upstream-latency" : "11", - "X-Ratelimit-Remaining" : "73", - "x-kong-request-id" : "7b5eab2e9c97ec1a42e9fc0075fa932a", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"89e63b5706c3cf69cf74bea07c0448a5\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "7a05f04d-8c4e-4f9c-818c-e44a2c081764", - "persistent" : true, - "scenarioName" : "scenario-38-addresses-Boelupqapl", - "requiredScenarioState" : "scenario-38-addresses-Boelupqapl-3", - "newScenarioState" : "scenario-38-addresses-Boelupqapl-4", - "insertionIndex" : 236 -} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-c22bc5ea-12bd-4491-8808-e805d23e929e.json b/mock/mappings/addresses_boelupqapl-c22bc5ea-12bd-4491-8808-e805d23e929e.json deleted file mode 100644 index a144b0b..0000000 --- a/mock/mappings/addresses_boelupqapl-c22bc5ea-12bd-4491-8808-e805d23e929e.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "c22bc5ea-12bd-4491-8808-e805d23e929e", - "name" : "addresses_boelupqapl", - "request" : { - "url" : "/addresses/Boelupqapl", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:37.446Z\",\"updated_at\":\"2024-10-24T15:51:37.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4650a95f4ebec61fa52fcfd4b30e50864a30f11a2f3d16ac283985633461c689\"}}}", - "headers" : { - "x-request-id" : "98ed645d-7738-444f-ae4f-11848f260420", - "x-kong-upstream-latency" : "11", - "X-Ratelimit-Remaining" : "79", - "x-kong-request-id" : "9a51a67f06c0d5656e85f342d120645d", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c2038f15ccaa1143b3b2f6e6e8b9d450\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "c22bc5ea-12bd-4491-8808-e805d23e929e", - "persistent" : true, - "scenarioName" : "scenario-38-addresses-Boelupqapl", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-38-addresses-Boelupqapl-2", - "insertionIndex" : 245 -} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json b/mock/mappings/addresses_boelupqapl-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json deleted file mode 100644 index 4978be1..0000000 --- a/mock/mappings/addresses_boelupqapl-dd923b8d-1d92-4661-a81a-cf6ca9d22df9.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "dd923b8d-1d92-4661-a81a-cf6ca9d22df9", - "name" : "addresses_boelupqapl", - "request" : { - "url" : "/addresses/Boelupqapl", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:37.446Z\",\"updated_at\":\"2024-10-24T15:51:37.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"dc1317bd719a097c8e44fa189faf904202b919f226a4a0480b0c456e8a7ce0bc\"}}}", - "headers" : { - "x-request-id" : "fca205b2-2b08-48cb-8289-da4e15946cca", - "x-kong-upstream-latency" : "11", - "X-Ratelimit-Remaining" : "75", - "x-kong-request-id" : "818631378519e709a045af5dee1f523e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"0c807ec4dda10f573ed68cc872476ca4\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "dd923b8d-1d92-4661-a81a-cf6ca9d22df9", - "persistent" : true, - "scenarioName" : "scenario-38-addresses-Boelupqapl", - "requiredScenarioState" : "scenario-38-addresses-Boelupqapl-2", - "newScenarioState" : "scenario-38-addresses-Boelupqapl-3", - "insertionIndex" : 240 -} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumglnx-0cda247c-05a2-4b99-bb5d-885db5710ea4.json b/mock/mappings/addresses_djekumglnx-0cda247c-05a2-4b99-bb5d-885db5710ea4.json deleted file mode 100644 index ae6838a..0000000 --- a/mock/mappings/addresses_djekumglnx-0cda247c-05a2-4b99-bb5d-885db5710ea4.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "0cda247c-05a2-4b99-bb5d-885db5710ea4", - "name" : "addresses_djekumglnx", - "request" : { - "url" : "/addresses/djekumgLNX", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:53:31.168Z\",\"updated_at\":\"2024-10-24T15:53:31.168Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9e1ec343e578505d1c017f8fe8b7aa1fab2f97b451e08b8f1ce334416dc0a745\"}}}", - "headers" : { - "x-request-id" : "73660214-962b-4d54-a63c-d6abfcfe2d65", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "85", - "x-kong-request-id" : "4635923ba214ce168e7c0d6f3e4f1726", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:31 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"45b14e6af440cbce2a23bd0e3534381b\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "0cda247c-05a2-4b99-bb5d-885db5710ea4", - "persistent" : true, - "scenarioName" : "scenario-5-addresses-djekumgLNX", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-5-addresses-djekumgLNX-2", - "insertionIndex" : 32 -} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumglnx-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json b/mock/mappings/addresses_djekumglnx-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json deleted file mode 100644 index 6125290..0000000 --- a/mock/mappings/addresses_djekumglnx-2f1bccae-aeb4-449b-8f73-428a2d423ccb.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "2f1bccae-aeb4-449b-8f73-428a2d423ccb", - "name" : "addresses_djekumglnx", - "request" : { - "url" : "/addresses/djekumgLNX", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:53:31.168Z\",\"updated_at\":\"2024-10-24T15:53:31.168Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"131ed56a469dd64ef29658f2fddef92dee9d332d1b7f605168200a4730cdefda\"}}}", - "headers" : { - "x-request-id" : "ba61ba8f-9ef3-4251-bfc8-2594432087d5", - "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "83", - "x-kong-request-id" : "472ce85f62131150ff9d195054d75979", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"9c02f3842f66082432c5278d3fc0edb8\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "2f1bccae-aeb4-449b-8f73-428a2d423ccb", - "persistent" : true, - "scenarioName" : "scenario-5-addresses-djekumgLNX", - "requiredScenarioState" : "scenario-5-addresses-djekumgLNX-3", - "insertionIndex" : 27 -} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumglnx-ff5e84a9-3151-45db-8033-5935b02c2838.json b/mock/mappings/addresses_djekumglnx-ff5e84a9-3151-45db-8033-5935b02c2838.json deleted file mode 100644 index 1c80a03..0000000 --- a/mock/mappings/addresses_djekumglnx-ff5e84a9-3151-45db-8033-5935b02c2838.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "ff5e84a9-3151-45db-8033-5935b02c2838", - "name" : "addresses_djekumglnx", - "request" : { - "url" : "/addresses/djekumgLNX", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:53:31.168Z\",\"updated_at\":\"2024-10-24T15:53:31.168Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"65142b07382f5fce92a0d1dd36ac5106eff2e35d295de89d1c85d81b5d837d24\"}}}", - "headers" : { - "x-request-id" : "da769fb1-5f70-4437-aac7-1b64bac8fbf3", - "x-kong-upstream-latency" : "17", - "X-Ratelimit-Remaining" : "84", - "x-kong-request-id" : "80d5997928ebb7396e50a9689dc4030f", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"d5cc73a0420e06c0116b5990f0767285\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "ff5e84a9-3151-45db-8033-5935b02c2838", - "persistent" : true, - "scenarioName" : "scenario-5-addresses-djekumgLNX", - "requiredScenarioState" : "scenario-5-addresses-djekumgLNX-2", - "newScenarioState" : "scenario-5-addresses-djekumgLNX-3", - "insertionIndex" : 30 -} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumgyyo-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json b/mock/mappings/addresses_djekumgyyo-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json deleted file mode 100644 index 6e5563b..0000000 --- a/mock/mappings/addresses_djekumgyyo-a7129ca9-f36b-421c-a4aa-2bc533f0ae58.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "id" : "a7129ca9-f36b-421c-a4aa-2bc533f0ae58", - "name" : "addresses_djekumgyyo", - "request" : { - "url" : "/addresses/djekumgYYO", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "x-request-id" : "1abf2fd4-23c7-482a-8eec-a031dc6f773c", - "x-kong-upstream-latency" : "38", - "X-Ratelimit-Remaining" : "79", - "x-kong-request-id" : "7db8d8059ba4045b97246850b3f5a355", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:59 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Origin", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "a7129ca9-f36b-421c-a4aa-2bc533f0ae58", - "persistent" : true, - "insertionIndex" : 151 -} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-4298d60c-1077-498b-b71d-0d991d2f97cd.json b/mock/mappings/adyen_gateways_nknmksokbj-4298d60c-1077-498b-b71d-0d991d2f97cd.json deleted file mode 100644 index 20d15d1..0000000 --- a/mock/mappings/adyen_gateways_nknmksokbj-4298d60c-1077-498b-b71d-0d991d2f97cd.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "4298d60c-1077-498b-b71d-0d991d2f97cd", - "name" : "adyen_gateways_nknmksokbj", - "request" : { - "url" : "/adyen_gateways/nkNMKsOKbj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway Changed\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:29.072Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":67,\"async_api\":false,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0f8eec9a29f7b5c40beed654c896745f3ef6b8525cffe50a3cec44fb8bc75c95\"}}}", - "headers" : { - "x-request-id" : "a992e232-d6f2-4eac-bf43-418849f36c05", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "93", - "x-kong-request-id" : "5d6418236ee5517fc79df55394732e43", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:29 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"5b3b91605528fe4e8f7f720f0a09209d\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "4298d60c-1077-498b-b71d-0d991d2f97cd", - "persistent" : true, - "scenarioName" : "scenario-43-adyen_gateways-nkNMKsOKbj", - "requiredScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-3", - "newScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-4", - "insertionIndex" : 273 -} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json b/mock/mappings/adyen_gateways_nknmksokbj-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json deleted file mode 100644 index febb5e9..0000000 --- a/mock/mappings/adyen_gateways_nknmksokbj-e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d", - "name" : "adyen_gateways_nknmksokbj", - "request" : { - "url" : "/adyen_gateways/nkNMKsOKbj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:28.084Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"47277f8b0001b4d76dbb1cc63fcfdc8acaac4a3bfb8bb3271c9179d9efb5fa0c\"}}}", - "headers" : { - "x-request-id" : "6c690fbe-d15f-4706-b88a-03e95e1e7913", - "x-kong-upstream-latency" : "17", - "X-Ratelimit-Remaining" : "94", - "x-kong-request-id" : "d1aee870f076d92463fff13849642f0d", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:28 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"440ebffe659358c5b87bbf84924c3506\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "e3ce0bdc-25e8-4222-a37a-4dfa3417cd8d", - "persistent" : true, - "scenarioName" : "scenario-43-adyen_gateways-nkNMKsOKbj", - "requiredScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-2", - "newScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-3", - "insertionIndex" : 275 -} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-4d92824f-0c17-4087-afc2-d7f143a2feec.json b/mock/mappings/adyen_gateways_pkaqrsdyzk-4d92824f-0c17-4087-afc2-d7f143a2feec.json deleted file mode 100644 index 1e2871c..0000000 --- a/mock/mappings/adyen_gateways_pkaqrsdyzk-4d92824f-0c17-4087-afc2-d7f143a2feec.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "4d92824f-0c17-4087-afc2-d7f143a2feec", - "name" : "adyen_gateways_pkaqrsdyzk", - "request" : { - "url" : "/adyen_gateways/PkaqRsdyzk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:52:17.617Z\",\"updated_at\":\"2024-10-24T15:52:17.617Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/PkaqRsdyzk/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e94c09546d8a025a7f5f8bda123cd430927c4b69be5f0d4816388eeeeac04865\"}}}", - "headers" : { - "x-request-id" : "c9bf555a-fc0c-46bd-a505-23113649f47e", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "7", - "x-kong-request-id" : "7b52393284db315a4ca773734338d94b", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:18 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"854b2824c4b5f82bcfbbaf5b9e5b8bd5\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "4d92824f-0c17-4087-afc2-d7f143a2feec", - "persistent" : true, - "scenarioName" : "scenario-11-adyen_gateways-PkaqRsdyzk", - "requiredScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-2", - "newScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-3", - "insertionIndex" : 79 -} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-63504a6f-b242-4d46-a43d-64a184c69189.json b/mock/mappings/adyen_gateways_pkaqrsdyzk-63504a6f-b242-4d46-a43d-64a184c69189.json deleted file mode 100644 index 73a1c07..0000000 --- a/mock/mappings/adyen_gateways_pkaqrsdyzk-63504a6f-b242-4d46-a43d-64a184c69189.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "63504a6f-b242-4d46-a43d-64a184c69189", - "name" : "adyen_gateways_pkaqrsdyzk", - "request" : { - "url" : "/adyen_gateways/PkaqRsdyzk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:52:17.617Z\",\"updated_at\":\"2024-10-24T15:52:17.617Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/PkaqRsdyzk/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"072f894e281391d922782822f4ed25262a00f554829ca9ded0ee25fb9278c7e2\"}}}", - "headers" : { - "x-request-id" : "882472f9-60ac-4baa-a53a-1e542c176d16", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "5", - "x-kong-request-id" : "165159599ee9f63e811fbe5a10149003", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c1936c83f28b06535bcf276edbede500\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "63504a6f-b242-4d46-a43d-64a184c69189", - "persistent" : true, - "scenarioName" : "scenario-11-adyen_gateways-PkaqRsdyzk", - "requiredScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-3", - "newScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-4", - "insertionIndex" : 76 -} \ No newline at end of file diff --git a/mock/mappings/addresses-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json b/mock/mappings/api_addresses-6a1cd246-c52f-4d99-a6fe-55f79b25ebab.json similarity index 66% rename from mock/mappings/addresses-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json rename to mock/mappings/api_addresses-6a1cd246-c52f-4d99-a6fe-55f79b25ebab.json index 3dd51ac..69ac97b 100644 --- a/mock/mappings/addresses-53509ebf-d9e3-479c-af99-5b8d7e0a0c27.json +++ b/mock/mappings/api_addresses-6a1cd246-c52f-4d99-a6fe-55f79b25ebab.json @@ -1,8 +1,8 @@ { - "id" : "53509ebf-d9e3-479c-af99-5b8d7e0a0c27", - "name" : "addresses", + "id" : "6a1cd246-c52f-4d99-a6fe-55f79b25ebab", + "name" : "api_addresses", "request" : { - "url" : "/addresses", + "url" : "/api/addresses", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:51.320Z\",\"updated_at\":\"2024-10-24T15:51:51.320Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2fa8bd236af7982af619bba3f83462c48f7c8f4a9ff06be2cf320e03883ed6f7\"}}}", + "body" : "{\"data\":{\"id\":\"bQxrurpApJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:41.076Z\",\"updated_at\":\"2024-10-24T16:05:41.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"85ef7e4fd21e549a36ea4e79555d234abd6efa4b9e8fc520feb9af9992e86107\"}}}", "headers" : { - "x-request-id" : "25a17ef8-3382-42b3-aff7-9994b1f3d133", - "x-kong-upstream-latency" : "27", + "x-request-id" : "126e65e8-74e7-4ac6-93e9-4f09487aa661", + "x-kong-upstream-latency" : "15", "X-Ratelimit-Remaining" : "85", - "x-kong-request-id" : "fbd456228d22bd197167e82d7b22723d", + "x-kong-request-id" : "5eb8d27fcb7b3f4dc825ce7ed8ecb67c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:51 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:41 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"a2d4ff8382f8ce6a2b783b690e6664f5\"", + "etag" : "W/\"c5a78efc5642b94bcd2e3405697882ea\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "53509ebf-d9e3-479c-af99-5b8d7e0a0c27", + "uuid" : "6a1cd246-c52f-4d99-a6fe-55f79b25ebab", "persistent" : true, - "insertionIndex" : 192 + "insertionIndex" : 197 } \ No newline at end of file diff --git a/mock/mappings/addresses-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json b/mock/mappings/api_addresses-9c9e0402-8b8f-42aa-b900-3ef2a8b7c9a6.json similarity index 64% rename from mock/mappings/addresses-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json rename to mock/mappings/api_addresses-9c9e0402-8b8f-42aa-b900-3ef2a8b7c9a6.json index 41a30cb..a9bbcb3 100644 --- a/mock/mappings/addresses-721a051e-1a68-45bc-87f9-26ac94e6b7d1.json +++ b/mock/mappings/api_addresses-9c9e0402-8b8f-42aa-b900-3ef2a8b7c9a6.json @@ -1,8 +1,8 @@ { - "id" : "721a051e-1a68-45bc-87f9-26ac94e6b7d1", - "name" : "addresses", + "id" : "9c9e0402-8b8f-42aa-b900-3ef2a8b7c9a6", + "name" : "api_addresses", "request" : { - "url" : "/addresses", + "url" : "/api/addresses", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:14.630Z\",\"updated_at\":\"2024-10-24T15:52:14.630Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b9d796b19ce5dbfab6f2d77a32493d6414f7dfbb4ac7b319aaef925235eea50d\"}}}", + "body" : "{\"data\":{\"id\":\"bAJxuPoYjJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:06:03.424Z\",\"updated_at\":\"2024-10-24T16:06:03.424Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0c325a3f8588d41f6250882a9679de01b049015ed122284a1652a3b69b8f0a3d\"}}}", "headers" : { - "x-request-id" : "4bc9c92c-8744-4983-b1f8-da800b7683f5", - "x-kong-upstream-latency" : "15", + "x-request-id" : "e31bdc21-24dd-4c8f-9c21-83334a1c9bc5", + "x-kong-upstream-latency" : "25", "X-Ratelimit-Remaining" : "69", - "x-kong-request-id" : "27eb494697091e1f83152d174ca56e6d", + "x-kong-request-id" : "faafcf177bf17278e78aad0e01c5db52", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:14 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:03 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c04779258750931d2c87d005355580e9\"", + "etag" : "W/\"94956f0cc26d1cad4faf435a923b8f85\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "721a051e-1a68-45bc-87f9-26ac94e6b7d1", + "uuid" : "9c9e0402-8b8f-42aa-b900-3ef2a8b7c9a6", "persistent" : true, - "insertionIndex" : 96 + "insertionIndex" : 101 } \ No newline at end of file diff --git a/mock/mappings/addresses-1cdf04a4-a664-428f-88bd-44d9991cd823.json b/mock/mappings/api_addresses-9fcd6d5f-f08d-42b7-9dd7-31e44c331fd9.json similarity index 59% rename from mock/mappings/addresses-1cdf04a4-a664-428f-88bd-44d9991cd823.json rename to mock/mappings/api_addresses-9fcd6d5f-f08d-42b7-9dd7-31e44c331fd9.json index 0075484..97f6d4a 100644 --- a/mock/mappings/addresses-1cdf04a4-a664-428f-88bd-44d9991cd823.json +++ b/mock/mappings/api_addresses-9fcd6d5f-f08d-42b7-9dd7-31e44c331fd9.json @@ -1,8 +1,8 @@ { - "id" : "1cdf04a4-a664-428f-88bd-44d9991cd823", - "name" : "addresses", + "id" : "9fcd6d5f-f08d-42b7-9dd7-31e44c331fd9", + "name" : "api_addresses", "request" : { - "url" : "/addresses", + "url" : "/api/addresses", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:53:31.168Z\",\"updated_at\":\"2024-10-24T15:53:31.168Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLNX/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c02c7d136456902b388510285841af16e8b28e50464cb8e4b4826530777fd325\"}}}", + "body" : "{\"data\":{\"id\":\"WoelupqXVn\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:07:20.801Z\",\"updated_at\":\"2024-10-24T16:07:20.801Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"24d99eeef2e36e0645e9026640dc1a2607cf3c785a26625aab099478b2ad805b\"}}}", "headers" : { - "x-request-id" : "b78ef572-a2a4-4782-b205-8b22cd5e66ba", + "x-request-id" : "7d0fd540-3ca7-4e48-82ea-172cbb8d9e2c", "x-kong-upstream-latency" : "19", "X-Ratelimit-Remaining" : "95", - "x-kong-request-id" : "20ffa727b8db1b7f1b5faa18fbaf0804", + "x-kong-request-id" : "a22c6a48b1b6d20517c013779f9b0752", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:53:31 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:07:20 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"7aae03bedc64134fdbf9681676c11d84\"", + "etag" : "W/\"ec8ba007df6465be0b7e3e5d4ab7a007\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "1cdf04a4-a664-428f-88bd-44d9991cd823", + "uuid" : "9fcd6d5f-f08d-42b7-9dd7-31e44c331fd9", "persistent" : true, - "insertionIndex" : 34 + "insertionIndex" : 39 } \ No newline at end of file diff --git a/mock/mappings/addresses-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json b/mock/mappings/api_addresses-ccb72c36-a074-47d9-ba2b-7072012f3ffc.json similarity index 64% rename from mock/mappings/addresses-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json rename to mock/mappings/api_addresses-ccb72c36-a074-47d9-ba2b-7072012f3ffc.json index 60772b1..5b7c55c 100644 --- a/mock/mappings/addresses-e3acc280-8b7b-4c5d-802d-4c39f17df6e5.json +++ b/mock/mappings/api_addresses-ccb72c36-a074-47d9-ba2b-7072012f3ffc.json @@ -1,8 +1,8 @@ { - "id" : "e3acc280-8b7b-4c5d-802d-4c39f17df6e5", - "name" : "addresses", + "id" : "ccb72c36-a074-47d9-ba2b-7072012f3ffc", + "name" : "api_addresses", "request" : { - "url" : "/addresses", + "url" : "/api/addresses", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:07.401Z\",\"updated_at\":\"2024-10-24T15:52:07.401Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"92d23b7119bb74efa71009bb06cfefb487812c44a1f65f905bf67ca9e48712f1\"}}}", + "body" : "{\"data\":{\"id\":\"djekumgLRw\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:56.774Z\",\"updated_at\":\"2024-10-24T16:05:56.774Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3be0f3fd7e0fd207c81759a985a271fb78510d501563026c5a5583e141b6758f\"}}}", "headers" : { - "x-request-id" : "a5393e2a-e09a-4f8e-b323-87c325154c78", - "x-kong-upstream-latency" : "27", + "x-request-id" : "d737b7d5-ead7-4ac3-9441-9efaff6dc513", + "x-kong-upstream-latency" : "17", "X-Ratelimit-Remaining" : "72", - "x-kong-request-id" : "ce62e5799e8b7f428153bd6a1dface00", + "x-kong-request-id" : "789eae64a9fa396706f4484762a74232", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:56 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"7fdb19914c219e763e74bedd9610c797\"", + "etag" : "W/\"32a2ff7594dcbc1b572ba299cced33b3\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "e3acc280-8b7b-4c5d-802d-4c39f17df6e5", + "uuid" : "ccb72c36-a074-47d9-ba2b-7072012f3ffc", "persistent" : true, - "insertionIndex" : 125 + "insertionIndex" : 130 } \ No newline at end of file diff --git a/mock/mappings/addresses-184cb485-be00-4590-af90-6524d31e6338.json b/mock/mappings/api_addresses-e6f442b5-49f8-4ac7-bcc7-ca4b3097cfa1.json similarity index 63% rename from mock/mappings/addresses-184cb485-be00-4590-af90-6524d31e6338.json rename to mock/mappings/api_addresses-e6f442b5-49f8-4ac7-bcc7-ca4b3097cfa1.json index 5cdbf6a..2e5bb54 100644 --- a/mock/mappings/addresses-184cb485-be00-4590-af90-6524d31e6338.json +++ b/mock/mappings/api_addresses-e6f442b5-49f8-4ac7-bcc7-ca4b3097cfa1.json @@ -1,8 +1,8 @@ { - "id" : "184cb485-be00-4590-af90-6524d31e6338", - "name" : "addresses", + "id" : "e6f442b5-49f8-4ac7-bcc7-ca4b3097cfa1", + "name" : "api_addresses", "request" : { - "url" : "/addresses", + "url" : "/api/addresses", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:25.956Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6ab17a734ae8271d72c33a40c1d0f3bbd6bddfca8ea39278574e3f939d1097a7\"}}}", + "body" : "{\"data\":{\"id\":\"bkepukgPVD\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:16.873Z\",\"updated_at\":\"2024-10-24T16:05:16.873Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"86cfbea320b72c7fc7abc68ec54107d230bdb63c85b6ab816e81a934beff2a89\"}}}", "headers" : { - "x-request-id" : "4f82f8e1-42ef-4755-8476-f2f7d6e903bc", - "x-kong-upstream-latency" : "19", + "x-request-id" : "4a1cbe5e-9120-4f0b-bf2e-094089f2bf6b", + "x-kong-upstream-latency" : "26", "X-Ratelimit-Remaining" : "99", - "x-kong-request-id" : "2377f8606b06ec15611ccc0d05e1b36f", + "x-kong-request-id" : "1489fc358b6fa84740e6a82e3823a029", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:25 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:16 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"8a1f13d5b0422907352e0511759ade05\"", + "etag" : "W/\"94bdda95f5675e6783d3102bc2cc47fc\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "184cb485-be00-4590-af90-6524d31e6338", + "uuid" : "e6f442b5-49f8-4ac7-bcc7-ca4b3097cfa1", "persistent" : true, - "insertionIndex" : 284 + "insertionIndex" : 289 } \ No newline at end of file diff --git a/mock/mappings/addresses-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json b/mock/mappings/api_addresses-edc30a38-828d-4e07-bbcc-e94603866639.json similarity index 66% rename from mock/mappings/addresses-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json rename to mock/mappings/api_addresses-edc30a38-828d-4e07-bbcc-e94603866639.json index 49c4559..dbe269a 100644 --- a/mock/mappings/addresses-551ea300-6b8e-40ae-9917-9e3e9b17ea2d.json +++ b/mock/mappings/api_addresses-edc30a38-828d-4e07-bbcc-e94603866639.json @@ -1,8 +1,8 @@ { - "id" : "551ea300-6b8e-40ae-9917-9e3e9b17ea2d", - "name" : "addresses", + "id" : "edc30a38-828d-4e07-bbcc-e94603866639", + "name" : "api_addresses", "request" : { - "url" : "/addresses", + "url" : "/api/addresses", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:55.674Z\",\"updated_at\":\"2024-10-24T15:51:55.674Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1137922ba44f0d9e10f543b6a9687a49d299b997c1f5de1925a6b2e5797024d5\"}}}", + "body" : "{\"data\":{\"id\":\"beJOulJmJO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:45.334Z\",\"updated_at\":\"2024-10-24T16:05:45.334Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0435b64a51b7e7fcb3617414d1d47273e8918e239a027ac88ce2794d5fd32b72\"}}}", "headers" : { - "x-request-id" : "f2ee6ed5-d300-413f-960d-6da149ab5ca7", - "x-kong-upstream-latency" : "17", + "x-request-id" : "8a899c6e-54bf-48d2-8a1a-0cc8795258d1", + "x-kong-upstream-latency" : "20", "X-Ratelimit-Remaining" : "81", - "x-kong-request-id" : "08198756af55682792323c0f929f502c", + "x-kong-request-id" : "9c77f43a4873192f3d36672ef90bd822", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:55 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:45 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c38087893b1779f410ae47b9de52f986\"", + "etag" : "W/\"df821ac890cf80017361c2bf1cefe626\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "551ea300-6b8e-40ae-9917-9e3e9b17ea2d", + "uuid" : "edc30a38-828d-4e07-bbcc-e94603866639", "persistent" : true, - "insertionIndex" : 170 + "insertionIndex" : 175 } \ No newline at end of file diff --git a/mock/mappings/addresses-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json b/mock/mappings/api_addresses-f3ecee5d-6277-40ff-8e25-47516428646a.json similarity index 57% rename from mock/mappings/addresses-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json rename to mock/mappings/api_addresses-f3ecee5d-6277-40ff-8e25-47516428646a.json index 7139150..f267d23 100644 --- a/mock/mappings/addresses-54f7dfed-4c7d-4d4a-995a-11a2408d2b0f.json +++ b/mock/mappings/api_addresses-f3ecee5d-6277-40ff-8e25-47516428646a.json @@ -1,8 +1,8 @@ { - "id" : "54f7dfed-4c7d-4d4a-995a-11a2408d2b0f", - "name" : "addresses", + "id" : "f3ecee5d-6277-40ff-8e25-47516428646a", + "name" : "api_addresses", "request" : { - "url" : "/addresses", + "url" : "/api/addresses", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Rotterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"lng\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"notes\":null,\"phone\":\"+31(0)10 20 20 544\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"ZH\",\"zip_code\":\"3044 BC\"},\"type\":\"addresses\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:37.446Z\",\"updated_at\":\"2024-10-24T15:51:37.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/Boelupqapl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3998656388b620fa14ce5aa1f94f97c0a507a9c538af6e581c5f23619a91b123\"}}}", + "body" : "{\"data\":{\"id\":\"dYNyuJKEKw\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:27.495Z\",\"updated_at\":\"2024-10-24T16:05:27.495Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2bf6dc749e66161e9df24ba02caf5d91b720903dad7dc1c523e71219e23e9df0\"}}}", "headers" : { - "x-request-id" : "51b1b0fb-9af9-46b7-a274-4ac606434fe6", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "94", - "x-kong-request-id" : "5aa29d0592ea116b9c625c2f81534b5e", + "x-request-id" : "ecf76393-5c1a-4b48-b86e-c7c1d5c7137c", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "e43092773a2eda4ba032ae28f2a72b1d", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:37 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:27 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c66c0f245d67bc3586de8686a69e07ab\"", + "etag" : "W/\"255f358b84cc796a787d4060068a59f3\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "54f7dfed-4c7d-4d4a-995a-11a2408d2b0f", + "uuid" : "f3ecee5d-6277-40ff-8e25-47516428646a", "persistent" : true, - "insertionIndex" : 249 + "insertionIndex" : 253 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json b/mock/mappings/api_addresses_bajxupoyjj-1c111938-3dfd-4dba-ac7e-f0d4fda0cc57.json similarity index 53% rename from mock/mappings/addresses_bkzqueglkr-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json rename to mock/mappings/api_addresses_bajxupoyjj-1c111938-3dfd-4dba-ac7e-f0d4fda0cc57.json index ae1f2d7..2ebf5dd 100644 --- a/mock/mappings/addresses_bkzqueglkr-ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1.json +++ b/mock/mappings/api_addresses_bajxupoyjj-1c111938-3dfd-4dba-ac7e-f0d4fda0cc57.json @@ -1,38 +1,38 @@ { - "id" : "ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1", - "name" : "addresses_bkzqueglkr", + "id" : "1c111938-3dfd-4dba-ac7e-f0d4fda0cc57", + "name" : "api_addresses_bajxupoyjj", "request" : { - "url" : "/addresses/BKZQuEGLkr", + "url" : "/api/addresses/bAJxuPoYjJ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:14.630Z\",\"updated_at\":\"2024-10-24T15:52:14.630Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f0eb3faa52473f55af74f302a31ab6c7dd61959ec41dbe8fad5573d4cb3bb71c\"}}}", + "body" : "{\"data\":{\"id\":\"bAJxuPoYjJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:06:03.424Z\",\"updated_at\":\"2024-10-24T16:06:03.424Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"625597b35fc20ceaf64a22522f3f366191221fa844d1564bc9ab38c3fb5d8a66\"}}}", "headers" : { - "x-request-id" : "7236b4fb-8ba7-481d-bc1b-c72058648519", - "x-kong-upstream-latency" : "15", + "x-request-id" : "43f00c3f-ab99-490a-80f8-953bfa544b06", + "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "13", - "x-kong-request-id" : "aa4c7e7d716d1e6f7973e541cd5f9f26", + "x-kong-request-id" : "b7ce877707693f409e722b36acbdca4d", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:05 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"a1d429bb089d9fe98b3e5bff2c573ee9\"", + "etag" : "W/\"99daf46c2c731cda07ff416256d37b17\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "ff1a9d1f-7bb6-4579-a4cb-b4ade06615b1", + "uuid" : "1c111938-3dfd-4dba-ac7e-f0d4fda0cc57", "persistent" : true, - "scenarioName" : "scenario-14-addresses-BKZQuEGLkr", - "requiredScenarioState" : "scenario-14-addresses-BKZQuEGLkr-3", - "newScenarioState" : "scenario-14-addresses-BKZQuEGLkr-4", - "insertionIndex" : 89 + "scenarioName" : "scenario-14-api-addresses-bAJxuPoYjJ", + "requiredScenarioState" : "scenario-14-api-addresses-bAJxuPoYjJ-3", + "newScenarioState" : "scenario-14-api-addresses-bAJxuPoYjJ-4", + "insertionIndex" : 94 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json b/mock/mappings/api_addresses_bajxupoyjj-487ee899-5818-4a6b-bdf1-e5e85a1150d7.json similarity index 52% rename from mock/mappings/addresses_bkzqueglkr-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json rename to mock/mappings/api_addresses_bajxupoyjj-487ee899-5818-4a6b-bdf1-e5e85a1150d7.json index 5cd021b..cbec501 100644 --- a/mock/mappings/addresses_bkzqueglkr-7d309d4c-6b89-46de-bfb5-ccbcfedc26dc.json +++ b/mock/mappings/api_addresses_bajxupoyjj-487ee899-5818-4a6b-bdf1-e5e85a1150d7.json @@ -1,38 +1,38 @@ { - "id" : "7d309d4c-6b89-46de-bfb5-ccbcfedc26dc", - "name" : "addresses_bkzqueglkr", + "id" : "487ee899-5818-4a6b-bdf1-e5e85a1150d7", + "name" : "api_addresses_bajxupoyjj", "request" : { - "url" : "/addresses/BKZQuEGLkr", + "url" : "/api/addresses/bAJxuPoYjJ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:14.630Z\",\"updated_at\":\"2024-10-24T15:52:14.630Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f89fcb2755372796e62d219fbe191d440d4a5f484d340a68179b9124a489507e\"}}}", + "body" : "{\"data\":{\"id\":\"bAJxuPoYjJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:06:03.424Z\",\"updated_at\":\"2024-10-24T16:06:03.424Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b145b6945a6329b38eb5243e9e4138ee4fe1f82c0564fa2c490b419dee75f731\"}}}", "headers" : { - "x-request-id" : "eae48b48-b9b6-4b43-858d-8180346d2c44", - "x-kong-upstream-latency" : "12", + "x-request-id" : "4b4ad05f-bc04-411e-91c2-709882e062c8", + "x-kong-upstream-latency" : "14", "X-Ratelimit-Remaining" : "15", - "x-kong-request-id" : "20d0c351c156d211f62df41a15944103", + "x-kong-request-id" : "93340774fdd60c512205b87168493b03", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", + "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:15 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:04 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"60c033da9a755461ad3fc34102ef5b89\"", + "etag" : "W/\"6657ddc97c7226b6586c4be3a91578ea\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "7d309d4c-6b89-46de-bfb5-ccbcfedc26dc", + "uuid" : "487ee899-5818-4a6b-bdf1-e5e85a1150d7", "persistent" : true, - "scenarioName" : "scenario-14-addresses-BKZQuEGLkr", - "requiredScenarioState" : "scenario-14-addresses-BKZQuEGLkr-2", - "newScenarioState" : "scenario-14-addresses-BKZQuEGLkr-3", - "insertionIndex" : 92 + "scenarioName" : "scenario-14-api-addresses-bAJxuPoYjJ", + "requiredScenarioState" : "scenario-14-api-addresses-bAJxuPoYjJ-2", + "newScenarioState" : "scenario-14-api-addresses-bAJxuPoYjJ-3", + "insertionIndex" : 97 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-51616306-4952-4db5-9eba-1d4b0af93ab5.json b/mock/mappings/api_addresses_bajxupoyjj-5c23212e-324a-483d-90fd-ce6ecd1fd31c.json similarity index 62% rename from mock/mappings/addresses_bkzqueglkr-51616306-4952-4db5-9eba-1d4b0af93ab5.json rename to mock/mappings/api_addresses_bajxupoyjj-5c23212e-324a-483d-90fd-ce6ecd1fd31c.json index 34ac8ff..62ac680 100644 --- a/mock/mappings/addresses_bkzqueglkr-51616306-4952-4db5-9eba-1d4b0af93ab5.json +++ b/mock/mappings/api_addresses_bajxupoyjj-5c23212e-324a-483d-90fd-ce6ecd1fd31c.json @@ -1,22 +1,22 @@ { - "id" : "51616306-4952-4db5-9eba-1d4b0af93ab5", - "name" : "addresses_bkzqueglkr", + "id" : "5c23212e-324a-483d-90fd-ce6ecd1fd31c", + "name" : "api_addresses_bajxupoyjj", "request" : { - "url" : "/addresses/BKZQuEGLkr", + "url" : "/api/addresses/bAJxuPoYjJ", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "74d7aaee-55b9-4623-8b0d-0c56d30ffbbe", - "x-kong-upstream-latency" : "8", + "x-request-id" : "658e5250-9e02-40ac-98b8-ac975dba23d1", + "x-kong-upstream-latency" : "9", "X-Ratelimit-Remaining" : "11", - "x-kong-request-id" : "9b9b8a57404d6a2c5a943c016dd0d410", + "x-kong-request-id" : "f4fa40237cba705fbcfd7d1f65b04d16", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:17 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:06 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "51616306-4952-4db5-9eba-1d4b0af93ab5", + "uuid" : "5c23212e-324a-483d-90fd-ce6ecd1fd31c", "persistent" : true, - "scenarioName" : "scenario-14-addresses-BKZQuEGLkr", - "requiredScenarioState" : "scenario-14-addresses-BKZQuEGLkr-4", - "insertionIndex" : 85 + "scenarioName" : "scenario-14-api-addresses-bAJxuPoYjJ", + "requiredScenarioState" : "scenario-14-api-addresses-bAJxuPoYjJ-4", + "insertionIndex" : 90 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-a5ed938c-498c-4161-b650-34fa3ba00c83.json b/mock/mappings/api_addresses_bajxupoyjj-a2bcd90a-0323-40f6-9478-398083a11fff.json similarity index 55% rename from mock/mappings/addresses_bkzqueglkr-a5ed938c-498c-4161-b650-34fa3ba00c83.json rename to mock/mappings/api_addresses_bajxupoyjj-a2bcd90a-0323-40f6-9478-398083a11fff.json index 0d24875..804d106 100644 --- a/mock/mappings/addresses_bkzqueglkr-a5ed938c-498c-4161-b650-34fa3ba00c83.json +++ b/mock/mappings/api_addresses_bajxupoyjj-a2bcd90a-0323-40f6-9478-398083a11fff.json @@ -1,38 +1,38 @@ { - "id" : "a5ed938c-498c-4161-b650-34fa3ba00c83", - "name" : "addresses_bkzqueglkr", + "id" : "a2bcd90a-0323-40f6-9478-398083a11fff", + "name" : "api_addresses_bajxupoyjj", "request" : { - "url" : "/addresses/BKZQuEGLkr", + "url" : "/api/addresses/bAJxuPoYjJ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:14.630Z\",\"updated_at\":\"2024-10-24T15:52:14.630Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLkr/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a38e8b65ea25d296afa5e0b04a35eff2a1a9552469b4b9d3b251890910b72c74\"}}}", + "body" : "{\"data\":{\"id\":\"bAJxuPoYjJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:06:03.424Z\",\"updated_at\":\"2024-10-24T16:06:03.424Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bAJxuPoYjJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"da5ac5d6b5275088d8c0c4f5f70bea378eb2a0303f0f6d81f0af1c727c115dea\"}}}", "headers" : { - "x-request-id" : "695deac0-24c4-4650-8ed4-5d5a0344d659", - "x-kong-upstream-latency" : "12", + "x-request-id" : "cce6ee78-bb45-48b2-831f-39a84162f399", + "x-kong-upstream-latency" : "15", "X-Ratelimit-Remaining" : "17", - "x-kong-request-id" : "f17aef4b10a6df6179e1d91fdbc9cf71", + "x-kong-request-id" : "eee12144f6d2e23a9439666958e69d13", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:15 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:03 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"66f87072499cc51118b46fcd84ca8ae1\"", + "etag" : "W/\"fd36a0992d7b8824481e1eaabd52c0ca\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "a5ed938c-498c-4161-b650-34fa3ba00c83", + "uuid" : "a2bcd90a-0323-40f6-9478-398083a11fff", "persistent" : true, - "scenarioName" : "scenario-14-addresses-BKZQuEGLkr", + "scenarioName" : "scenario-14-api-addresses-bAJxuPoYjJ", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-14-addresses-BKZQuEGLkr-2", - "insertionIndex" : 94 + "newScenarioState" : "scenario-14-api-addresses-bAJxuPoYjJ-2", + "insertionIndex" : 99 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglkr-5219acae-078d-47d5-975c-b3701741b752.json b/mock/mappings/api_addresses_bajxupoyjj-e7bd3c21-a208-42c4-ad59-0003fc234110.json similarity index 56% rename from mock/mappings/addresses_bkzqueglkr-5219acae-078d-47d5-975c-b3701741b752.json rename to mock/mappings/api_addresses_bajxupoyjj-e7bd3c21-a208-42c4-ad59-0003fc234110.json index c467802..ee237d9 100644 --- a/mock/mappings/addresses_bkzqueglkr-5219acae-078d-47d5-975c-b3701741b752.json +++ b/mock/mappings/api_addresses_bajxupoyjj-e7bd3c21-a208-42c4-ad59-0003fc234110.json @@ -1,21 +1,21 @@ { - "id" : "5219acae-078d-47d5-975c-b3701741b752", - "name" : "addresses_bkzqueglkr", + "id" : "e7bd3c21-a208-42c4-ad59-0003fc234110", + "name" : "api_addresses_bajxupoyjj", "request" : { - "url" : "/addresses/BKZQuEGLkr", + "url" : "/api/addresses/bAJxuPoYjJ", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "b60dc9b8-0814-46ed-9454-ab6e84650702", - "x-kong-upstream-latency" : "30", + "x-request-id" : "1b7d12e9-13fb-43d5-8b75-0cd50beced06", + "x-kong-upstream-latency" : "25", "X-Ratelimit-Remaining" : "68", - "x-kong-request-id" : "1a4160298675b34db6c6221c5d0a8347", + "x-kong-request-id" : "706701796d52ad6bd5da0d363c666a66", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:06:06 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "5219acae-078d-47d5-975c-b3701741b752", + "uuid" : "e7bd3c21-a208-42c4-ad59-0003fc234110", "persistent" : true, - "insertionIndex" : 86 + "insertionIndex" : 91 } \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-b059e544-8b22-458a-b96b-51759af06f0e.json b/mock/mappings/api_addresses_bejouljmjo-571dc8b3-be93-4a14-b3bb-401a8ec02e14.json similarity index 59% rename from mock/mappings/adyen_gateways_nknmksokbj-b059e544-8b22-458a-b96b-51759af06f0e.json rename to mock/mappings/api_addresses_bejouljmjo-571dc8b3-be93-4a14-b3bb-401a8ec02e14.json index a85d77c..bc190b8 100644 --- a/mock/mappings/adyen_gateways_nknmksokbj-b059e544-8b22-458a-b96b-51759af06f0e.json +++ b/mock/mappings/api_addresses_bejouljmjo-571dc8b3-be93-4a14-b3bb-401a8ec02e14.json @@ -1,21 +1,21 @@ { - "id" : "b059e544-8b22-458a-b96b-51759af06f0e", - "name" : "adyen_gateways_nknmksokbj", + "id" : "571dc8b3-be93-4a14-b3bb-401a8ec02e14", + "name" : "api_addresses_bejouljmjo", "request" : { - "url" : "/adyen_gateways/nkNMKsOKbj", + "url" : "/api/addresses/beJOulJmJO", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "25e01220-0b9d-45c5-821e-5e46daca8982", + "x-request-id" : "f05a10be-b773-4c55-8c63-d7b061375cd1", "x-kong-upstream-latency" : "28", - "X-Ratelimit-Remaining" : "98", - "x-kong-request-id" : "3444c46ad07a64047862db5a8179684d", + "X-Ratelimit-Remaining" : "79", + "x-kong-request-id" : "dca808056e220d2d9590f9723c91883f", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:29 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:49 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "b059e544-8b22-458a-b96b-51759af06f0e", + "uuid" : "571dc8b3-be93-4a14-b3bb-401a8ec02e14", "persistent" : true, - "insertionIndex" : 272 + "insertionIndex" : 156 } \ No newline at end of file diff --git a/mock/mappings/addresses_djekumgyyo-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json b/mock/mappings/api_addresses_bejouljmjo-87765652-1ea5-4187-aa1c-c486643af5ee.json similarity index 55% rename from mock/mappings/addresses_djekumgyyo-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json rename to mock/mappings/api_addresses_bejouljmjo-87765652-1ea5-4187-aa1c-c486643af5ee.json index 6ab7f58..02896b5 100644 --- a/mock/mappings/addresses_djekumgyyo-aab4a77d-de23-4c2e-9ea0-54aac91581d6.json +++ b/mock/mappings/api_addresses_bejouljmjo-87765652-1ea5-4187-aa1c-c486643af5ee.json @@ -1,38 +1,38 @@ { - "id" : "aab4a77d-de23-4c2e-9ea0-54aac91581d6", - "name" : "addresses_djekumgyyo", + "id" : "87765652-1ea5-4187-aa1c-c486643af5ee", + "name" : "api_addresses_bejouljmjo", "request" : { - "url" : "/addresses/djekumgYYO", + "url" : "/api/addresses/beJOulJmJO", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:55.674Z\",\"updated_at\":\"2024-10-24T15:51:55.674Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bc37cc03eb09dc494bdb6e2e8d978c8be466c3a0dd2861cf7d3c939b4d597f99\"}}}", + "body" : "{\"data\":{\"id\":\"beJOulJmJO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:45.334Z\",\"updated_at\":\"2024-10-24T16:05:45.334Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"514757dd3bc68a988eacf63911c614445a89573597f043dfb349c802b1943a89\"}}}", "headers" : { - "x-request-id" : "35664f66-3fd7-455d-8b08-d897a2494488", - "x-kong-upstream-latency" : "17", + "x-request-id" : "97118833-cdfa-4e1a-bede-58427a346d52", + "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "45", - "x-kong-request-id" : "80975c6e46dbc05f68d309651769264a", + "x-kong-request-id" : "c955f90c255f6136ecfe1c04f81c1f5c", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", + "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:46 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"e06828445525f002fb50a5d4956224cd\"", + "etag" : "W/\"494fa50c2084e06cf46fd71f28146e0d\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "aab4a77d-de23-4c2e-9ea0-54aac91581d6", + "uuid" : "87765652-1ea5-4187-aa1c-c486643af5ee", "persistent" : true, - "scenarioName" : "scenario-26-addresses-djekumgYYO", + "scenarioName" : "scenario-26-api-addresses-beJOulJmJO", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-26-addresses-djekumgYYO-2", - "insertionIndex" : 166 + "newScenarioState" : "scenario-26-api-addresses-beJOulJmJO-2", + "insertionIndex" : 171 } \ No newline at end of file diff --git a/mock/mappings/addresses_djekumgyyo-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json b/mock/mappings/api_addresses_bejouljmjo-a67e503e-753b-4219-b991-0d0a7e649b08.json similarity index 56% rename from mock/mappings/addresses_djekumgyyo-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json rename to mock/mappings/api_addresses_bejouljmjo-a67e503e-753b-4219-b991-0d0a7e649b08.json index c9b8fef..1a4acad 100644 --- a/mock/mappings/addresses_djekumgyyo-d2c28fdc-c4c2-4a3f-8632-b9d44a06829b.json +++ b/mock/mappings/api_addresses_bejouljmjo-a67e503e-753b-4219-b991-0d0a7e649b08.json @@ -1,37 +1,37 @@ { - "id" : "d2c28fdc-c4c2-4a3f-8632-b9d44a06829b", - "name" : "addresses_djekumgyyo", + "id" : "a67e503e-753b-4219-b991-0d0a7e649b08", + "name" : "api_addresses_bejouljmjo", "request" : { - "url" : "/addresses/djekumgYYO", + "url" : "/api/addresses/beJOulJmJO", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:55.674Z\",\"updated_at\":\"2024-10-24T15:51:55.674Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8b17b8104f1541a46810a84f08fde7db43b2c8ad30eb87f2dc8a11772ffd7c8a\"}}}", + "body" : "{\"data\":{\"id\":\"beJOulJmJO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:45.334Z\",\"updated_at\":\"2024-10-24T16:05:45.334Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0686b7720165e9e50179f65c9caff438947f206693a9e60ce7df36e24119e438\"}}}", "headers" : { - "x-request-id" : "c429af5e-72fd-4055-8edd-ef65148226fa", - "x-kong-upstream-latency" : "14", + "x-request-id" : "b6f1b3ec-307d-442a-b408-8b091255a72e", + "x-kong-upstream-latency" : "16", "X-Ratelimit-Remaining" : "41", - "x-kong-request-id" : "1023c37e966da21c831b17453fedcf77", + "x-kong-request-id" : "77c0ac023556fe6336aa1572defa4842", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:48 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"34071e97dbd6fc5a3f954886d379c3ff\"", + "etag" : "W/\"dfc892c74ee401267d565d6ed3e7a5f0\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d2c28fdc-c4c2-4a3f-8632-b9d44a06829b", + "uuid" : "a67e503e-753b-4219-b991-0d0a7e649b08", "persistent" : true, - "scenarioName" : "scenario-26-addresses-djekumgYYO", - "requiredScenarioState" : "scenario-26-addresses-djekumgYYO-3", - "insertionIndex" : 157 + "scenarioName" : "scenario-26-api-addresses-beJOulJmJO", + "requiredScenarioState" : "scenario-26-api-addresses-beJOulJmJO-3", + "insertionIndex" : 162 } \ No newline at end of file diff --git a/mock/mappings/addresses_djekumgyyo-168afcac-c58b-434d-bd68-af28b2a87023.json b/mock/mappings/api_addresses_bejouljmjo-fa9228f5-81ce-497c-bfe1-10b53afffe8f.json similarity index 53% rename from mock/mappings/addresses_djekumgyyo-168afcac-c58b-434d-bd68-af28b2a87023.json rename to mock/mappings/api_addresses_bejouljmjo-fa9228f5-81ce-497c-bfe1-10b53afffe8f.json index 35f11a7..cde891b 100644 --- a/mock/mappings/addresses_djekumgyyo-168afcac-c58b-434d-bd68-af28b2a87023.json +++ b/mock/mappings/api_addresses_bejouljmjo-fa9228f5-81ce-497c-bfe1-10b53afffe8f.json @@ -1,38 +1,38 @@ { - "id" : "168afcac-c58b-434d-bd68-af28b2a87023", - "name" : "addresses_djekumgyyo", + "id" : "fa9228f5-81ce-497c-bfe1-10b53afffe8f", + "name" : "api_addresses_bejouljmjo", "request" : { - "url" : "/addresses/djekumgYYO", + "url" : "/api/addresses/beJOulJmJO", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:55.674Z\",\"updated_at\":\"2024-10-24T15:51:55.674Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgYYO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"36c914cd988863a32a154cd4b3c5d8e8efdde08f7724a100970b8e14f70d929f\"}}}", + "body" : "{\"data\":{\"id\":\"beJOulJmJO\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:45.334Z\",\"updated_at\":\"2024-10-24T16:05:45.334Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/beJOulJmJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3eb2d166131798fc54356d595ede97ec028f95d61a04dbe3fd46b6b2b9ff11ac\"}}}", "headers" : { - "x-request-id" : "fa520336-6991-42c1-9933-eebf144b498e", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "44", - "x-kong-request-id" : "872eda15342b4e5ae927e73ca7081e64", + "x-request-id" : "e563239e-78b6-4c8d-aae0-f26fe47ef8c2", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "43", + "x-kong-request-id" : "707259086429bf4b22571c504becfb16", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:57 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:47 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c3aad7fe3083bc3239f4cc67c42dbf3d\"", + "etag" : "W/\"63a75fa28d68d411841f3c365272f7a9\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "168afcac-c58b-434d-bd68-af28b2a87023", + "uuid" : "fa9228f5-81ce-497c-bfe1-10b53afffe8f", "persistent" : true, - "scenarioName" : "scenario-26-addresses-djekumgYYO", - "requiredScenarioState" : "scenario-26-addresses-djekumgYYO-2", - "newScenarioState" : "scenario-26-addresses-djekumgYYO-3", - "insertionIndex" : 162 + "scenarioName" : "scenario-26-api-addresses-beJOulJmJO", + "requiredScenarioState" : "scenario-26-api-addresses-beJOulJmJO-2", + "newScenarioState" : "scenario-26-api-addresses-beJOulJmJO-3", + "insertionIndex" : 167 } \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json b/mock/mappings/api_addresses_bkepukgpvd-095d2053-51b8-4e29-8d65-eef701d88c3a.json similarity index 54% rename from mock/mappings/addresses_bazyuqxgqj-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json rename to mock/mappings/api_addresses_bkepukgpvd-095d2053-51b8-4e29-8d65-eef701d88c3a.json index 9a52a06..48a0d78 100644 --- a/mock/mappings/addresses_bazyuqxgqj-df6ba041-ad58-43bd-ad2d-ebab8bc8db8f.json +++ b/mock/mappings/api_addresses_bkepukgpvd-095d2053-51b8-4e29-8d65-eef701d88c3a.json @@ -1,38 +1,38 @@ { - "id" : "df6ba041-ad58-43bd-ad2d-ebab8bc8db8f", - "name" : "addresses_bazyuqxgqj", + "id" : "095d2053-51b8-4e29-8d65-eef701d88c3a", + "name" : "api_addresses_bkepukgpvd", "request" : { - "url" : "/addresses/baZYuqxgqJ", + "url" : "/api/addresses/bkepukgPVD", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:25.956Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1ccb0814d756c4b97ab18a53269fa99eb573f38a192cf0a7fb338763647884aa\"}}}", + "body" : "{\"data\":{\"id\":\"bkepukgPVD\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:16.873Z\",\"updated_at\":\"2024-10-24T16:05:16.873Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8aa2c9fe27b857afac25f2c43e7d89fef35d31eac41e7685b523ef321826a74b\"}}}", "headers" : { - "x-request-id" : "f92f29bd-ed55-45f0-9a5e-464b583e92fc", - "x-kong-upstream-latency" : "12", + "x-request-id" : "ac24b574-6126-41e9-bb8d-7f16c83298b4", + "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "99", - "x-kong-request-id" : "e55b1052a902410d9008dc0fc855fa32", + "x-kong-request-id" : "921f5631b76d4f4aae3f58318db09c3d", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:26 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:17 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"d509077c001d276f0530c91c63cd3d5d\"", + "etag" : "W/\"9eb5567803bc7c5c7dacb9aa9f238f3f\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "df6ba041-ad58-43bd-ad2d-ebab8bc8db8f", + "uuid" : "095d2053-51b8-4e29-8d65-eef701d88c3a", "persistent" : true, - "scenarioName" : "scenario-44-addresses-baZYuqxgqJ", + "scenarioName" : "scenario-44-api-addresses-bkepukgPVD", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-44-addresses-baZYuqxgqJ-2", - "insertionIndex" : 283 + "newScenarioState" : "scenario-44-api-addresses-bkepukgPVD-2", + "insertionIndex" : 288 } \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json b/mock/mappings/api_addresses_bkepukgpvd-12d66c62-b908-4861-b869-cf9edc765c7d.json similarity index 53% rename from mock/mappings/addresses_bazyuqxgqj-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json rename to mock/mappings/api_addresses_bkepukgpvd-12d66c62-b908-4861-b869-cf9edc765c7d.json index 90a4919..64de063 100644 --- a/mock/mappings/addresses_bazyuqxgqj-68c7f68e-9073-4a06-a37a-f63c9aaca10b.json +++ b/mock/mappings/api_addresses_bkepukgpvd-12d66c62-b908-4861-b869-cf9edc765c7d.json @@ -1,38 +1,38 @@ { - "id" : "68c7f68e-9073-4a06-a37a-f63c9aaca10b", - "name" : "addresses_bazyuqxgqj", + "id" : "12d66c62-b908-4861-b869-cf9edc765c7d", + "name" : "api_addresses_bkepukgpvd", "request" : { - "url" : "/addresses/baZYuqxgqJ", + "url" : "/api/addresses/bkepukgPVD", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:25.956Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ef37d0e66a6ca1b64d139c73a37b0bccc137e23a5a42e94ffb07b6f52f203bce\"}}}", + "body" : "{\"data\":{\"id\":\"bkepukgPVD\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:16.873Z\",\"updated_at\":\"2024-10-24T16:05:16.873Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"aba876714821ac28413645d15bae052dcce6b9533cdec24bf9541ae1d8827b5f\"}}}", "headers" : { - "x-request-id" : "e09e9c4e-796a-4917-937f-8ad10a643d20", - "x-kong-upstream-latency" : "14", + "x-request-id" : "7047a830-9834-4e4f-9e39-984113fc6b15", + "x-kong-upstream-latency" : "12", "X-Ratelimit-Remaining" : "98", - "x-kong-request-id" : "8c6b1813aebb5c7a12174a3228ddff22", + "x-kong-request-id" : "95bc2d4ba553462a560de50ce2c39b4a", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:26 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:17 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"0f09ff92cce9a91e2723124b55a482eb\"", + "etag" : "W/\"9c7b8f763fbb76bc74a1a63a3a0cebcb\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "68c7f68e-9073-4a06-a37a-f63c9aaca10b", + "uuid" : "12d66c62-b908-4861-b869-cf9edc765c7d", "persistent" : true, - "scenarioName" : "scenario-44-addresses-baZYuqxgqJ", - "requiredScenarioState" : "scenario-44-addresses-baZYuqxgqJ-2", - "newScenarioState" : "scenario-44-addresses-baZYuqxgqJ-3", - "insertionIndex" : 282 + "scenarioName" : "scenario-44-api-addresses-bkepukgPVD", + "requiredScenarioState" : "scenario-44-api-addresses-bkepukgPVD-2", + "newScenarioState" : "scenario-44-api-addresses-bkepukgPVD-3", + "insertionIndex" : 287 } \ No newline at end of file diff --git a/mock/mappings/api_addresses_bkepukgpvd-1512e109-3d1c-439c-8215-873ca57bca55.json b/mock/mappings/api_addresses_bkepukgpvd-1512e109-3d1c-439c-8215-873ca57bca55.json new file mode 100644 index 0000000..014d195 --- /dev/null +++ b/mock/mappings/api_addresses_bkepukgpvd-1512e109-3d1c-439c-8215-873ca57bca55.json @@ -0,0 +1,38 @@ +{ + "id" : "1512e109-3d1c-439c-8215-873ca57bca55", + "name" : "api_addresses_bkepukgpvd", + "request" : { + "url" : "/api/addresses/bkepukgPVD", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"bkepukgPVD\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"city\":\"Amsterdam\",\"zip_code\":\"1013 BC\",\"state_code\":\"NH\",\"country_code\":\"NL\",\"phone\":\"020 409 0444\",\"full_address\":\"Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"name\":\"Incentro, Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:16.873Z\",\"updated_at\":\"2024-10-24T16:05:17.923Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"99ea2ed7e99d999b7ba7eb5899064dbd193bcb41b309d9cb620b9b6d1286e96c\"}}}", + "headers" : { + "x-request-id" : "d62707c0-d286-4d9d-bc0e-f7b2a1b131a0", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "34bc416fa7377363cbf8ef45e968d97f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:18 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d80657cf3dd6e8dce6c188b7e4c05a8a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "1512e109-3d1c-439c-8215-873ca57bca55", + "persistent" : true, + "scenarioName" : "scenario-44-api-addresses-bkepukgPVD", + "requiredScenarioState" : "scenario-44-api-addresses-bkepukgPVD-3", + "newScenarioState" : "scenario-44-api-addresses-bkepukgPVD-4", + "insertionIndex" : 285 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-84bb3e51-cd54-4890-879a-1f965aef5588.json b/mock/mappings/api_addresses_bkepukgpvd-22381670-a0f2-42cd-91b5-d6bb672c41b1.json similarity index 58% rename from mock/mappings/addresses_bazyuqxgqj-84bb3e51-cd54-4890-879a-1f965aef5588.json rename to mock/mappings/api_addresses_bkepukgpvd-22381670-a0f2-42cd-91b5-d6bb672c41b1.json index a0c9cbf..537b4ed 100644 --- a/mock/mappings/addresses_bazyuqxgqj-84bb3e51-cd54-4890-879a-1f965aef5588.json +++ b/mock/mappings/api_addresses_bkepukgpvd-22381670-a0f2-42cd-91b5-d6bb672c41b1.json @@ -1,40 +1,40 @@ { - "id" : "84bb3e51-cd54-4890-879a-1f965aef5588", - "name" : "addresses_bazyuqxgqj", + "id" : "22381670-a0f2-42cd-91b5-d6bb672c41b1", + "name" : "api_addresses_bkepukgpvd", "request" : { - "url" : "/addresses/baZYuqxgqJ", + "url" : "/api/addresses/bkepukgPVD", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Amsterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"lng\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"},\"notes\":null,\"phone\":\"020 409 0444\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"NH\",\"zip_code\":\"1013 BC\"},\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"billing_info\":null,\"business\":true,\"city\":\"Amsterdam\",\"company\":\"Incentro\",\"country_code\":\"NL\",\"email\":null,\"first_name\":null,\"last_name\":null,\"lat\":null,\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"lng\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"},\"notes\":null,\"phone\":\"020 409 0444\",\"reference\":null,\"reference_origin\":null,\"state_code\":\"NH\",\"zip_code\":\"1013 BC\"},\"id\":\"bkepukgPVD\",\"type\":\"addresses\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"baZYuqxgqJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"city\":\"Amsterdam\",\"zip_code\":\"1013 BC\",\"state_code\":\"NH\",\"country_code\":\"NL\",\"phone\":\"020 409 0444\",\"full_address\":\"Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"name\":\"Incentro, Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:25.956Z\",\"updated_at\":\"2024-10-24T15:51:26.946Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/baZYuqxgqJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1b548d196af807e2c65e656d371bdc769ac1118c5a8f5d7506a031631a9a4a0f\"}}}", + "body" : "{\"data\":{\"id\":\"bkepukgPVD\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Moermanskkade 113\",\"line_2\":null,\"city\":\"Amsterdam\",\"zip_code\":\"1013 BC\",\"state_code\":\"NH\",\"country_code\":\"NL\",\"phone\":\"020 409 0444\",\"full_address\":\"Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"name\":\"Incentro, Moermanskkade 113, 1013 BC Amsterdam NH (NL) 020 409 0444\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:16.873Z\",\"updated_at\":\"2024-10-24T16:05:17.923Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_address.incentro_address\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bkepukgPVD/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"91ab69154ac703c85a32d115214fcf63d9329fbef95f44768807434af9f9819e\"}}}", "headers" : { - "x-request-id" : "fb511738-3259-4831-b925-4287d6b5b491", + "x-request-id" : "ed5582c3-f8df-4a61-8078-2a1eeaae3ad3", "x-kong-upstream-latency" : "25", "X-Ratelimit-Remaining" : "99", - "x-kong-request-id" : "670ead1d021f102ac0708717c9bb5f6c", + "x-kong-request-id" : "be8f3033e5052855b973be70459c3007", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:26 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:17 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"e685c0be6542663a900b46d14ac23d46\"", + "etag" : "W/\"70c1be1e28731b2e1ee39cd9aef5c89e\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "84bb3e51-cd54-4890-879a-1f965aef5588", + "uuid" : "22381670-a0f2-42cd-91b5-d6bb672c41b1", "persistent" : true, - "insertionIndex" : 281 + "insertionIndex" : 286 } \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-946715e8-e818-424d-9ad8-e5afe9449325.json b/mock/mappings/api_addresses_bkepukgpvd-9953aebf-c833-4821-84bc-6e952c21b910.json similarity index 62% rename from mock/mappings/adyen_gateways_nknmksokbj-946715e8-e818-424d-9ad8-e5afe9449325.json rename to mock/mappings/api_addresses_bkepukgpvd-9953aebf-c833-4821-84bc-6e952c21b910.json index dc2e39e..79056cd 100644 --- a/mock/mappings/adyen_gateways_nknmksokbj-946715e8-e818-424d-9ad8-e5afe9449325.json +++ b/mock/mappings/api_addresses_bkepukgpvd-9953aebf-c833-4821-84bc-6e952c21b910.json @@ -1,22 +1,22 @@ { - "id" : "946715e8-e818-424d-9ad8-e5afe9449325", - "name" : "adyen_gateways_nknmksokbj", + "id" : "9953aebf-c833-4821-84bc-6e952c21b910", + "name" : "api_addresses_bkepukgpvd", "request" : { - "url" : "/adyen_gateways/nkNMKsOKbj", + "url" : "/api/addresses/bkepukgPVD", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "9051175a-decf-4e0c-b123-ed6545c3d1fc", + "x-request-id" : "be2dfc30-46c1-4425-a396-d7a31d262dbe", "x-kong-upstream-latency" : "7", - "X-Ratelimit-Remaining" : "92", - "x-kong-request-id" : "d530467c454fac0740fcf55e0905be27", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "40092b138508e27b80e00d1974788e35", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:30 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:18 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "946715e8-e818-424d-9ad8-e5afe9449325", + "uuid" : "9953aebf-c833-4821-84bc-6e952c21b910", "persistent" : true, - "scenarioName" : "scenario-43-adyen_gateways-nkNMKsOKbj", - "requiredScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-4", - "insertionIndex" : 271 + "scenarioName" : "scenario-44-api-addresses-bkepukgPVD", + "requiredScenarioState" : "scenario-44-api-addresses-bkepukgPVD-4", + "insertionIndex" : 283 } \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-093f8f69-985c-462e-89fc-69a46096856f.json b/mock/mappings/api_addresses_bkepukgpvd-d32d2090-d7e7-4582-93fc-2250df0e8a60.json similarity index 59% rename from mock/mappings/payment_methods_pmwzdsrdde-093f8f69-985c-462e-89fc-69a46096856f.json rename to mock/mappings/api_addresses_bkepukgpvd-d32d2090-d7e7-4582-93fc-2250df0e8a60.json index b899270..db06a63 100644 --- a/mock/mappings/payment_methods_pmwzdsrdde-093f8f69-985c-462e-89fc-69a46096856f.json +++ b/mock/mappings/api_addresses_bkepukgpvd-d32d2090-d7e7-4582-93fc-2250df0e8a60.json @@ -1,21 +1,21 @@ { - "id" : "093f8f69-985c-462e-89fc-69a46096856f", - "name" : "payment_methods_pmwzdsrdde", + "id" : "d32d2090-d7e7-4582-93fc-2250df0e8a60", + "name" : "api_addresses_bkepukgpvd", "request" : { - "url" : "/payment_methods/pmWZdsrDdE", + "url" : "/api/addresses/bkepukgPVD", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "e23ba31a-0f8a-4bbe-a947-f60ecc0ee120", + "x-request-id" : "62056cde-5e06-4cda-95ad-7cda9c15ff0e", "x-kong-upstream-latency" : "23", - "X-Ratelimit-Remaining" : "67", - "x-kong-request-id" : "a16a20428e952c4af6decb6d7f08952a", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "2d33932048e3b2291b83fa07e2de3b23", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:18 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "093f8f69-985c-462e-89fc-69a46096856f", + "uuid" : "d32d2090-d7e7-4582-93fc-2250df0e8a60", "persistent" : true, - "insertionIndex" : 74 + "insertionIndex" : 284 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglle-a528706c-5cf0-4a59-a8be-60569adf8081.json b/mock/mappings/api_addresses_bqxrurpapj-0154501b-7d68-4147-b4b8-3597dd438e33.json similarity index 59% rename from mock/mappings/addresses_bkzqueglle-a528706c-5cf0-4a59-a8be-60569adf8081.json rename to mock/mappings/api_addresses_bqxrurpapj-0154501b-7d68-4147-b4b8-3597dd438e33.json index 0c23234..e88f29f 100644 --- a/mock/mappings/addresses_bkzqueglle-a528706c-5cf0-4a59-a8be-60569adf8081.json +++ b/mock/mappings/api_addresses_bqxrurpapj-0154501b-7d68-4147-b4b8-3597dd438e33.json @@ -1,21 +1,21 @@ { - "id" : "a528706c-5cf0-4a59-a8be-60569adf8081", - "name" : "addresses_bkzqueglle", + "id" : "0154501b-7d68-4147-b4b8-3597dd438e33", + "name" : "api_addresses_bqxrurpapj", "request" : { - "url" : "/addresses/BKZQuEGLLe", + "url" : "/api/addresses/bQxrurpApJ", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "7d890ba3-954b-4f4b-9b20-6e97b47a9f7d", - "x-kong-upstream-latency" : "26", + "x-request-id" : "8a11ca51-a36b-4518-94fd-d564d5e9ce9b", + "x-kong-upstream-latency" : "21", "X-Ratelimit-Remaining" : "83", - "x-kong-request-id" : "3c2ef93640ede97c148a3b4749e1a059", + "x-kong-request-id" : "3ef875232765c45c50f2d27ff34c5b2f", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:44 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "a528706c-5cf0-4a59-a8be-60569adf8081", + "uuid" : "0154501b-7d68-4147-b4b8-3597dd438e33", "persistent" : true, - "insertionIndex" : 173 + "insertionIndex" : 178 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglle-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json b/mock/mappings/api_addresses_bqxrurpapj-188ca3c1-1cfc-445f-a8c9-332d1bd4c5c4.json similarity index 56% rename from mock/mappings/addresses_bkzqueglle-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json rename to mock/mappings/api_addresses_bqxrurpapj-188ca3c1-1cfc-445f-a8c9-332d1bd4c5c4.json index db2ca99..2bdd371 100644 --- a/mock/mappings/addresses_bkzqueglle-f7b84593-c8ec-4ed2-b4a7-c7c931ddf733.json +++ b/mock/mappings/api_addresses_bqxrurpapj-188ca3c1-1cfc-445f-a8c9-332d1bd4c5c4.json @@ -1,37 +1,37 @@ { - "id" : "f7b84593-c8ec-4ed2-b4a7-c7c931ddf733", - "name" : "addresses_bkzqueglle", + "id" : "188ca3c1-1cfc-445f-a8c9-332d1bd4c5c4", + "name" : "api_addresses_bqxrurpapj", "request" : { - "url" : "/addresses/BKZQuEGLLe", + "url" : "/api/addresses/bQxrurpApJ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:51.320Z\",\"updated_at\":\"2024-10-24T15:51:51.320Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"965d3e9006a9ef60ecdefc7c6422d7a8304ba55d66193d2ac75a9a90f4122413\"}}}", + "body" : "{\"data\":{\"id\":\"bQxrurpApJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:41.076Z\",\"updated_at\":\"2024-10-24T16:05:41.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"02eaa10720f903e2b81b499c754ac3cf55f11f0024eba7f0de09090629e4e4df\"}}}", "headers" : { - "x-request-id" : "b16c4d2f-a3a4-40e1-a353-f9c6c28ddebd", - "x-kong-upstream-latency" : "14", + "x-request-id" : "c4b34547-c3f6-496b-87d4-16ec0668a0e4", + "x-kong-upstream-latency" : "10", "X-Ratelimit-Remaining" : "48", - "x-kong-request-id" : "c16c3b1082b0873fc78c9a79625d8115", + "x-kong-request-id" : "81435368cc893509d85eac5ce076ae16", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:43 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"2afced4069235014828453c36afcd4d4\"", + "etag" : "W/\"27486a2a3f59ee788c4eac8d8c9ca708\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "f7b84593-c8ec-4ed2-b4a7-c7c931ddf733", + "uuid" : "188ca3c1-1cfc-445f-a8c9-332d1bd4c5c4", "persistent" : true, - "scenarioName" : "scenario-31-addresses-BKZQuEGLLe", - "requiredScenarioState" : "scenario-31-addresses-BKZQuEGLLe-3", - "insertionIndex" : 180 + "scenarioName" : "scenario-30-api-addresses-bQxrurpApJ", + "requiredScenarioState" : "scenario-30-api-addresses-bQxrurpApJ-3", + "insertionIndex" : 184 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglle-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json b/mock/mappings/api_addresses_bqxrurpapj-4e4a5e1f-fe13-44bc-8bc9-338cefc27839.json similarity index 56% rename from mock/mappings/addresses_bkzqueglle-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json rename to mock/mappings/api_addresses_bqxrurpapj-4e4a5e1f-fe13-44bc-8bc9-338cefc27839.json index 27bb061..7aa3380 100644 --- a/mock/mappings/addresses_bkzqueglle-0b9ff0b3-0871-42f4-a61a-7efb11c7e799.json +++ b/mock/mappings/api_addresses_bqxrurpapj-4e4a5e1f-fe13-44bc-8bc9-338cefc27839.json @@ -1,38 +1,38 @@ { - "id" : "0b9ff0b3-0871-42f4-a61a-7efb11c7e799", - "name" : "addresses_bkzqueglle", + "id" : "4e4a5e1f-fe13-44bc-8bc9-338cefc27839", + "name" : "api_addresses_bqxrurpapj", "request" : { - "url" : "/addresses/BKZQuEGLLe", + "url" : "/api/addresses/bQxrurpApJ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:51.320Z\",\"updated_at\":\"2024-10-24T15:51:51.320Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3f6ebaace184339096b57e72989b093286f3688e0bb7d3f0674b92116891c175\"}}}", + "body" : "{\"data\":{\"id\":\"bQxrurpApJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:41.076Z\",\"updated_at\":\"2024-10-24T16:05:41.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0557eec5a284ef91c71d1ba69848557c4285b719f700581246ecdd28c0096d90\"}}}", "headers" : { - "x-request-id" : "97ea855e-7e29-4ca4-be2b-a4001af6a525", - "x-kong-upstream-latency" : "17", + "x-request-id" : "ee63bbd2-730f-47b1-9ea2-904b7f3cf2d9", + "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "52", - "x-kong-request-id" : "c434a263d257c32fc4971c082e75f82c", + "x-kong-request-id" : "ac7b3a7f33371814579e81664096dd4c", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:41 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"b58b7c1865fd0f995424af98e58c322d\"", + "etag" : "W/\"d254e9783d5644fa310ba5fe9d6efe23\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "0b9ff0b3-0871-42f4-a61a-7efb11c7e799", + "uuid" : "4e4a5e1f-fe13-44bc-8bc9-338cefc27839", "persistent" : true, - "scenarioName" : "scenario-31-addresses-BKZQuEGLLe", + "scenarioName" : "scenario-30-api-addresses-bQxrurpApJ", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-31-addresses-BKZQuEGLLe-2", - "insertionIndex" : 188 + "newScenarioState" : "scenario-30-api-addresses-bQxrurpApJ-2", + "insertionIndex" : 194 } \ No newline at end of file diff --git a/mock/mappings/addresses_bkzqueglle-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json b/mock/mappings/api_addresses_bqxrurpapj-c3683e30-a74c-4faa-9ac9-60de58c4fb01.json similarity index 54% rename from mock/mappings/addresses_bkzqueglle-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json rename to mock/mappings/api_addresses_bqxrurpapj-c3683e30-a74c-4faa-9ac9-60de58c4fb01.json index 9a347f6..50d0c8f 100644 --- a/mock/mappings/addresses_bkzqueglle-2bd984f2-be09-40dd-a1ee-4cb5a3a37b25.json +++ b/mock/mappings/api_addresses_bqxrurpapj-c3683e30-a74c-4faa-9ac9-60de58c4fb01.json @@ -1,38 +1,38 @@ { - "id" : "2bd984f2-be09-40dd-a1ee-4cb5a3a37b25", - "name" : "addresses_bkzqueglle", + "id" : "c3683e30-a74c-4faa-9ac9-60de58c4fb01", + "name" : "api_addresses_bqxrurpapj", "request" : { - "url" : "/addresses/BKZQuEGLLe", + "url" : "/api/addresses/bQxrurpApJ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:51:51.320Z\",\"updated_at\":\"2024-10-24T15:51:51.320Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/BKZQuEGLLe/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c5becc9baf656b0e9fa60f200cd50277f95c90be02f0552c6dd3ad76050d900a\"}}}", + "body" : "{\"data\":{\"id\":\"bQxrurpApJ\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:41.076Z\",\"updated_at\":\"2024-10-24T16:05:41.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bQxrurpApJ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2c2f06ca09266e5cf5483fcd0d20f501223ce7ac063d9d5cf84210f86e5719ba\"}}}", "headers" : { - "x-request-id" : "bc412c44-dd93-441e-8981-6c2d7a5d3ba2", - "x-kong-upstream-latency" : "12", + "x-request-id" : "3f81d408-7375-4281-9b24-6c8d1fa379d1", + "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "50", - "x-kong-request-id" : "3ae1d853ff2ee5620676aa6472da1945", + "x-kong-request-id" : "9981da7034a87b421ffdac2cb64efd0c", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:42 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"60ea57706ed496e6b9405e80cd0afa37\"", + "etag" : "W/\"25a6ec30a75ab819d60b3f16ceb2ae90\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "2bd984f2-be09-40dd-a1ee-4cb5a3a37b25", + "uuid" : "c3683e30-a74c-4faa-9ac9-60de58c4fb01", "persistent" : true, - "scenarioName" : "scenario-31-addresses-BKZQuEGLLe", - "requiredScenarioState" : "scenario-31-addresses-BKZQuEGLLe-2", - "newScenarioState" : "scenario-31-addresses-BKZQuEGLLe-3", - "insertionIndex" : 184 + "scenarioName" : "scenario-30-api-addresses-bQxrurpApJ", + "requiredScenarioState" : "scenario-30-api-addresses-bQxrurpApJ-2", + "newScenarioState" : "scenario-30-api-addresses-bQxrurpApJ-3", + "insertionIndex" : 189 } \ No newline at end of file diff --git a/mock/mappings/addresses_bzkoumknnk-86d5413b-2a85-4926-9b65-9070041b471d.json b/mock/mappings/api_addresses_djekumglrw-0da2cd2d-08c4-4dde-ab82-3a8e36954bc0.json similarity index 54% rename from mock/mappings/addresses_bzkoumknnk-86d5413b-2a85-4926-9b65-9070041b471d.json rename to mock/mappings/api_addresses_djekumglrw-0da2cd2d-08c4-4dde-ab82-3a8e36954bc0.json index 1e5e0c8..c37afc6 100644 --- a/mock/mappings/addresses_bzkoumknnk-86d5413b-2a85-4926-9b65-9070041b471d.json +++ b/mock/mappings/api_addresses_djekumglrw-0da2cd2d-08c4-4dde-ab82-3a8e36954bc0.json @@ -1,38 +1,37 @@ { - "id" : "86d5413b-2a85-4926-9b65-9070041b471d", - "name" : "addresses_bzkoumknnk", + "id" : "0da2cd2d-08c4-4dde-ab82-3a8e36954bc0", + "name" : "api_addresses_djekumglrw", "request" : { - "url" : "/addresses/bzkoumknnk", + "url" : "/api/addresses/djekumgLRw", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:07.401Z\",\"updated_at\":\"2024-10-24T15:52:07.401Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"edb6814c305c4a47189a161910afa254c30fda67761eb249bd59a561d63f28a9\"}}}", + "body" : "{\"data\":{\"id\":\"djekumgLRw\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:56.774Z\",\"updated_at\":\"2024-10-24T16:05:56.774Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b35df524274d3e9672be6b326f498b6f72da615de3c445eec52f06ec5b769b38\"}}}", "headers" : { - "x-request-id" : "3b385985-c637-4465-a155-f96c99c2e3ee", + "x-request-id" : "f260a991-6ce6-42db-96ef-aea6a4ddac8c", "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "22", - "x-kong-request-id" : "0e6dd545c9ffbd4fd298583d01a42408", + "X-Ratelimit-Remaining" : "19", + "x-kong-request-id" : "6f44605fc5a5e00571e0f779bd9d4859", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:00 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"fe2aa25a3ccb8b8f8756bf3225e488e7\"", + "etag" : "W/\"80e999302ced21dfd8d35c0b50eb6b80\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "86d5413b-2a85-4926-9b65-9070041b471d", + "uuid" : "0da2cd2d-08c4-4dde-ab82-3a8e36954bc0", "persistent" : true, - "scenarioName" : "scenario-19-addresses-bzkoumknnk", - "requiredScenarioState" : "scenario-19-addresses-bzkoumknnk-2", - "newScenarioState" : "scenario-19-addresses-bzkoumknnk-3", - "insertionIndex" : 113 + "scenarioName" : "scenario-17-api-addresses-djekumgLRw", + "requiredScenarioState" : "scenario-17-api-addresses-djekumgLRw-3", + "insertionIndex" : 111 } \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json b/mock/mappings/api_addresses_djekumglrw-629eaee0-03b4-4ab7-af70-d19c584854dd.json similarity index 58% rename from mock/mappings/manual_tax_calculators_evvrmtjxav-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json rename to mock/mappings/api_addresses_djekumglrw-629eaee0-03b4-4ab7-af70-d19c584854dd.json index dd7d4ad..285e1f8 100644 --- a/mock/mappings/manual_tax_calculators_evvrmtjxav-f5c2a278-3139-4892-a508-dbb20cbc9ef5.json +++ b/mock/mappings/api_addresses_djekumglrw-629eaee0-03b4-4ab7-af70-d19c584854dd.json @@ -1,21 +1,21 @@ { - "id" : "f5c2a278-3139-4892-a508-dbb20cbc9ef5", - "name" : "manual_tax_calculators_evvrmtjxav", + "id" : "629eaee0-03b4-4ab7-af70-d19c584854dd", + "name" : "api_addresses_djekumglrw", "request" : { - "url" : "/manual_tax_calculators/EvVRMTJxAv", + "url" : "/api/addresses/djekumgLRw", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "3b53fab7-f877-4912-b780-e9f997ca26a4", + "x-request-id" : "d1768e2f-992e-4828-83f7-9d90ff50074a", "x-kong-upstream-latency" : "26", - "X-Ratelimit-Remaining" : "76", - "x-kong-request-id" : "9e9f240549b21c606af4251e515e6715", + "X-Ratelimit-Remaining" : "70", + "x-kong-request-id" : "a6531119e615fd73f92fa2287062a20e", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:05 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:02 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "f5c2a278-3139-4892-a508-dbb20cbc9ef5", + "uuid" : "629eaee0-03b4-4ab7-af70-d19c584854dd", "persistent" : true, - "insertionIndex" : 130 + "insertionIndex" : 103 } \ No newline at end of file diff --git a/mock/mappings/addresses_bzkoumknnk-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json b/mock/mappings/api_addresses_djekumglrw-851fc2d0-678c-447d-a868-fc99fe39900a.json similarity index 52% rename from mock/mappings/addresses_bzkoumknnk-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json rename to mock/mappings/api_addresses_djekumglrw-851fc2d0-678c-447d-a868-fc99fe39900a.json index 817624b..37fd4cb 100644 --- a/mock/mappings/addresses_bzkoumknnk-366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b.json +++ b/mock/mappings/api_addresses_djekumglrw-851fc2d0-678c-447d-a868-fc99fe39900a.json @@ -1,37 +1,38 @@ { - "id" : "366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b", - "name" : "addresses_bzkoumknnk", + "id" : "851fc2d0-678c-447d-a868-fc99fe39900a", + "name" : "api_addresses_djekumglrw", "request" : { - "url" : "/addresses/bzkoumknnk", + "url" : "/api/addresses/djekumgLRw", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:07.401Z\",\"updated_at\":\"2024-10-24T15:52:07.401Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"be431d80a4e8dc792b88bf558726cb8492b8ec6bc335b393c764923ed171663d\"}}}", + "body" : "{\"data\":{\"id\":\"djekumgLRw\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:56.774Z\",\"updated_at\":\"2024-10-24T16:05:56.774Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"38b45d012e48329693ce18391bb92b8da8c142b62867ffd984205a20f244dbdb\"}}}", "headers" : { - "x-request-id" : "75e0ba4d-2dea-4f47-abc4-2aab043de73f", - "x-kong-upstream-latency" : "18", - "X-Ratelimit-Remaining" : "20", - "x-kong-request-id" : "c6afc53c54479264d58f55255e7cf603", + "x-request-id" : "f2c100ff-475e-4cd7-8491-ffd4cca658ee", + "x-kong-upstream-latency" : "44", + "X-Ratelimit-Remaining" : "22", + "x-kong-request-id" : "8a92e974ddcfc017c2a59e5214d0607f", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:58 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"3987cd327e795870f4959ecff055de79\"", + "etag" : "W/\"037b2416f53d3d6258627bb1b3d04b2a\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "366a1ba3-b6a3-4ae1-87b0-8a47af66ef9b", + "uuid" : "851fc2d0-678c-447d-a868-fc99fe39900a", "persistent" : true, - "scenarioName" : "scenario-19-addresses-bzkoumknnk", - "requiredScenarioState" : "scenario-19-addresses-bzkoumknnk-3", - "insertionIndex" : 108 + "scenarioName" : "scenario-17-api-addresses-djekumgLRw", + "requiredScenarioState" : "scenario-17-api-addresses-djekumgLRw-2", + "newScenarioState" : "scenario-17-api-addresses-djekumgLRw-3", + "insertionIndex" : 118 } \ No newline at end of file diff --git a/mock/mappings/addresses_bzkoumknnk-32efe943-750b-4a6b-b710-ba844e059f32.json b/mock/mappings/api_addresses_djekumglrw-ec7d2176-1699-447b-a82d-2fb81bdda2f8.json similarity index 54% rename from mock/mappings/addresses_bzkoumknnk-32efe943-750b-4a6b-b710-ba844e059f32.json rename to mock/mappings/api_addresses_djekumglrw-ec7d2176-1699-447b-a82d-2fb81bdda2f8.json index 7b0c3a0..541b866 100644 --- a/mock/mappings/addresses_bzkoumknnk-32efe943-750b-4a6b-b710-ba844e059f32.json +++ b/mock/mappings/api_addresses_djekumglrw-ec7d2176-1699-447b-a82d-2fb81bdda2f8.json @@ -1,38 +1,38 @@ { - "id" : "32efe943-750b-4a6b-b710-ba844e059f32", - "name" : "addresses_bzkoumknnk", + "id" : "ec7d2176-1699-447b-a82d-2fb81bdda2f8", + "name" : "api_addresses_djekumglrw", "request" : { - "url" : "/addresses/bzkoumknnk", + "url" : "/api/addresses/djekumgLRw", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T15:52:07.401Z\",\"updated_at\":\"2024-10-24T15:52:07.401Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/bzkoumknnk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"00c09ee3e24809ce44d24bd08161ce5af3e78ea3035c12332262d462c8d8028c\"}}}", + "body" : "{\"data\":{\"id\":\"djekumgLRw\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:56.774Z\",\"updated_at\":\"2024-10-24T16:05:56.774Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/djekumgLRw/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"edd98f0896a367423608e3d78f53acd232039f16704391b6edd00903494470ee\"}}}", "headers" : { - "x-request-id" : "5a18afad-1cc3-490f-8dbe-01f0cd22b1c7", - "x-kong-upstream-latency" : "13", + "x-request-id" : "d373261f-42e6-476a-a02f-3f8d0fbe9e20", + "x-kong-upstream-latency" : "12", "X-Ratelimit-Remaining" : "25", - "x-kong-request-id" : "15ba7d2505a0915aad61f4236ca46f5e", + "x-kong-request-id" : "03760b4d33179a34e6f61a432c98f94e", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:57 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"74b696af263e9a43e99aea2f0faeb957\"", + "etag" : "W/\"aa3c60be488308e9d82773e788b2a699\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "32efe943-750b-4a6b-b710-ba844e059f32", + "uuid" : "ec7d2176-1699-447b-a82d-2fb81bdda2f8", "persistent" : true, - "scenarioName" : "scenario-19-addresses-bzkoumknnk", + "scenarioName" : "scenario-17-api-addresses-djekumgLRw", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-19-addresses-bzkoumknnk-2", - "insertionIndex" : 119 + "newScenarioState" : "scenario-17-api-addresses-djekumgLRw-2", + "insertionIndex" : 124 } \ No newline at end of file diff --git a/mock/mappings/api_addresses_dynyujkekw-0a20f8a0-6fd5-43ab-81ee-932de6c10cf9.json b/mock/mappings/api_addresses_dynyujkekw-0a20f8a0-6fd5-43ab-81ee-932de6c10cf9.json new file mode 100644 index 0000000..9fd0d21 --- /dev/null +++ b/mock/mappings/api_addresses_dynyujkekw-0a20f8a0-6fd5-43ab-81ee-932de6c10cf9.json @@ -0,0 +1,38 @@ +{ + "id" : "0a20f8a0-6fd5-43ab-81ee-932de6c10cf9", + "name" : "api_addresses_dynyujkekw", + "request" : { + "url" : "/api/addresses/dYNyuJKEKw", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"dYNyuJKEKw\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:27.495Z\",\"updated_at\":\"2024-10-24T16:05:27.495Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"45b5bb3d509e398013122d29520c43b14c0a9ebb0999ac66439c0c0a8866a308\"}}}", + "headers" : { + "x-request-id" : "5e0cdfab-3133-4480-b6e2-2d7c305b430b", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "73", + "x-kong-request-id" : "04d18672212ded5664c3137135df7b75", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"7ebb09f68406f994b886364eb4b544a9\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0a20f8a0-6fd5-43ab-81ee-932de6c10cf9", + "persistent" : true, + "scenarioName" : "scenario-38-api-addresses-dYNyuJKEKw", + "requiredScenarioState" : "scenario-38-api-addresses-dYNyuJKEKw-3", + "newScenarioState" : "scenario-38-api-addresses-dYNyuJKEKw-4", + "insertionIndex" : 241 +} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dynyujkekw-19de9c4d-a92b-4079-a2e2-4f48e24b2928.json b/mock/mappings/api_addresses_dynyujkekw-19de9c4d-a92b-4079-a2e2-4f48e24b2928.json new file mode 100644 index 0000000..62c11e0 --- /dev/null +++ b/mock/mappings/api_addresses_dynyujkekw-19de9c4d-a92b-4079-a2e2-4f48e24b2928.json @@ -0,0 +1,38 @@ +{ + "id" : "19de9c4d-a92b-4079-a2e2-4f48e24b2928", + "name" : "api_addresses_dynyujkekw", + "request" : { + "url" : "/api/addresses/dYNyuJKEKw", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"dYNyuJKEKw\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:27.495Z\",\"updated_at\":\"2024-10-24T16:05:27.495Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"30b60576b391694c367019853e70e50df28e3f06285709910a87a499d5333f84\"}}}", + "headers" : { + "x-request-id" : "34475569-d7ba-41f7-af76-b32afe7baab7", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "79", + "x-kong-request-id" : "fafc6b36e4610514f5d5911d62b48c08", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:28 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"0baad0f698bdef988b36530f49968e95\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "19de9c4d-a92b-4079-a2e2-4f48e24b2928", + "persistent" : true, + "scenarioName" : "scenario-38-api-addresses-dYNyuJKEKw", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-38-api-addresses-dYNyuJKEKw-2", + "insertionIndex" : 250 +} \ No newline at end of file diff --git a/mock/mappings/api_addresses_dynyujkekw-3d27db6d-24ea-440a-bf2b-f0c8eba40322.json b/mock/mappings/api_addresses_dynyujkekw-3d27db6d-24ea-440a-bf2b-f0c8eba40322.json new file mode 100644 index 0000000..d275cf7 --- /dev/null +++ b/mock/mappings/api_addresses_dynyujkekw-3d27db6d-24ea-440a-bf2b-f0c8eba40322.json @@ -0,0 +1,38 @@ +{ + "id" : "3d27db6d-24ea-440a-bf2b-f0c8eba40322", + "name" : "api_addresses_dynyujkekw", + "request" : { + "url" : "/api/addresses/dYNyuJKEKw", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"dYNyuJKEKw\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:05:27.495Z\",\"updated_at\":\"2024-10-24T16:05:27.495Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/dYNyuJKEKw/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f0902c61f476da23d760ddfb2a710056ebfcec9371854bb4cce43d9407a78c84\"}}}", + "headers" : { + "x-request-id" : "bc02a80a-1fda-436f-b821-95810722bafa", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "76", + "x-kong-request-id" : "bf200e0dae325c576583db4095c4cf14", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b15541415da45f7d07011fd3bb57fae7\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "3d27db6d-24ea-440a-bf2b-f0c8eba40322", + "persistent" : true, + "scenarioName" : "scenario-38-api-addresses-dYNyuJKEKw", + "requiredScenarioState" : "scenario-38-api-addresses-dYNyuJKEKw-2", + "newScenarioState" : "scenario-38-api-addresses-dYNyuJKEKw-3", + "insertionIndex" : 245 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json b/mock/mappings/api_addresses_dynyujkekw-40aa0aed-ee2c-4a9c-9633-15445d874af9.json similarity index 59% rename from mock/mappings/webhooks_epqzocjdyk-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json rename to mock/mappings/api_addresses_dynyujkekw-40aa0aed-ee2c-4a9c-9633-15445d874af9.json index b19ac16..1c3e5e8 100644 --- a/mock/mappings/webhooks_epqzocjdyk-60203ee0-8252-4e54-aac8-a3c3f313e5e9.json +++ b/mock/mappings/api_addresses_dynyujkekw-40aa0aed-ee2c-4a9c-9633-15445d874af9.json @@ -1,22 +1,22 @@ { - "id" : "60203ee0-8252-4e54-aac8-a3c3f313e5e9", - "name" : "webhooks_epqzocjdyk", + "id" : "40aa0aed-ee2c-4a9c-9633-15445d874af9", + "name" : "api_addresses_dynyujkekw", "request" : { - "url" : "/webhooks/ePqzoCJDYK", + "url" : "/api/addresses/dYNyuJKEKw", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "b6bf5af7-52db-4ecb-8d38-80e34d997a7a", - "x-kong-upstream-latency" : "13", + "x-request-id" : "bad6c64a-9cd5-457b-9728-6685ab0d656d", + "x-kong-upstream-latency" : "10", "X-Ratelimit-Remaining" : "70", - "x-kong-request-id" : "7f929132eb77990c10e7c8319e558e06", + "x-kong-request-id" : "c7bc5c01176ec0638f770e318ef1c878", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:39 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:31 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "60203ee0-8252-4e54-aac8-a3c3f313e5e9", + "uuid" : "40aa0aed-ee2c-4a9c-9633-15445d874af9", "persistent" : true, - "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", - "requiredScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-5", - "insertionIndex" : 1 + "scenarioName" : "scenario-38-api-addresses-dYNyuJKEKw", + "requiredScenarioState" : "scenario-38-api-addresses-dYNyuJKEKw-4", + "insertionIndex" : 233 } \ No newline at end of file diff --git a/mock/mappings/price_lists_akebycwjml-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json b/mock/mappings/api_addresses_dynyujkekw-a495acfb-6b7b-4c56-9cfa-017225d376be.json similarity index 59% rename from mock/mappings/price_lists_akebycwjml-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json rename to mock/mappings/api_addresses_dynyujkekw-a495acfb-6b7b-4c56-9cfa-017225d376be.json index 90525d2..ea47a10 100644 --- a/mock/mappings/price_lists_akebycwjml-76e1f0d2-feb5-4aa0-a9b9-053becd18744.json +++ b/mock/mappings/api_addresses_dynyujkekw-a495acfb-6b7b-4c56-9cfa-017225d376be.json @@ -1,21 +1,21 @@ { - "id" : "76e1f0d2-feb5-4aa0-a9b9-053becd18744", - "name" : "price_lists_akebycwjml", + "id" : "a495acfb-6b7b-4c56-9cfa-017225d376be", + "name" : "api_addresses_dynyujkekw", "request" : { - "url" : "/price_lists/AkebyCWJml", + "url" : "/api/addresses/dYNyuJKEKw", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "255f118c-f91d-4e39-a64d-2af9f92ea9cc", + "x-request-id" : "56629760-e363-4343-a97a-5a6e7ce0aabf", "x-kong-upstream-latency" : "25", - "X-Ratelimit-Remaining" : "73", - "x-kong-request-id" : "eb7a2f448653ed0f72e906049c63a064", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "40e2022840531b60bf4ad369310b561f", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:13 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:31 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "76e1f0d2-feb5-4aa0-a9b9-053becd18744", + "uuid" : "a495acfb-6b7b-4c56-9cfa-017225d376be", "persistent" : true, - "insertionIndex" : 101 + "insertionIndex" : 234 } \ No newline at end of file diff --git a/mock/mappings/api_addresses_woelupqxvn-70360ef8-8e21-4d0e-b969-6b0e8afb2939.json b/mock/mappings/api_addresses_woelupqxvn-70360ef8-8e21-4d0e-b969-6b0e8afb2939.json new file mode 100644 index 0000000..a9794ea --- /dev/null +++ b/mock/mappings/api_addresses_woelupqxvn-70360ef8-8e21-4d0e-b969-6b0e8afb2939.json @@ -0,0 +1,38 @@ +{ + "id" : "70360ef8-8e21-4d0e-b969-6b0e8afb2939", + "name" : "api_addresses_woelupqxvn", + "request" : { + "url" : "/api/addresses/WoelupqXVn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"WoelupqXVn\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:07:20.801Z\",\"updated_at\":\"2024-10-24T16:07:20.801Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f93fc4988e63542b2d94a0e27b728f96d3b38e48a32823a21263cabf352e40a5\"}}}", + "headers" : { + "x-request-id" : "6a285a15-4a54-429b-b6d0-1e8af7b0f976", + "x-kong-upstream-latency" : "29", + "X-Ratelimit-Remaining" : "85", + "x-kong-request-id" : "2f04c85cafc2d41459475a640c7b8418", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:21 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"5d27e5e0462b835564e722fdd441862b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "70360ef8-8e21-4d0e-b969-6b0e8afb2939", + "persistent" : true, + "scenarioName" : "scenario-5-api-addresses-WoelupqXVn", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-5-api-addresses-WoelupqXVn-2", + "insertionIndex" : 37 +} \ No newline at end of file diff --git a/mock/mappings/addresses_djekumglnx-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json b/mock/mappings/api_addresses_woelupqxvn-936a48ca-4bb3-4634-84d9-539648a583c7.json similarity index 59% rename from mock/mappings/addresses_djekumglnx-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json rename to mock/mappings/api_addresses_woelupqxvn-936a48ca-4bb3-4634-84d9-539648a583c7.json index 19d4af5..b1a1dd8 100644 --- a/mock/mappings/addresses_djekumglnx-12a8c13f-39b6-4b87-94dd-13a07ddcb4ca.json +++ b/mock/mappings/api_addresses_woelupqxvn-936a48ca-4bb3-4634-84d9-539648a583c7.json @@ -1,21 +1,21 @@ { - "id" : "12a8c13f-39b6-4b87-94dd-13a07ddcb4ca", - "name" : "addresses_djekumglnx", + "id" : "936a48ca-4bb3-4634-84d9-539648a583c7", + "name" : "api_addresses_woelupqxvn", "request" : { - "url" : "/addresses/djekumgLNX", + "url" : "/api/addresses/WoelupqXVn", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "eacd9a23-dc5a-43cd-b6b7-8bb04c4806e7", - "x-kong-upstream-latency" : "18", + "x-request-id" : "84bca3dc-dac0-4ae3-a850-67e99aca1029", + "x-kong-upstream-latency" : "29", "X-Ratelimit-Remaining" : "93", - "x-kong-request-id" : "5dd572554a39980c61394171bf5e4711", + "x-kong-request-id" : "40f2493d93dea044e396c87b18c91f4c", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:33 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:23 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "12a8c13f-39b6-4b87-94dd-13a07ddcb4ca", + "uuid" : "936a48ca-4bb3-4634-84d9-539648a583c7", "persistent" : true, - "insertionIndex" : 24 + "insertionIndex" : 29 } \ No newline at end of file diff --git a/mock/mappings/api_addresses_woelupqxvn-a85567e9-ad39-43a4-ab82-7806ea654d4f.json b/mock/mappings/api_addresses_woelupqxvn-a85567e9-ad39-43a4-ab82-7806ea654d4f.json new file mode 100644 index 0000000..2fb2c4f --- /dev/null +++ b/mock/mappings/api_addresses_woelupqxvn-a85567e9-ad39-43a4-ab82-7806ea654d4f.json @@ -0,0 +1,38 @@ +{ + "id" : "a85567e9-ad39-43a4-ab82-7806ea654d4f", + "name" : "api_addresses_woelupqxvn", + "request" : { + "url" : "/api/addresses/WoelupqXVn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"WoelupqXVn\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:07:20.801Z\",\"updated_at\":\"2024-10-24T16:07:20.801Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c5a00de0903f36e40c16e121d3719f1bea5243bc34949e9141954c3beab70f4b\"}}}", + "headers" : { + "x-request-id" : "92923816-824b-48a0-9ca1-0def5b40bb91", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "84", + "x-kong-request-id" : "0556a43dad32a21ec235723811a8bf24", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:21 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"937d1a2023cd52cdf591b773c20cdd85\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a85567e9-ad39-43a4-ab82-7806ea654d4f", + "persistent" : true, + "scenarioName" : "scenario-5-api-addresses-WoelupqXVn", + "requiredScenarioState" : "scenario-5-api-addresses-WoelupqXVn-2", + "newScenarioState" : "scenario-5-api-addresses-WoelupqXVn-3", + "insertionIndex" : 35 +} \ No newline at end of file diff --git a/mock/mappings/api_addresses_woelupqxvn-bbe2e659-5181-4431-953e-721619f1d090.json b/mock/mappings/api_addresses_woelupqxvn-bbe2e659-5181-4431-953e-721619f1d090.json new file mode 100644 index 0000000..148031d --- /dev/null +++ b/mock/mappings/api_addresses_woelupqxvn-bbe2e659-5181-4431-953e-721619f1d090.json @@ -0,0 +1,37 @@ +{ + "id" : "bbe2e659-5181-4431-953e-721619f1d090", + "name" : "api_addresses_woelupqxvn", + "request" : { + "url" : "/api/addresses/WoelupqXVn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"WoelupqXVn\",\"type\":\"addresses\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn\"},\"attributes\":{\"business\":true,\"first_name\":null,\"last_name\":null,\"company\":\"Incentro\",\"full_name\":\"Incentro\",\"line_1\":\"Van Nelleweg 1\",\"line_2\":null,\"city\":\"Rotterdam\",\"zip_code\":\"3044 BC\",\"state_code\":\"ZH\",\"country_code\":\"NL\",\"phone\":\"+31(0)10 20 20 544\",\"full_address\":\"Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"name\":\"Incentro, Van Nelleweg 1, 3044 BC Rotterdam ZH (NL) +31(0)10 20 20 544\",\"email\":null,\"notes\":null,\"lat\":null,\"lng\":null,\"is_localized\":false,\"is_geocoded\":false,\"provider_name\":null,\"map_url\":null,\"static_map_url\":null,\"billing_info\":null,\"created_at\":\"2024-10-24T16:07:20.801Z\",\"updated_at\":\"2024-10-24T16:07:20.801Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/geocoder\"}},\"events\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/events\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/events\"}},\"tags\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/tags\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/tags\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/addresses/WoelupqXVn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1495358a45967cab64ccfb6c50da91f469b58d3e5725b815fb3a256756900564\"}}}", + "headers" : { + "x-request-id" : "7d9c6da4-363e-4824-9554-e39f6974206a", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "83", + "x-kong-request-id" : "44185c103805177e0c6bd07ea52a8914", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:22 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"9726d77a3cec6750a76aec4700809d3a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bbe2e659-5181-4431-953e-721619f1d090", + "persistent" : true, + "scenarioName" : "scenario-5-api-addresses-WoelupqXVn", + "requiredScenarioState" : "scenario-5-api-addresses-WoelupqXVn-3", + "insertionIndex" : 32 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json b/mock/mappings/api_adyen_gateways-a6345dae-6239-4745-bc14-0c79b237e494.json similarity index 61% rename from mock/mappings/adyen_gateways-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json rename to mock/mappings/api_adyen_gateways-a6345dae-6239-4745-bc14-0c79b237e494.json index f4e2038..7c503f5 100644 --- a/mock/mappings/adyen_gateways-d30a04f6-3776-4c65-814e-5d2e745bf4f0.json +++ b/mock/mappings/api_adyen_gateways-a6345dae-6239-4745-bc14-0c79b237e494.json @@ -1,8 +1,8 @@ { - "id" : "d30a04f6-3776-4c65-814e-5d2e745bf4f0", - "name" : "adyen_gateways", + "id" : "a6345dae-6239-4745-bc14-0c79b237e494", + "name" : "api_adyen_gateways", "request" : { - "url" : "/adyen_gateways", + "url" : "/api/adyen_gateways", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"68\",\"async_api\":true,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"name\":\"Incentro Adyen Gateway\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null,\"webhook_endpoint_secret\":\"foobar\"},\"type\":\"adyen_gateways\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:52:17.617Z\",\"updated_at\":\"2024-10-24T15:52:17.617Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/PkaqRsdyzk/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9abaa6a531a11f08733a584623111194d1ede538c08ab7dc9713ed1b89a2d87b\"}}}", + "body" : "{\"data\":{\"id\":\"BxZLVszGyj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T16:06:06.712Z\",\"updated_at\":\"2024-10-24T16:06:06.712Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/BxZLVszGyj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bfdd8a9f7aa2719443b5f7fe1205795373cc31ce3cfdd91d3a62cc7741ef86d8\"}}}", "headers" : { - "x-request-id" : "07ac0f7f-282e-462d-855c-abb5595e9005", - "x-kong-upstream-latency" : "65", + "x-request-id" : "637d9131-96ef-4ca5-9936-57868bb6a155", + "x-kong-upstream-latency" : "22", "X-Ratelimit-Remaining" : "67", - "x-kong-request-id" : "5c380c667761da3ed87487675d8a791c", + "x-kong-request-id" : "320da85cfa58d80d988d490389b09c64", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:17 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:06:06 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"48b995cc60b1cde18f173ec05132f84b\"", + "etag" : "W/\"323ae5b6caae4151299041c8d7eb15ae\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d30a04f6-3776-4c65-814e-5d2e745bf4f0", + "uuid" : "a6345dae-6239-4745-bc14-0c79b237e494", "persistent" : true, - "insertionIndex" : 83 + "insertionIndex" : 88 } \ No newline at end of file diff --git a/mock/mappings/adyen_gateways-1951ffa5-fb14-4e22-960f-072d26f88ab8.json b/mock/mappings/api_adyen_gateways-b1406909-5dee-4dd1-b612-37785b2fd2d1.json similarity index 61% rename from mock/mappings/adyen_gateways-1951ffa5-fb14-4e22-960f-072d26f88ab8.json rename to mock/mappings/api_adyen_gateways-b1406909-5dee-4dd1-b612-37785b2fd2d1.json index ff9a813..1e24496 100644 --- a/mock/mappings/adyen_gateways-1951ffa5-fb14-4e22-960f-072d26f88ab8.json +++ b/mock/mappings/api_adyen_gateways-b1406909-5dee-4dd1-b612-37785b2fd2d1.json @@ -1,8 +1,8 @@ { - "id" : "1951ffa5-fb14-4e22-960f-072d26f88ab8", - "name" : "adyen_gateways", + "id" : "b1406909-5dee-4dd1-b612-37785b2fd2d1", + "name" : "api_adyen_gateways", "request" : { - "url" : "/adyen_gateways", + "url" : "/api/adyen_gateways", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"68\",\"async_api\":true,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"name\":\"Incentro Adyen Gateway\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null,\"webhook_endpoint_secret\":\"foobar\"},\"type\":\"adyen_gateways\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:28.084Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"461589d6ac7c0da404fdaa936ffd9a19d1c5b55c08d9018d59e632bdd2fa8338\"}}}", + "body" : "{\"data\":{\"id\":\"WjQGrspznx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T16:05:19.268Z\",\"updated_at\":\"2024-10-24T16:05:19.268Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/WjQGrspznx/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"22f77155c60c9ed1a5dd68eb034ac19e8dd47b02ab613be5b4ec7ee3a0de34a2\"}}}", "headers" : { - "x-request-id" : "0183aab7-6875-4a6b-abf7-8cb5e1bbec00", - "x-kong-upstream-latency" : "22", + "x-request-id" : "d4199462-be31-41e6-86e1-7f5d14f7e8c0", + "x-kong-upstream-latency" : "20", "X-Ratelimit-Remaining" : "98", - "x-kong-request-id" : "1fefa51cd92db91e7f3c5f7760161a1a", + "x-kong-request-id" : "57d3fd6556b56070e3b4120e80d10a41", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:28 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:19 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"aa8945b6ff004cd8e49eb919464921ef\"", + "etag" : "W/\"e6707e8d5537f2ff11aef944f7e88f41\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "1951ffa5-fb14-4e22-960f-072d26f88ab8", + "uuid" : "b1406909-5dee-4dd1-b612-37785b2fd2d1", "persistent" : true, - "insertionIndex" : 277 + "insertionIndex" : 282 } \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json b/mock/mappings/api_adyen_gateways_bxzlvszgyj-40a880b4-07c2-4024-baa8-0690ca3e1c1d.json similarity index 61% rename from mock/mappings/addresses_bazyuqxgqj-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json rename to mock/mappings/api_adyen_gateways_bxzlvszgyj-40a880b4-07c2-4024-baa8-0690ca3e1c1d.json index c184c42..a8308b4 100644 --- a/mock/mappings/addresses_bazyuqxgqj-9020fcc1-4a5a-4be1-b1a0-4b8baec72f69.json +++ b/mock/mappings/api_adyen_gateways_bxzlvszgyj-40a880b4-07c2-4024-baa8-0690ca3e1c1d.json @@ -1,22 +1,22 @@ { - "id" : "9020fcc1-4a5a-4be1-b1a0-4b8baec72f69", - "name" : "addresses_bazyuqxgqj", + "id" : "40a880b4-07c2-4024-baa8-0690ca3e1c1d", + "name" : "api_adyen_gateways_bxzlvszgyj", "request" : { - "url" : "/addresses/baZYuqxgqJ", + "url" : "/api/adyen_gateways/BxZLVszGyj", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "5818b57f-cc9a-479c-8361-18587d55d0df", + "x-request-id" : "1b75ed03-cd1f-4463-9f14-5b4e075ab70d", "x-kong-upstream-latency" : "8", - "X-Ratelimit-Remaining" : "96", - "x-kong-request-id" : "78ca7657e4b99877fa2c5e4353aafb3e", + "X-Ratelimit-Remaining" : "3", + "x-kong-request-id" : "1b64bf5651379e5de21db35a1fe62e56", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:27 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:09 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "9020fcc1-4a5a-4be1-b1a0-4b8baec72f69", + "uuid" : "40a880b4-07c2-4024-baa8-0690ca3e1c1d", "persistent" : true, - "scenarioName" : "scenario-44-addresses-baZYuqxgqJ", - "requiredScenarioState" : "scenario-44-addresses-baZYuqxgqJ-4", - "insertionIndex" : 278 + "scenarioName" : "scenario-12-api-adyen_gateways-BxZLVszGyj", + "requiredScenarioState" : "scenario-12-api-adyen_gateways-BxZLVszGyj-4", + "insertionIndex" : 77 } \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-023161d7-1588-4ac2-b760-2fd7797bf189.json b/mock/mappings/api_adyen_gateways_bxzlvszgyj-6b4c973f-93af-41e2-873c-9899a3f4498b.json similarity index 51% rename from mock/mappings/adyen_gateways_pkaqrsdyzk-023161d7-1588-4ac2-b760-2fd7797bf189.json rename to mock/mappings/api_adyen_gateways_bxzlvszgyj-6b4c973f-93af-41e2-873c-9899a3f4498b.json index 1d34b61..1d6f6c6 100644 --- a/mock/mappings/adyen_gateways_pkaqrsdyzk-023161d7-1588-4ac2-b760-2fd7797bf189.json +++ b/mock/mappings/api_adyen_gateways_bxzlvszgyj-6b4c973f-93af-41e2-873c-9899a3f4498b.json @@ -1,38 +1,38 @@ { - "id" : "023161d7-1588-4ac2-b760-2fd7797bf189", - "name" : "adyen_gateways_pkaqrsdyzk", + "id" : "6b4c973f-93af-41e2-873c-9899a3f4498b", + "name" : "api_adyen_gateways_bxzlvszgyj", "request" : { - "url" : "/adyen_gateways/PkaqRsdyzk", + "url" : "/api/adyen_gateways/BxZLVszGyj", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:52:17.617Z\",\"updated_at\":\"2024-10-24T15:52:17.617Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/PkaqRsdyzk/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/PkaqRsdyzk/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0fb76ea4a1383324a39553902caa93871cbd4bccfee595e60b4f8fdbf9899530\"}}}", + "body" : "{\"data\":{\"id\":\"BxZLVszGyj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T16:06:06.712Z\",\"updated_at\":\"2024-10-24T16:06:06.712Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/BxZLVszGyj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b78ffd3775f4cfa61bb0b82211a86a4d9f6d84043bdf1898bddef4780451f5e6\"}}}", "headers" : { - "x-request-id" : "8f0eaff2-dc13-45de-89b6-8314ffa052aa", - "x-kong-upstream-latency" : "31", + "x-request-id" : "45a10c8e-0f0a-4146-983e-69195afa95e5", + "x-kong-upstream-latency" : "16", "X-Ratelimit-Remaining" : "9", - "x-kong-request-id" : "3457033e7556b53e4aed3047fbe96a43", + "x-kong-request-id" : "7dbdcf14b8ec93449abdbe4a0ef7af7d", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:18 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:07 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"96e3e4a1874928ce3846e67f31a0182e\"", + "etag" : "W/\"a128a15b986d8b67b21567e9b442cd03\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "023161d7-1588-4ac2-b760-2fd7797bf189", + "uuid" : "6b4c973f-93af-41e2-873c-9899a3f4498b", "persistent" : true, - "scenarioName" : "scenario-11-adyen_gateways-PkaqRsdyzk", + "scenarioName" : "scenario-12-api-adyen_gateways-BxZLVszGyj", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-2", - "insertionIndex" : 81 + "newScenarioState" : "scenario-12-api-adyen_gateways-BxZLVszGyj-2", + "insertionIndex" : 86 } \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-46f79876-f8dd-4de2-a912-d0f3098144e9.json b/mock/mappings/api_adyen_gateways_bxzlvszgyj-80fb2e7b-c7c1-43c3-a2b9-04b487ce58ca.json similarity index 58% rename from mock/mappings/inventory_return_locations_vlkzeirgrv-46f79876-f8dd-4de2-a912-d0f3098144e9.json rename to mock/mappings/api_adyen_gateways_bxzlvszgyj-80fb2e7b-c7c1-43c3-a2b9-04b487ce58ca.json index 36a211c..0a7f285 100644 --- a/mock/mappings/inventory_return_locations_vlkzeirgrv-46f79876-f8dd-4de2-a912-d0f3098144e9.json +++ b/mock/mappings/api_adyen_gateways_bxzlvszgyj-80fb2e7b-c7c1-43c3-a2b9-04b487ce58ca.json @@ -1,21 +1,21 @@ { - "id" : "46f79876-f8dd-4de2-a912-d0f3098144e9", - "name" : "inventory_return_locations_vlkzeirgrv", + "id" : "80fb2e7b-c7c1-43c3-a2b9-04b487ce58ca", + "name" : "api_adyen_gateways_bxzlvszgyj", "request" : { - "url" : "/inventory_return_locations/VlkzeiRGrv", + "url" : "/api/adyen_gateways/BxZLVszGyj", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "e8dd1f73-8547-4662-bb34-93017ef748b9", + "x-request-id" : "c02ffd30-cac4-4c60-976a-1e0d7afcca0e", "x-kong-upstream-latency" : "27", - "X-Ratelimit-Remaining" : "86", - "x-kong-request-id" : "ab69c9433e122f087972f02787460328", + "X-Ratelimit-Remaining" : "66", + "x-kong-request-id" : "99fbc1536f8e674d47b9183c95ad4d10", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:08 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "46f79876-f8dd-4de2-a912-d0f3098144e9", + "uuid" : "80fb2e7b-c7c1-43c3-a2b9-04b487ce58ca", "persistent" : true, - "insertionIndex" : 176 + "insertionIndex" : 78 } \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_bxzlvszgyj-ae58577d-fca0-4621-becc-5b7128ef10f2.json b/mock/mappings/api_adyen_gateways_bxzlvszgyj-ae58577d-fca0-4621-becc-5b7128ef10f2.json new file mode 100644 index 0000000..990a86a --- /dev/null +++ b/mock/mappings/api_adyen_gateways_bxzlvszgyj-ae58577d-fca0-4621-becc-5b7128ef10f2.json @@ -0,0 +1,38 @@ +{ + "id" : "ae58577d-fca0-4621-becc-5b7128ef10f2", + "name" : "api_adyen_gateways_bxzlvszgyj", + "request" : { + "url" : "/api/adyen_gateways/BxZLVszGyj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BxZLVszGyj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T16:06:06.712Z\",\"updated_at\":\"2024-10-24T16:06:06.712Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/BxZLVszGyj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bf23d4c6eaf924e9e051d244df149444a26d19585644f3218c5b57387f381433\"}}}", + "headers" : { + "x-request-id" : "3e4e381c-57f8-41bb-aba6-d0a9bce3aa99", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "5", + "x-kong-request-id" : "44e22966fa6c6a400622d34a97eca13d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:08 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"e7b6eb0c4e02b975deca461cb740718b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ae58577d-fca0-4621-becc-5b7128ef10f2", + "persistent" : true, + "scenarioName" : "scenario-12-api-adyen_gateways-BxZLVszGyj", + "requiredScenarioState" : "scenario-12-api-adyen_gateways-BxZLVszGyj-3", + "newScenarioState" : "scenario-12-api-adyen_gateways-BxZLVszGyj-4", + "insertionIndex" : 81 +} \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_bxzlvszgyj-c1b43eb5-36b9-406b-b094-38dba7acf284.json b/mock/mappings/api_adyen_gateways_bxzlvszgyj-c1b43eb5-36b9-406b-b094-38dba7acf284.json new file mode 100644 index 0000000..8193475 --- /dev/null +++ b/mock/mappings/api_adyen_gateways_bxzlvszgyj-c1b43eb5-36b9-406b-b094-38dba7acf284.json @@ -0,0 +1,38 @@ +{ + "id" : "c1b43eb5-36b9-406b-b094-38dba7acf284", + "name" : "api_adyen_gateways_bxzlvszgyj", + "request" : { + "url" : "/api/adyen_gateways/BxZLVszGyj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BxZLVszGyj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T16:06:06.712Z\",\"updated_at\":\"2024-10-24T16:06:06.712Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/BxZLVszGyj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/BxZLVszGyj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d8c15c5fb9806ec85ab9b4c75826301dddde493243851a45a440cd7b991bb623\"}}}", + "headers" : { + "x-request-id" : "cef6b3ad-edab-49a1-9ef8-f84e997ed343", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "7", + "x-kong-request-id" : "be21d93bd408413b85edef62007de62c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:07 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"a2c94634c2ccf8c66c8f70b7de39e5ba\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "c1b43eb5-36b9-406b-b094-38dba7acf284", + "persistent" : true, + "scenarioName" : "scenario-12-api-adyen_gateways-BxZLVszGyj", + "requiredScenarioState" : "scenario-12-api-adyen_gateways-BxZLVszGyj-2", + "newScenarioState" : "scenario-12-api-adyen_gateways-BxZLVszGyj-3", + "insertionIndex" : 84 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-638ff192-a608-4203-9d87-f959b656ce38.json b/mock/mappings/api_adyen_gateways_wjqgrspznx-00347543-4e00-4302-8ec7-c9f406fd3def.json similarity index 51% rename from mock/mappings/adyen_gateways_nknmksokbj-638ff192-a608-4203-9d87-f959b656ce38.json rename to mock/mappings/api_adyen_gateways_wjqgrspznx-00347543-4e00-4302-8ec7-c9f406fd3def.json index becd442..b0ff0b7 100644 --- a/mock/mappings/adyen_gateways_nknmksokbj-638ff192-a608-4203-9d87-f959b656ce38.json +++ b/mock/mappings/api_adyen_gateways_wjqgrspznx-00347543-4e00-4302-8ec7-c9f406fd3def.json @@ -1,38 +1,38 @@ { - "id" : "638ff192-a608-4203-9d87-f959b656ce38", - "name" : "adyen_gateways_nknmksokbj", + "id" : "00347543-4e00-4302-8ec7-c9f406fd3def", + "name" : "api_adyen_gateways_wjqgrspznx", "request" : { - "url" : "/adyen_gateways/nkNMKsOKbj", + "url" : "/api/adyen_gateways/WjQGrspznx", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:28.084Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b855f26b06aef33cc099b5bb2a180a3cda0de46df81fe663e66d86e40bca9433\"}}}", + "body" : "{\"data\":{\"id\":\"WjQGrspznx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T16:05:19.268Z\",\"updated_at\":\"2024-10-24T16:05:19.268Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/WjQGrspznx/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4f1f3a010174fb45d9aa794d8a4835319e74dd530fe3ffb884fa8c320c92197b\"}}}", "headers" : { - "x-request-id" : "9540608f-dcf4-4432-978d-60ab32f229fd", + "x-request-id" : "ed13c2e5-c85c-464f-980f-47ae6eccd9e6", "x-kong-upstream-latency" : "15", "X-Ratelimit-Remaining" : "95", - "x-kong-request-id" : "72199a2a0bd1803ac2bced68e1e74d4a", + "x-kong-request-id" : "2d3dd56ca05adf7b2a42f1091187e97f", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:28 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:19 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"867a726aa38160ee4bb0f8e94c251cf5\"", + "etag" : "W/\"c203cfeb29b7d37f730468e95f896055\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "638ff192-a608-4203-9d87-f959b656ce38", + "uuid" : "00347543-4e00-4302-8ec7-c9f406fd3def", "persistent" : true, - "scenarioName" : "scenario-43-adyen_gateways-nkNMKsOKbj", + "scenarioName" : "scenario-43-api-adyen_gateways-WjQGrspznx", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-43-adyen_gateways-nkNMKsOKbj-2", - "insertionIndex" : 276 + "newScenarioState" : "scenario-43-api-adyen_gateways-WjQGrspznx-2", + "insertionIndex" : 281 } \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_wjqgrspznx-0d9a9551-ba12-4fb3-8fd3-ff957b069f0c.json b/mock/mappings/api_adyen_gateways_wjqgrspznx-0d9a9551-ba12-4fb3-8fd3-ff957b069f0c.json new file mode 100644 index 0000000..c997ed7 --- /dev/null +++ b/mock/mappings/api_adyen_gateways_wjqgrspznx-0d9a9551-ba12-4fb3-8fd3-ff957b069f0c.json @@ -0,0 +1,38 @@ +{ + "id" : "0d9a9551-ba12-4fb3-8fd3-ff957b069f0c", + "name" : "api_adyen_gateways_wjqgrspznx", + "request" : { + "url" : "/api/adyen_gateways/WjQGrspznx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"WjQGrspznx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway Changed\",\"created_at\":\"2024-10-24T16:05:19.268Z\",\"updated_at\":\"2024-10-24T16:05:20.246Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":67,\"async_api\":false,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/WjQGrspznx/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9ffdd4fb6fbc6fd5e0ea1619cb89178fe58f521d5018c8c90ec0d64597fc230b\"}}}", + "headers" : { + "x-request-id" : "b7259726-3a21-4c90-9252-e5f05d338d7d", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "93", + "x-kong-request-id" : "067b8f0b608f2d18dbaf1849baee7e59", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:20 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c91a53d4c036c576d8a730bdc50b9d40\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0d9a9551-ba12-4fb3-8fd3-ff957b069f0c", + "persistent" : true, + "scenarioName" : "scenario-43-api-adyen_gateways-WjQGrspznx", + "requiredScenarioState" : "scenario-43-api-adyen_gateways-WjQGrspznx-3", + "newScenarioState" : "scenario-43-api-adyen_gateways-WjQGrspznx-4", + "insertionIndex" : 278 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_nknmksokbj-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json b/mock/mappings/api_adyen_gateways_wjqgrspznx-79bdec12-7dd7-4901-a4ed-d30b2c46e83e.json similarity index 57% rename from mock/mappings/adyen_gateways_nknmksokbj-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json rename to mock/mappings/api_adyen_gateways_wjqgrspznx-79bdec12-7dd7-4901-a4ed-d30b2c46e83e.json index e275abc..0cb826d 100644 --- a/mock/mappings/adyen_gateways_nknmksokbj-7af81d64-d8c0-4766-ba74-faa8ea48e1be.json +++ b/mock/mappings/api_adyen_gateways_wjqgrspznx-79bdec12-7dd7-4901-a4ed-d30b2c46e83e.json @@ -1,40 +1,40 @@ { - "id" : "7af81d64-d8c0-4766-ba74-faa8ea48e1be", - "name" : "adyen_gateways_nknmksokbj", + "id" : "79bdec12-7dd7-4901-a4ed-d30b2c46e83e", + "name" : "api_adyen_gateways_wjqgrspznx", "request" : { - "url" : "/adyen_gateways/nkNMKsOKbj", + "url" : "/api/adyen_gateways/WjQGrspznx", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"67\",\"async_api\":false,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"name\":\"Incentro Adyen Gateway Changed\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null,\"webhook_endpoint_secret\":null},\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_version\":\"67\",\"async_api\":false,\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"merchant_account\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"name\":\"Incentro Adyen Gateway Changed\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null,\"webhook_endpoint_secret\":null},\"id\":\"WjQGrspznx\",\"type\":\"adyen_gateways\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nkNMKsOKbj\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway Changed\",\"created_at\":\"2024-10-24T15:51:28.084Z\",\"updated_at\":\"2024-10-24T15:51:29.072Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":67,\"async_api\":false,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/nkNMKsOKbj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/nkNMKsOKbj/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bda41889f7a6bbeec9f64caacf964427e078524e5e6e5ed15baa7787c70e15c1\"}}}", + "body" : "{\"data\":{\"id\":\"WjQGrspznx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway Changed\",\"created_at\":\"2024-10-24T16:05:19.268Z\",\"updated_at\":\"2024-10-24T16:05:20.246Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":67,\"async_api\":false,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/WjQGrspznx/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"be916e8d28f0ba4a3878d5f30a969c4295e233f6de35659f7df1cd12af9112e6\"}}}", "headers" : { - "x-request-id" : "73933075-886f-4c50-8315-d4d4d021cab3", - "x-kong-upstream-latency" : "26", + "x-request-id" : "22b85dd7-ef2c-4232-8eb9-719dfe83eb1d", + "x-kong-upstream-latency" : "21", "X-Ratelimit-Remaining" : "98", - "x-kong-request-id" : "d8489108f63284594db3874a1c8f2b4d", + "x-kong-request-id" : "b473ef4da8b8e65412f4bf278af9a222", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:29 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:20 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"be820e4cba5b47cd07cdad142968d62e\"", + "etag" : "W/\"0323ff309a6193b747e66d5490249ca1\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "7af81d64-d8c0-4766-ba74-faa8ea48e1be", + "uuid" : "79bdec12-7dd7-4901-a4ed-d30b2c46e83e", "persistent" : true, - "insertionIndex" : 274 + "insertionIndex" : 279 } \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-81fb0ed1-62d8-44f6-ac98-13106b51684b.json b/mock/mappings/api_adyen_gateways_wjqgrspznx-b43c7d2d-0f65-43bc-83a0-e704ab925045.json similarity index 61% rename from mock/mappings/stripe_gateways_mjrmbswxyv-81fb0ed1-62d8-44f6-ac98-13106b51684b.json rename to mock/mappings/api_adyen_gateways_wjqgrspznx-b43c7d2d-0f65-43bc-83a0-e704ab925045.json index 3d8a5ba..e80a62f 100644 --- a/mock/mappings/stripe_gateways_mjrmbswxyv-81fb0ed1-62d8-44f6-ac98-13106b51684b.json +++ b/mock/mappings/api_adyen_gateways_wjqgrspznx-b43c7d2d-0f65-43bc-83a0-e704ab925045.json @@ -1,22 +1,22 @@ { - "id" : "81fb0ed1-62d8-44f6-ac98-13106b51684b", - "name" : "stripe_gateways_mjrmbswxyv", + "id" : "b43c7d2d-0f65-43bc-83a0-e704ab925045", + "name" : "api_adyen_gateways_wjqgrspznx", "request" : { - "url" : "/stripe_gateways/MjRMbsWXYv", + "url" : "/api/adyen_gateways/WjQGrspznx", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "5bde010c-90bb-4b75-8803-323336a6d89c", - "x-kong-upstream-latency" : "9", - "X-Ratelimit-Remaining" : "79", - "x-kong-request-id" : "ed032528d42c033b87a8b54299c63a71", + "x-request-id" : "99dfc73a-5035-4bd2-872c-1c228ab8dab7", + "x-kong-upstream-latency" : "8", + "X-Ratelimit-Remaining" : "92", + "x-kong-request-id" : "b599f406d8f94342c1e4eb293324c55d", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:35 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:20 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "81fb0ed1-62d8-44f6-ac98-13106b51684b", + "uuid" : "b43c7d2d-0f65-43bc-83a0-e704ab925045", "persistent" : true, - "scenarioName" : "scenario-3-stripe_gateways-MjRMbsWXYv", - "requiredScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-4", - "insertionIndex" : 16 + "scenarioName" : "scenario-43-api-adyen_gateways-WjQGrspznx", + "requiredScenarioState" : "scenario-43-api-adyen_gateways-WjQGrspznx-4", + "insertionIndex" : 276 } \ No newline at end of file diff --git a/mock/mappings/api_adyen_gateways_wjqgrspznx-cc8ac6aa-d2a0-435d-a0c5-284f28b0753d.json b/mock/mappings/api_adyen_gateways_wjqgrspznx-cc8ac6aa-d2a0-435d-a0c5-284f28b0753d.json new file mode 100644 index 0000000..21797d5 --- /dev/null +++ b/mock/mappings/api_adyen_gateways_wjqgrspznx-cc8ac6aa-d2a0-435d-a0c5-284f28b0753d.json @@ -0,0 +1,38 @@ +{ + "id" : "cc8ac6aa-d2a0-435d-a0c5-284f28b0753d", + "name" : "api_adyen_gateways_wjqgrspznx", + "request" : { + "url" : "/api/adyen_gateways/WjQGrspznx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"WjQGrspznx\",\"type\":\"adyen_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx\"},\"attributes\":{\"name\":\"Incentro Adyen Gateway\",\"created_at\":\"2024-10-24T16:05:19.268Z\",\"updated_at\":\"2024-10-24T16:05:19.268Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_adyen_gateway.incentro_adyen_gateway\"},\"live_url_prefix\":\"1797a841fbb37ca7-AdyenDemo\",\"api_version\":68,\"async_api\":true,\"native_customer_payment_sources\":false,\"webhook_endpoint_secret\":\"foobar\",\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/adyen_gateways/WjQGrspznx/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/versions\"}},\"adyen_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/relationships/adyen_payments\",\"related\":\"https://loucs.commercelayer.io/api/adyen_gateways/WjQGrspznx/adyen_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0e3510c98f9c5aedcd7e5330ef45482f0dc4dec70afdb6f62efc526be50a1c0d\"}}}", + "headers" : { + "x-request-id" : "c90c3167-b30d-487a-9bfe-bdf7f1cc907d", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "f259725efe929b6e8fe1a7559591e525", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:19 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"f9f37d67b3ec3f87794a2b7b53863b31\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "cc8ac6aa-d2a0-435d-a0c5-284f28b0753d", + "persistent" : true, + "scenarioName" : "scenario-43-api-adyen_gateways-WjQGrspznx", + "requiredScenarioState" : "scenario-43-api-adyen_gateways-WjQGrspznx-2", + "newScenarioState" : "scenario-43-api-adyen_gateways-WjQGrspznx-3", + "insertionIndex" : 280 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-74b55a1d-12a3-43f8-b165-257430af426a.json b/mock/mappings/api_adyen_gateways_wjqgrspznx-e11a37a8-d3ef-4e93-ba10-fab3d733a5ef.json similarity index 58% rename from mock/mappings/price_lists_nlnwecrekb-74b55a1d-12a3-43f8-b165-257430af426a.json rename to mock/mappings/api_adyen_gateways_wjqgrspznx-e11a37a8-d3ef-4e93-ba10-fab3d733a5ef.json index 57ac14f..8f67831 100644 --- a/mock/mappings/price_lists_nlnwecrekb-74b55a1d-12a3-43f8-b165-257430af426a.json +++ b/mock/mappings/api_adyen_gateways_wjqgrspznx-e11a37a8-d3ef-4e93-ba10-fab3d733a5ef.json @@ -1,21 +1,21 @@ { - "id" : "74b55a1d-12a3-43f8-b165-257430af426a", - "name" : "price_lists_nlnwecrekb", + "id" : "e11a37a8-d3ef-4e93-ba10-fab3d733a5ef", + "name" : "api_adyen_gateways_wjqgrspznx", "request" : { - "url" : "/price_lists/nLNWECREKB", + "url" : "/api/adyen_gateways/WjQGrspznx", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "fdef366b-f440-4ece-8ff9-3fe6a203628a", - "x-kong-upstream-latency" : "25", + "x-request-id" : "606b359d-b411-40ec-a2ca-2e36b17a9d14", + "x-kong-upstream-latency" : "29", "X-Ratelimit-Remaining" : "98", - "x-kong-request-id" : "f6d16f38626ad414e38c6827511f8a5c", + "x-kong-request-id" : "945a386bd0aabf76d3fb2e1eb7e50553", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:24 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:20 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "74b55a1d-12a3-43f8-b165-257430af426a", + "uuid" : "e11a37a8-d3ef-4e93-ba10-fab3d733a5ef", "persistent" : true, - "insertionIndex" : 57 + "insertionIndex" : 277 } \ No newline at end of file diff --git a/mock/mappings/bing_geocoders-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json b/mock/mappings/api_bing_geocoders-de06e81e-c047-4034-be78-741ff496490e.json similarity index 54% rename from mock/mappings/bing_geocoders-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json rename to mock/mappings/api_bing_geocoders-de06e81e-c047-4034-be78-741ff496490e.json index 59de079..9a6edef 100644 --- a/mock/mappings/bing_geocoders-f525f83c-e960-44c4-a7a1-c17cf683f2b9.json +++ b/mock/mappings/api_bing_geocoders-de06e81e-c047-4034-be78-741ff496490e.json @@ -1,8 +1,8 @@ { - "id" : "f525f83c-e960-44c4-a7a1-c17cf683f2b9", - "name" : "bing_geocoders", + "id" : "de06e81e-c047-4034-be78-741ff496490e", + "name" : "api_bing_geocoders", "request" : { - "url" : "/bing_geocoders", + "url" : "/api/bing_geocoders", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"key\":\"Bing Virtualearth Key\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"},\"name\":\"Incentro Bing Geocoder\",\"reference\":null,\"reference_origin\":null},\"type\":\"bing_geocoders\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:30.518Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7ce5ede6881de676f419ec85197b000172e7481559351be47c304e6d70419ea9\"}}}", + "body" : "{\"data\":{\"id\":\"aGBwksZdme\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T16:05:21.384Z\",\"updated_at\":\"2024-10-24T16:05:21.384Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fe2e63ce95c7feb7eaaba73173a77af305f14dd4c9b403de07b294fc29fc05c1\"}}}", "headers" : { - "x-request-id" : "c29c330d-fcd6-433c-a0f7-84cd3869b27c", - "x-kong-upstream-latency" : "21", + "x-request-id" : "62702543-165b-46b7-9e54-5326f137bafb", + "x-kong-upstream-latency" : "25", "X-Ratelimit-Remaining" : "97", - "x-kong-request-id" : "9cd89613044dbd169548784357bb8225", + "x-kong-request-id" : "e30d2c6e9add9245c9bda727d5537a6c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:30 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:21 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"345ec92403fd24124cae0610d5026856\"", + "etag" : "W/\"d84b4930cb0e1a945ce91bf14cb0a7a5\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "f525f83c-e960-44c4-a7a1-c17cf683f2b9", + "uuid" : "de06e81e-c047-4034-be78-741ff496490e", "persistent" : true, - "insertionIndex" : 270 + "insertionIndex" : 275 } \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-735d2578-1567-4bc4-ba9b-0d4f036a36be.json b/mock/mappings/api_bing_geocoders_agbwkszdme-04fafff7-d476-4b4e-b346-da5cf208c72f.json similarity index 64% rename from mock/mappings/bing_geocoders_lxkgysqxbx-735d2578-1567-4bc4-ba9b-0d4f036a36be.json rename to mock/mappings/api_bing_geocoders_agbwkszdme-04fafff7-d476-4b4e-b346-da5cf208c72f.json index 1fce51f..9308dc4 100644 --- a/mock/mappings/bing_geocoders_lxkgysqxbx-735d2578-1567-4bc4-ba9b-0d4f036a36be.json +++ b/mock/mappings/api_bing_geocoders_agbwkszdme-04fafff7-d476-4b4e-b346-da5cf208c72f.json @@ -1,22 +1,22 @@ { - "id" : "735d2578-1567-4bc4-ba9b-0d4f036a36be", - "name" : "bing_geocoders_lxkgysqxbx", + "id" : "04fafff7-d476-4b4e-b346-da5cf208c72f", + "name" : "api_bing_geocoders_agbwkszdme", "request" : { - "url" : "/bing_geocoders/lxKgysqXBx", + "url" : "/api/bing_geocoders/aGBwksZdme", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "fde643d5-e8aa-46de-9ff3-3467d97a1f01", + "x-request-id" : "9af38189-f80b-4ba0-9481-4f35f19846b0", "x-kong-upstream-latency" : "8", "X-Ratelimit-Remaining" : "88", - "x-kong-request-id" : "4d683365f0a78e3232e579586905473f", + "x-kong-request-id" : "e27bc60e887907109ce57422eafe510b", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:32 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:22 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "735d2578-1567-4bc4-ba9b-0d4f036a36be", + "uuid" : "04fafff7-d476-4b4e-b346-da5cf208c72f", "persistent" : true, - "scenarioName" : "scenario-42-bing_geocoders-lxKgysqXBx", - "requiredScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-4", - "insertionIndex" : 264 + "scenarioName" : "scenario-42-api-bing_geocoders-aGBwksZdme", + "requiredScenarioState" : "scenario-42-api-bing_geocoders-aGBwksZdme-4", + "insertionIndex" : 269 } \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_agbwkszdme-0a1eecf4-026f-487a-9471-1cd2ff0ede9f.json b/mock/mappings/api_bing_geocoders_agbwkszdme-0a1eecf4-026f-487a-9471-1cd2ff0ede9f.json new file mode 100644 index 0000000..1ad8fc4 --- /dev/null +++ b/mock/mappings/api_bing_geocoders_agbwkszdme-0a1eecf4-026f-487a-9471-1cd2ff0ede9f.json @@ -0,0 +1,38 @@ +{ + "id" : "0a1eecf4-026f-487a-9471-1cd2ff0ede9f", + "name" : "api_bing_geocoders_agbwkszdme", + "request" : { + "url" : "/api/bing_geocoders/aGBwksZdme", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aGBwksZdme\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T16:05:21.384Z\",\"updated_at\":\"2024-10-24T16:05:22.267Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"85bc5ed308d618cd03993d40e95347b4704e627accbe46d5cc7cd0d0e12215c2\"}}}", + "headers" : { + "x-request-id" : "9acbe0b6-bf38-4ebb-b56b-1a8cef8bef6c", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "89", + "x-kong-request-id" : "4bc04f369e5d954887cebe10a61b1b4c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:22 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"135222ffff87e1233eac70f02a98b91a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0a1eecf4-026f-487a-9471-1cd2ff0ede9f", + "persistent" : true, + "scenarioName" : "scenario-42-api-bing_geocoders-aGBwksZdme", + "requiredScenarioState" : "scenario-42-api-bing_geocoders-aGBwksZdme-3", + "newScenarioState" : "scenario-42-api-bing_geocoders-aGBwksZdme-4", + "insertionIndex" : 271 +} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-16371e28-1401-4ac7-a81c-a0988cb4b54d.json b/mock/mappings/api_bing_geocoders_agbwkszdme-3a36bdd0-9d51-4121-9fe1-f4a117185edf.json similarity index 57% rename from mock/mappings/bing_geocoders_lxkgysqxbx-16371e28-1401-4ac7-a81c-a0988cb4b54d.json rename to mock/mappings/api_bing_geocoders_agbwkszdme-3a36bdd0-9d51-4121-9fe1-f4a117185edf.json index 0ddd7a5..a733169 100644 --- a/mock/mappings/bing_geocoders_lxkgysqxbx-16371e28-1401-4ac7-a81c-a0988cb4b54d.json +++ b/mock/mappings/api_bing_geocoders_agbwkszdme-3a36bdd0-9d51-4121-9fe1-f4a117185edf.json @@ -1,40 +1,40 @@ { - "id" : "16371e28-1401-4ac7-a81c-a0988cb4b54d", - "name" : "bing_geocoders_lxkgysqxbx", + "id" : "3a36bdd0-9d51-4121-9fe1-f4a117185edf", + "name" : "api_bing_geocoders_agbwkszdme", "request" : { - "url" : "/bing_geocoders/lxKgysqXBx", + "url" : "/api/bing_geocoders/aGBwksZdme", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"key\":\"Bing Virtualearth Key\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"},\"name\":\"Incentro Updated Bing Geocoder\",\"reference\":null,\"reference_origin\":null},\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"key\":\"Bing Virtualearth Key\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"},\"name\":\"Incentro Updated Bing Geocoder\",\"reference\":null,\"reference_origin\":null},\"id\":\"aGBwksZdme\",\"type\":\"bing_geocoders\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:31.492Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d2cb830a5c41a2b65b8f5775a3119710a54c48f6183348893ca17d9e91267072\"}}}", + "body" : "{\"data\":{\"id\":\"aGBwksZdme\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T16:05:21.384Z\",\"updated_at\":\"2024-10-24T16:05:22.267Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d8cd5e3fc0176bdc7f8b2a075579f582d53dcc901758505dd1f74ab40220a3ea\"}}}", "headers" : { - "x-request-id" : "098ae3ff-78e4-4cbb-939c-c1641b051690", - "x-kong-upstream-latency" : "24", + "x-request-id" : "d97500a9-e94e-451e-91e2-ae7fb9951707", + "x-kong-upstream-latency" : "21", "X-Ratelimit-Remaining" : "97", - "x-kong-request-id" : "09315b16004dde05bd6c2b5fc97d8222", + "x-kong-request-id" : "57086d052e907517820d2d0e668c3e1a", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:31 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:22 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"f78fcc276b620a602f989e987a691d46\"", + "etag" : "W/\"b500c18f517d1aad7d11f3b10919648d\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "16371e28-1401-4ac7-a81c-a0988cb4b54d", + "uuid" : "3a36bdd0-9d51-4121-9fe1-f4a117185edf", "persistent" : true, - "insertionIndex" : 267 + "insertionIndex" : 272 } \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json b/mock/mappings/api_bing_geocoders_agbwkszdme-9abc1516-c65f-4d8f-9658-60259615af5f.json similarity index 58% rename from mock/mappings/bing_geocoders_lxkgysqxbx-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json rename to mock/mappings/api_bing_geocoders_agbwkszdme-9abc1516-c65f-4d8f-9658-60259615af5f.json index 30eac2c..61bbc2d 100644 --- a/mock/mappings/bing_geocoders_lxkgysqxbx-51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5.json +++ b/mock/mappings/api_bing_geocoders_agbwkszdme-9abc1516-c65f-4d8f-9658-60259615af5f.json @@ -1,21 +1,21 @@ { - "id" : "51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5", - "name" : "bing_geocoders_lxkgysqxbx", + "id" : "9abc1516-c65f-4d8f-9658-60259615af5f", + "name" : "api_bing_geocoders_agbwkszdme", "request" : { - "url" : "/bing_geocoders/lxKgysqXBx", + "url" : "/api/bing_geocoders/aGBwksZdme", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "c025c685-46aa-4de7-8d5e-cbdfed51c370", - "x-kong-upstream-latency" : "17", + "x-request-id" : "1ea44893-4f78-45c5-96fa-602ae7025b49", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "97", - "x-kong-request-id" : "b4fe4d0b9ad15878b7095575be05fe59", + "x-kong-request-id" : "bae11b1e4943a733ba5faa3bda253e7f", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:32 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:22 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "51a5a5ed-df78-4f42-a80d-d1b1d16f2ba5", + "uuid" : "9abc1516-c65f-4d8f-9658-60259615af5f", "persistent" : true, - "insertionIndex" : 265 + "insertionIndex" : 270 } \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_agbwkszdme-a9596e5d-7221-4e58-b593-03883c996f94.json b/mock/mappings/api_bing_geocoders_agbwkszdme-a9596e5d-7221-4e58-b593-03883c996f94.json new file mode 100644 index 0000000..90530d5 --- /dev/null +++ b/mock/mappings/api_bing_geocoders_agbwkszdme-a9596e5d-7221-4e58-b593-03883c996f94.json @@ -0,0 +1,38 @@ +{ + "id" : "a9596e5d-7221-4e58-b593-03883c996f94", + "name" : "api_bing_geocoders_agbwkszdme", + "request" : { + "url" : "/api/bing_geocoders/aGBwksZdme", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aGBwksZdme\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T16:05:21.384Z\",\"updated_at\":\"2024-10-24T16:05:21.384Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"02a7b7e43f55f04d11fb6a1f7aea924349eed82e010d73886658c3bc36a495e6\"}}}", + "headers" : { + "x-request-id" : "4137ed5b-5c62-4dcd-aeeb-5bffcd0c2840", + "x-kong-upstream-latency" : "22", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "af664c275409827e9934be5237ca0f30", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:21 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"7c99251c7789de7524f005839fe3b05f\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a9596e5d-7221-4e58-b593-03883c996f94", + "persistent" : true, + "scenarioName" : "scenario-42-api-bing_geocoders-aGBwksZdme", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-42-api-bing_geocoders-aGBwksZdme-2", + "insertionIndex" : 274 +} \ No newline at end of file diff --git a/mock/mappings/api_bing_geocoders_agbwkszdme-e09e507b-5dd0-4dc7-a031-e2892401c0f3.json b/mock/mappings/api_bing_geocoders_agbwkszdme-e09e507b-5dd0-4dc7-a031-e2892401c0f3.json new file mode 100644 index 0000000..63c9e41 --- /dev/null +++ b/mock/mappings/api_bing_geocoders_agbwkszdme-e09e507b-5dd0-4dc7-a031-e2892401c0f3.json @@ -0,0 +1,38 @@ +{ + "id" : "e09e507b-5dd0-4dc7-a031-e2892401c0f3", + "name" : "api_bing_geocoders_agbwkszdme", + "request" : { + "url" : "/api/bing_geocoders/aGBwksZdme", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aGBwksZdme\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T16:05:21.384Z\",\"updated_at\":\"2024-10-24T16:05:21.384Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/aGBwksZdme/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6cf1ccc051639dae28dde9f9134c8686e4bb8d998803b137055adfdca689db42\"}}}", + "headers" : { + "x-request-id" : "744f7686-6c7f-4e09-9d3b-961a25bf8fe3", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "1b5e5b05ebcc6d692c075308c71b8128", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:21 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b7c7b43d4c6d01ffd102425be71ae454\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e09e507b-5dd0-4dc7-a031-e2892401c0f3", + "persistent" : true, + "scenarioName" : "scenario-42-api-bing_geocoders-aGBwksZdme", + "requiredScenarioState" : "scenario-42-api-bing_geocoders-aGBwksZdme-2", + "newScenarioState" : "scenario-42-api-bing_geocoders-aGBwksZdme-3", + "insertionIndex" : 273 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways-18b1fcc0-7c37-4d6d-93a3-855411622e62.json b/mock/mappings/api_braintree_gateways-47534f05-082a-425d-bfae-74ae0302cd3f.json similarity index 56% rename from mock/mappings/braintree_gateways-18b1fcc0-7c37-4d6d-93a3-855411622e62.json rename to mock/mappings/api_braintree_gateways-47534f05-082a-425d-bfae-74ae0302cd3f.json index ea2cc00..a846096 100644 --- a/mock/mappings/braintree_gateways-18b1fcc0-7c37-4d6d-93a3-855411622e62.json +++ b/mock/mappings/api_braintree_gateways-47534f05-082a-425d-bfae-74ae0302cd3f.json @@ -1,8 +1,8 @@ { - "id" : "18b1fcc0-7c37-4d6d-93a3-855411622e62", - "name" : "braintree_gateways", + "id" : "47534f05-082a-425d-bfae-74ae0302cd3f", + "name" : "api_braintree_gateways", "request" : { - "url" : "/braintree_gateways", + "url" : "/api/braintree_gateways", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"merchant_account_id\":\"xxxx-yyyy-zzzz\",\"merchant_id\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"name\":\"Incentro Braintree Gateway\",\"private_key\":\"xxxx-yyyy-zzzz\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null},\"type\":\"braintree_gateways\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:32.831Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d5c2b85a093711a04622e2223e4ca63de68dee8c8abd23420e326ab783892cbc\"}}}", + "body" : "{\"data\":{\"id\":\"rjPLwsmXrj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T16:05:23.360Z\",\"updated_at\":\"2024-10-24T16:05:23.360Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rjPLwsmXrj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4a9e26b3c336c34e2588d109a2cb18abb62f8d5d0b3a7afedebbb327629fc762\"}}}", "headers" : { - "x-request-id" : "3c82d552-e6a3-4727-a03d-df702ac2165e", - "x-kong-upstream-latency" : "27", + "x-request-id" : "079ab564-d0b0-45a5-80a0-788e688a57bf", + "x-kong-upstream-latency" : "16", "X-Ratelimit-Remaining" : "96", - "x-kong-request-id" : "8401b907dc89ec54ae183a14eaf3d111", + "x-kong-request-id" : "015f5b1e9373a52d1f3c0c1aa83cf91f", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:32 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:23 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"505c35db06d29f062cace1e3ab63e61d\"", + "etag" : "W/\"d852029bf381b28c09e13283f1b90ea0\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "18b1fcc0-7c37-4d6d-93a3-855411622e62", + "uuid" : "47534f05-082a-425d-bfae-74ae0302cd3f", "persistent" : true, - "insertionIndex" : 263 + "insertionIndex" : 268 } \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rjplwsmxrj-2b2059e5-18c4-4b0d-b4e4-385443c792cd.json b/mock/mappings/api_braintree_gateways_rjplwsmxrj-2b2059e5-18c4-4b0d-b4e4-385443c792cd.json new file mode 100644 index 0000000..c1fa08a --- /dev/null +++ b/mock/mappings/api_braintree_gateways_rjplwsmxrj-2b2059e5-18c4-4b0d-b4e4-385443c792cd.json @@ -0,0 +1,38 @@ +{ + "id" : "2b2059e5-18c4-4b0d-b4e4-385443c792cd", + "name" : "api_braintree_gateways_rjplwsmxrj", + "request" : { + "url" : "/api/braintree_gateways/rjPLwsmXrj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rjPLwsmXrj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T16:05:23.360Z\",\"updated_at\":\"2024-10-24T16:05:23.360Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rjPLwsmXrj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0deac4a719c8cadc6fb0ff8fac634ca8fd36b2551a3b73ee63755e9d01ec2abf\"}}}", + "headers" : { + "x-request-id" : "22aebc7f-723e-4130-b811-9093a510a57b", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "87", + "x-kong-request-id" : "7a2b88251a547c121139595ecd9d3d17", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:23 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c3e2a34204530ae7748218e17537b873\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "2b2059e5-18c4-4b0d-b4e4-385443c792cd", + "persistent" : true, + "scenarioName" : "scenario-41-api-braintree_gateways-rjPLwsmXrj", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-41-api-braintree_gateways-rjPLwsmXrj-2", + "insertionIndex" : 267 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-52e93e92-527d-4cb6-824c-6713dd08147c.json b/mock/mappings/api_braintree_gateways_rjplwsmxrj-50736e60-619a-40e2-84b3-64eb18858032.json similarity index 58% rename from mock/mappings/braintree_gateways_dkmlxsnjnj-52e93e92-527d-4cb6-824c-6713dd08147c.json rename to mock/mappings/api_braintree_gateways_rjplwsmxrj-50736e60-619a-40e2-84b3-64eb18858032.json index f6a85ed..50ab7af 100644 --- a/mock/mappings/braintree_gateways_dkmlxsnjnj-52e93e92-527d-4cb6-824c-6713dd08147c.json +++ b/mock/mappings/api_braintree_gateways_rjplwsmxrj-50736e60-619a-40e2-84b3-64eb18858032.json @@ -1,40 +1,40 @@ { - "id" : "52e93e92-527d-4cb6-824c-6713dd08147c", - "name" : "braintree_gateways_dkmlxsnjnj", + "id" : "50736e60-619a-40e2-84b3-64eb18858032", + "name" : "api_braintree_gateways_rjplwsmxrj", "request" : { - "url" : "/braintree_gateways/DkMLXsNJnj", + "url" : "/api/braintree_gateways/rjPLwsmXrj", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"merchant_account_id\":\"xxxx-yyyy-zzzz\",\"merchant_id\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"name\":\"Incentro Braintree Gateway Changed\",\"private_key\":\"xxxx-yyyy-zzzz\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null},\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"merchant_account_id\":\"xxxx-yyyy-zzzz\",\"merchant_id\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"name\":\"Incentro Braintree Gateway Changed\",\"private_key\":\"xxxx-yyyy-zzzz\",\"public_key\":\"xxxx-yyyy-zzzz\",\"reference\":null,\"reference_origin\":null},\"id\":\"rjPLwsmXrj\",\"type\":\"braintree_gateways\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway Changed\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:33.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1d8cb58c01a37c372593464a185d59c83c60b5c7af21d3134bee38588023cf0a\"}}}", + "body" : "{\"data\":{\"id\":\"rjPLwsmXrj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway Changed\",\"created_at\":\"2024-10-24T16:05:23.360Z\",\"updated_at\":\"2024-10-24T16:05:24.178Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rjPLwsmXrj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b228854eee89376e9b48882302d0bdd5b7d3e0318409ea4a41bab6dd81bd4e9c\"}}}", "headers" : { - "x-request-id" : "05c20a38-2cd0-46a0-89f3-7283030ecbc6", - "x-kong-upstream-latency" : "27", + "x-request-id" : "87b7937f-700e-49c4-9e4d-1b91b528ead9", + "x-kong-upstream-latency" : "24", "X-Ratelimit-Remaining" : "96", - "x-kong-request-id" : "0bdc484261327d3945a07a1cb9df1c52", + "x-kong-request-id" : "3f4300706e9c8e08e507a85bc92feb43", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:33 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:24 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"67e0a872502b63dfa0551f26f1b30a68\"", + "etag" : "W/\"5713103d1c7b03216f2ece2c021cb075\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "52e93e92-527d-4cb6-824c-6713dd08147c", + "uuid" : "50736e60-619a-40e2-84b3-64eb18858032", "persistent" : true, - "insertionIndex" : 260 + "insertionIndex" : 265 } \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rjplwsmxrj-9f42c20a-463f-48bc-b754-1a25a0b74e69.json b/mock/mappings/api_braintree_gateways_rjplwsmxrj-9f42c20a-463f-48bc-b754-1a25a0b74e69.json new file mode 100644 index 0000000..c53b03e --- /dev/null +++ b/mock/mappings/api_braintree_gateways_rjplwsmxrj-9f42c20a-463f-48bc-b754-1a25a0b74e69.json @@ -0,0 +1,32 @@ +{ + "id" : "9f42c20a-463f-48bc-b754-1a25a0b74e69", + "name" : "api_braintree_gateways_rjplwsmxrj", + "request" : { + "url" : "/api/braintree_gateways/rjPLwsmXrj", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "75f58dd0-dd9b-470e-9f29-e7e2d4746a47", + "x-kong-upstream-latency" : "35", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "1fa958631a6c265836cbc242111e4b48", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:24 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "9f42c20a-463f-48bc-b754-1a25a0b74e69", + "persistent" : true, + "insertionIndex" : 263 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-83e3238b-d012-4526-9104-401fcaafd2b1.json b/mock/mappings/api_braintree_gateways_rjplwsmxrj-a443bc4f-9064-490f-875b-4eb88c906346.json similarity index 60% rename from mock/mappings/braintree_gateways_dkmlxsnjnj-83e3238b-d012-4526-9104-401fcaafd2b1.json rename to mock/mappings/api_braintree_gateways_rjplwsmxrj-a443bc4f-9064-490f-875b-4eb88c906346.json index 7e680cc..1ba01d2 100644 --- a/mock/mappings/braintree_gateways_dkmlxsnjnj-83e3238b-d012-4526-9104-401fcaafd2b1.json +++ b/mock/mappings/api_braintree_gateways_rjplwsmxrj-a443bc4f-9064-490f-875b-4eb88c906346.json @@ -1,22 +1,22 @@ { - "id" : "83e3238b-d012-4526-9104-401fcaafd2b1", - "name" : "braintree_gateways_dkmlxsnjnj", + "id" : "a443bc4f-9064-490f-875b-4eb88c906346", + "name" : "api_braintree_gateways_rjplwsmxrj", "request" : { - "url" : "/braintree_gateways/DkMLXsNJnj", + "url" : "/api/braintree_gateways/rjPLwsmXrj", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "d983a99b-aff0-4e01-b398-78b27f61d74d", - "x-kong-upstream-latency" : "7", + "x-request-id" : "a563c423-2e70-42de-9584-927b6f7a1e23", + "x-kong-upstream-latency" : "9", "X-Ratelimit-Remaining" : "84", - "x-kong-request-id" : "f2071b58f52661066941db33c7382967", + "x-kong-request-id" : "06603d57c18470149807d0563e9d0235", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:34 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:24 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "83e3238b-d012-4526-9104-401fcaafd2b1", + "uuid" : "a443bc4f-9064-490f-875b-4eb88c906346", "persistent" : true, - "scenarioName" : "scenario-41-braintree_gateways-DkMLXsNJnj", - "requiredScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-4", - "insertionIndex" : 257 + "scenarioName" : "scenario-41-api-braintree_gateways-rjPLwsmXrj", + "requiredScenarioState" : "scenario-41-api-braintree_gateways-rjPLwsmXrj-4", + "insertionIndex" : 262 } \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rjplwsmxrj-bc6e0343-6dc2-4011-855c-61a85dedd97c.json b/mock/mappings/api_braintree_gateways_rjplwsmxrj-bc6e0343-6dc2-4011-855c-61a85dedd97c.json new file mode 100644 index 0000000..b9588c5 --- /dev/null +++ b/mock/mappings/api_braintree_gateways_rjplwsmxrj-bc6e0343-6dc2-4011-855c-61a85dedd97c.json @@ -0,0 +1,38 @@ +{ + "id" : "bc6e0343-6dc2-4011-855c-61a85dedd97c", + "name" : "api_braintree_gateways_rjplwsmxrj", + "request" : { + "url" : "/api/braintree_gateways/rjPLwsmXrj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rjPLwsmXrj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway Changed\",\"created_at\":\"2024-10-24T16:05:23.360Z\",\"updated_at\":\"2024-10-24T16:05:24.178Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rjPLwsmXrj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0b19c589b5c1784369ba244b44f29fb2e56ca1c47c39d8a84bf8a9c9f21c5311\"}}}", + "headers" : { + "x-request-id" : "fd35e06c-7a9e-461c-8995-bfb1ca0db3dd", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "85", + "x-kong-request-id" : "24f5b41c780d4c784b23965a0c17a040", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:24 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"482ec16fdf20ed52beb1595a1d53f877\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bc6e0343-6dc2-4011-855c-61a85dedd97c", + "persistent" : true, + "scenarioName" : "scenario-41-api-braintree_gateways-rjPLwsmXrj", + "requiredScenarioState" : "scenario-41-api-braintree_gateways-rjPLwsmXrj-3", + "newScenarioState" : "scenario-41-api-braintree_gateways-rjPLwsmXrj-4", + "insertionIndex" : 264 +} \ No newline at end of file diff --git a/mock/mappings/api_braintree_gateways_rjplwsmxrj-e3456f0a-d0ff-44cd-b9c4-4a90c6d6fc9a.json b/mock/mappings/api_braintree_gateways_rjplwsmxrj-e3456f0a-d0ff-44cd-b9c4-4a90c6d6fc9a.json new file mode 100644 index 0000000..4c60926 --- /dev/null +++ b/mock/mappings/api_braintree_gateways_rjplwsmxrj-e3456f0a-d0ff-44cd-b9c4-4a90c6d6fc9a.json @@ -0,0 +1,38 @@ +{ + "id" : "e3456f0a-d0ff-44cd-b9c4-4a90c6d6fc9a", + "name" : "api_braintree_gateways_rjplwsmxrj", + "request" : { + "url" : "/api/braintree_gateways/rjPLwsmXrj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"rjPLwsmXrj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T16:05:23.360Z\",\"updated_at\":\"2024-10-24T16:05:23.360Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/rjPLwsmXrj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/rjPLwsmXrj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"82334456da5bf4545488498b4db207acb1b2c18b651d1dd79f4a73ed42315971\"}}}", + "headers" : { + "x-request-id" : "9026a444-ac56-4489-b9d7-c0db530d97b9", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "86", + "x-kong-request-id" : "8a05a86c9c9cda3eeaf15d34572b9b3d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:23 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"fd819b4acb328db8f24a4ed19b79c504\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e3456f0a-d0ff-44cd-b9c4-4a90c6d6fc9a", + "persistent" : true, + "scenarioName" : "scenario-41-api-braintree_gateways-rjPLwsmXrj", + "requiredScenarioState" : "scenario-41-api-braintree_gateways-rjPLwsmXrj-2", + "newScenarioState" : "scenario-41-api-braintree_gateways-rjPLwsmXrj-3", + "insertionIndex" : 266 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups-7014a1ce-5d68-4649-a5e4-3e4476be520a.json b/mock/mappings/api_customer_groups-aaf8ea4e-4d46-49c8-af22-7a38bc6cf419.json similarity index 56% rename from mock/mappings/customer_groups-7014a1ce-5d68-4649-a5e4-3e4476be520a.json rename to mock/mappings/api_customer_groups-aaf8ea4e-4d46-49c8-af22-7a38bc6cf419.json index 5859ef9..4c8bb40 100644 --- a/mock/mappings/customer_groups-7014a1ce-5d68-4649-a5e4-3e4476be520a.json +++ b/mock/mappings/api_customer_groups-aaf8ea4e-4d46-49c8-af22-7a38bc6cf419.json @@ -1,8 +1,8 @@ { - "id" : "7014a1ce-5d68-4649-a5e4-3e4476be520a", - "name" : "customer_groups", + "id" : "aaf8ea4e-4d46-49c8-af22-7a38bc6cf419", + "name" : "api_customer_groups", "request" : { - "url" : "/customer_groups", + "url" : "/api/customer_groups", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"},\"name\":\"Incentro customer group\",\"reference\":null,\"reference_origin\":null},\"type\":\"customer_groups\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:35.216Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"821c482c9fa6424c77e70656fed3d9ff0ac180a12e6f12cc88f871ff50a908f8\"}}}", + "body" : "{\"data\":{\"id\":\"ODjmWhjArp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T16:05:25.338Z\",\"updated_at\":\"2024-10-24T16:05:25.338Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f78faa78dabfdccd5e927d2b0c247633bb2b481c7ac6b05e5e1b18f68f853b98\"}}}", "headers" : { - "x-request-id" : "9cc8a366-63f9-40cf-8bb2-17b20e477888", - "x-kong-upstream-latency" : "17", + "x-request-id" : "96ac7bf1-5d82-4fae-b32d-15c1656e31d5", + "x-kong-upstream-latency" : "20", "X-Ratelimit-Remaining" : "95", - "x-kong-request-id" : "0b91817f3dcb2a3c347b5455dceba377", + "x-kong-request-id" : "0698f83a66096263eb445405412bbc2a", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:35 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:25 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c52159f3a8dcee6afc155c19af256faa\"", + "etag" : "W/\"e314cad1b58a56e0413584cf898d13a0\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "7014a1ce-5d68-4649-a5e4-3e4476be520a", + "uuid" : "aaf8ea4e-4d46-49c8-af22-7a38bc6cf419", "persistent" : true, - "insertionIndex" : 256 + "insertionIndex" : 261 } \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json b/mock/mappings/api_customer_groups_odjmwhjarp-3dcdc8a6-5c89-43ab-9c9d-adf3cb167924.json similarity index 61% rename from mock/mappings/paypal_gateways_jklbysepav-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json rename to mock/mappings/api_customer_groups_odjmwhjarp-3dcdc8a6-5c89-43ab-9c9d-adf3cb167924.json index 7abe715..d526eed 100644 --- a/mock/mappings/paypal_gateways_jklbysepav-bf3aaa1e-e1f6-493a-b3fc-0162925dfa45.json +++ b/mock/mappings/api_customer_groups_odjmwhjarp-3dcdc8a6-5c89-43ab-9c9d-adf3cb167924.json @@ -1,22 +1,22 @@ { - "id" : "bf3aaa1e-e1f6-493a-b3fc-0162925dfa45", - "name" : "paypal_gateways_jklbysepav", + "id" : "3dcdc8a6-5c89-43ab-9c9d-adf3cb167924", + "name" : "api_customer_groups_odjmwhjarp", "request" : { - "url" : "/paypal_gateways/JkLbysepAv", + "url" : "/api/customer_groups/ODjmWhjArp", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "6f901ffe-e692-4aa1-9651-3c0bd9a2792e", + "x-request-id" : "a5c14e32-b9e1-4ded-8fda-735d97f0ede3", "x-kong-upstream-latency" : "9", - "X-Ratelimit-Remaining" : "98", - "x-kong-request-id" : "bff1ca5d7692f10ee039a650c0f7dd07", + "X-Ratelimit-Remaining" : "80", + "x-kong-request-id" : "b42244485573ba62c3e0425af585eb49", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:22 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:27 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "bf3aaa1e-e1f6-493a-b3fc-0162925dfa45", + "uuid" : "3dcdc8a6-5c89-43ab-9c9d-adf3cb167924", "persistent" : true, - "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", - "requiredScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-5", - "insertionIndex" : 63 + "scenarioName" : "scenario-40-api-customer_groups-ODjmWhjArp", + "requiredScenarioState" : "scenario-40-api-customer_groups-ODjmWhjArp-4", + "insertionIndex" : 255 } \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-50fb8902-6164-491e-b20f-1e5d894cd652.json b/mock/mappings/api_customer_groups_odjmwhjarp-8a7bdd8f-c6f7-4f18-9f7e-8f249eaa10b8.json similarity index 58% rename from mock/mappings/customer_groups_ypvbrhpgjp-50fb8902-6164-491e-b20f-1e5d894cd652.json rename to mock/mappings/api_customer_groups_odjmwhjarp-8a7bdd8f-c6f7-4f18-9f7e-8f249eaa10b8.json index 54e9e60..ea2c766 100644 --- a/mock/mappings/customer_groups_ypvbrhpgjp-50fb8902-6164-491e-b20f-1e5d894cd652.json +++ b/mock/mappings/api_customer_groups_odjmwhjarp-8a7bdd8f-c6f7-4f18-9f7e-8f249eaa10b8.json @@ -1,21 +1,21 @@ { - "id" : "50fb8902-6164-491e-b20f-1e5d894cd652", - "name" : "customer_groups_ypvbrhpgjp", + "id" : "8a7bdd8f-c6f7-4f18-9f7e-8f249eaa10b8", + "name" : "api_customer_groups_odjmwhjarp", "request" : { - "url" : "/customer_groups/YpvbrhPgjp", + "url" : "/api/customer_groups/ODjmWhjArp", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "df2f59d2-d584-4cd1-9e71-43f1710cc036", - "x-kong-upstream-latency" : "21", + "x-request-id" : "b4dfbbf5-0fc2-4fea-9fef-88d831754dd7", + "x-kong-upstream-latency" : "33", "X-Ratelimit-Remaining" : "95", - "x-kong-request-id" : "b8e850185873347e67411d0a5cd9ee6c", + "x-kong-request-id" : "a37986008c6b4a3511ccef77a8b75f5e", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:36 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:26 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "50fb8902-6164-491e-b20f-1e5d894cd652", + "uuid" : "8a7bdd8f-c6f7-4f18-9f7e-8f249eaa10b8", "persistent" : true, - "insertionIndex" : 251 + "insertionIndex" : 256 } \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_odjmwhjarp-90434a71-3988-4fe4-b1dd-73146c537929.json b/mock/mappings/api_customer_groups_odjmwhjarp-90434a71-3988-4fe4-b1dd-73146c537929.json new file mode 100644 index 0000000..2af7cd7 --- /dev/null +++ b/mock/mappings/api_customer_groups_odjmwhjarp-90434a71-3988-4fe4-b1dd-73146c537929.json @@ -0,0 +1,38 @@ +{ + "id" : "90434a71-3988-4fe4-b1dd-73146c537929", + "name" : "api_customer_groups_odjmwhjarp", + "request" : { + "url" : "/api/customer_groups/ODjmWhjArp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ODjmWhjArp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T16:05:25.338Z\",\"updated_at\":\"2024-10-24T16:05:25.338Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ed510f05a3b19dcb61871a52612ddb68b87f4c503de9bbbc49057f765102fea5\"}}}", + "headers" : { + "x-request-id" : "c1014c27-6d68-4d31-826d-6f246d9cbe61", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "27c77657de4d0412167b1027d7bd751a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"7a94f4f5538d4455c1dd920a9d8cf5c8\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "90434a71-3988-4fe4-b1dd-73146c537929", + "persistent" : true, + "scenarioName" : "scenario-40-api-customer_groups-ODjmWhjArp", + "requiredScenarioState" : "scenario-40-api-customer_groups-ODjmWhjArp-2", + "newScenarioState" : "scenario-40-api-customer_groups-ODjmWhjArp-3", + "insertionIndex" : 259 +} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-e2e8478d-ac07-493a-868d-8a48a521e561.json b/mock/mappings/api_customer_groups_odjmwhjarp-9be29ccc-b90b-4884-b178-5c9fa0480992.json similarity index 51% rename from mock/mappings/customer_groups_ypvbrhpgjp-e2e8478d-ac07-493a-868d-8a48a521e561.json rename to mock/mappings/api_customer_groups_odjmwhjarp-9be29ccc-b90b-4884-b178-5c9fa0480992.json index 9219e95..82e7e8c 100644 --- a/mock/mappings/customer_groups_ypvbrhpgjp-e2e8478d-ac07-493a-868d-8a48a521e561.json +++ b/mock/mappings/api_customer_groups_odjmwhjarp-9be29ccc-b90b-4884-b178-5c9fa0480992.json @@ -1,40 +1,40 @@ { - "id" : "e2e8478d-ac07-493a-868d-8a48a521e561", - "name" : "customer_groups_ypvbrhpgjp", + "id" : "9be29ccc-b90b-4884-b178-5c9fa0480992", + "name" : "api_customer_groups_odjmwhjarp", "request" : { - "url" : "/customer_groups/YpvbrhPgjp", + "url" : "/api/customer_groups/ODjmWhjArp", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"},\"name\":\"Incentro updated customer group\",\"reference\":null,\"reference_origin\":null},\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"},\"name\":\"Incentro updated customer group\",\"reference\":null,\"reference_origin\":null},\"id\":\"ODjmWhjArp\",\"type\":\"customer_groups\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro updated customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:36.203Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7fce8874738f86a4ed36efe39b4290f97fc5e0d4fc18e4fa96e1202192a6f557\"}}}", + "body" : "{\"data\":{\"id\":\"ODjmWhjArp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp\"},\"attributes\":{\"name\":\"Incentro updated customer group\",\"code\":null,\"created_at\":\"2024-10-24T16:05:25.338Z\",\"updated_at\":\"2024-10-24T16:05:26.286Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"433d0ec7abd3230dd1bd9360c58117869bedf6ce8ebcee8c00f560d8e4b22090\"}}}", "headers" : { - "x-request-id" : "7fcb3247-19a7-4746-8521-8b1bc083309d", - "x-kong-upstream-latency" : "23", + "x-request-id" : "1e84ea5b-bc07-496f-93e9-fbe7569b5cd0", + "x-kong-upstream-latency" : "32", "X-Ratelimit-Remaining" : "95", - "x-kong-request-id" : "2a99911bd7f0b14feb7c063c209c0c3e", + "x-kong-request-id" : "84c6e8454bc7d0711695bc51b6170e59", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:36 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:26 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"a654b0b68bcecd7348d1b4aae3ab5e12\"", + "etag" : "W/\"866e8966c0719c78edb7b151064aa35c\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "e2e8478d-ac07-493a-868d-8a48a521e561", + "uuid" : "9be29ccc-b90b-4884-b178-5c9fa0480992", "persistent" : true, - "insertionIndex" : 253 + "insertionIndex" : 258 } \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_odjmwhjarp-d4855bb6-6c1e-4bba-9e68-3dd0fa24dae2.json b/mock/mappings/api_customer_groups_odjmwhjarp-d4855bb6-6c1e-4bba-9e68-3dd0fa24dae2.json new file mode 100644 index 0000000..cb18fd2 --- /dev/null +++ b/mock/mappings/api_customer_groups_odjmwhjarp-d4855bb6-6c1e-4bba-9e68-3dd0fa24dae2.json @@ -0,0 +1,38 @@ +{ + "id" : "d4855bb6-6c1e-4bba-9e68-3dd0fa24dae2", + "name" : "api_customer_groups_odjmwhjarp", + "request" : { + "url" : "/api/customer_groups/ODjmWhjArp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ODjmWhjArp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T16:05:25.338Z\",\"updated_at\":\"2024-10-24T16:05:25.338Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ae584fa9c63bce693ef618137ddc7dba90ad61f78e2b58a2f162b33f9c796339\"}}}", + "headers" : { + "x-request-id" : "cd2cadc7-cc3b-4001-89eb-3227b828f2cb", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "83", + "x-kong-request-id" : "6fa98167ca6ce848951d2859738ce135", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"407f6088c9aa64aab2edca9bbb8420dc\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d4855bb6-6c1e-4bba-9e68-3dd0fa24dae2", + "persistent" : true, + "scenarioName" : "scenario-40-api-customer_groups-ODjmWhjArp", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-40-api-customer_groups-ODjmWhjArp-2", + "insertionIndex" : 260 +} \ No newline at end of file diff --git a/mock/mappings/api_customer_groups_odjmwhjarp-fe5b5e18-da72-4bc5-bb1c-2fb35d71cdfc.json b/mock/mappings/api_customer_groups_odjmwhjarp-fe5b5e18-da72-4bc5-bb1c-2fb35d71cdfc.json new file mode 100644 index 0000000..faa5241 --- /dev/null +++ b/mock/mappings/api_customer_groups_odjmwhjarp-fe5b5e18-da72-4bc5-bb1c-2fb35d71cdfc.json @@ -0,0 +1,38 @@ +{ + "id" : "fe5b5e18-da72-4bc5-bb1c-2fb35d71cdfc", + "name" : "api_customer_groups_odjmwhjarp", + "request" : { + "url" : "/api/customer_groups/ODjmWhjArp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ODjmWhjArp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp\"},\"attributes\":{\"name\":\"Incentro updated customer group\",\"code\":null,\"created_at\":\"2024-10-24T16:05:25.338Z\",\"updated_at\":\"2024-10-24T16:05:26.286Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/ODjmWhjArp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0bf96658069835e24cd43dd25c23bb38593b41eb07fe4e6ee3191196d83dbcb2\"}}}", + "headers" : { + "x-request-id" : "a5d1f90e-73d1-4859-9003-14455732ca5c", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "81", + "x-kong-request-id" : "8d75835ab77f4a4fcf80d627c76a3e54", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"8d26489754c6ced93df1158c5dde1a67\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "fe5b5e18-da72-4bc5-bb1c-2fb35d71cdfc", + "persistent" : true, + "scenarioName" : "scenario-40-api-customer_groups-ODjmWhjArp", + "requiredScenarioState" : "scenario-40-api-customer_groups-ODjmWhjArp-3", + "newScenarioState" : "scenario-40-api-customer_groups-ODjmWhjArp-4", + "insertionIndex" : 257 +} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times-7c0e6478-4d03-47c4-ae11-70119f779b4b.json b/mock/mappings/api_delivery_lead_times-591bd954-711c-4f30-ba87-d08b365ad414.json similarity index 53% rename from mock/mappings/delivery_lead_times-7c0e6478-4d03-47c4-ae11-70119f779b4b.json rename to mock/mappings/api_delivery_lead_times-591bd954-711c-4f30-ba87-d08b365ad414.json index 758a112..1fb654b 100644 --- a/mock/mappings/delivery_lead_times-7c0e6478-4d03-47c4-ae11-70119f779b4b.json +++ b/mock/mappings/api_delivery_lead_times-591bd954-711c-4f30-ba87-d08b365ad414.json @@ -1,40 +1,40 @@ { - "id" : "7c0e6478-4d03-47c4-ae11-70119f779b4b", - "name" : "delivery_lead_times", + "id" : "591bd954-711c-4f30-ba87-d08b365ad414", + "name" : "api_delivery_lead_times", "request" : { - "url" : "/delivery_lead_times", + "url" : "/api/delivery_lead_times", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"max_hours\":100,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_hours\":10,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"shipping_method\":{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\"}},\"stock_location\":{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\"}}},\"type\":\"delivery_lead_times\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"max_hours\":100,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_hours\":10,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"shipping_method\":{\"data\":{\"id\":\"JORxbFaRpV\",\"type\":\"shipping_methods\"}},\"stock_location\":{\"data\":{\"id\":\"ekjpouwNAn\",\"type\":\"stock_locations\"}}},\"type\":\"delivery_lead_times\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:38.006Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9fd5564bbd78e257db1bebb3b792731ca3212d0f0661e39db64db443b74af827\"}}}", + "body" : "{\"data\":{\"id\":\"XOnAYFdVrp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T16:05:27.930Z\",\"updated_at\":\"2024-10-24T16:05:27.930Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d6d0f0d27a8cc18d8dcfdd61f3b4cbdf3bc6c18b3ec1bdd27068e25d6b347f89\"}}}", "headers" : { - "x-request-id" : "711e4141-1334-4fd5-9465-5e28659aafd9", - "x-kong-upstream-latency" : "18", + "x-request-id" : "f020c7cf-6624-4bbc-927d-6a87baa8025c", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "91", - "x-kong-request-id" : "5a0dde4ef642e5281d910c6ddb958e52", + "x-kong-request-id" : "5e92372917214b065a02a5678556bb70", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:27 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"f0d90b18e6476600c8d0d0364531ddca\"", + "etag" : "W/\"72047558d41f82836f1ef091604b352c\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "7c0e6478-4d03-47c4-ae11-70119f779b4b", + "uuid" : "591bd954-711c-4f30-ba87-d08b365ad414", "persistent" : true, - "insertionIndex" : 246 + "insertionIndex" : 251 } \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_xonayfdvrp-1b1489fe-f827-40a8-8b87-78212f3d1f96.json b/mock/mappings/api_delivery_lead_times_xonayfdvrp-1b1489fe-f827-40a8-8b87-78212f3d1f96.json new file mode 100644 index 0000000..503e62d --- /dev/null +++ b/mock/mappings/api_delivery_lead_times_xonayfdvrp-1b1489fe-f827-40a8-8b87-78212f3d1f96.json @@ -0,0 +1,39 @@ +{ + "id" : "1b1489fe-f827-40a8-8b87-78212f3d1f96", + "name" : "api_delivery_lead_times_xonayfdvrp", + "request" : { + "url" : "/api/delivery_lead_times/XOnAYFdVrp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XOnAYFdVrp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp\"},\"attributes\":{\"min_hours\":20,\"max_hours\":200,\"min_days\":1,\"max_days\":8,\"created_at\":\"2024-10-24T16:05:27.930Z\",\"updated_at\":\"2024-10-24T16:05:29.578Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"75a0b786157ee1e5da1f09bcc71dc4a80fad9804681213de2301f77a009f8dad\"}}}", + "headers" : { + "x-request-id" : "a14d3fee-8eea-4610-9570-c1121625551c", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "71", + "x-kong-request-id" : "abe05b3e2120a02d747c412259562649", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:30 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"3bc37e5708388b5bb497755e8b91f27d\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "1b1489fe-f827-40a8-8b87-78212f3d1f96", + "persistent" : true, + "scenarioName" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp", + "requiredScenarioState" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp-3", + "newScenarioState" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp-4", + "insertionIndex" : 238 +} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_xonayfdvrp-318fd728-db1b-4353-835c-63ab416a4ba0.json b/mock/mappings/api_delivery_lead_times_xonayfdvrp-318fd728-db1b-4353-835c-63ab416a4ba0.json new file mode 100644 index 0000000..59d7117 --- /dev/null +++ b/mock/mappings/api_delivery_lead_times_xonayfdvrp-318fd728-db1b-4353-835c-63ab416a4ba0.json @@ -0,0 +1,40 @@ +{ + "id" : "318fd728-db1b-4353-835c-63ab416a4ba0", + "name" : "api_delivery_lead_times_xonayfdvrp", + "request" : { + "url" : "/api/delivery_lead_times/XOnAYFdVrp", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"max_hours\":200,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_hours\":20,\"reference\":null,\"reference_origin\":null},\"id\":\"XOnAYFdVrp\",\"relationships\":{\"shipping_method\":{\"data\":{\"id\":\"JORxbFaRpV\",\"type\":\"shipping_methods\"}},\"stock_location\":{\"data\":{\"id\":\"ekjpouwNAn\",\"type\":\"stock_locations\"}}},\"type\":\"delivery_lead_times\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XOnAYFdVrp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp\"},\"attributes\":{\"min_hours\":20,\"max_hours\":200,\"min_days\":1,\"max_days\":8,\"created_at\":\"2024-10-24T16:05:27.930Z\",\"updated_at\":\"2024-10-24T16:05:29.578Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"5d52cbac75d8251c6c8e19aab266e8a12be3286ab965e81a8c738ef05348ea35\"}}}", + "headers" : { + "x-request-id" : "ce4c16f0-93c8-4131-bff7-eafb151e41d5", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "c832524811e76d2262e4e54affee907e", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"67fb43cf8b2312f9129578631827c218\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "318fd728-db1b-4353-835c-63ab416a4ba0", + "persistent" : true, + "insertionIndex" : 242 +} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_xonayfdvrp-a87981ff-97d8-4958-90ce-21d9fe78bce1.json b/mock/mappings/api_delivery_lead_times_xonayfdvrp-a87981ff-97d8-4958-90ce-21d9fe78bce1.json new file mode 100644 index 0000000..0910128 --- /dev/null +++ b/mock/mappings/api_delivery_lead_times_xonayfdvrp-a87981ff-97d8-4958-90ce-21d9fe78bce1.json @@ -0,0 +1,39 @@ +{ + "id" : "a87981ff-97d8-4958-90ce-21d9fe78bce1", + "name" : "api_delivery_lead_times_xonayfdvrp", + "request" : { + "url" : "/api/delivery_lead_times/XOnAYFdVrp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XOnAYFdVrp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T16:05:27.930Z\",\"updated_at\":\"2024-10-24T16:05:27.930Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c77ffaa869f36b1e07e878f0e46fdab1813e612aa06d4767304e0d403bca27ea\"}}}", + "headers" : { + "x-request-id" : "853c5ab4-7623-444d-9288-cf0f01313e72", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "74", + "x-kong-request-id" : "854b8a41d08b7078e3cba53b61942427", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:29 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"0974f61990bca71fc9871379b47613c1\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "a87981ff-97d8-4958-90ce-21d9fe78bce1", + "persistent" : true, + "scenarioName" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp", + "requiredScenarioState" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp-2", + "newScenarioState" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp-3", + "insertionIndex" : 243 +} \ No newline at end of file diff --git a/mock/mappings/api_delivery_lead_times_xonayfdvrp-c5efd68b-ffca-43e5-8b7c-ad2d3b40c505.json b/mock/mappings/api_delivery_lead_times_xonayfdvrp-c5efd68b-ffca-43e5-8b7c-ad2d3b40c505.json new file mode 100644 index 0000000..0533d65 --- /dev/null +++ b/mock/mappings/api_delivery_lead_times_xonayfdvrp-c5efd68b-ffca-43e5-8b7c-ad2d3b40c505.json @@ -0,0 +1,39 @@ +{ + "id" : "c5efd68b-ffca-43e5-8b7c-ad2d3b40c505", + "name" : "api_delivery_lead_times_xonayfdvrp", + "request" : { + "url" : "/api/delivery_lead_times/XOnAYFdVrp", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XOnAYFdVrp\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T16:05:27.930Z\",\"updated_at\":\"2024-10-24T16:05:27.930Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/XOnAYFdVrp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c77ffaa869f36b1e07e878f0e46fdab1813e612aa06d4767304e0d403bca27ea\"}}}", + "headers" : { + "x-request-id" : "853c5ab4-7623-444d-9288-cf0f01313e72", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "77", + "x-kong-request-id" : "854b8a41d08b7078e3cba53b61942427", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:28 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"0974f61990bca71fc9871379b47613c1\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "c5efd68b-ffca-43e5-8b7c-ad2d3b40c505", + "persistent" : true, + "scenarioName" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp-2", + "insertionIndex" : 247 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-29a47602-f959-423b-8abd-729a4890d3e8.json b/mock/mappings/api_delivery_lead_times_xonayfdvrp-cb85cec2-c7d9-4518-beaa-ad5517b0f1cd.json similarity index 54% rename from mock/mappings/stock_locations_rneebuyjln-29a47602-f959-423b-8abd-729a4890d3e8.json rename to mock/mappings/api_delivery_lead_times_xonayfdvrp-cb85cec2-c7d9-4518-beaa-ad5517b0f1cd.json index 4215eee..8c05991 100644 --- a/mock/mappings/stock_locations_rneebuyjln-29a47602-f959-423b-8abd-729a4890d3e8.json +++ b/mock/mappings/api_delivery_lead_times_xonayfdvrp-cb85cec2-c7d9-4518-beaa-ad5517b0f1cd.json @@ -1,21 +1,21 @@ { - "id" : "29a47602-f959-423b-8abd-729a4890d3e8", - "name" : "stock_locations_rneebuyjln", + "id" : "cb85cec2-c7d9-4518-beaa-ad5517b0f1cd", + "name" : "api_delivery_lead_times_xonayfdvrp", "request" : { - "url" : "/stock_locations/rneEbuYJLn", + "url" : "/api/delivery_lead_times/XOnAYFdVrp", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "693f9589-3585-4622-a4de-90ced9dc1644", - "x-kong-upstream-latency" : "61", + "x-request-id" : "91479580-58f1-4cc9-8793-4aa0af97f0e2", + "x-kong-upstream-latency" : "16", "X-Ratelimit-Remaining" : "94", - "x-kong-request-id" : "d1e4760e07f15e5d01e7630c6a9ae51a", + "x-kong-request-id" : "6d6ca372b5945076ea2e73198a983406", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:33 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:30 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "29a47602-f959-423b-8abd-729a4890d3e8", + "uuid" : "cb85cec2-c7d9-4518-beaa-ad5517b0f1cd", "persistent" : true, - "insertionIndex" : 25 + "insertionIndex" : 237 } \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json b/mock/mappings/api_delivery_lead_times_xonayfdvrp-fce4b0a9-0b19-4716-b619-66483932d522.json similarity index 58% rename from mock/mappings/delivery_lead_times_nogemfnlrx-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json rename to mock/mappings/api_delivery_lead_times_xonayfdvrp-fce4b0a9-0b19-4716-b619-66483932d522.json index 238d797..1fddc1c 100644 --- a/mock/mappings/delivery_lead_times_nogemfnlrx-ec54d76e-3138-4c24-a3aa-581f39e5b64f.json +++ b/mock/mappings/api_delivery_lead_times_xonayfdvrp-fce4b0a9-0b19-4716-b619-66483932d522.json @@ -1,22 +1,22 @@ { - "id" : "ec54d76e-3138-4c24-a3aa-581f39e5b64f", - "name" : "delivery_lead_times_nogemfnlrx", + "id" : "fce4b0a9-0b19-4716-b619-66483932d522", + "name" : "api_delivery_lead_times_xonayfdvrp", "request" : { - "url" : "/delivery_lead_times/NOgEMFNLRx", + "url" : "/api/delivery_lead_times/XOnAYFdVrp", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "e2cc801c-9faf-491a-a7c9-d47f53816bc2", - "x-kong-upstream-latency" : "7", + "x-request-id" : "040b2dc0-20e3-489f-8b92-1e5fadc9d695", + "x-kong-upstream-latency" : "6", "X-Ratelimit-Remaining" : "69", - "x-kong-request-id" : "4e46865daec73f2b8da93021f4ad082b", + "x-kong-request-id" : "229ec81c9f339e1ede244934d4900c41", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:31 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -29,9 +29,9 @@ "Age" : "0" } }, - "uuid" : "ec54d76e-3138-4c24-a3aa-581f39e5b64f", + "uuid" : "fce4b0a9-0b19-4716-b619-66483932d522", "persistent" : true, - "scenarioName" : "scenario-37-delivery_lead_times-NOgEMFNLRx", - "requiredScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-4", - "insertionIndex" : 227 + "scenarioName" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp", + "requiredScenarioState" : "scenario-37-api-delivery_lead_times-XOnAYFdVrp-4", + "insertionIndex" : 232 } \ No newline at end of file diff --git a/mock/mappings/external_gateways-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json b/mock/mappings/api_external_gateways-9742549e-2a66-4671-8e03-ecadf47adf49.json similarity index 59% rename from mock/mappings/external_gateways-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json rename to mock/mappings/api_external_gateways-9742549e-2a66-4671-8e03-ecadf47adf49.json index 46bfd49..7981edb 100644 --- a/mock/mappings/external_gateways-014530b9-cd2d-4845-b8f7-4cd8f082dfb6.json +++ b/mock/mappings/api_external_gateways-9742549e-2a66-4671-8e03-ecadf47adf49.json @@ -1,8 +1,8 @@ { - "id" : "014530b9-cd2d-4845-b8f7-4cd8f082dfb6", - "name" : "external_gateways", + "id" : "9742549e-2a66-4671-8e03-ecadf47adf49", + "name" : "api_external_gateways", "request" : { - "url" : "/external_gateways", + "url" : "/api/external_gateways", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway\",\"reference\":null,\"reference_origin\":null,\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"void_url\":\"https://example.com\"},\"type\":\"external_gateways\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:41.908Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01b2bd0ca74545fd8a319847b5a739a3577eda97d8102d3410ca6c6cd537f6f2\"}}}", + "body" : "{\"data\":{\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T16:05:31.863Z\",\"updated_at\":\"2024-10-24T16:05:31.863Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"b018ce1100e2a4a1deb33a2487e33057\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"dd9c5fbd1c2bfb7a12b272c52129428bb13effd7ce5a635c072db98eeda21f51\"}}}", "headers" : { - "x-request-id" : "addc52d6-d636-423b-b641-3b7d834eee4a", - "x-kong-upstream-latency" : "24", + "x-request-id" : "d6280af6-54da-4329-9123-7f0fbb724651", + "x-kong-upstream-latency" : "15", "X-Ratelimit-Remaining" : "90", - "x-kong-request-id" : "6ff84e3038126907e936e17eff1caa4a", + "x-kong-request-id" : "06286e10521c0e5f8293362501e7726e", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:31 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"5cc0d45a9a2a91dbba547f3ef57226e0\"", + "etag" : "W/\"3fb305c1f254737dbd213c21d1232c06\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "014530b9-cd2d-4845-b8f7-4cd8f082dfb6", + "uuid" : "9742549e-2a66-4671-8e03-ecadf47adf49", "persistent" : true, - "insertionIndex" : 224 + "insertionIndex" : 229 } \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-52d84087-7ffc-4083-9714-812daa9aa817.json b/mock/mappings/api_external_gateways_exqbrsrbjv-265386a5-4c5c-48e5-9064-eead7ff59cea.json similarity index 50% rename from mock/mappings/external_gateways_nxmoxsbbgj-52d84087-7ffc-4083-9714-812daa9aa817.json rename to mock/mappings/api_external_gateways_exqbrsrbjv-265386a5-4c5c-48e5-9064-eead7ff59cea.json index 899ab82..d9c2125 100644 --- a/mock/mappings/external_gateways_nxmoxsbbgj-52d84087-7ffc-4083-9714-812daa9aa817.json +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-265386a5-4c5c-48e5-9064-eead7ff59cea.json @@ -1,38 +1,38 @@ { - "id" : "52d84087-7ffc-4083-9714-812daa9aa817", - "name" : "external_gateways_nxmoxsbbgj", + "id" : "265386a5-4c5c-48e5-9064-eead7ff59cea", + "name" : "api_external_gateways_exqbrsrbjv", "request" : { - "url" : "/external_gateways/nxmoXsbBgj", + "url" : "/api/external_gateways/exqbrsrbJv", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:42.777Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e9bf26b8576b1c8457665aec5b80cff725e1d1fdb37d70f4b0c98237b1487b05\"}}}", + "body" : "{\"data\":{\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T16:05:31.863Z\",\"updated_at\":\"2024-10-24T16:05:32.704Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"b018ce1100e2a4a1deb33a2487e33057\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"258b3fae811f8c7f3bb2c174be314a9cc2dfe2c610e3ec28f3a28e5a0f727e70\"}}}", "headers" : { - "x-request-id" : "f7be4887-e9c1-4022-97bb-f6b4ef6fb335", - "x-kong-upstream-latency" : "22", - "X-Ratelimit-Remaining" : "64", - "x-kong-request-id" : "2cae4a09556e0f415dfd2416fa2b5d5e", + "x-request-id" : "76910ba7-487f-4a1f-ac8c-7d15aecf47d9", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "63", + "x-kong-request-id" : "ec33b62598524d51ea12eb608239d02f", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", + "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:43 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:33 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"29925b1a1f1365447dc59dca34d4f0b5\"", + "etag" : "W/\"30635c02b265bae0d042c9799635ce2a\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "52d84087-7ffc-4083-9714-812daa9aa817", + "uuid" : "265386a5-4c5c-48e5-9064-eead7ff59cea", "persistent" : true, - "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", - "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-3", - "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-4", - "insertionIndex" : 220 + "scenarioName" : "scenario-35-api-external_gateways-exqbrsrbJv", + "requiredScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-4", + "newScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-5", + "insertionIndex" : 224 } \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json b/mock/mappings/api_external_gateways_exqbrsrbjv-68930ed0-f854-441c-b719-0f149ddff095.json similarity index 61% rename from mock/mappings/external_gateways_nxmoxsbbgj-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json rename to mock/mappings/api_external_gateways_exqbrsrbjv-68930ed0-f854-441c-b719-0f149ddff095.json index 41672f8..50078d9 100644 --- a/mock/mappings/external_gateways_nxmoxsbbgj-dbc56e6d-72bd-44d5-b67e-beff79e4750b.json +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-68930ed0-f854-441c-b719-0f149ddff095.json @@ -1,40 +1,40 @@ { - "id" : "dbc56e6d-72bd-44d5-b67e-beff79e4750b", - "name" : "external_gateways_nxmoxsbbgj", + "id" : "68930ed0-f854-441c-b719-0f149ddff095", + "name" : "api_external_gateways_exqbrsrbjv", "request" : { - "url" : "/external_gateways/nxmoXsbBgj", + "url" : "/api/external_gateways/exqbrsrbJv", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway_changed\",\"reference\":null,\"reference_origin\":null,\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\"},\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway_changed\",\"reference\":null,\"reference_origin\":null,\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\"},\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:42.777Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2147031ab5405edb3e47c166b2252896b557e7b197c4cc8956151454e31ae77d\"}}}", + "body" : "{\"data\":{\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T16:05:31.863Z\",\"updated_at\":\"2024-10-24T16:05:32.704Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"b018ce1100e2a4a1deb33a2487e33057\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8f046298c12baf1e6a0a176e3261735acbe4c22dd9993400c6cd3b2ab5647172\"}}}", "headers" : { - "x-request-id" : "c380c301-6a16-4b75-b6b7-ccc772731024", - "x-kong-upstream-latency" : "24", + "x-request-id" : "00612089-5347-40a5-ab10-34fe8cf65a5d", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "93", - "x-kong-request-id" : "f298305fd437de05d8eab332dd15015c", + "x-kong-request-id" : "3ad08d099eacb605c563781225d4f42c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:42 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:32 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c746517be410642cd1fc1090f38a159b\"", + "etag" : "W/\"477892ee09f3295d8fe2d42a8915f9ae\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "dbc56e6d-72bd-44d5-b67e-beff79e4750b", + "uuid" : "68930ed0-f854-441c-b719-0f149ddff095", "persistent" : true, - "insertionIndex" : 221 + "insertionIndex" : 226 } \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-176afc29-2c80-4871-bb2f-01cd533b81e2.json b/mock/mappings/api_external_gateways_exqbrsrbjv-6a80449f-20f9-42c7-8bc1-bbe182d6bcc8.json similarity index 55% rename from mock/mappings/external_gateways_nxmoxsbbgj-176afc29-2c80-4871-bb2f-01cd533b81e2.json rename to mock/mappings/api_external_gateways_exqbrsrbjv-6a80449f-20f9-42c7-8bc1-bbe182d6bcc8.json index 072088d..fdbc0d7 100644 --- a/mock/mappings/external_gateways_nxmoxsbbgj-176afc29-2c80-4871-bb2f-01cd533b81e2.json +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-6a80449f-20f9-42c7-8bc1-bbe182d6bcc8.json @@ -1,40 +1,40 @@ { - "id" : "176afc29-2c80-4871-bb2f-01cd533b81e2", - "name" : "external_gateways_nxmoxsbbgj", + "id" : "6a80449f-20f9-42c7-8bc1-bbe182d6bcc8", + "name" : "api_external_gateways_exqbrsrbjv", "request" : { - "url" : "/external_gateways/nxmoXsbBgj", + "url" : "/api/external_gateways/exqbrsrbJv", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":null,\"capture_url\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway_changed\",\"reference\":null,\"reference_origin\":null,\"refund_url\":null,\"token_url\":null,\"void_url\":null},\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"authorize_url\":null,\"capture_url\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"name\":\"incentro_external_gateway_changed\",\"reference\":null,\"reference_origin\":null,\"refund_url\":null,\"token_url\":null,\"void_url\":null},\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:43.708Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":null,\"capture_url\":null,\"void_url\":null,\"refund_url\":null,\"token_url\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9ace1bde5fe70589730f5959e9fc32d6a33e45aa47eb9716592a41b3b553b973\"}}}", + "body" : "{\"data\":{\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T16:05:31.863Z\",\"updated_at\":\"2024-10-24T16:05:33.561Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":null,\"capture_url\":null,\"void_url\":null,\"refund_url\":null,\"token_url\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"b018ce1100e2a4a1deb33a2487e33057\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"40284226c70e46b267a95ffd9929f5ad646daa6b1c48c2407bcad0a34482eea5\"}}}", "headers" : { - "x-request-id" : "a8c14e03-271a-44d7-99e7-3a6c28384bb5", - "x-kong-upstream-latency" : "29", + "x-request-id" : "c5d8b810-9c7c-4efd-b9af-f980288002d6", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "92", - "x-kong-request-id" : "103c5551fca158073ac4253eb2cb6272", + "x-kong-request-id" : "16c8cf0c4816b1491f235b59e281346f", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:43 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:33 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"710637aae8d8065d00d7feed4e045033\"", + "etag" : "W/\"5aa6a777588732a9528f0d40104bfa79\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "176afc29-2c80-4871-bb2f-01cd533b81e2", + "uuid" : "6a80449f-20f9-42c7-8bc1-bbe182d6bcc8", "persistent" : true, - "insertionIndex" : 218 + "insertionIndex" : 223 } \ No newline at end of file diff --git a/mock/mappings/merchants_dbdevhrvam-affb452e-c3ea-4e41-804b-b574ac90ad8a.json b/mock/mappings/api_external_gateways_exqbrsrbjv-708950f8-7b81-48b7-a589-be6c2e01c5f7.json similarity index 58% rename from mock/mappings/merchants_dbdevhrvam-affb452e-c3ea-4e41-804b-b574ac90ad8a.json rename to mock/mappings/api_external_gateways_exqbrsrbjv-708950f8-7b81-48b7-a589-be6c2e01c5f7.json index a8e68eb..2262dba 100644 --- a/mock/mappings/merchants_dbdevhrvam-affb452e-c3ea-4e41-804b-b574ac90ad8a.json +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-708950f8-7b81-48b7-a589-be6c2e01c5f7.json @@ -1,21 +1,21 @@ { - "id" : "affb452e-c3ea-4e41-804b-b574ac90ad8a", - "name" : "merchants_dbdevhrvam", + "id" : "708950f8-7b81-48b7-a589-be6c2e01c5f7", + "name" : "api_external_gateways_exqbrsrbjv", "request" : { - "url" : "/merchants/dbdeVHRVAM", + "url" : "/api/external_gateways/exqbrsrbJv", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "d33432a9-6ee5-4144-8420-dd52233abb18", + "x-request-id" : "11e12a19-5a12-4382-b17f-c11ddfdcd266", "x-kong-upstream-latency" : "32", - "X-Ratelimit-Remaining" : "71", - "x-kong-request-id" : "e4e1f97e0437917a692df62b5a8f574f", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "7462eb7468c2346e94633239ced36550", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:13 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:34 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "affb452e-c3ea-4e41-804b-b574ac90ad8a", + "uuid" : "708950f8-7b81-48b7-a589-be6c2e01c5f7", "persistent" : true, - "insertionIndex" : 99 + "insertionIndex" : 221 } \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_exqbrsrbjv-835386b4-6520-46fe-9f84-9dc839c716b7.json b/mock/mappings/api_external_gateways_exqbrsrbjv-835386b4-6520-46fe-9f84-9dc839c716b7.json new file mode 100644 index 0000000..4c9690c --- /dev/null +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-835386b4-6520-46fe-9f84-9dc839c716b7.json @@ -0,0 +1,38 @@ +{ + "id" : "835386b4-6520-46fe-9f84-9dc839c716b7", + "name" : "api_external_gateways_exqbrsrbjv", + "request" : { + "url" : "/api/external_gateways/exqbrsrbJv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T16:05:31.863Z\",\"updated_at\":\"2024-10-24T16:05:31.863Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"b018ce1100e2a4a1deb33a2487e33057\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"dbbc7ccc05c3b14048361f6f9a76ba6176d1405e870bfbee9d389aca818a8e88\"}}}", + "headers" : { + "x-request-id" : "141e7e41-e53e-420f-9f4e-9f135f9e122b", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "65", + "x-kong-request-id" : "461c811f440c180e71e1c10284b91e25", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:32 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"bce61b46afc419433bc2bb5f7da8962e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "835386b4-6520-46fe-9f84-9dc839c716b7", + "persistent" : true, + "scenarioName" : "scenario-35-api-external_gateways-exqbrsrbJv", + "requiredScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-2", + "newScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-3", + "insertionIndex" : 227 +} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-660f7e8d-5dfc-4311-92df-246b274ca44e.json b/mock/mappings/api_external_gateways_exqbrsrbjv-9d31a211-de57-46e3-b20f-f59ab337eedd.json similarity index 58% rename from mock/mappings/external_gateways_nxmoxsbbgj-660f7e8d-5dfc-4311-92df-246b274ca44e.json rename to mock/mappings/api_external_gateways_exqbrsrbjv-9d31a211-de57-46e3-b20f-f59ab337eedd.json index f6d1b1a..b785572 100644 --- a/mock/mappings/external_gateways_nxmoxsbbgj-660f7e8d-5dfc-4311-92df-246b274ca44e.json +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-9d31a211-de57-46e3-b20f-f59ab337eedd.json @@ -1,22 +1,22 @@ { - "id" : "660f7e8d-5dfc-4311-92df-246b274ca44e", - "name" : "external_gateways_nxmoxsbbgj", + "id" : "9d31a211-de57-46e3-b20f-f59ab337eedd", + "name" : "api_external_gateways_exqbrsrbjv", "request" : { - "url" : "/external_gateways/nxmoXsbBgj", + "url" : "/api/external_gateways/exqbrsrbJv", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "e477068e-45c6-48c8-b3f9-b4ea9167ead6", - "x-kong-upstream-latency" : "8", + "x-request-id" : "3356b4ea-7ef9-4b3d-84cf-5ca52caabacf", + "x-kong-upstream-latency" : "9", "X-Ratelimit-Remaining" : "61", - "x-kong-request-id" : "41872c50511c9f51561428378ec1a722", + "x-kong-request-id" : "5b3dec6831b03c312b34572b9e2d7633", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", + "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:44 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:34 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "660f7e8d-5dfc-4311-92df-246b274ca44e", + "uuid" : "9d31a211-de57-46e3-b20f-f59ab337eedd", "persistent" : true, - "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", - "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-6", - "insertionIndex" : 215 + "scenarioName" : "scenario-35-api-external_gateways-exqbrsrbJv", + "requiredScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-6", + "insertionIndex" : 220 } \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-5a8571ce-677f-4668-a3b4-9257076280e0.json b/mock/mappings/api_external_gateways_exqbrsrbjv-9d39fa6a-3b69-450f-bcd6-f44b42c963b0.json similarity index 52% rename from mock/mappings/external_gateways_nxmoxsbbgj-5a8571ce-677f-4668-a3b4-9257076280e0.json rename to mock/mappings/api_external_gateways_exqbrsrbjv-9d39fa6a-3b69-450f-bcd6-f44b42c963b0.json index 9997d83..ef8d626 100644 --- a/mock/mappings/external_gateways_nxmoxsbbgj-5a8571ce-677f-4668-a3b4-9257076280e0.json +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-9d39fa6a-3b69-450f-bcd6-f44b42c963b0.json @@ -1,38 +1,38 @@ { - "id" : "5a8571ce-677f-4668-a3b4-9257076280e0", - "name" : "external_gateways_nxmoxsbbgj", + "id" : "9d39fa6a-3b69-450f-bcd6-f44b42c963b0", + "name" : "api_external_gateways_exqbrsrbjv", "request" : { - "url" : "/external_gateways/nxmoXsbBgj", + "url" : "/api/external_gateways/exqbrsrbJv", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:42.777Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ee987408d2f9f5bb2a3c6131415444c5fb695ada1121fff119affbd943e0046a\"}}}", + "body" : "{\"data\":{\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T16:05:31.863Z\",\"updated_at\":\"2024-10-24T16:05:32.704Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://foo.com\",\"capture_url\":\"https://foo.com\",\"void_url\":\"https://foo.com\",\"refund_url\":\"https://foo.com\",\"token_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"b018ce1100e2a4a1deb33a2487e33057\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"14ff4f40c9d9b6f05bbc37cb286df5df6a1198733e8a07956452cc76fbbc0556\"}}}", "headers" : { - "x-request-id" : "4dbe1a03-4480-4bf7-bb86-73ba39876ee6", + "x-request-id" : "702576f8-9c23-43d4-8370-9688f13e6755", "x-kong-upstream-latency" : "18", - "X-Ratelimit-Remaining" : "63", - "x-kong-request-id" : "58cf0736b8ced3547877c133e2f9b066", + "X-Ratelimit-Remaining" : "64", + "x-kong-request-id" : "fe3335448a96ff02c954a45c9c459a0c", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:43 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:33 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"b23cc4c600903ce6cdcd002047fb006a\"", + "etag" : "W/\"d1e04341a99efc469780d74a0d90a2c7\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "5a8571ce-677f-4668-a3b4-9257076280e0", + "uuid" : "9d39fa6a-3b69-450f-bcd6-f44b42c963b0", "persistent" : true, - "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", - "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-4", - "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-5", - "insertionIndex" : 219 + "scenarioName" : "scenario-35-api-external_gateways-exqbrsrbJv", + "requiredScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-3", + "newScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-4", + "insertionIndex" : 225 } \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-aa452eed-2253-45f2-a26c-575a0bc98e8e.json b/mock/mappings/api_external_gateways_exqbrsrbjv-de159f26-5b28-48a5-9881-3cefaf718463.json similarity index 50% rename from mock/mappings/external_gateways_nxmoxsbbgj-aa452eed-2253-45f2-a26c-575a0bc98e8e.json rename to mock/mappings/api_external_gateways_exqbrsrbjv-de159f26-5b28-48a5-9881-3cefaf718463.json index c673984..fa91a21 100644 --- a/mock/mappings/external_gateways_nxmoxsbbgj-aa452eed-2253-45f2-a26c-575a0bc98e8e.json +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-de159f26-5b28-48a5-9881-3cefaf718463.json @@ -1,38 +1,38 @@ { - "id" : "aa452eed-2253-45f2-a26c-575a0bc98e8e", - "name" : "external_gateways_nxmoxsbbgj", + "id" : "de159f26-5b28-48a5-9881-3cefaf718463", + "name" : "api_external_gateways_exqbrsrbjv", "request" : { - "url" : "/external_gateways/nxmoXsbBgj", + "url" : "/api/external_gateways/exqbrsrbJv", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:41.908Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1791f2302ea42d88107553c9203ef464ea0e4c6c0ed9e01b68522b7d25f3dc07\"}}}", + "body" : "{\"data\":{\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T16:05:31.863Z\",\"updated_at\":\"2024-10-24T16:05:31.863Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"b018ce1100e2a4a1deb33a2487e33057\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6d0486f647776ca141ee2ee1a956492404521ee489ba53358ff3d4c7555d0644\"}}}", "headers" : { - "x-request-id" : "7d02b446-bf53-421b-982c-311f11bffd53", - "x-kong-upstream-latency" : "14", + "x-request-id" : "a997cee3-29a9-439c-91f6-3b1e899f615b", + "x-kong-upstream-latency" : "11", "X-Ratelimit-Remaining" : "66", - "x-kong-request-id" : "9f81eb7715b9e05ca55d3e6875e15600", + "x-kong-request-id" : "12ccc93ff2fe97101ce9fd7bc3002d3b", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:42 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:32 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"ee82928a96c0a3d2b474595b76430842\"", + "etag" : "W/\"e1d7fa24e14cfd9e6744566b5eb4f04b\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "aa452eed-2253-45f2-a26c-575a0bc98e8e", + "uuid" : "de159f26-5b28-48a5-9881-3cefaf718463", "persistent" : true, - "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", + "scenarioName" : "scenario-35-api-external_gateways-exqbrsrbJv", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-2", - "insertionIndex" : 223 + "newScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-2", + "insertionIndex" : 228 } \ No newline at end of file diff --git a/mock/mappings/api_external_gateways_exqbrsrbjv-f4b07e7a-05ff-4728-af31-a3f1aa7e3785.json b/mock/mappings/api_external_gateways_exqbrsrbjv-f4b07e7a-05ff-4728-af31-a3f1aa7e3785.json new file mode 100644 index 0000000..e140958 --- /dev/null +++ b/mock/mappings/api_external_gateways_exqbrsrbjv-f4b07e7a-05ff-4728-af31-a3f1aa7e3785.json @@ -0,0 +1,38 @@ +{ + "id" : "f4b07e7a-05ff-4728-af31-a3f1aa7e3785", + "name" : "api_external_gateways_exqbrsrbjv", + "request" : { + "url" : "/api/external_gateways/exqbrsrbJv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"exqbrsrbJv\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T16:05:31.863Z\",\"updated_at\":\"2024-10-24T16:05:33.561Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":null,\"capture_url\":null,\"void_url\":null,\"refund_url\":null,\"token_url\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"b018ce1100e2a4a1deb33a2487e33057\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/exqbrsrbJv/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1a021ec65fd35400c56f22e4fd90da4fd56feee38ed5c001be7ea7fed6cdfdba\"}}}", + "headers" : { + "x-request-id" : "fd368dad-8b52-4293-8b83-d352cf3ceafe", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "62", + "x-kong-request-id" : "5a717a5b0929b54645dd1f6987b53f08", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:33 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"96f140f4768f3520c73047a0bea77b6a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "f4b07e7a-05ff-4728-af31-a3f1aa7e3785", + "persistent" : true, + "scenarioName" : "scenario-35-api-external_gateways-exqbrsrbJv", + "requiredScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-5", + "newScenarioState" : "scenario-35-api-external_gateways-exqbrsrbJv-6", + "insertionIndex" : 222 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators-a002e74d-4717-48c1-a39a-98bc639b8f0a.json b/mock/mappings/api_external_tax_calculators-46147416-a6fb-4afe-be07-71a2d0398029.json similarity index 55% rename from mock/mappings/external_tax_calculators-a002e74d-4717-48c1-a39a-98bc639b8f0a.json rename to mock/mappings/api_external_tax_calculators-46147416-a6fb-4afe-be07-71a2d0398029.json index e2c1e0c..f403a59 100644 --- a/mock/mappings/external_tax_calculators-a002e74d-4717-48c1-a39a-98bc639b8f0a.json +++ b/mock/mappings/api_external_tax_calculators-46147416-a6fb-4afe-be07-71a2d0398029.json @@ -1,8 +1,8 @@ { - "id" : "a002e74d-4717-48c1-a39a-98bc639b8f0a", - "name" : "external_tax_calculators", + "id" : "46147416-a6fb-4afe-be07-71a2d0398029", + "name" : "api_external_tax_calculators", "request" : { - "url" : "/external_tax_calculators", + "url" : "/api/external_tax_calculators", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"incentro_external_tax_calculator\",\"reference\":null,\"reference_origin\":null,\"tax_calculator_url\":\"https://example.com\"},\"type\":\"external_tax_calculators\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"RvMjlTRxPq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:52:06.953Z\",\"updated_at\":\"2024-10-24T15:52:06.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"69bb54542fe97db58ccfdedf5a761ca5\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d90bae92bb97b0d1429ddca9fbb96b26ef8a9748d07bac1cd7042d012ba63ab4\"}}}", + "body" : "{\"data\":{\"id\":\"YNlrjTWJoq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:56.544Z\",\"updated_at\":\"2024-10-24T16:05:56.544Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"616cc3f503db12bc549edafb4edf1bb4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4a173fead4b7f1d611ac00f425ae372fae0b8d5aea70c01191a4a645f0d4afff\"}}}", "headers" : { - "x-request-id" : "dac38249-144b-4130-a50e-9e125eaffe12", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "75", - "x-kong-request-id" : "daa90b386b0dd728fccecb3da3589060", + "x-request-id" : "0c86d230-701c-45ed-8686-e11738419c5a", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "74", + "x-kong-request-id" : "2e2a6f45ff3a190a10a01057930e974d", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:06 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:56 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"9b6fb3aa5376f156927493e4cbe25b51\"", + "etag" : "W/\"e87dd3519079f0482b6884005ba76991\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "a002e74d-4717-48c1-a39a-98bc639b8f0a", + "uuid" : "46147416-a6fb-4afe-be07-71a2d0398029", "persistent" : true, - "insertionIndex" : 128 + "insertionIndex" : 132 } \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json b/mock/mappings/api_external_tax_calculators-b6a0f140-7ec9-40fd-b5fa-8903a7ac991b.json similarity index 55% rename from mock/mappings/external_tax_calculators-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json rename to mock/mappings/api_external_tax_calculators-b6a0f140-7ec9-40fd-b5fa-8903a7ac991b.json index b6fff6e..5a04924 100644 --- a/mock/mappings/external_tax_calculators-74b2a6ab-efbb-4048-8ed3-c628f8202e51.json +++ b/mock/mappings/api_external_tax_calculators-b6a0f140-7ec9-40fd-b5fa-8903a7ac991b.json @@ -1,8 +1,8 @@ { - "id" : "74b2a6ab-efbb-4048-8ed3-c628f8202e51", - "name" : "external_tax_calculators", + "id" : "b6a0f140-7ec9-40fd-b5fa-8903a7ac991b", + "name" : "api_external_tax_calculators", "request" : { - "url" : "/external_tax_calculators", + "url" : "/api/external_tax_calculators", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"name\":\"incentro_external_tax_calculator\",\"reference\":null,\"reference_origin\":null,\"tax_calculator_url\":\"https://example.com\"},\"type\":\"external_tax_calculators\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:44.887Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"29d3f8e63329a91bf94cb3dc495e09b336ed3fea7fc3277a6b84f9ae695a587d\"}}}", + "body" : "{\"data\":{\"id\":\"evKloTwDwq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:34.768Z\",\"updated_at\":\"2024-10-24T16:05:34.768Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bd63bb6bb9925a5d97eb9152648429c4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9c5337cf3d82ba7eb6a783dac608afa4b9ba1af1fcb7c0650838642a73ecf50b\"}}}", "headers" : { - "x-request-id" : "2929a72f-da7b-40c2-a8dc-3bfecaed5d2c", - "x-kong-upstream-latency" : "21", + "x-request-id" : "11a27f97-ff60-4971-a9e9-239201e7b833", + "x-kong-upstream-latency" : "24", "X-Ratelimit-Remaining" : "89", - "x-kong-request-id" : "9cf08c4a36feec50450caf028a1e8124", + "x-kong-request-id" : "f78ea656c8f9e5513eb06c034845ce56", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:44 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:34 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"4c9dddf5fd9c50118dd1bf9334d95996\"", + "etag" : "W/\"e4bd9541f7d5ff7fadff97146e8775a9\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "74b2a6ab-efbb-4048-8ed3-c628f8202e51", + "uuid" : "b6a0f140-7ec9-40fd-b5fa-8903a7ac991b", "persistent" : true, - "insertionIndex" : 214 + "insertionIndex" : 219 } \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_evklotwdwq-047afc93-a809-44fe-83eb-bb20089cc0a7.json b/mock/mappings/api_external_tax_calculators_evklotwdwq-047afc93-a809-44fe-83eb-bb20089cc0a7.json new file mode 100644 index 0000000..e47cfa4 --- /dev/null +++ b/mock/mappings/api_external_tax_calculators_evklotwdwq-047afc93-a809-44fe-83eb-bb20089cc0a7.json @@ -0,0 +1,38 @@ +{ + "id" : "047afc93-a809-44fe-83eb-bb20089cc0a7", + "name" : "api_external_tax_calculators_evklotwdwq", + "request" : { + "url" : "/api/external_tax_calculators/evKloTwDwq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"evKloTwDwq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator_changed\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:34.768Z\",\"updated_at\":\"2024-10-24T16:05:35.783Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bd63bb6bb9925a5d97eb9152648429c4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"12629817d0ae6b7f26ded5e22495c3e94927c1b6eb7fb968fcd3b0b19167012b\"}}}", + "headers" : { + "x-request-id" : "f7b706af-223a-44e0-8074-023dd3bd3cf5", + "x-kong-upstream-latency" : "44", + "X-Ratelimit-Remaining" : "58", + "x-kong-request-id" : "eb14290f54ef18566e8b6e639462cf79", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:36 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"28423938c852d6e6320b766a1421745c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "047afc93-a809-44fe-83eb-bb20089cc0a7", + "persistent" : true, + "scenarioName" : "scenario-34-api-external_tax_calculators-evKloTwDwq", + "requiredScenarioState" : "scenario-34-api-external_tax_calculators-evKloTwDwq-3", + "newScenarioState" : "scenario-34-api-external_tax_calculators-evKloTwDwq-4", + "insertionIndex" : 215 +} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_evklotwdwq-23f8ad61-f84d-483c-9511-48aec3bebe77.json b/mock/mappings/api_external_tax_calculators_evklotwdwq-23f8ad61-f84d-483c-9511-48aec3bebe77.json new file mode 100644 index 0000000..cfaeadc --- /dev/null +++ b/mock/mappings/api_external_tax_calculators_evklotwdwq-23f8ad61-f84d-483c-9511-48aec3bebe77.json @@ -0,0 +1,38 @@ +{ + "id" : "23f8ad61-f84d-483c-9511-48aec3bebe77", + "name" : "api_external_tax_calculators_evklotwdwq", + "request" : { + "url" : "/api/external_tax_calculators/evKloTwDwq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"evKloTwDwq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:34.768Z\",\"updated_at\":\"2024-10-24T16:05:34.768Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bd63bb6bb9925a5d97eb9152648429c4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c0ab8f9777d65b8f8144001c4aa004784438a7ef6d10ee66b177f227c28eedc9\"}}}", + "headers" : { + "x-request-id" : "f69d510a-c488-4138-a8c9-0a29cef4a9dd", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "59", + "x-kong-request-id" : "68f9192dfc2a605ff7fd916305708b20", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:35 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"1bb664934fb2d66917dcc5e498eb8ae7\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "23f8ad61-f84d-483c-9511-48aec3bebe77", + "persistent" : true, + "scenarioName" : "scenario-34-api-external_tax_calculators-evKloTwDwq", + "requiredScenarioState" : "scenario-34-api-external_tax_calculators-evKloTwDwq-2", + "newScenarioState" : "scenario-34-api-external_tax_calculators-evKloTwDwq-3", + "insertionIndex" : 217 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-d313976b-5cbb-4248-936e-fb2378ed5218.json b/mock/mappings/api_external_tax_calculators_evklotwdwq-78ba2919-2332-4317-a5d8-42689269fb95.json similarity index 56% rename from mock/mappings/external_tax_calculators_jnrqltraly-d313976b-5cbb-4248-936e-fb2378ed5218.json rename to mock/mappings/api_external_tax_calculators_evklotwdwq-78ba2919-2332-4317-a5d8-42689269fb95.json index d8e0b31..5a3baf6 100644 --- a/mock/mappings/external_tax_calculators_jnrqltraly-d313976b-5cbb-4248-936e-fb2378ed5218.json +++ b/mock/mappings/api_external_tax_calculators_evklotwdwq-78ba2919-2332-4317-a5d8-42689269fb95.json @@ -1,40 +1,40 @@ { - "id" : "d313976b-5cbb-4248-936e-fb2378ed5218", - "name" : "external_tax_calculators_jnrqltraly", + "id" : "78ba2919-2332-4317-a5d8-42689269fb95", + "name" : "api_external_tax_calculators_evklotwdwq", "request" : { - "url" : "/external_tax_calculators/JNrQLTraLy", + "url" : "/api/external_tax_calculators/evKloTwDwq", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"name\":\"incentro_external_tax_calculator_changed\",\"reference\":null,\"reference_origin\":null,\"tax_calculator_url\":\"https://foo.com\"},\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"name\":\"incentro_external_tax_calculator_changed\",\"reference\":null,\"reference_origin\":null,\"tax_calculator_url\":\"https://foo.com\"},\"id\":\"evKloTwDwq\",\"type\":\"external_tax_calculators\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator_changed\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:45.967Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2c45bbec3b6982543917f2a52aa112dd436a94219d081070cef4bcfdd7e9caa0\"}}}", + "body" : "{\"data\":{\"id\":\"evKloTwDwq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator_changed\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:34.768Z\",\"updated_at\":\"2024-10-24T16:05:35.783Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bd63bb6bb9925a5d97eb9152648429c4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"96216c3e8800da1913b77786fc29cbfc03f393b7353778331d4368ed63e162b9\"}}}", "headers" : { - "x-request-id" : "f322e9f8-2e80-47ec-8138-549f84e89267", + "x-request-id" : "912f7d68-e35d-4809-841e-2513f9f2a650", "x-kong-upstream-latency" : "20", "X-Ratelimit-Remaining" : "91", - "x-kong-request-id" : "81163f7792ac057acc0f840878772735", + "x-kong-request-id" : "00f68e2326a47f3ee0e3ad0cd83eae36", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:45 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:35 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"0e69b4251b87b533c98e1701b9f0b6d2\"", + "etag" : "W/\"18a424c6d49dee980c2cb186dd20a36d\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d313976b-5cbb-4248-936e-fb2378ed5218", + "uuid" : "78ba2919-2332-4317-a5d8-42689269fb95", "persistent" : true, - "insertionIndex" : 211 + "insertionIndex" : 216 } \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_evklotwdwq-7a2eea67-234b-493d-9626-398622a93126.json b/mock/mappings/api_external_tax_calculators_evklotwdwq-7a2eea67-234b-493d-9626-398622a93126.json new file mode 100644 index 0000000..cebab90 --- /dev/null +++ b/mock/mappings/api_external_tax_calculators_evklotwdwq-7a2eea67-234b-493d-9626-398622a93126.json @@ -0,0 +1,38 @@ +{ + "id" : "7a2eea67-234b-493d-9626-398622a93126", + "name" : "api_external_tax_calculators_evklotwdwq", + "request" : { + "url" : "/api/external_tax_calculators/evKloTwDwq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"evKloTwDwq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:34.768Z\",\"updated_at\":\"2024-10-24T16:05:34.768Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bd63bb6bb9925a5d97eb9152648429c4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/evKloTwDwq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f9983f2dd191073fde22fc62240c283aae13fe13eab4f565d073cdd930035cc1\"}}}", + "headers" : { + "x-request-id" : "45306480-f04f-4644-b295-c31523bad5c0", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "60", + "x-kong-request-id" : "1979624f26f7425619b6b5255dd4f20b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:35 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"8c6ff3428aac17023f06af96d70439e6\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7a2eea67-234b-493d-9626-398622a93126", + "persistent" : true, + "scenarioName" : "scenario-34-api-external_tax_calculators-evKloTwDwq", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-34-api-external_tax_calculators-evKloTwDwq-2", + "insertionIndex" : 218 +} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-ac23b896-4758-494d-ad8c-eb85959da17b.json b/mock/mappings/api_external_tax_calculators_evklotwdwq-9d73f43c-774a-4fff-b11c-3250376e2995.json similarity index 54% rename from mock/mappings/external_tax_calculators_jnrqltraly-ac23b896-4758-494d-ad8c-eb85959da17b.json rename to mock/mappings/api_external_tax_calculators_evklotwdwq-9d73f43c-774a-4fff-b11c-3250376e2995.json index d96bbf8..8ee940c 100644 --- a/mock/mappings/external_tax_calculators_jnrqltraly-ac23b896-4758-494d-ad8c-eb85959da17b.json +++ b/mock/mappings/api_external_tax_calculators_evklotwdwq-9d73f43c-774a-4fff-b11c-3250376e2995.json @@ -1,21 +1,21 @@ { - "id" : "ac23b896-4758-494d-ad8c-eb85959da17b", - "name" : "external_tax_calculators_jnrqltraly", + "id" : "9d73f43c-774a-4fff-b11c-3250376e2995", + "name" : "api_external_tax_calculators_evklotwdwq", "request" : { - "url" : "/external_tax_calculators/JNrQLTraLy", + "url" : "/api/external_tax_calculators/evKloTwDwq", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "d5014363-6fe6-4e1e-9299-9be319c72120", - "x-kong-upstream-latency" : "24", + "x-request-id" : "b90fb716-113f-4145-90b7-18916233a3b3", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "89", - "x-kong-request-id" : "607df954a7266e6f03b3e006f5fdda68", + "x-kong-request-id" : "f27fd720aaf2ef38e132656b9ff03673", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:46 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:36 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "ac23b896-4758-494d-ad8c-eb85959da17b", + "uuid" : "9d73f43c-774a-4fff-b11c-3250376e2995", "persistent" : true, - "insertionIndex" : 209 + "insertionIndex" : 214 } \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json b/mock/mappings/api_external_tax_calculators_evklotwdwq-b8a609ed-b568-426c-bc20-ea12b67773ad.json similarity index 62% rename from mock/mappings/external_tax_calculators_jnrqltraly-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json rename to mock/mappings/api_external_tax_calculators_evklotwdwq-b8a609ed-b568-426c-bc20-ea12b67773ad.json index 991f5cf..f089e51 100644 --- a/mock/mappings/external_tax_calculators_jnrqltraly-f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851.json +++ b/mock/mappings/api_external_tax_calculators_evklotwdwq-b8a609ed-b568-426c-bc20-ea12b67773ad.json @@ -1,22 +1,22 @@ { - "id" : "f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851", - "name" : "external_tax_calculators_jnrqltraly", + "id" : "b8a609ed-b568-426c-bc20-ea12b67773ad", + "name" : "api_external_tax_calculators_evklotwdwq", "request" : { - "url" : "/external_tax_calculators/JNrQLTraLy", + "url" : "/api/external_tax_calculators/evKloTwDwq", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "249f0d1b-e6fb-4eb0-a29c-016d85e03d90", + "x-request-id" : "b1525c50-1188-4a52-b32e-94580b18ffc9", "x-kong-upstream-latency" : "7", "X-Ratelimit-Remaining" : "57", - "x-kong-request-id" : "02bed2486ba12e76c9b3817513208b42", + "x-kong-request-id" : "b7ac4535d471b8397c8750017dd7594b", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:46 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:36 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "f1ebf3e5-5b7c-4a29-b1e8-ddf50b48a851", + "uuid" : "b8a609ed-b568-426c-bc20-ea12b67773ad", "persistent" : true, - "scenarioName" : "scenario-34-external_tax_calculators-JNrQLTraLy", - "requiredScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-4", - "insertionIndex" : 208 + "scenarioName" : "scenario-34-api-external_tax_calculators-evKloTwDwq", + "requiredScenarioState" : "scenario-34-api-external_tax_calculators-evKloTwDwq-4", + "insertionIndex" : 213 } \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-62c20dd8-2870-4417-b596-4fb176cfb377.json b/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-26f74a1e-db5a-40a5-97ae-8c12dc9ea3ae.json similarity index 57% rename from mock/mappings/addresses_boelupqapl-62c20dd8-2870-4417-b596-4fb176cfb377.json rename to mock/mappings/api_external_tax_calculators_ynlrjtwjoq-26f74a1e-db5a-40a5-97ae-8c12dc9ea3ae.json index 5f9882e..eccdce2 100644 --- a/mock/mappings/addresses_boelupqapl-62c20dd8-2870-4417-b596-4fb176cfb377.json +++ b/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-26f74a1e-db5a-40a5-97ae-8c12dc9ea3ae.json @@ -1,21 +1,21 @@ { - "id" : "62c20dd8-2870-4417-b596-4fb176cfb377", - "name" : "addresses_boelupqapl", + "id" : "26f74a1e-db5a-40a5-97ae-8c12dc9ea3ae", + "name" : "api_external_tax_calculators_ynlrjtwjoq", "request" : { - "url" : "/addresses/Boelupqapl", + "url" : "/api/external_tax_calculators/YNlrjTWJoq", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "ec9b0267-38cd-45e9-8ae1-61213b8a2e54", + "x-request-id" : "bbc15be3-e68f-4717-b018-91dd1f419672", "x-kong-upstream-latency" : "24", - "X-Ratelimit-Remaining" : "91", - "x-kong-request-id" : "8bd8a2370d83771339171f57cabf7a34", + "X-Ratelimit-Remaining" : "75", + "x-kong-request-id" : "328147649324043964e24554d27f374c", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:00 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "62c20dd8-2870-4417-b596-4fb176cfb377", + "uuid" : "26f74a1e-db5a-40a5-97ae-8c12dc9ea3ae", "persistent" : true, - "insertionIndex" : 229 + "insertionIndex" : 108 } \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-43d62826-bb9f-44dc-b979-28262187734d.json b/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-43d62826-bb9f-44dc-b979-28262187734d.json new file mode 100644 index 0000000..0bfec97 --- /dev/null +++ b/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-43d62826-bb9f-44dc-b979-28262187734d.json @@ -0,0 +1,38 @@ +{ + "id" : "43d62826-bb9f-44dc-b979-28262187734d", + "name" : "api_external_tax_calculators_ynlrjtwjoq", + "request" : { + "url" : "/api/external_tax_calculators/YNlrjTWJoq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"YNlrjTWJoq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:56.544Z\",\"updated_at\":\"2024-10-24T16:05:56.544Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"616cc3f503db12bc549edafb4edf1bb4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fcbac3dea4c0455323b878bfbefcc404459df90f032f0c8ec7b83767d3ef9870\"}}}", + "headers" : { + "x-request-id" : "c011fa42-6397-4ed8-a406-fc9d11acf084", + "x-kong-upstream-latency" : "17", + "X-Ratelimit-Remaining" : "23", + "x-kong-request-id" : "22bf3335fe75420fce1b6c6d5e53641f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:58 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"08049417bbfc9c131c20b4a841911d73\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "43d62826-bb9f-44dc-b979-28262187734d", + "persistent" : true, + "scenarioName" : "scenario-20-api-external_tax_calculators-YNlrjTWJoq", + "requiredScenarioState" : "scenario-20-api-external_tax_calculators-YNlrjTWJoq-2", + "newScenarioState" : "scenario-20-api-external_tax_calculators-YNlrjTWJoq-3", + "insertionIndex" : 119 +} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-72bc835f-4e0a-47f3-ae8d-e774cef763ba.json b/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-72bc835f-4e0a-47f3-ae8d-e774cef763ba.json new file mode 100644 index 0000000..01f6c12 --- /dev/null +++ b/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-72bc835f-4e0a-47f3-ae8d-e774cef763ba.json @@ -0,0 +1,37 @@ +{ + "id" : "72bc835f-4e0a-47f3-ae8d-e774cef763ba", + "name" : "api_external_tax_calculators_ynlrjtwjoq", + "request" : { + "url" : "/api/external_tax_calculators/YNlrjTWJoq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"YNlrjTWJoq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:56.544Z\",\"updated_at\":\"2024-10-24T16:05:56.544Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"616cc3f503db12bc549edafb4edf1bb4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"5cccc7bd510a436f1a41b55a8b5bcf4afae8f945b07875cd602b9765a4ec1461\"}}}", + "headers" : { + "x-request-id" : "82ee21c4-afa4-498c-8f94-589acd8b89be", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "20", + "x-kong-request-id" : "77c04a7b688829500d5b1b3f49c3de19", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:59 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"874120f7fc7f3a3a0f9722704ffd8812\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "72bc835f-4e0a-47f3-ae8d-e774cef763ba", + "persistent" : true, + "scenarioName" : "scenario-20-api-external_tax_calculators-YNlrjTWJoq", + "requiredScenarioState" : "scenario-20-api-external_tax_calculators-YNlrjTWJoq-3", + "insertionIndex" : 114 +} \ No newline at end of file diff --git a/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-eedb1dde-703d-4bd8-aea8-62e6437d94a3.json b/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-eedb1dde-703d-4bd8-aea8-62e6437d94a3.json new file mode 100644 index 0000000..e1d794a --- /dev/null +++ b/mock/mappings/api_external_tax_calculators_ynlrjtwjoq-eedb1dde-703d-4bd8-aea8-62e6437d94a3.json @@ -0,0 +1,38 @@ +{ + "id" : "eedb1dde-703d-4bd8-aea8-62e6437d94a3", + "name" : "api_external_tax_calculators_ynlrjtwjoq", + "request" : { + "url" : "/api/external_tax_calculators/YNlrjTWJoq", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"YNlrjTWJoq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T16:05:56.544Z\",\"updated_at\":\"2024-10-24T16:05:56.544Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"616cc3f503db12bc549edafb4edf1bb4\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/YNlrjTWJoq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"035e1b813d0dce49c2678f675b18d8b3e0f6d3f9094045000acae73666ededc0\"}}}", + "headers" : { + "x-request-id" : "b5d60b70-94d9-4c52-ad90-7003f5aab3ee", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "26", + "x-kong-request-id" : "544a173827032a65a3bf933b8a6bdf3a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:57 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"09570dc6ae93d6a864979f53ab5611a5\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "eedb1dde-703d-4bd8-aea8-62e6437d94a3", + "persistent" : true, + "scenarioName" : "scenario-20-api-external_tax_calculators-YNlrjTWJoq", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-20-api-external_tax_calculators-YNlrjTWJoq-2", + "insertionIndex" : 127 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders-eda82c55-8c77-481e-83bd-693066fc8c94.json b/mock/mappings/api_google_geocoders-4a643221-b273-4a9a-9a74-773708ab9602.json similarity index 54% rename from mock/mappings/google_geocoders-eda82c55-8c77-481e-83bd-693066fc8c94.json rename to mock/mappings/api_google_geocoders-4a643221-b273-4a9a-9a74-773708ab9602.json index 42cf7e9..ef37c89 100644 --- a/mock/mappings/google_geocoders-eda82c55-8c77-481e-83bd-693066fc8c94.json +++ b/mock/mappings/api_google_geocoders-4a643221-b273-4a9a-9a74-773708ab9602.json @@ -1,8 +1,8 @@ { - "id" : "eda82c55-8c77-481e-83bd-693066fc8c94", - "name" : "google_geocoders", + "id" : "4a643221-b273-4a9a-9a74-773708ab9602", + "name" : "api_google_geocoders", "request" : { - "url" : "/google_geocoders", + "url" : "/api/google_geocoders", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"Google Geocoder API Key\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"},\"name\":\"Incentro Google Geocoder\",\"reference\":null,\"reference_origin\":null},\"type\":\"google_geocoders\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.077Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fc8ae56ceca2428d2b2de4453b921c364959efabb2b3dba183e543b6c98b3bc2\"}}}", + "body" : "{\"data\":{\"id\":\"aGqqAsArWG\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T16:05:36.918Z\",\"updated_at\":\"2024-10-24T16:05:36.918Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"72b4d08b9ce157ba06588b72dc04287ef154f108b92856eaa980903c5b78e3ab\"}}}", "headers" : { - "x-request-id" : "d89123ab-4ebc-4f4c-8073-84c600ca797d", - "x-kong-upstream-latency" : "16", + "x-request-id" : "683f6cd8-dbcc-4f92-8d3d-1959cd7b4c63", + "x-kong-upstream-latency" : "20", "X-Ratelimit-Remaining" : "88", - "x-kong-request-id" : "044a136483705b10a28c6a03b7877d45", + "x-kong-request-id" : "b20bd2706cd5443a665a6661997a134c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:47 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:36 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"da1b400fddc2240bb07a60a0a52140cd\"", + "etag" : "W/\"b145ddbaf4cb093c44bd87880f4c6bfd\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "eda82c55-8c77-481e-83bd-693066fc8c94", + "uuid" : "4a643221-b273-4a9a-9a74-773708ab9602", "persistent" : true, - "insertionIndex" : 207 + "insertionIndex" : 212 } \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_agqqasarwg-15cc7b98-7e82-42ed-976c-fc073b4a29f4.json b/mock/mappings/api_google_geocoders_agqqasarwg-15cc7b98-7e82-42ed-976c-fc073b4a29f4.json new file mode 100644 index 0000000..48fb515 --- /dev/null +++ b/mock/mappings/api_google_geocoders_agqqasarwg-15cc7b98-7e82-42ed-976c-fc073b4a29f4.json @@ -0,0 +1,38 @@ +{ + "id" : "15cc7b98-7e82-42ed-976c-fc073b4a29f4", + "name" : "api_google_geocoders_agqqasarwg", + "request" : { + "url" : "/api/google_geocoders/aGqqAsArWG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aGqqAsArWG\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T16:05:36.918Z\",\"updated_at\":\"2024-10-24T16:05:36.918Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8738d35926169bb00dcd501a025c1435bb5b5d0bc102444c21e9ca8f3bd5fdc7\"}}}", + "headers" : { + "x-request-id" : "2536a797-23f3-49d2-9761-226e3e62cf25", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "56", + "x-kong-request-id" : "32ebb903d7221d4820f3bb2bf600b565", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"34ea44e0fd887ccf688439bd47a8873b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "15cc7b98-7e82-42ed-976c-fc073b4a29f4", + "persistent" : true, + "scenarioName" : "scenario-33-api-google_geocoders-aGqqAsArWG", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-33-api-google_geocoders-aGqqAsArWG-2", + "insertionIndex" : 211 +} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_agqqasarwg-729f652e-1798-4446-9032-cd19c9561f67.json b/mock/mappings/api_google_geocoders_agqqasarwg-729f652e-1798-4446-9032-cd19c9561f67.json new file mode 100644 index 0000000..a349afb --- /dev/null +++ b/mock/mappings/api_google_geocoders_agqqasarwg-729f652e-1798-4446-9032-cd19c9561f67.json @@ -0,0 +1,38 @@ +{ + "id" : "729f652e-1798-4446-9032-cd19c9561f67", + "name" : "api_google_geocoders_agqqasarwg", + "request" : { + "url" : "/api/google_geocoders/aGqqAsArWG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aGqqAsArWG\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T16:05:36.918Z\",\"updated_at\":\"2024-10-24T16:05:37.847Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"40481543aef043095a2f892883d1962404ec98123cf6fed296ed9a75f29cc95f\"}}}", + "headers" : { + "x-request-id" : "40476d7f-38b5-450e-b41c-e517a9e98457", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "54", + "x-kong-request-id" : "3b473c6078e54534d06d4743a8112276", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:38 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d45ddc55c40a05cad65e474e6790fe0a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "729f652e-1798-4446-9032-cd19c9561f67", + "persistent" : true, + "scenarioName" : "scenario-33-api-google_geocoders-aGqqAsArWG", + "requiredScenarioState" : "scenario-33-api-google_geocoders-aGqqAsArWG-3", + "newScenarioState" : "scenario-33-api-google_geocoders-aGqqAsArWG-4", + "insertionIndex" : 208 +} \ No newline at end of file diff --git a/mock/mappings/api_google_geocoders_agqqasarwg-b45f3555-fd65-4dab-81b7-6b883af09ee8.json b/mock/mappings/api_google_geocoders_agqqasarwg-b45f3555-fd65-4dab-81b7-6b883af09ee8.json new file mode 100644 index 0000000..3fb4651 --- /dev/null +++ b/mock/mappings/api_google_geocoders_agqqasarwg-b45f3555-fd65-4dab-81b7-6b883af09ee8.json @@ -0,0 +1,38 @@ +{ + "id" : "b45f3555-fd65-4dab-81b7-6b883af09ee8", + "name" : "api_google_geocoders_agqqasarwg", + "request" : { + "url" : "/api/google_geocoders/aGqqAsArWG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"aGqqAsArWG\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T16:05:36.918Z\",\"updated_at\":\"2024-10-24T16:05:36.918Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"29e7ad83b531b1056cdc5697111eaaced97f73b069804a50d788d1a4d4ab7423\"}}}", + "headers" : { + "x-request-id" : "2076de05-b416-4e51-a5db-2c9fbbbeab94", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "55", + "x-kong-request-id" : "0940881ded4e1a1abe0bde11729c6529", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:37 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d9d2638911ca21459180c868c806d30f\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "b45f3555-fd65-4dab-81b7-6b883af09ee8", + "persistent" : true, + "scenarioName" : "scenario-33-api-google_geocoders-aGqqAsArWG", + "requiredScenarioState" : "scenario-33-api-google_geocoders-aGqqAsArWG-2", + "newScenarioState" : "scenario-33-api-google_geocoders-aGqqAsArWG-3", + "insertionIndex" : 210 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json b/mock/mappings/api_google_geocoders_agqqasarwg-c36faee9-a080-4e26-8fe5-bc1a79e0d1ea.json similarity index 59% rename from mock/mappings/google_geocoders_mgwalsandn-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json rename to mock/mappings/api_google_geocoders_agqqasarwg-c36faee9-a080-4e26-8fe5-bc1a79e0d1ea.json index 2685294..d650266 100644 --- a/mock/mappings/google_geocoders_mgwalsandn-b9f4f1eb-286e-4187-86cc-5617ab790ee9.json +++ b/mock/mappings/api_google_geocoders_agqqasarwg-c36faee9-a080-4e26-8fe5-bc1a79e0d1ea.json @@ -1,40 +1,40 @@ { - "id" : "b9f4f1eb-286e-4187-86cc-5617ab790ee9", - "name" : "google_geocoders_mgwalsandn", + "id" : "c36faee9-a080-4e26-8fe5-bc1a79e0d1ea", + "name" : "api_google_geocoders_agqqasarwg", "request" : { - "url" : "/google_geocoders/MGWAlsaNDn", + "url" : "/api/google_geocoders/aGqqAsArWG", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"Google Geocoder API Key\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"},\"name\":\"Incentro Updated Google Geocoder\",\"reference\":null,\"reference_origin\":null},\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"Google Geocoder API Key\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"},\"name\":\"Incentro Updated Google Geocoder\",\"reference\":null,\"reference_origin\":null},\"id\":\"aGqqAsArWG\",\"type\":\"google_geocoders\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.939Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2ae2839cf65b729177de73e4117dcfbf520d99a8d519864413df43137a4a099b\"}}}", + "body" : "{\"data\":{\"id\":\"aGqqAsArWG\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T16:05:36.918Z\",\"updated_at\":\"2024-10-24T16:05:37.847Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/aGqqAsArWG/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"5e38da3f45a9b6a28ca899a728f292018e64c0626c6662d628c1a9ca06565b50\"}}}", "headers" : { - "x-request-id" : "324b01be-b757-4c35-9d57-52b633270f25", + "x-request-id" : "f887d164-705d-4be3-b433-2ccacc54ddf2", "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "90", - "x-kong-request-id" : "fb77a652d4e9f669f735d36d7f18ef1e", + "x-kong-request-id" : "f1e3455126194b0394019d6afa23ce6e", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:47 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:37 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"be0e87e889607a614f20c3b57b027604\"", + "etag" : "W/\"0d1d0e3b6ee7e5f59afc59916bab855d\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "b9f4f1eb-286e-4187-86cc-5617ab790ee9", + "uuid" : "c36faee9-a080-4e26-8fe5-bc1a79e0d1ea", "persistent" : true, - "insertionIndex" : 204 + "insertionIndex" : 209 } \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-73583ba6-0a14-4d3d-8b4a-f64b83668615.json b/mock/mappings/api_google_geocoders_agqqasarwg-f39c30e5-7308-4d62-a45a-ec0e11726748.json similarity index 61% rename from mock/mappings/google_geocoders_mgwalsandn-73583ba6-0a14-4d3d-8b4a-f64b83668615.json rename to mock/mappings/api_google_geocoders_agqqasarwg-f39c30e5-7308-4d62-a45a-ec0e11726748.json index 89c2154..fc42038 100644 --- a/mock/mappings/google_geocoders_mgwalsandn-73583ba6-0a14-4d3d-8b4a-f64b83668615.json +++ b/mock/mappings/api_google_geocoders_agqqasarwg-f39c30e5-7308-4d62-a45a-ec0e11726748.json @@ -1,22 +1,22 @@ { - "id" : "73583ba6-0a14-4d3d-8b4a-f64b83668615", - "name" : "google_geocoders_mgwalsandn", + "id" : "f39c30e5-7308-4d62-a45a-ec0e11726748", + "name" : "api_google_geocoders_agqqasarwg", "request" : { - "url" : "/google_geocoders/MGWAlsaNDn", + "url" : "/api/google_geocoders/aGqqAsArWG", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "011091b0-427d-4450-9069-b55fb661f700", - "x-kong-upstream-latency" : "8", + "x-request-id" : "33569229-76f0-42aa-a5ff-13eb134054fe", + "x-kong-upstream-latency" : "5", "X-Ratelimit-Remaining" : "53", - "x-kong-request-id" : "cc8c5a583fb6d2618b68db0630382a69", + "x-kong-request-id" : "2ad9755c526ce630ca098e6e12552b0e", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:48 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:38 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "73583ba6-0a14-4d3d-8b4a-f64b83668615", + "uuid" : "f39c30e5-7308-4d62-a45a-ec0e11726748", "persistent" : true, - "scenarioName" : "scenario-33-google_geocoders-MGWAlsaNDn", - "requiredScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-4", - "insertionIndex" : 201 + "scenarioName" : "scenario-33-api-google_geocoders-aGqqAsArWG", + "requiredScenarioState" : "scenario-33-api-google_geocoders-aGqqAsArWG-4", + "insertionIndex" : 206 } \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json b/mock/mappings/api_google_geocoders_agqqasarwg-f3f1c96d-f9bd-4858-9546-e297b823d0f4.json similarity index 55% rename from mock/mappings/shipping_categories_enbljfzglw-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json rename to mock/mappings/api_google_geocoders_agqqasarwg-f3f1c96d-f9bd-4858-9546-e297b823d0f4.json index c103cf6..9c3b08c 100644 --- a/mock/mappings/shipping_categories_enbljfzglw-306fc883-a8cd-4fe4-89a5-2f62c58b7bcc.json +++ b/mock/mappings/api_google_geocoders_agqqasarwg-f3f1c96d-f9bd-4858-9546-e297b823d0f4.json @@ -1,21 +1,21 @@ { - "id" : "306fc883-a8cd-4fe4-89a5-2f62c58b7bcc", - "name" : "shipping_categories_enbljfzglw", + "id" : "f3f1c96d-f9bd-4858-9546-e297b823d0f4", + "name" : "api_google_geocoders_agqqasarwg", "request" : { - "url" : "/shipping_categories/ENblJFZgLW", + "url" : "/api/google_geocoders/aGqqAsArWG", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "ce871a81-9067-4c48-bf5b-f5d579ee3981", + "x-request-id" : "1e647373-c66c-4e2f-badd-101221e18449", "x-kong-upstream-latency" : "26", - "X-Ratelimit-Remaining" : "97", - "x-kong-request-id" : "a66f70237eb78373fce6520b77957a14", + "X-Ratelimit-Remaining" : "88", + "x-kong-request-id" : "b4d2cc58fb3b575278e74e36bf34497d", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:26 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:38 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "306fc883-a8cd-4fe4-89a5-2f62c58b7bcc", + "uuid" : "f3f1c96d-f9bd-4858-9546-e297b823d0f4", "persistent" : true, - "insertionIndex" : 50 + "insertionIndex" : 207 } \ No newline at end of file diff --git a/mock/mappings/inventory_models-6175c756-71e5-4f30-ab47-98420a36b6d8.json b/mock/mappings/api_inventory_models-262b2fc6-8694-4e51-bff6-d30ac1e70aab.json similarity index 59% rename from mock/mappings/inventory_models-6175c756-71e5-4f30-ab47-98420a36b6d8.json rename to mock/mappings/api_inventory_models-262b2fc6-8694-4e51-bff6-d30ac1e70aab.json index 4fc32a6..4829345 100644 --- a/mock/mappings/inventory_models-6175c756-71e5-4f30-ab47-98420a36b6d8.json +++ b/mock/mappings/api_inventory_models-262b2fc6-8694-4e51-bff6-d30ac1e70aab.json @@ -1,8 +1,8 @@ { - "id" : "6175c756-71e5-4f30-ab47-98420a36b6d8", - "name" : "inventory_models", + "id" : "262b2fc6-8694-4e51-bff6-d30ac1e70aab", + "name" : "api_inventory_models", "request" : { - "url" : "/inventory_models", + "url" : "/api/inventory_models", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"name\":\"Incentro Inventory Model\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:55.558Z\",\"updated_at\":\"2024-10-24T15:51:55.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3f173555cff74f3589fe74093d31185af77f57846e64371e13ffc8283987ec66\"}}}", + "body" : "{\"data\":{\"id\":\"JazqXSymMZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:45.220Z\",\"updated_at\":\"2024-10-24T16:05:45.220Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"34f97be2e6f8633034a1cc9bba6be00328aa962da6bf339e63fc69e736a6f313\"}}}", "headers" : { - "x-request-id" : "ede5031f-5c4b-400c-96bf-f137e64d2e7f", - "x-kong-upstream-latency" : "23", + "x-request-id" : "f89dbe99-c085-4a30-8469-d5aa28b12149", + "x-kong-upstream-latency" : "19", "X-Ratelimit-Remaining" : "82", - "x-kong-request-id" : "037fe133c3fc1d59aee00776f5f5b147", + "x-kong-request-id" : "aa0815277e411a5b9f11706888ccce76", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:55 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:45 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"881205165e9898d82c095fe93e505f69\"", + "etag" : "W/\"bbd737e4a2adf71ddf5e9d1a7d203873\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "6175c756-71e5-4f30-ab47-98420a36b6d8", + "uuid" : "262b2fc6-8694-4e51-bff6-d30ac1e70aab", "persistent" : true, - "insertionIndex" : 171 + "insertionIndex" : 176 } \ No newline at end of file diff --git a/mock/mappings/inventory_models-6073c1a5-bf59-4484-a253-387724986156.json b/mock/mappings/api_inventory_models-3697be27-132b-45f5-a302-1ba53eb242c0.json similarity index 60% rename from mock/mappings/inventory_models-6073c1a5-bf59-4484-a253-387724986156.json rename to mock/mappings/api_inventory_models-3697be27-132b-45f5-a302-1ba53eb242c0.json index ae26856..3772551 100644 --- a/mock/mappings/inventory_models-6073c1a5-bf59-4484-a253-387724986156.json +++ b/mock/mappings/api_inventory_models-3697be27-132b-45f5-a302-1ba53eb242c0.json @@ -1,8 +1,8 @@ { - "id" : "6073c1a5-bf59-4484-a253-387724986156", - "name" : "inventory_models", + "id" : "3697be27-132b-45f5-a302-1ba53eb242c0", + "name" : "api_inventory_models", "request" : { - "url" : "/inventory_models", + "url" : "/api/inventory_models", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"name\":\"Incentro Inventory Model\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:51.146Z\",\"updated_at\":\"2024-10-24T15:51:51.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"553d6de4f44b223243245bfd4708806215fe2fd63bf8f894c65c1741edeb05af\"}}}", + "body" : "{\"data\":{\"id\":\"dZngySxRva\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:40.961Z\",\"updated_at\":\"2024-10-24T16:05:40.961Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2130c7f67bcb61352be2e6d0a33e59717d16db1115498b4281f864ce359dba98\"}}}", "headers" : { - "x-request-id" : "c9114e7f-90f3-4b45-92c9-097dc6224a1a", - "x-kong-upstream-latency" : "16", + "x-request-id" : "180755e3-f6c9-44ad-8d36-cba4c3284a35", + "x-kong-upstream-latency" : "19", "X-Ratelimit-Remaining" : "86", - "x-kong-request-id" : "8b016a5ddef7960b405b2c3ec8548a5d", + "x-kong-request-id" : "0dfbcc2616ffbf3e5ce30e1fb9c2b96c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:51 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:40 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"88a1e77ec91e271348ece9d15f835147\"", + "etag" : "W/\"2e357f22327b3fbdae10726523c34ef8\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "6073c1a5-bf59-4484-a253-387724986156", + "uuid" : "3697be27-132b-45f5-a302-1ba53eb242c0", "persistent" : true, - "insertionIndex" : 193 + "insertionIndex" : 198 } \ No newline at end of file diff --git a/mock/mappings/inventory_models-d2d297e5-4ec7-4901-886b-a7c86f530e32.json b/mock/mappings/api_inventory_models-3abc94d3-d5c2-4951-aa30-98f3b49afa56.json similarity index 58% rename from mock/mappings/inventory_models-d2d297e5-4ec7-4901-886b-a7c86f530e32.json rename to mock/mappings/api_inventory_models-3abc94d3-d5c2-4951-aa30-98f3b49afa56.json index a8fa1ad..86deffb 100644 --- a/mock/mappings/inventory_models-d2d297e5-4ec7-4901-886b-a7c86f530e32.json +++ b/mock/mappings/api_inventory_models-3abc94d3-d5c2-4951-aa30-98f3b49afa56.json @@ -1,8 +1,8 @@ { - "id" : "d2d297e5-4ec7-4901-886b-a7c86f530e32", - "name" : "inventory_models", + "id" : "3abc94d3-d5c2-4951-aa30-98f3b49afa56", + "name" : "api_inventory_models", "request" : { - "url" : "/inventory_models", + "url" : "/api/inventory_models", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"},\"name\":\"Incentro Inventory Model\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d7f9b7b5bdd66383be52935f4bd2e6f1b60017962e343a548e637c893c5a0fc1\"}}}", + "body" : "{\"data\":{\"id\":\"kapovSBRyZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:38.959Z\",\"updated_at\":\"2024-10-24T16:05:38.959Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"dd89d6b7fdf66facfb124f99cac0e1bb1f96a4464081f6684ffec41d501fd832\"}}}", "headers" : { - "x-request-id" : "313f923d-41c9-4ad8-97ed-ab4650efaef0", - "x-kong-upstream-latency" : "18", + "x-request-id" : "5c25268f-f871-4bec-bd00-706af9e4eec5", + "x-kong-upstream-latency" : "31", "X-Ratelimit-Remaining" : "87", - "x-kong-request-id" : "0a9fde418deb435bba215402abaeaf27", + "x-kong-request-id" : "8b91da1544dd047c8525807636d3b97c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:49 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:38 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"8b32f8309cf0e8509eeea328d6e1ef55\"", + "etag" : "W/\"c8f9aafaa7e26eaaab85e4e17736095a\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d2d297e5-4ec7-4901-886b-a7c86f530e32", + "uuid" : "3abc94d3-d5c2-4951-aa30-98f3b49afa56", "persistent" : true, - "insertionIndex" : 200 + "insertionIndex" : 205 } \ No newline at end of file diff --git a/mock/mappings/inventory_models-5993645f-6ab5-4af3-9411-69228ea8b0bd.json b/mock/mappings/api_inventory_models-6a046475-67d9-4a33-b0e7-c25a1e4751be.json similarity index 55% rename from mock/mappings/inventory_models-5993645f-6ab5-4af3-9411-69228ea8b0bd.json rename to mock/mappings/api_inventory_models-6a046475-67d9-4a33-b0e7-c25a1e4751be.json index fac78f5..918184f 100644 --- a/mock/mappings/inventory_models-5993645f-6ab5-4af3-9411-69228ea8b0bd.json +++ b/mock/mappings/api_inventory_models-6a046475-67d9-4a33-b0e7-c25a1e4751be.json @@ -1,8 +1,8 @@ { - "id" : "5993645f-6ab5-4af3-9411-69228ea8b0bd", - "name" : "inventory_models", + "id" : "6a046475-67d9-4a33-b0e7-c25a1e4751be", + "name" : "api_inventory_models", "request" : { - "url" : "/inventory_models", + "url" : "/api/inventory_models", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Inventory Model\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":1,\"strategy\":\"no_split\"},\"type\":\"inventory_models\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:52:07.137Z\",\"updated_at\":\"2024-10-24T15:52:07.137Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"53659dbbb9bcb2a59a15dad7632daecee63bd15caafdb44f503f55f69ccbc4db\"}}}", + "body" : "{\"data\":{\"id\":\"kZXEvSyREa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:56.427Z\",\"updated_at\":\"2024-10-24T16:05:56.427Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"744750f175499b7413d0a32c22aa1a8dbe491d4919eab5adb09e9f7a2f82b609\"}}}", "headers" : { - "x-request-id" : "9e27c94b-d7f2-4953-8bc8-8972c179df64", - "x-kong-upstream-latency" : "17", - "X-Ratelimit-Remaining" : "74", - "x-kong-request-id" : "1825a7380d38ac66ba783915f195b64a", + "x-request-id" : "50e02d30-1a58-4b07-8554-636b03e60b3c", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "75", + "x-kong-request-id" : "bcddd42a56bf956710ef6f753514852f", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:56 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"15c1171d8b38e2957f35ecbc7d16e005\"", + "etag" : "W/\"65f5c42b042cb34a0479dab9e1315bc9\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "5993645f-6ab5-4af3-9411-69228ea8b0bd", + "uuid" : "6a046475-67d9-4a33-b0e7-c25a1e4751be", "persistent" : true, - "insertionIndex" : 127 + "insertionIndex" : 133 } \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-d744ba63-05b5-45de-aa94-8bf2762c9212.json b/mock/mappings/api_inventory_models_dzngysxrva-15ad8440-8a77-4b8c-976b-7735a92e8271.json similarity index 58% rename from mock/mappings/delivery_lead_times_nogemfnlrx-d744ba63-05b5-45de-aa94-8bf2762c9212.json rename to mock/mappings/api_inventory_models_dzngysxrva-15ad8440-8a77-4b8c-976b-7735a92e8271.json index 8926e81..d45fd5e 100644 --- a/mock/mappings/delivery_lead_times_nogemfnlrx-d744ba63-05b5-45de-aa94-8bf2762c9212.json +++ b/mock/mappings/api_inventory_models_dzngysxrva-15ad8440-8a77-4b8c-976b-7735a92e8271.json @@ -1,21 +1,21 @@ { - "id" : "d744ba63-05b5-45de-aa94-8bf2762c9212", - "name" : "delivery_lead_times_nogemfnlrx", + "id" : "15ad8440-8a77-4b8c-976b-7735a92e8271", + "name" : "api_inventory_models_dzngysxrva", "request" : { - "url" : "/delivery_lead_times/NOgEMFNLRx", + "url" : "/api/inventory_models/dZngySxRva", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "cbe2b79e-0475-4c41-91e8-911fd589dd79", + "x-request-id" : "4702e8ba-3e3e-4941-9438-db93f36759e4", "x-kong-upstream-latency" : "27", - "X-Ratelimit-Remaining" : "94", - "x-kong-request-id" : "577caa306ac9112072da35542d0f5738", + "X-Ratelimit-Remaining" : "85", + "x-kong-request-id" : "a0b74562c459b10b1a9115728b7af56a", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:44 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "d744ba63-05b5-45de-aa94-8bf2762c9212", + "uuid" : "15ad8440-8a77-4b8c-976b-7735a92e8271", "persistent" : true, - "insertionIndex" : 232 + "insertionIndex" : 180 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_xlazqspzez-880ec645-9481-4237-8f39-298d9ed19e9c.json b/mock/mappings/api_inventory_models_dzngysxrva-a0d62e55-7f6c-4be9-ae38-26fe9e974772.json similarity index 51% rename from mock/mappings/inventory_models_xlazqspzez-880ec645-9481-4237-8f39-298d9ed19e9c.json rename to mock/mappings/api_inventory_models_dzngysxrva-a0d62e55-7f6c-4be9-ae38-26fe9e974772.json index b8898f7..f6239cf 100644 --- a/mock/mappings/inventory_models_xlazqspzez-880ec645-9481-4237-8f39-298d9ed19e9c.json +++ b/mock/mappings/api_inventory_models_dzngysxrva-a0d62e55-7f6c-4be9-ae38-26fe9e974772.json @@ -1,22 +1,22 @@ { - "id" : "880ec645-9481-4237-8f39-298d9ed19e9c", - "name" : "inventory_models_xlazqspzez", + "id" : "a0d62e55-7f6c-4be9-ae38-26fe9e974772", + "name" : "api_inventory_models_dzngysxrva", "request" : { - "url" : "/inventory_models/XLAzqSpzeZ", + "url" : "/api/inventory_models/dZngySxRva", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:51.146Z\",\"updated_at\":\"2024-10-24T15:51:51.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d6ee881e9d3ea9632f19f28c347e705c0822542065ea7b07edb4da8046ca0418\"}}}", + "body" : "{\"data\":{\"id\":\"dZngySxRva\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:40.961Z\",\"updated_at\":\"2024-10-24T16:05:40.961Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c475864e0847f033277e196202d28863fca2ddedb813585e327c1aa4f39a32d5\"}}}", "headers" : { - "x-request-id" : "f7b7458b-22b3-481e-98cd-bd63b358ea3d", - "x-kong-upstream-latency" : "37", + "x-request-id" : "85a4b209-5d7f-48d7-9a60-55a7914a5743", + "x-kong-upstream-latency" : "14", "X-Ratelimit-Remaining" : "488", - "x-kong-request-id" : "8cbe4a783dac014a1cd13a0e474ee15d", + "x-kong-request-id" : "64bbeb6e4c7d520012462c227b41273c", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:43 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,15 +24,15 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"61d3578ac216fdc6bcfb41ff17cb457d\"", + "etag" : "W/\"f7475c95b11d30a1b6920c18fbd0243c\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", - "Age" : "2" + "Age" : "1" } }, - "uuid" : "880ec645-9481-4237-8f39-298d9ed19e9c", + "uuid" : "a0d62e55-7f6c-4be9-ae38-26fe9e974772", "persistent" : true, - "scenarioName" : "scenario-30-inventory_models-XLAzqSpzeZ", - "requiredScenarioState" : "scenario-30-inventory_models-XLAzqSpzeZ-3", - "insertionIndex" : 179 + "scenarioName" : "scenario-31-api-inventory_models-dZngySxRva", + "requiredScenarioState" : "scenario-31-api-inventory_models-dZngySxRva-3", + "insertionIndex" : 185 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_xlazqspzez-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json b/mock/mappings/api_inventory_models_dzngysxrva-dcb68f44-2ece-497b-a383-b232c79955af.json similarity index 50% rename from mock/mappings/inventory_models_xlazqspzez-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json rename to mock/mappings/api_inventory_models_dzngysxrva-dcb68f44-2ece-497b-a383-b232c79955af.json index 3ebe75d..c295ee6 100644 --- a/mock/mappings/inventory_models_xlazqspzez-acb7ad07-538b-44f9-b1a6-a670278dcfd7.json +++ b/mock/mappings/api_inventory_models_dzngysxrva-dcb68f44-2ece-497b-a383-b232c79955af.json @@ -1,22 +1,22 @@ { - "id" : "acb7ad07-538b-44f9-b1a6-a670278dcfd7", - "name" : "inventory_models_xlazqspzez", + "id" : "dcb68f44-2ece-497b-a383-b232c79955af", + "name" : "api_inventory_models_dzngysxrva", "request" : { - "url" : "/inventory_models/XLAzqSpzeZ", + "url" : "/api/inventory_models/dZngySxRva", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:51.146Z\",\"updated_at\":\"2024-10-24T15:51:51.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d6ee881e9d3ea9632f19f28c347e705c0822542065ea7b07edb4da8046ca0418\"}}}", + "body" : "{\"data\":{\"id\":\"dZngySxRva\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:40.961Z\",\"updated_at\":\"2024-10-24T16:05:40.961Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c475864e0847f033277e196202d28863fca2ddedb813585e327c1aa4f39a32d5\"}}}", "headers" : { - "x-request-id" : "f7b7458b-22b3-481e-98cd-bd63b358ea3d", - "x-kong-upstream-latency" : "37", + "x-request-id" : "85a4b209-5d7f-48d7-9a60-55a7914a5743", + "x-kong-upstream-latency" : "14", "X-Ratelimit-Remaining" : "490", - "x-kong-request-id" : "8cbe4a783dac014a1cd13a0e474ee15d", + "x-kong-request-id" : "64bbeb6e4c7d520012462c227b41273c", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:42 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"61d3578ac216fdc6bcfb41ff17cb457d\"", + "etag" : "W/\"f7475c95b11d30a1b6920c18fbd0243c\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", - "Age" : "1" + "Age" : "0" } }, - "uuid" : "acb7ad07-538b-44f9-b1a6-a670278dcfd7", + "uuid" : "dcb68f44-2ece-497b-a383-b232c79955af", "persistent" : true, - "scenarioName" : "scenario-30-inventory_models-XLAzqSpzeZ", - "requiredScenarioState" : "scenario-30-inventory_models-XLAzqSpzeZ-2", - "newScenarioState" : "scenario-30-inventory_models-XLAzqSpzeZ-3", - "insertionIndex" : 185 + "scenarioName" : "scenario-31-api-inventory_models-dZngySxRva", + "requiredScenarioState" : "scenario-31-api-inventory_models-dZngySxRva-2", + "newScenarioState" : "scenario-31-api-inventory_models-dZngySxRva-3", + "insertionIndex" : 190 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_xlazqspzez-1f5648fe-e885-4d15-b6b5-308b50a7f282.json b/mock/mappings/api_inventory_models_dzngysxrva-ffc59cca-c45c-4c07-be58-44fe582d71a6.json similarity index 52% rename from mock/mappings/inventory_models_xlazqspzez-1f5648fe-e885-4d15-b6b5-308b50a7f282.json rename to mock/mappings/api_inventory_models_dzngysxrva-ffc59cca-c45c-4c07-be58-44fe582d71a6.json index 18e9eb5..6b3e384 100644 --- a/mock/mappings/inventory_models_xlazqspzez-1f5648fe-e885-4d15-b6b5-308b50a7f282.json +++ b/mock/mappings/api_inventory_models_dzngysxrva-ffc59cca-c45c-4c07-be58-44fe582d71a6.json @@ -1,22 +1,22 @@ { - "id" : "1f5648fe-e885-4d15-b6b5-308b50a7f282", - "name" : "inventory_models_xlazqspzez", + "id" : "ffc59cca-c45c-4c07-be58-44fe582d71a6", + "name" : "api_inventory_models_dzngysxrva", "request" : { - "url" : "/inventory_models/XLAzqSpzeZ", + "url" : "/api/inventory_models/dZngySxRva", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:51.146Z\",\"updated_at\":\"2024-10-24T15:51:51.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XLAzqSpzeZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d6ee881e9d3ea9632f19f28c347e705c0822542065ea7b07edb4da8046ca0418\"}}}", + "body" : "{\"data\":{\"id\":\"dZngySxRva\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:40.961Z\",\"updated_at\":\"2024-10-24T16:05:40.961Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/dZngySxRva/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c475864e0847f033277e196202d28863fca2ddedb813585e327c1aa4f39a32d5\"}}}", "headers" : { - "x-request-id" : "f7b7458b-22b3-481e-98cd-bd63b358ea3d", - "x-kong-upstream-latency" : "37", + "x-request-id" : "85a4b209-5d7f-48d7-9a60-55a7914a5743", + "x-kong-upstream-latency" : "14", "X-Ratelimit-Remaining" : "492", - "x-kong-request-id" : "8cbe4a783dac014a1cd13a0e474ee15d", + "x-kong-request-id" : "64bbeb6e4c7d520012462c227b41273c", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:41 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"61d3578ac216fdc6bcfb41ff17cb457d\"", + "etag" : "W/\"f7475c95b11d30a1b6920c18fbd0243c\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "1f5648fe-e885-4d15-b6b5-308b50a7f282", + "uuid" : "ffc59cca-c45c-4c07-be58-44fe582d71a6", "persistent" : true, - "scenarioName" : "scenario-30-inventory_models-XLAzqSpzeZ", + "scenarioName" : "scenario-31-api-inventory_models-dZngySxRva", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-30-inventory_models-XLAzqSpzeZ-2", - "insertionIndex" : 189 + "newScenarioState" : "scenario-31-api-inventory_models-dZngySxRva-2", + "insertionIndex" : 193 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_lwlwdsayma-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json b/mock/mappings/api_inventory_models_jazqxsymmz-3d32c778-304c-45c1-beb1-9eac6de0ad10.json similarity index 53% rename from mock/mappings/inventory_models_lwlwdsayma-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json rename to mock/mappings/api_inventory_models_jazqxsymmz-3d32c778-304c-45c1-beb1-9eac6de0ad10.json index 80d0299..4392c47 100644 --- a/mock/mappings/inventory_models_lwlwdsayma-4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c.json +++ b/mock/mappings/api_inventory_models_jazqxsymmz-3d32c778-304c-45c1-beb1-9eac6de0ad10.json @@ -1,22 +1,22 @@ { - "id" : "4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c", - "name" : "inventory_models_lwlwdsayma", + "id" : "3d32c778-304c-45c1-beb1-9eac6de0ad10", + "name" : "api_inventory_models_jazqxsymmz", "request" : { - "url" : "/inventory_models/lWlwDSAyMa", + "url" : "/api/inventory_models/JazqXSymMZ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:55.558Z\",\"updated_at\":\"2024-10-24T15:51:55.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"784ac2d9dd37b51e74ff654c4ae239df6bb4925aaf1882964686de1a5bca2167\"}}}", + "body" : "{\"data\":{\"id\":\"JazqXSymMZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:45.220Z\",\"updated_at\":\"2024-10-24T16:05:45.220Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"aedbeca783ced31904d7c2b67031db70e308e1e3d31a90f9e0009b13652734e8\"}}}", "headers" : { - "x-request-id" : "254ee3b6-d82c-4be2-87d3-09354d6e12aa", + "x-request-id" : "aa5ff82c-c3f6-4235-ae7e-7db2835ee585", "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "486", - "x-kong-request-id" : "ef5b7b6d543c1a703274b4436dbcd969", + "x-kong-request-id" : "6b78d3201ef0cf6a2b19de7a14812902", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:46 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"88b9bbbf5329005d83448523a9dc0a0e\"", + "etag" : "W/\"ae62c5ab8ffaf8db057059186ce097d2\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "4cb8b88f-b90c-4b7b-a197-0bd4bc60a78c", + "uuid" : "3d32c778-304c-45c1-beb1-9eac6de0ad10", "persistent" : true, - "scenarioName" : "scenario-27-inventory_models-lWlwDSAyMa", + "scenarioName" : "scenario-27-api-inventory_models-JazqXSymMZ", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-27-inventory_models-lWlwDSAyMa-2", - "insertionIndex" : 167 + "newScenarioState" : "scenario-27-api-inventory_models-JazqXSymMZ-2", + "insertionIndex" : 172 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_lwlwdsayma-b51fc668-2cac-45d8-ab3c-8bec37515adc.json b/mock/mappings/api_inventory_models_jazqxsymmz-7b50a9ff-2984-4227-b99d-26cfcf2796eb.json similarity index 52% rename from mock/mappings/inventory_models_lwlwdsayma-b51fc668-2cac-45d8-ab3c-8bec37515adc.json rename to mock/mappings/api_inventory_models_jazqxsymmz-7b50a9ff-2984-4227-b99d-26cfcf2796eb.json index da07147..49d746a 100644 --- a/mock/mappings/inventory_models_lwlwdsayma-b51fc668-2cac-45d8-ab3c-8bec37515adc.json +++ b/mock/mappings/api_inventory_models_jazqxsymmz-7b50a9ff-2984-4227-b99d-26cfcf2796eb.json @@ -1,22 +1,22 @@ { - "id" : "b51fc668-2cac-45d8-ab3c-8bec37515adc", - "name" : "inventory_models_lwlwdsayma", + "id" : "7b50a9ff-2984-4227-b99d-26cfcf2796eb", + "name" : "api_inventory_models_jazqxsymmz", "request" : { - "url" : "/inventory_models/lWlwDSAyMa", + "url" : "/api/inventory_models/JazqXSymMZ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:55.558Z\",\"updated_at\":\"2024-10-24T15:51:55.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"784ac2d9dd37b51e74ff654c4ae239df6bb4925aaf1882964686de1a5bca2167\"}}}", + "body" : "{\"data\":{\"id\":\"JazqXSymMZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:45.220Z\",\"updated_at\":\"2024-10-24T16:05:45.220Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"aedbeca783ced31904d7c2b67031db70e308e1e3d31a90f9e0009b13652734e8\"}}}", "headers" : { - "x-request-id" : "254ee3b6-d82c-4be2-87d3-09354d6e12aa", + "x-request-id" : "aa5ff82c-c3f6-4235-ae7e-7db2835ee585", "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "484", - "x-kong-request-id" : "ef5b7b6d543c1a703274b4436dbcd969", + "x-kong-request-id" : "6b78d3201ef0cf6a2b19de7a14812902", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:47 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"88b9bbbf5329005d83448523a9dc0a0e\"", + "etag" : "W/\"ae62c5ab8ffaf8db057059186ce097d2\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "1" } }, - "uuid" : "b51fc668-2cac-45d8-ab3c-8bec37515adc", + "uuid" : "7b50a9ff-2984-4227-b99d-26cfcf2796eb", "persistent" : true, - "scenarioName" : "scenario-27-inventory_models-lWlwDSAyMa", - "requiredScenarioState" : "scenario-27-inventory_models-lWlwDSAyMa-2", - "newScenarioState" : "scenario-27-inventory_models-lWlwDSAyMa-3", - "insertionIndex" : 163 + "scenarioName" : "scenario-27-api-inventory_models-JazqXSymMZ", + "requiredScenarioState" : "scenario-27-api-inventory_models-JazqXSymMZ-2", + "newScenarioState" : "scenario-27-api-inventory_models-JazqXSymMZ-3", + "insertionIndex" : 168 } \ No newline at end of file diff --git a/mock/mappings/addresses_bzkoumknnk-869313a5-5279-4e94-b7c4-c7c01fdf2161.json b/mock/mappings/api_inventory_models_jazqxsymmz-80df76e2-c697-422e-b6d6-eb5d6f0c78b4.json similarity index 58% rename from mock/mappings/addresses_bzkoumknnk-869313a5-5279-4e94-b7c4-c7c01fdf2161.json rename to mock/mappings/api_inventory_models_jazqxsymmz-80df76e2-c697-422e-b6d6-eb5d6f0c78b4.json index 56ee64d..e2bd9a5 100644 --- a/mock/mappings/addresses_bzkoumknnk-869313a5-5279-4e94-b7c4-c7c01fdf2161.json +++ b/mock/mappings/api_inventory_models_jazqxsymmz-80df76e2-c697-422e-b6d6-eb5d6f0c78b4.json @@ -1,21 +1,21 @@ { - "id" : "869313a5-5279-4e94-b7c4-c7c01fdf2161", - "name" : "addresses_bzkoumknnk", + "id" : "80df76e2-c697-422e-b6d6-eb5d6f0c78b4", + "name" : "api_inventory_models_jazqxsymmz", "request" : { - "url" : "/addresses/bzkoumknnk", + "url" : "/api/inventory_models/JazqXSymMZ", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "f256bf14-d33e-4c71-9a79-8f4effecfc49", + "x-request-id" : "6367cfd8-96c6-4edc-9dfc-2f5922190171", "x-kong-upstream-latency" : "30", - "X-Ratelimit-Remaining" : "70", - "x-kong-request-id" : "7606d23b0b7ddb6ce50f8c2a1059cd03", + "X-Ratelimit-Remaining" : "81", + "x-kong-request-id" : "d449da062132f666714c0d138e1ba618", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:14 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:48 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "869313a5-5279-4e94-b7c4-c7c01fdf2161", + "uuid" : "80df76e2-c697-422e-b6d6-eb5d6f0c78b4", "persistent" : true, - "insertionIndex" : 98 + "insertionIndex" : 158 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_lwlwdsayma-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json b/mock/mappings/api_inventory_models_jazqxsymmz-a337840c-8d4b-4329-bea5-550b0b313383.json similarity index 53% rename from mock/mappings/inventory_models_lwlwdsayma-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json rename to mock/mappings/api_inventory_models_jazqxsymmz-a337840c-8d4b-4329-bea5-550b0b313383.json index 7e7d4b9..57bea21 100644 --- a/mock/mappings/inventory_models_lwlwdsayma-2bbbf637-7a41-4fad-a52a-64cc6915fe5c.json +++ b/mock/mappings/api_inventory_models_jazqxsymmz-a337840c-8d4b-4329-bea5-550b0b313383.json @@ -1,22 +1,22 @@ { - "id" : "2bbbf637-7a41-4fad-a52a-64cc6915fe5c", - "name" : "inventory_models_lwlwdsayma", + "id" : "a337840c-8d4b-4329-bea5-550b0b313383", + "name" : "api_inventory_models_jazqxsymmz", "request" : { - "url" : "/inventory_models/lWlwDSAyMa", + "url" : "/api/inventory_models/JazqXSymMZ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:55.558Z\",\"updated_at\":\"2024-10-24T15:51:55.558Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/lWlwDSAyMa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"784ac2d9dd37b51e74ff654c4ae239df6bb4925aaf1882964686de1a5bca2167\"}}}", + "body" : "{\"data\":{\"id\":\"JazqXSymMZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:45.220Z\",\"updated_at\":\"2024-10-24T16:05:45.220Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/JazqXSymMZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"aedbeca783ced31904d7c2b67031db70e308e1e3d31a90f9e0009b13652734e8\"}}}", "headers" : { - "x-request-id" : "254ee3b6-d82c-4be2-87d3-09354d6e12aa", + "x-request-id" : "aa5ff82c-c3f6-4235-ae7e-7db2835ee585", "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "482", - "x-kong-request-id" : "ef5b7b6d543c1a703274b4436dbcd969", + "x-kong-request-id" : "6b78d3201ef0cf6a2b19de7a14812902", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:48 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,15 +24,15 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"88b9bbbf5329005d83448523a9dc0a0e\"", + "etag" : "W/\"ae62c5ab8ffaf8db057059186ce097d2\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "2" } }, - "uuid" : "2bbbf637-7a41-4fad-a52a-64cc6915fe5c", + "uuid" : "a337840c-8d4b-4329-bea5-550b0b313383", "persistent" : true, - "scenarioName" : "scenario-27-inventory_models-lWlwDSAyMa", - "requiredScenarioState" : "scenario-27-inventory_models-lWlwDSAyMa-3", - "insertionIndex" : 158 + "scenarioName" : "scenario-27-api-inventory_models-JazqXSymMZ", + "requiredScenarioState" : "scenario-27-api-inventory_models-JazqXSymMZ-3", + "insertionIndex" : 163 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json b/mock/mappings/api_inventory_models_kapovsbryz-202854c0-821c-4f5e-99de-0ad10f7bdc14.json similarity index 51% rename from mock/mappings/inventory_models_xwqxqspqea-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json rename to mock/mappings/api_inventory_models_kapovsbryz-202854c0-821c-4f5e-99de-0ad10f7bdc14.json index cf838ea..99081e7 100644 --- a/mock/mappings/inventory_models_xwqxqspqea-8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9.json +++ b/mock/mappings/api_inventory_models_kapovsbryz-202854c0-821c-4f5e-99de-0ad10f7bdc14.json @@ -1,22 +1,22 @@ { - "id" : "8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9", - "name" : "inventory_models_xwqxqspqea", + "id" : "202854c0-821c-4f5e-99de-0ad10f7bdc14", + "name" : "api_inventory_models_kapovsbryz", "request" : { - "url" : "/inventory_models/XWqxqSpqEa", + "url" : "/api/inventory_models/kapovSBRyZ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fc926cf2a5d2a6e58a085f6e8115e956fec5c14d1585f4052157feaa5b8b19e1\"}}}", + "body" : "{\"data\":{\"id\":\"kapovSBRyZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:38.959Z\",\"updated_at\":\"2024-10-24T16:05:38.959Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d19b6e263b690e27117998f2af8e2c13782f72ede8ec9b67ec3a964c71ffb5e7\"}}}", "headers" : { - "x-request-id" : "7cd9bcf4-44a8-454f-ba7f-8bd2ca01eddd", + "x-request-id" : "a36e09ea-8d24-41af-b901-1668985277e3", "x-kong-upstream-latency" : "15", "X-Ratelimit-Remaining" : "496", - "x-kong-request-id" : "f1177b081f9cfc2d6e645d04fe2bfd6b", + "x-kong-request-id" : "3ff8b3764437e84efae69f3aa0ddb42b", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:49 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:39 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"a33ef460a22b4a528856e98c2c9be9c9\"", + "etag" : "W/\"c2ebd97954cc921db80a92393f8df15e\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "8ef51ff1-87f1-4ed7-9eaf-0e0db1c318b9", + "uuid" : "202854c0-821c-4f5e-99de-0ad10f7bdc14", "persistent" : true, - "scenarioName" : "scenario-32-inventory_models-XWqxqSpqEa", + "scenarioName" : "scenario-32-api-inventory_models-kapovSBRyZ", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-2", - "insertionIndex" : 199 + "newScenarioState" : "scenario-32-api-inventory_models-kapovSBRyZ-2", + "insertionIndex" : 204 } \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_kapovsbryz-330e706e-3c55-4ffc-8a00-13f2a1132f3e.json b/mock/mappings/api_inventory_models_kapovsbryz-330e706e-3c55-4ffc-8a00-13f2a1132f3e.json new file mode 100644 index 0000000..a705e3c --- /dev/null +++ b/mock/mappings/api_inventory_models_kapovsbryz-330e706e-3c55-4ffc-8a00-13f2a1132f3e.json @@ -0,0 +1,32 @@ +{ + "id" : "330e706e-3c55-4ffc-8a00-13f2a1132f3e", + "name" : "api_inventory_models_kapovsbryz", + "request" : { + "url" : "/api/inventory_models/kapovSBRyZ", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "63d50ef5-f8bf-4c7a-8c26-2fd7e5e23e80", + "x-kong-upstream-latency" : "23", + "X-Ratelimit-Remaining" : "87", + "x-kong-request-id" : "e08859571638d11acab46e4a29802a7f", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:40 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "330e706e-3c55-4ffc-8a00-13f2a1132f3e", + "persistent" : true, + "insertionIndex" : 200 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-c42cae13-2afc-47ef-baab-74f4549a0c91.json b/mock/mappings/api_inventory_models_kapovsbryz-6c6aa7a0-7dc3-4f3a-bfc5-9f14921512a0.json similarity index 59% rename from mock/mappings/inventory_models_xwqxqspqea-c42cae13-2afc-47ef-baab-74f4549a0c91.json rename to mock/mappings/api_inventory_models_kapovsbryz-6c6aa7a0-7dc3-4f3a-bfc5-9f14921512a0.json index 1197120..3e9f562 100644 --- a/mock/mappings/inventory_models_xwqxqspqea-c42cae13-2afc-47ef-baab-74f4549a0c91.json +++ b/mock/mappings/api_inventory_models_kapovsbryz-6c6aa7a0-7dc3-4f3a-bfc5-9f14921512a0.json @@ -1,22 +1,22 @@ { - "id" : "c42cae13-2afc-47ef-baab-74f4549a0c91", - "name" : "inventory_models_xwqxqspqea", + "id" : "6c6aa7a0-7dc3-4f3a-bfc5-9f14921512a0", + "name" : "api_inventory_models_kapovsbryz", "request" : { - "url" : "/inventory_models/XWqxqSpqEa", + "url" : "/api/inventory_models/kapovSBRyZ", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "9c84dc07-05ed-42fb-8286-0b8b4b17db9d", - "x-kong-upstream-latency" : "9", + "x-request-id" : "0bcb0686-961a-49eb-90f3-73578603f3f1", + "x-kong-upstream-latency" : "8", "X-Ratelimit-Remaining" : "493", - "x-kong-request-id" : "a5678c0a8b0ecc5ef3d9a73b25b01831", + "x-kong-request-id" : "ad8cfa7a754a252c55198e540c66b438", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", + "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:50 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:40 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -29,9 +29,9 @@ "Age" : "0" } }, - "uuid" : "c42cae13-2afc-47ef-baab-74f4549a0c91", + "uuid" : "6c6aa7a0-7dc3-4f3a-bfc5-9f14921512a0", "persistent" : true, - "scenarioName" : "scenario-32-inventory_models-XWqxqSpqEa", - "requiredScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-4", - "insertionIndex" : 194 + "scenarioName" : "scenario-32-api-inventory_models-kapovSBRyZ", + "requiredScenarioState" : "scenario-32-api-inventory_models-kapovSBRyZ-4", + "insertionIndex" : 199 } \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_kapovsbryz-6d0d3efd-3d97-4cb2-86ab-b8b438bd0b1c.json b/mock/mappings/api_inventory_models_kapovsbryz-6d0d3efd-3d97-4cb2-86ab-b8b438bd0b1c.json new file mode 100644 index 0000000..886d9ff --- /dev/null +++ b/mock/mappings/api_inventory_models_kapovsbryz-6d0d3efd-3d97-4cb2-86ab-b8b438bd0b1c.json @@ -0,0 +1,39 @@ +{ + "id" : "6d0d3efd-3d97-4cb2-86ab-b8b438bd0b1c", + "name" : "api_inventory_models_kapovsbryz", + "request" : { + "url" : "/api/inventory_models/kapovSBRyZ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"kapovSBRyZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:38.959Z\",\"updated_at\":\"2024-10-24T16:05:38.959Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d19b6e263b690e27117998f2af8e2c13782f72ede8ec9b67ec3a964c71ffb5e7\"}}}", + "headers" : { + "x-request-id" : "a36e09ea-8d24-41af-b901-1668985277e3", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "495", + "x-kong-request-id" : "3ff8b3764437e84efae69f3aa0ddb42b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:39 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"c2ebd97954cc921db80a92393f8df15e\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "6d0d3efd-3d97-4cb2-86ab-b8b438bd0b1c", + "persistent" : true, + "scenarioName" : "scenario-32-api-inventory_models-kapovSBRyZ", + "requiredScenarioState" : "scenario-32-api-inventory_models-kapovSBRyZ-2", + "newScenarioState" : "scenario-32-api-inventory_models-kapovSBRyZ-3", + "insertionIndex" : 203 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json b/mock/mappings/api_inventory_models_kapovsbryz-865aa76b-056f-49b1-b3bc-e1124f402b3a.json similarity index 58% rename from mock/mappings/inventory_models_xwqxqspqea-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json rename to mock/mappings/api_inventory_models_kapovsbryz-865aa76b-056f-49b1-b3bc-e1124f402b3a.json index 71d8edc..75a55b1 100644 --- a/mock/mappings/inventory_models_xwqxqspqea-b6a47ed2-2d56-45c0-981c-c8eeba56149b.json +++ b/mock/mappings/api_inventory_models_kapovsbryz-865aa76b-056f-49b1-b3bc-e1124f402b3a.json @@ -1,40 +1,40 @@ { - "id" : "b6a47ed2-2d56-45c0-981c-c8eeba56149b", - "name" : "inventory_models_xwqxqspqea", + "id" : "865aa76b-056f-49b1-b3bc-e1124f402b3a", + "name" : "api_inventory_models_kapovsbryz", "request" : { - "url" : "/inventory_models/XWqxqSpqEa", + "url" : "/api/inventory_models/kapovSBRyZ", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"},\"name\":\"Incentro Inventory Model Changed\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":2,\"strategy\":\"split_shipments\"},\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"},\"name\":\"Incentro Inventory Model Changed\",\"reference\":null,\"reference_origin\":null,\"stock_locations_cutoff\":2,\"strategy\":\"split_shipments\"},\"id\":\"kapovSBRyZ\",\"type\":\"inventory_models\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.955Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4e5db86a32467a979612d852692efc1314aa43688794b1d9c8f8e163740087b1\"}}}", + "body" : "{\"data\":{\"id\":\"kapovSBRyZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:38.959Z\",\"updated_at\":\"2024-10-24T16:05:39.711Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3c904f13d47c804d16371627dcdc065f512601a4c9b7224463f375200c0b2083\"}}}", "headers" : { - "x-request-id" : "e486acde-1a39-45e0-803b-d39ee38bf06c", - "x-kong-upstream-latency" : "34", + "x-request-id" : "616a492b-9b20-4635-b443-151edd2e6808", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "89", - "x-kong-request-id" : "7a799c000361446b8b505771360da433", + "x-kong-request-id" : "b5885e21e6dee775df9568035b5d3e76", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:49 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:39 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"3550e29ade6cc3c89c4bc3003b23f1ae\"", + "etag" : "W/\"7da907bfcfaccfdcf8d67cff534336bf\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "b6a47ed2-2d56-45c0-981c-c8eeba56149b", + "uuid" : "865aa76b-056f-49b1-b3bc-e1124f402b3a", "persistent" : true, - "insertionIndex" : 197 + "insertionIndex" : 202 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-da2e5490-4c78-458d-80c2-31b6cd168c05.json b/mock/mappings/api_inventory_models_kapovsbryz-ed6d04a7-b648-4730-856a-2f717f76598d.json similarity index 52% rename from mock/mappings/inventory_models_xwqxqspqea-da2e5490-4c78-458d-80c2-31b6cd168c05.json rename to mock/mappings/api_inventory_models_kapovsbryz-ed6d04a7-b648-4730-856a-2f717f76598d.json index 05d4533..f5b5441 100644 --- a/mock/mappings/inventory_models_xwqxqspqea-da2e5490-4c78-458d-80c2-31b6cd168c05.json +++ b/mock/mappings/api_inventory_models_kapovsbryz-ed6d04a7-b648-4730-856a-2f717f76598d.json @@ -1,22 +1,22 @@ { - "id" : "da2e5490-4c78-458d-80c2-31b6cd168c05", - "name" : "inventory_models_xwqxqspqea", + "id" : "ed6d04a7-b648-4730-856a-2f717f76598d", + "name" : "api_inventory_models_kapovsbryz", "request" : { - "url" : "/inventory_models/XWqxqSpqEa", + "url" : "/api/inventory_models/kapovSBRyZ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.955Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"354decd9741314ed87d3e61d9a0c65cfef0b21782832e7cec03456ea739bdf4d\"}}}", + "body" : "{\"data\":{\"id\":\"kapovSBRyZ\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ\"},\"attributes\":{\"name\":\"Incentro Inventory Model Changed\",\"strategy\":\"split_shipments\",\"stock_locations_cutoff\":2,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:38.959Z\",\"updated_at\":\"2024-10-24T16:05:39.711Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kapovSBRyZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"74425872d63dd4b3ee9ae4c7a9609a195c6657ff99ae5443b80619aa0dd5735b\"}}}", "headers" : { - "x-request-id" : "579a5f85-a001-4a8c-a8df-baa328f3af16", + "x-request-id" : "ce675027-bfea-4e24-b702-b20fcc1f6eb5", "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "494", - "x-kong-request-id" : "a1aeeb651c4b49232476f244a6912309", + "x-kong-request-id" : "9f774c7bad4f54593edda3731c6f7906", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:50 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:40 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"32cf478f36f72f0f6ad5b53c988bbb05\"", + "etag" : "W/\"b64ce92bcdfa21e9fde941b6ec62a79d\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "da2e5490-4c78-458d-80c2-31b6cd168c05", + "uuid" : "ed6d04a7-b648-4730-856a-2f717f76598d", "persistent" : true, - "scenarioName" : "scenario-32-inventory_models-XWqxqSpqEa", - "requiredScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-3", - "newScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-4", - "insertionIndex" : 196 + "scenarioName" : "scenario-32-api-inventory_models-kapovSBRyZ", + "requiredScenarioState" : "scenario-32-api-inventory_models-kapovSBRyZ-3", + "newScenarioState" : "scenario-32-api-inventory_models-kapovSBRyZ-4", + "insertionIndex" : 201 } \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_kzxevsyrea-319f898f-891f-4fdd-9b92-f10afb1a0c07.json b/mock/mappings/api_inventory_models_kzxevsyrea-319f898f-891f-4fdd-9b92-f10afb1a0c07.json new file mode 100644 index 0000000..f8d655f --- /dev/null +++ b/mock/mappings/api_inventory_models_kzxevsyrea-319f898f-891f-4fdd-9b92-f10afb1a0c07.json @@ -0,0 +1,39 @@ +{ + "id" : "319f898f-891f-4fdd-9b92-f10afb1a0c07", + "name" : "api_inventory_models_kzxevsyrea", + "request" : { + "url" : "/api/inventory_models/kZXEvSyREa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"kZXEvSyREa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:56.427Z\",\"updated_at\":\"2024-10-24T16:05:56.427Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9101ca87e7ad228539e26844d4d0bc4c907e26aa332f5b04f96a076ece4a63a4\"}}}", + "headers" : { + "x-request-id" : "8b98c72a-183c-48d0-9e28-3f970b8c46fb", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "476", + "x-kong-request-id" : "1b5ba9390fc1650e0e7dda6b353f3370", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:58 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-content-type-options" : "nosniff", + "x-xss-protection" : "1; mode=block", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json", + "etag" : "W/\"73adf8e9f41e5f1280d535cc30969822\"", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "319f898f-891f-4fdd-9b92-f10afb1a0c07", + "persistent" : true, + "scenarioName" : "scenario-18-api-inventory_models-kZXEvSyREa", + "requiredScenarioState" : "scenario-18-api-inventory_models-kZXEvSyREa-2", + "newScenarioState" : "scenario-18-api-inventory_models-kZXEvSyREa-3", + "insertionIndex" : 120 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_kzxevsyrea-4549adb1-55f9-4790-8e75-d14bc8d81b14.json b/mock/mappings/api_inventory_models_kzxevsyrea-4549adb1-55f9-4790-8e75-d14bc8d81b14.json new file mode 100644 index 0000000..d012c57 --- /dev/null +++ b/mock/mappings/api_inventory_models_kzxevsyrea-4549adb1-55f9-4790-8e75-d14bc8d81b14.json @@ -0,0 +1,39 @@ +{ + "id" : "4549adb1-55f9-4790-8e75-d14bc8d81b14", + "name" : "api_inventory_models_kzxevsyrea", + "request" : { + "url" : "/api/inventory_models/kZXEvSyREa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"kZXEvSyREa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:56.427Z\",\"updated_at\":\"2024-10-24T16:05:56.427Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9101ca87e7ad228539e26844d4d0bc4c907e26aa332f5b04f96a076ece4a63a4\"}}}", + "headers" : { + "x-request-id" : "8b98c72a-183c-48d0-9e28-3f970b8c46fb", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "479", + "x-kong-request-id" : "1b5ba9390fc1650e0e7dda6b353f3370", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:57 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-content-type-options" : "nosniff", + "x-xss-protection" : "1; mode=block", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json", + "etag" : "W/\"73adf8e9f41e5f1280d535cc30969822\"", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "4549adb1-55f9-4790-8e75-d14bc8d81b14", + "persistent" : true, + "scenarioName" : "scenario-18-api-inventory_models-kZXEvSyREa", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-18-api-inventory_models-kZXEvSyREa-2", + "insertionIndex" : 125 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_kzxevsyrea-cf18d211-8c1a-4e15-97d9-a7112dd7082c.json b/mock/mappings/api_inventory_models_kzxevsyrea-cf18d211-8c1a-4e15-97d9-a7112dd7082c.json new file mode 100644 index 0000000..f3efd17 --- /dev/null +++ b/mock/mappings/api_inventory_models_kzxevsyrea-cf18d211-8c1a-4e15-97d9-a7112dd7082c.json @@ -0,0 +1,32 @@ +{ + "id" : "cf18d211-8c1a-4e15-97d9-a7112dd7082c", + "name" : "api_inventory_models_kzxevsyrea", + "request" : { + "url" : "/api/inventory_models/kZXEvSyREa", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "b6701df0-9168-47dd-98cd-a0e804e9fb0d", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "73", + "x-kong-request-id" : "3b4c5d7db459f462099bc82178136149", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:06:02 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "cf18d211-8c1a-4e15-97d9-a7112dd7082c", + "persistent" : true, + "insertionIndex" : 106 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_models_kzxevsyrea-dfdeb33b-64d8-40ca-a109-97997117f211.json b/mock/mappings/api_inventory_models_kzxevsyrea-dfdeb33b-64d8-40ca-a109-97997117f211.json new file mode 100644 index 0000000..30c0e4f --- /dev/null +++ b/mock/mappings/api_inventory_models_kzxevsyrea-dfdeb33b-64d8-40ca-a109-97997117f211.json @@ -0,0 +1,38 @@ +{ + "id" : "dfdeb33b-64d8-40ca-a109-97997117f211", + "name" : "api_inventory_models_kzxevsyrea", + "request" : { + "url" : "/api/inventory_models/kZXEvSyREa", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"kZXEvSyREa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T16:05:56.427Z\",\"updated_at\":\"2024-10-24T16:05:56.427Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/kZXEvSyREa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"82e914a1b3d39f77c6bdee231f6139190d209f2798aecf9bbfe744f5e1d4046e\"}}}", + "headers" : { + "x-request-id" : "66bc84a3-7bc1-4c61-95c2-6151a899d4d8", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "473", + "x-kong-request-id" : "4e59e87965d96d67519c417ea435df2a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:59 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"057bf10d1bc9ed3ba23724f11568f4c1\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "dfdeb33b-64d8-40ca-a109-97997117f211", + "persistent" : true, + "scenarioName" : "scenario-18-api-inventory_models-kZXEvSyREa", + "requiredScenarioState" : "scenario-18-api-inventory_models-kZXEvSyREa-3", + "insertionIndex" : 112 +} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json b/mock/mappings/api_inventory_return_locations-b2176814-a4fe-45ee-a466-99b78d68d82f.json similarity index 50% rename from mock/mappings/inventory_return_locations-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json rename to mock/mappings/api_inventory_return_locations-b2176814-a4fe-45ee-a466-99b78d68d82f.json index d0a5738..705944c 100644 --- a/mock/mappings/inventory_return_locations-95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab.json +++ b/mock/mappings/api_inventory_return_locations-b2176814-a4fe-45ee-a466-99b78d68d82f.json @@ -1,40 +1,40 @@ { - "id" : "95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab", - "name" : "inventory_return_locations", + "id" : "b2176814-a4fe-45ee-a466-99b78d68d82f", + "name" : "api_inventory_return_locations", "request" : { - "url" : "/inventory_return_locations", + "url" : "/api/inventory_return_locations", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"priority\":1,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_return_locations\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"priority\":1,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"dZngySxRva\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"NnoYJuqOqk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_return_locations\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:51.706Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"802014912b18b7e4ad2c761f51d79f713401a48146bfceef3a396e62803937d3\"}}}", + "body" : "{\"data\":{\"id\":\"VZXPWiyzmZ\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T16:05:41.481Z\",\"updated_at\":\"2024-10-24T16:05:41.481Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01c182b72e5cb87c2641955802c43460c2472e64b1873fdc92bc3e70f33a9d06\"}}}", "headers" : { - "x-request-id" : "90d1947e-d20e-4dcb-bef6-e48b1ef8ae45", - "x-kong-upstream-latency" : "28", + "x-request-id" : "1782f327-3cfe-45f2-8017-9e42cf644a55", + "x-kong-upstream-latency" : "27", "X-Ratelimit-Remaining" : "83", - "x-kong-request-id" : "c09dab006779c57bd675831831c4803c", + "x-kong-request-id" : "6ed38b00f16f9a6ab86c684461959630", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:51 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:41 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"1358cfd3ed2fe990d72fbfa1367d6e2c\"", + "etag" : "W/\"5f9f79b0e3cdbab85653dde3328d5277\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "95a3cb2a-1f9c-4da7-8b22-59a5fc3365ab", + "uuid" : "b2176814-a4fe-45ee-a466-99b78d68d82f", "persistent" : true, - "insertionIndex" : 190 + "insertionIndex" : 195 } \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-208b0f9c-7cd4-4033-8d3a-0fbaac80df07.json b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-208b0f9c-7cd4-4033-8d3a-0fbaac80df07.json new file mode 100644 index 0000000..5754446 --- /dev/null +++ b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-208b0f9c-7cd4-4033-8d3a-0fbaac80df07.json @@ -0,0 +1,38 @@ +{ + "id" : "208b0f9c-7cd4-4033-8d3a-0fbaac80df07", + "name" : "api_inventory_return_locations_vzxpwiyzmz", + "request" : { + "url" : "/api/inventory_return_locations/VZXPWiyzmZ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"VZXPWiyzmZ\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ\"},\"attributes\":{\"priority\":2,\"created_at\":\"2024-10-24T16:05:41.481Z\",\"updated_at\":\"2024-10-24T16:05:42.994Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9c152e67e6825452e1b1b3eb9f54a4001591562aaa1130dd252196149469d877\"}}}", + "headers" : { + "x-request-id" : "ff73d710-d976-4393-a68a-870a7f668441", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "47", + "x-kong-request-id" : "fea4b1297f37175d2ef10436175d5f3d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:43 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"44299812097f8fc82ad2ebeadc3cc927\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "208b0f9c-7cd4-4033-8d3a-0fbaac80df07", + "persistent" : true, + "scenarioName" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ", + "requiredScenarioState" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ-3", + "newScenarioState" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ-4", + "insertionIndex" : 182 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-756da867-07cb-48e0-aa15-397f061204cf.json b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-756da867-07cb-48e0-aa15-397f061204cf.json new file mode 100644 index 0000000..d564145 --- /dev/null +++ b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-756da867-07cb-48e0-aa15-397f061204cf.json @@ -0,0 +1,40 @@ +{ + "id" : "756da867-07cb-48e0-aa15-397f061204cf", + "name" : "api_inventory_return_locations_vzxpwiyzmz", + "request" : { + "url" : "/api/inventory_return_locations/VZXPWiyzmZ", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"priority\":2,\"reference\":null,\"reference_origin\":null},\"id\":\"VZXPWiyzmZ\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"dZngySxRva\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"NnoYJuqOqk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_return_locations\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"VZXPWiyzmZ\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ\"},\"attributes\":{\"priority\":2,\"created_at\":\"2024-10-24T16:05:41.481Z\",\"updated_at\":\"2024-10-24T16:05:42.994Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d3a53b4a8c209118d7c485da857ddb3121a08364df10ef330c2dfce6703dd5b8\"}}}", + "headers" : { + "x-request-id" : "29b15f26-593b-452b-b495-14198867c485", + "x-kong-upstream-latency" : "26", + "X-Ratelimit-Remaining" : "88", + "x-kong-request-id" : "6dc0c71e018ec97ddd53d22bbcc8740d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:43 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"49cde1d57bf0e6f114c81049591f6671\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "756da867-07cb-48e0-aa15-397f061204cf", + "persistent" : true, + "insertionIndex" : 186 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-882bedd5-7970-486e-be8b-f6422fade160.json b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-882bedd5-7970-486e-be8b-f6422fade160.json new file mode 100644 index 0000000..38e7f42 --- /dev/null +++ b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-882bedd5-7970-486e-be8b-f6422fade160.json @@ -0,0 +1,38 @@ +{ + "id" : "882bedd5-7970-486e-be8b-f6422fade160", + "name" : "api_inventory_return_locations_vzxpwiyzmz", + "request" : { + "url" : "/api/inventory_return_locations/VZXPWiyzmZ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"VZXPWiyzmZ\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T16:05:41.481Z\",\"updated_at\":\"2024-10-24T16:05:41.481Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8d8f0d4a481b613792a17a7abc0c08844fdc89f5b2be216c2ce6f5f615a3cd26\"}}}", + "headers" : { + "x-request-id" : "f7a8e87a-6f9e-4704-842e-eda9d2baef04", + "x-kong-upstream-latency" : "26", + "X-Ratelimit-Remaining" : "49", + "x-kong-request-id" : "af3d0b101b60312c2026f60c48bfe500", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:42 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b49fdd7cd5f027e9e0d478ac4af1b4e3\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "882bedd5-7970-486e-be8b-f6422fade160", + "persistent" : true, + "scenarioName" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ", + "requiredScenarioState" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ-2", + "newScenarioState" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ-3", + "insertionIndex" : 187 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-8aa5f4ef-a793-4844-b349-ff5d412d61be.json b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-8aa5f4ef-a793-4844-b349-ff5d412d61be.json new file mode 100644 index 0000000..10e5aa2 --- /dev/null +++ b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-8aa5f4ef-a793-4844-b349-ff5d412d61be.json @@ -0,0 +1,36 @@ +{ + "id" : "8aa5f4ef-a793-4844-b349-ff5d412d61be", + "name" : "api_inventory_return_locations_vzxpwiyzmz", + "request" : { + "url" : "/api/inventory_return_locations/VZXPWiyzmZ", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "bbe47936-fdad-4f17-95df-5cb5e4765eac", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "46", + "x-kong-request-id" : "b2c13310d13ac7102b49545dd9409a7b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:44 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "8aa5f4ef-a793-4844-b349-ff5d412d61be", + "persistent" : true, + "scenarioName" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ", + "requiredScenarioState" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ-4", + "insertionIndex" : 177 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-d63d6b22-dc61-4eef-9e7a-3863e1da2c73.json b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-d63d6b22-dc61-4eef-9e7a-3863e1da2c73.json new file mode 100644 index 0000000..4c645a6 --- /dev/null +++ b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-d63d6b22-dc61-4eef-9e7a-3863e1da2c73.json @@ -0,0 +1,32 @@ +{ + "id" : "d63d6b22-dc61-4eef-9e7a-3863e1da2c73", + "name" : "api_inventory_return_locations_vzxpwiyzmz", + "request" : { + "url" : "/api/inventory_return_locations/VZXPWiyzmZ", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "63a00de9-7a27-4381-9e11-a0c9843b6490", + "x-kong-upstream-latency" : "33", + "X-Ratelimit-Remaining" : "86", + "x-kong-request-id" : "36e6e47940300159b8588459e4897260", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:43 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "d63d6b22-dc61-4eef-9e7a-3863e1da2c73", + "persistent" : true, + "insertionIndex" : 181 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-e6825df4-4ebb-421d-946f-16611654a356.json b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-e6825df4-4ebb-421d-946f-16611654a356.json new file mode 100644 index 0000000..7f46313 --- /dev/null +++ b/mock/mappings/api_inventory_return_locations_vzxpwiyzmz-e6825df4-4ebb-421d-946f-16611654a356.json @@ -0,0 +1,38 @@ +{ + "id" : "e6825df4-4ebb-421d-946f-16611654a356", + "name" : "api_inventory_return_locations_vzxpwiyzmz", + "request" : { + "url" : "/api/inventory_return_locations/VZXPWiyzmZ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"VZXPWiyzmZ\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T16:05:41.481Z\",\"updated_at\":\"2024-10-24T16:05:41.481Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VZXPWiyzmZ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6329720c8a885d74e9773e5e82556314cdbc30e2b97f10c2b7c7e80f62068d3c\"}}}", + "headers" : { + "x-request-id" : "cfda8748-75e6-4559-bee7-589595cab54a", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "51", + "x-kong-request-id" : "235f655115773f6dc7d730106c69355e", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:42 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"93e8f7aafc9bb71cbdc5bae069d7da28\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e6825df4-4ebb-421d-946f-16611654a356", + "persistent" : true, + "scenarioName" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-28-api-inventory_return_locations-VZXPWiyzmZ-2", + "insertionIndex" : 191 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json b/mock/mappings/api_inventory_stock_locations-b1e48f78-a1ef-45d2-b37b-5371f4d3ffbb.json similarity index 55% rename from mock/mappings/inventory_stock_locations-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json rename to mock/mappings/api_inventory_stock_locations-b1e48f78-a1ef-45d2-b37b-5371f4d3ffbb.json index 8e6bfb6..7781d3c 100644 --- a/mock/mappings/inventory_stock_locations-10b7c32e-ee76-4196-a54d-a209dd3db2bc.json +++ b/mock/mappings/api_inventory_stock_locations-b1e48f78-a1ef-45d2-b37b-5371f4d3ffbb.json @@ -1,40 +1,40 @@ { - "id" : "10b7c32e-ee76-4196-a54d-a209dd3db2bc", - "name" : "inventory_stock_locations", + "id" : "b1e48f78-a1ef-45d2-b37b-5371f4d3ffbb", + "name" : "api_inventory_stock_locations", "request" : { - "url" : "/inventory_stock_locations", + "url" : "/api/inventory_stock_locations", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"on_hold\":true,\"priority\":1,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_stock_locations\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"on_hold\":true,\"priority\":1,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"JazqXSymMZ\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"BGOxpulLWk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_stock_locations\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:56.055Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f15675e76c6b3669ac1928ae86264aea33e2f5c3c0712f3764e0f9b113fd5308\"}}}", + "body" : "{\"data\":{\"id\":\"ljOLoSNDYW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T16:05:45.844Z\",\"updated_at\":\"2024-10-24T16:05:45.844Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b3eb40d2c1d4768a272b7f0902b6aed001a900b692b9092c6423e2d56f589bd3\"}}}", "headers" : { - "x-request-id" : "d2ec0fb3-0fb1-4def-a0b0-2f945f461fc9", - "x-kong-upstream-latency" : "26", + "x-request-id" : "202a3999-1bab-4802-ba41-71277f200f4c", + "x-kong-upstream-latency" : "27", "X-Ratelimit-Remaining" : "79", - "x-kong-request-id" : "6e965822a9d4951b8c2d360f991e036c", + "x-kong-request-id" : "bc811e487b75f91e5643ff69fbe07e58", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:45 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"07471f73a7e004fd79229ea304bd33dc\"", + "etag" : "W/\"481dbfe5fce1b0fd382fef9e044228b9\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "10b7c32e-ee76-4196-a54d-a209dd3db2bc", + "uuid" : "b1e48f78-a1ef-45d2-b37b-5371f4d3ffbb", "persistent" : true, - "insertionIndex" : 168 + "insertionIndex" : 173 } \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-ae1807ca-b068-40c8-bed1-2f65899c9d15.json b/mock/mappings/api_inventory_stock_locations_ljolosndyw-45450872-471a-4dd3-bfd4-3a1d6c37b7ab.json similarity index 52% rename from mock/mappings/inventory_stock_locations_pwmewsngnw-ae1807ca-b068-40c8-bed1-2f65899c9d15.json rename to mock/mappings/api_inventory_stock_locations_ljolosndyw-45450872-471a-4dd3-bfd4-3a1d6c37b7ab.json index 496e245..5823c9b 100644 --- a/mock/mappings/inventory_stock_locations_pwmewsngnw-ae1807ca-b068-40c8-bed1-2f65899c9d15.json +++ b/mock/mappings/api_inventory_stock_locations_ljolosndyw-45450872-471a-4dd3-bfd4-3a1d6c37b7ab.json @@ -1,38 +1,38 @@ { - "id" : "ae1807ca-b068-40c8-bed1-2f65899c9d15", - "name" : "inventory_stock_locations_pwmewsngnw", + "id" : "45450872-471a-4dd3-bfd4-3a1d6c37b7ab", + "name" : "api_inventory_stock_locations_ljolosndyw", "request" : { - "url" : "/inventory_stock_locations/PWmewSNGnW", + "url" : "/api/inventory_stock_locations/ljOLoSNDYW", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:56.055Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2ed268dea31e0b2d096376996ef39c9f9f3df9c971f5f7571fb256203b5e562a\"}}}", + "body" : "{\"data\":{\"id\":\"ljOLoSNDYW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T16:05:45.844Z\",\"updated_at\":\"2024-10-24T16:05:45.844Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bb773849c09cc60058b6bf466e0ffc435afed51e44bcf8a506d714c0dfe31a17\"}}}", "headers" : { - "x-request-id" : "4555bfaa-0f8d-4f10-87c0-c85aadeb2e37", + "x-request-id" : "6ea9a8e7-4ec2-45ac-81b0-0797c49746c7", "x-kong-upstream-latency" : "13", "X-Ratelimit-Remaining" : "44", - "x-kong-request-id" : "9dfb4f127bec8253d2985815ec5b605e", + "x-kong-request-id" : "aae1cf703775872795e03a536c124837", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:46 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"760f7cc916a388f6d5f2b6f5edcedb6b\"", + "etag" : "W/\"40c9ed7da61f6d623ac4388efa9d75b7\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "ae1807ca-b068-40c8-bed1-2f65899c9d15", + "uuid" : "45450872-471a-4dd3-bfd4-3a1d6c37b7ab", "persistent" : true, - "scenarioName" : "scenario-24-inventory_stock_locations-PWmewSNGnW", + "scenarioName" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-2", - "insertionIndex" : 164 + "newScenarioState" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW-2", + "insertionIndex" : 169 } \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_rvmjltrxpq-d4155d36-7cfa-4910-811c-62b15611e606.json b/mock/mappings/api_inventory_stock_locations_ljolosndyw-519cef76-f69c-4cc6-8703-d5ff0c685ff3.json similarity index 54% rename from mock/mappings/external_tax_calculators_rvmjltrxpq-d4155d36-7cfa-4910-811c-62b15611e606.json rename to mock/mappings/api_inventory_stock_locations_ljolosndyw-519cef76-f69c-4cc6-8703-d5ff0c685ff3.json index bf98b5d..c3f5156 100644 --- a/mock/mappings/external_tax_calculators_rvmjltrxpq-d4155d36-7cfa-4910-811c-62b15611e606.json +++ b/mock/mappings/api_inventory_stock_locations_ljolosndyw-519cef76-f69c-4cc6-8703-d5ff0c685ff3.json @@ -1,21 +1,21 @@ { - "id" : "d4155d36-7cfa-4910-811c-62b15611e606", - "name" : "external_tax_calculators_rvmjltrxpq", + "id" : "519cef76-f69c-4cc6-8703-d5ff0c685ff3", + "name" : "api_inventory_stock_locations_ljolosndyw", "request" : { - "url" : "/external_tax_calculators/RvMjlTRxPq", + "url" : "/api/inventory_stock_locations/ljOLoSNDYW", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "932bbc0a-2737-4a37-80df-068bbe92a324", + "x-request-id" : "466061b7-7b04-46aa-912a-696843c41428", "x-kong-upstream-latency" : "20", - "X-Ratelimit-Remaining" : "75", - "x-kong-request-id" : "441c2320a36c5e656046ae52b7ae9c79", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "a7a7894b2d9204666119b35e6cdbf90d", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:11 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:48 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "d4155d36-7cfa-4910-811c-62b15611e606", + "uuid" : "519cef76-f69c-4cc6-8703-d5ff0c685ff3", "persistent" : true, - "insertionIndex" : 103 + "insertionIndex" : 159 } \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ljolosndyw-8bf9dc41-a356-4c67-af09-dd15c31a3f3e.json b/mock/mappings/api_inventory_stock_locations_ljolosndyw-8bf9dc41-a356-4c67-af09-dd15c31a3f3e.json new file mode 100644 index 0000000..43e3148 --- /dev/null +++ b/mock/mappings/api_inventory_stock_locations_ljolosndyw-8bf9dc41-a356-4c67-af09-dd15c31a3f3e.json @@ -0,0 +1,38 @@ +{ + "id" : "8bf9dc41-a356-4c67-af09-dd15c31a3f3e", + "name" : "api_inventory_stock_locations_ljolosndyw", + "request" : { + "url" : "/api/inventory_stock_locations/ljOLoSNDYW", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ljOLoSNDYW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW\"},\"attributes\":{\"priority\":2,\"on_hold\":false,\"created_at\":\"2024-10-24T16:05:45.844Z\",\"updated_at\":\"2024-10-24T16:05:47.806Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"390b4835ef37b167f60afefb7b9df80d333cdd61836cc62cad1b9195c2c2b451\"}}}", + "headers" : { + "x-request-id" : "fa66a490-338c-4b48-a6b2-58e955936147", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "40", + "x-kong-request-id" : "df43d64a170c3e495570a27d4592f61a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:48 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"fbfc0160821914508c5b6659cbacb8f2\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "8bf9dc41-a356-4c67-af09-dd15c31a3f3e", + "persistent" : true, + "scenarioName" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW", + "requiredScenarioState" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW-3", + "newScenarioState" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW-4", + "insertionIndex" : 160 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ljolosndyw-9a6b13be-7b2e-47ab-b888-9e44b2133d8a.json b/mock/mappings/api_inventory_stock_locations_ljolosndyw-9a6b13be-7b2e-47ab-b888-9e44b2133d8a.json new file mode 100644 index 0000000..81fd894 --- /dev/null +++ b/mock/mappings/api_inventory_stock_locations_ljolosndyw-9a6b13be-7b2e-47ab-b888-9e44b2133d8a.json @@ -0,0 +1,36 @@ +{ + "id" : "9a6b13be-7b2e-47ab-b888-9e44b2133d8a", + "name" : "api_inventory_stock_locations_ljolosndyw", + "request" : { + "url" : "/api/inventory_stock_locations/ljOLoSNDYW", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "5fadecca-7c33-4776-bdb9-647817e14bad", + "x-kong-upstream-latency" : "7", + "X-Ratelimit-Remaining" : "39", + "x-kong-request-id" : "d8820803663e45695b8a153f1e577005", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:49 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "9a6b13be-7b2e-47ab-b888-9e44b2133d8a", + "persistent" : true, + "scenarioName" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW", + "requiredScenarioState" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW-4", + "insertionIndex" : 155 +} \ No newline at end of file diff --git a/mock/mappings/api_inventory_stock_locations_ljolosndyw-cc6bf357-4cd0-4963-a5f4-35fe8d526d6b.json b/mock/mappings/api_inventory_stock_locations_ljolosndyw-cc6bf357-4cd0-4963-a5f4-35fe8d526d6b.json new file mode 100644 index 0000000..99ece52 --- /dev/null +++ b/mock/mappings/api_inventory_stock_locations_ljolosndyw-cc6bf357-4cd0-4963-a5f4-35fe8d526d6b.json @@ -0,0 +1,38 @@ +{ + "id" : "cc6bf357-4cd0-4963-a5f4-35fe8d526d6b", + "name" : "api_inventory_stock_locations_ljolosndyw", + "request" : { + "url" : "/api/inventory_stock_locations/ljOLoSNDYW", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ljOLoSNDYW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T16:05:45.844Z\",\"updated_at\":\"2024-10-24T16:05:45.844Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a386cb9da3600ac62c87d1889c5ce398fafa4d4ca8cf59a4ffe8fe703ecdf9c9\"}}}", + "headers" : { + "x-request-id" : "fcca4353-654a-4a62-b225-cff5c9a30557", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "42", + "x-kong-request-id" : "30425668998af52f4939014ce5843d77", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:47 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d2f1b17fb7456caf6f8f95e90fbc53ab\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "cc6bf357-4cd0-4963-a5f4-35fe8d526d6b", + "persistent" : true, + "scenarioName" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW", + "requiredScenarioState" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW-2", + "newScenarioState" : "scenario-24-api-inventory_stock_locations-ljOLoSNDYW-3", + "insertionIndex" : 165 +} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-c73118b0-c1a9-48d7-8ee3-15951416b76f.json b/mock/mappings/api_inventory_stock_locations_ljolosndyw-e388e0e7-55bf-4b5c-8713-fb2895388611.json similarity index 53% rename from mock/mappings/inventory_stock_locations_pwmewsngnw-c73118b0-c1a9-48d7-8ee3-15951416b76f.json rename to mock/mappings/api_inventory_stock_locations_ljolosndyw-e388e0e7-55bf-4b5c-8713-fb2895388611.json index 394ca0f..9f772a3 100644 --- a/mock/mappings/inventory_stock_locations_pwmewsngnw-c73118b0-c1a9-48d7-8ee3-15951416b76f.json +++ b/mock/mappings/api_inventory_stock_locations_ljolosndyw-e388e0e7-55bf-4b5c-8713-fb2895388611.json @@ -1,40 +1,40 @@ { - "id" : "c73118b0-c1a9-48d7-8ee3-15951416b76f", - "name" : "inventory_stock_locations_pwmewsngnw", + "id" : "e388e0e7-55bf-4b5c-8713-fb2895388611", + "name" : "api_inventory_stock_locations_ljolosndyw", "request" : { - "url" : "/inventory_stock_locations/PWmewSNGnW", + "url" : "/api/inventory_stock_locations/ljOLoSNDYW", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"on_hold\":false,\"priority\":2,\"reference\":null,\"reference_origin\":null},\"id\":\"PWmewSNGnW\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"lWlwDSAyMa\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_stock_locations\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"on_hold\":false,\"priority\":2,\"reference\":null,\"reference_origin\":null},\"id\":\"ljOLoSNDYW\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"JazqXSymMZ\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"BGOxpulLWk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_stock_locations\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":2,\"on_hold\":false,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:57.838Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1b76b4518db7d806c338736660edc3451253d33782bf4eaf5533a58c5835a212\"}}}", + "body" : "{\"data\":{\"id\":\"ljOLoSNDYW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW\"},\"attributes\":{\"priority\":2,\"on_hold\":false,\"created_at\":\"2024-10-24T16:05:45.844Z\",\"updated_at\":\"2024-10-24T16:05:47.806Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/ljOLoSNDYW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7f3f88b263a63d0d69c812d10b3ccc4be306fc10e10e6d784bfad9b0c1e01174\"}}}", "headers" : { - "x-request-id" : "a7692d6a-3d2b-4ea5-98ea-60ac8eb3b5c6", - "x-kong-upstream-latency" : "30", + "x-request-id" : "8f36dd5d-1ab4-4ea8-ae3a-51339c81f772", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "87", - "x-kong-request-id" : "a5ec225afba31862c5c9f80e1f5c0e4a", + "x-kong-request-id" : "a24d3b13b8ccab6831926c4286deaf58", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:57 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:47 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"9de5ec8aee8b2ca9d2d687042600da09\"", + "etag" : "W/\"eabdfcfe3fbf95579a247fdd4eaad4f3\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "c73118b0-c1a9-48d7-8ee3-15951416b76f", + "uuid" : "e388e0e7-55bf-4b5c-8713-fb2895388611", "persistent" : true, - "insertionIndex" : 159 + "insertionIndex" : 164 } \ No newline at end of file diff --git a/mock/mappings/klarna_gateways-8c90af06-c170-4a30-9b30-c936f52612f3.json b/mock/mappings/api_klarna_gateways-ac49c015-24e3-42de-972f-eb1a98240a84.json similarity index 57% rename from mock/mappings/klarna_gateways-8c90af06-c170-4a30-9b30-c936f52612f3.json rename to mock/mappings/api_klarna_gateways-ac49c015-24e3-42de-972f-eb1a98240a84.json index 6f1a9ae..3c95786 100644 --- a/mock/mappings/klarna_gateways-8c90af06-c170-4a30-9b30-c936f52612f3.json +++ b/mock/mappings/api_klarna_gateways-ac49c015-24e3-42de-972f-eb1a98240a84.json @@ -1,8 +1,8 @@ { - "id" : "8c90af06-c170-4a30-9b30-c936f52612f3", - "name" : "klarna_gateways", + "id" : "ac49c015-24e3-42de-972f-eb1a98240a84", + "name" : "api_klarna_gateways", "request" : { - "url" : "/klarna_gateways", + "url" : "/api/klarna_gateways", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_secret\":\"xxxx-yyyy-zzzz\",\"country_code\":\"EU\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"},\"name\":\"Incentro Klarna Gateway\",\"reference\":null,\"reference_origin\":null},\"type\":\"klarna_gateways\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:51:59.780Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"864df89cca13f91d36e778438d7f1fd339570ec6693939ac623277bf91380de7\"}}}", + "body" : "{\"data\":{\"id\":\"WkWNJszPMj\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T16:05:49.752Z\",\"updated_at\":\"2024-10-24T16:05:49.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"cddeae08ade3f096b091624e46aeea678d8b4fa051699c7f14c0ba0b177dc591\"}}}", "headers" : { - "x-request-id" : "771f233d-1251-4a63-afa3-39abafa04646", - "x-kong-upstream-latency" : "23", + "x-request-id" : "543afecc-4a63-4111-8755-040cfb052f60", + "x-kong-upstream-latency" : "34", "X-Ratelimit-Remaining" : "78", - "x-kong-request-id" : "56c30c1d9aabd5411057615a1ede002d", + "x-kong-request-id" : "2afff91aa1a70e5afa3994665d978665", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:59 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:49 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"263999264572a06c1aea9b92e9140aec\"", + "etag" : "W/\"b1f7e3853960cf5c626b69e779450da7\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "8c90af06-c170-4a30-9b30-c936f52612f3", + "uuid" : "ac49c015-24e3-42de-972f-eb1a98240a84", "persistent" : true, - "insertionIndex" : 149 + "insertionIndex" : 154 } \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-590ca422-50b6-427e-a292-fbb91ca4d126.json b/mock/mappings/api_klarna_gateways_wkwnjszpmj-3cecdd12-9c01-41b5-9f2e-22601c94dcf1.json similarity index 55% rename from mock/mappings/klarna_gateways_ejjwlsjapk-590ca422-50b6-427e-a292-fbb91ca4d126.json rename to mock/mappings/api_klarna_gateways_wkwnjszpmj-3cecdd12-9c01-41b5-9f2e-22601c94dcf1.json index b2953a0..f7f63f3 100644 --- a/mock/mappings/klarna_gateways_ejjwlsjapk-590ca422-50b6-427e-a292-fbb91ca4d126.json +++ b/mock/mappings/api_klarna_gateways_wkwnjszpmj-3cecdd12-9c01-41b5-9f2e-22601c94dcf1.json @@ -1,21 +1,21 @@ { - "id" : "590ca422-50b6-427e-a292-fbb91ca4d126", - "name" : "klarna_gateways_ejjwlsjapk", + "id" : "3cecdd12-9c01-41b5-9f2e-22601c94dcf1", + "name" : "api_klarna_gateways_wkwnjszpmj", "request" : { - "url" : "/klarna_gateways/EjJwlsJAPk", + "url" : "/api/klarna_gateways/WkWNJszPMj", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "fbc9106d-3926-4717-9eca-bacfff70cbcf", - "x-kong-upstream-latency" : "41", + "x-request-id" : "abbaa0ff-10aa-4dfa-99da-1e7e76a8c728", + "x-kong-upstream-latency" : "34", "X-Ratelimit-Remaining" : "78", - "x-kong-request-id" : "cfa5be5bf36df810c0d73d15a921c921", + "x-kong-request-id" : "a31d5e45706ab977d3cad11b759e8949", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:01 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:51 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "590ca422-50b6-427e-a292-fbb91ca4d126", + "uuid" : "3cecdd12-9c01-41b5-9f2e-22601c94dcf1", "persistent" : true, - "insertionIndex" : 144 + "insertionIndex" : 149 } \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wkwnjszpmj-3ff51e8c-9393-4994-b0b5-43ea8d0f3294.json b/mock/mappings/api_klarna_gateways_wkwnjszpmj-3ff51e8c-9393-4994-b0b5-43ea8d0f3294.json new file mode 100644 index 0000000..727ddbc --- /dev/null +++ b/mock/mappings/api_klarna_gateways_wkwnjszpmj-3ff51e8c-9393-4994-b0b5-43ea8d0f3294.json @@ -0,0 +1,38 @@ +{ + "id" : "3ff51e8c-9393-4994-b0b5-43ea8d0f3294", + "name" : "api_klarna_gateways_wkwnjszpmj", + "request" : { + "url" : "/api/klarna_gateways/WkWNJszPMj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"WkWNJszPMj\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T16:05:49.752Z\",\"updated_at\":\"2024-10-24T16:05:49.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"5478f78c653920ff076fa4e7d3974db6b0e8b4ea52c9a2b9c882ef8a26447a73\"}}}", + "headers" : { + "x-request-id" : "acf1b7b0-17ff-4bb6-abad-43b0037c3e2f", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "38", + "x-kong-request-id" : "c723f81bd77a4e45efc3935b2d2ae576", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:50 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"3c81c86630e4ebe9bd1c1c40c53a7f21\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "3ff51e8c-9393-4994-b0b5-43ea8d0f3294", + "persistent" : true, + "scenarioName" : "scenario-23-api-klarna_gateways-WkWNJszPMj", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-23-api-klarna_gateways-WkWNJszPMj-2", + "insertionIndex" : 153 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-6df381d7-cf5b-483b-8187-029fd14f8be0.json b/mock/mappings/api_klarna_gateways_wkwnjszpmj-84958eaf-2cda-4df3-858a-29add206fb36.json similarity index 61% rename from mock/mappings/klarna_gateways_ejjwlsjapk-6df381d7-cf5b-483b-8187-029fd14f8be0.json rename to mock/mappings/api_klarna_gateways_wkwnjszpmj-84958eaf-2cda-4df3-858a-29add206fb36.json index c76524c..e87ae04 100644 --- a/mock/mappings/klarna_gateways_ejjwlsjapk-6df381d7-cf5b-483b-8187-029fd14f8be0.json +++ b/mock/mappings/api_klarna_gateways_wkwnjszpmj-84958eaf-2cda-4df3-858a-29add206fb36.json @@ -1,22 +1,22 @@ { - "id" : "6df381d7-cf5b-483b-8187-029fd14f8be0", - "name" : "klarna_gateways_ejjwlsjapk", + "id" : "84958eaf-2cda-4df3-858a-29add206fb36", + "name" : "api_klarna_gateways_wkwnjszpmj", "request" : { - "url" : "/klarna_gateways/EjJwlsJAPk", + "url" : "/api/klarna_gateways/WkWNJszPMj", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "95c131a9-1375-4e52-b37b-855facea98d7", + "x-request-id" : "ebbcf84a-c15e-4184-b244-5a9d69a77477", "x-kong-upstream-latency" : "8", "X-Ratelimit-Remaining" : "35", - "x-kong-request-id" : "5519d63718ce0d79282d475e5d472a09", + "x-kong-request-id" : "38e3ea7a51192304af83b5055f04923b", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:01 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:51 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "6df381d7-cf5b-483b-8187-029fd14f8be0", + "uuid" : "84958eaf-2cda-4df3-858a-29add206fb36", "persistent" : true, - "scenarioName" : "scenario-23-klarna_gateways-EjJwlsJAPk", - "requiredScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-4", - "insertionIndex" : 143 + "scenarioName" : "scenario-23-api-klarna_gateways-WkWNJszPMj", + "requiredScenarioState" : "scenario-23-api-klarna_gateways-WkWNJszPMj-4", + "insertionIndex" : 148 } \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wkwnjszpmj-849d60d3-7353-484c-9aa9-c4d9ff67003f.json b/mock/mappings/api_klarna_gateways_wkwnjszpmj-849d60d3-7353-484c-9aa9-c4d9ff67003f.json new file mode 100644 index 0000000..5c1c7b4 --- /dev/null +++ b/mock/mappings/api_klarna_gateways_wkwnjszpmj-849d60d3-7353-484c-9aa9-c4d9ff67003f.json @@ -0,0 +1,38 @@ +{ + "id" : "849d60d3-7353-484c-9aa9-c4d9ff67003f", + "name" : "api_klarna_gateways_wkwnjszpmj", + "request" : { + "url" : "/api/klarna_gateways/WkWNJszPMj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"WkWNJszPMj\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway Changed\",\"created_at\":\"2024-10-24T16:05:49.752Z\",\"updated_at\":\"2024-10-24T16:05:50.642Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a63c5ed13ac18e7fda50fece86b6060fc37861bf7c79e7ab5e897c872751da35\"}}}", + "headers" : { + "x-request-id" : "f26fdb7c-dc44-44fc-9f47-826bc13a5da3", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "36", + "x-kong-request-id" : "d4905f1838ea6530afcb8c4d7af1831d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:50 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"69a423273d0a26f4cdf66276c97fc531\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "849d60d3-7353-484c-9aa9-c4d9ff67003f", + "persistent" : true, + "scenarioName" : "scenario-23-api-klarna_gateways-WkWNJszPMj", + "requiredScenarioState" : "scenario-23-api-klarna_gateways-WkWNJszPMj-3", + "newScenarioState" : "scenario-23-api-klarna_gateways-WkWNJszPMj-4", + "insertionIndex" : 150 +} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-f96b0cde-70f8-42ad-93e4-558dc0925d35.json b/mock/mappings/api_klarna_gateways_wkwnjszpmj-ae7ca76a-24e5-407e-969f-3e91291c01dc.json similarity index 52% rename from mock/mappings/klarna_gateways_ejjwlsjapk-f96b0cde-70f8-42ad-93e4-558dc0925d35.json rename to mock/mappings/api_klarna_gateways_wkwnjszpmj-ae7ca76a-24e5-407e-969f-3e91291c01dc.json index 86950ab..7795eef 100644 --- a/mock/mappings/klarna_gateways_ejjwlsjapk-f96b0cde-70f8-42ad-93e4-558dc0925d35.json +++ b/mock/mappings/api_klarna_gateways_wkwnjszpmj-ae7ca76a-24e5-407e-969f-3e91291c01dc.json @@ -1,40 +1,40 @@ { - "id" : "f96b0cde-70f8-42ad-93e4-558dc0925d35", - "name" : "klarna_gateways_ejjwlsjapk", + "id" : "ae7ca76a-24e5-407e-969f-3e91291c01dc", + "name" : "api_klarna_gateways_wkwnjszpmj", "request" : { - "url" : "/klarna_gateways/EjJwlsJAPk", + "url" : "/api/klarna_gateways/WkWNJszPMj", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_secret\":\"xxxx-yyyy-zzzz\",\"country_code\":\"EU\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"},\"name\":\"Incentro Klarna Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"xxxx-yyyy-zzzz\",\"api_secret\":\"xxxx-yyyy-zzzz\",\"country_code\":\"EU\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"},\"name\":\"Incentro Klarna Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"WkWNJszPMj\",\"type\":\"klarna_gateways\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway Changed\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:52:00.932Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8dfc8bc73fc040588aa5accd9dbc7c3a69639f0b1b99db163e0134f8bd407b72\"}}}", + "body" : "{\"data\":{\"id\":\"WkWNJszPMj\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway Changed\",\"created_at\":\"2024-10-24T16:05:49.752Z\",\"updated_at\":\"2024-10-24T16:05:50.642Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d3e1f928252133693b0593e7caaf4bb004ed3f47335440db9b9b8a74eae2296e\"}}}", "headers" : { - "x-request-id" : "d62c6354-0e5c-40be-9607-5c407d134fef", - "x-kong-upstream-latency" : "31", + "x-request-id" : "b9c8a90c-d727-41a2-a9f4-0ff1dd7c41d4", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "86", - "x-kong-request-id" : "8931b37a233c3b0a13881b1a7b0b124c", + "x-kong-request-id" : "3563c23d71349367278170770cce6528", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:00 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:50 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"0e9ca28559d2fb93bfcc2a0c606c19b3\"", + "etag" : "W/\"3f460f2ca0c54a3f9cb4ea7eb4efc8cb\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "f96b0cde-70f8-42ad-93e4-558dc0925d35", + "uuid" : "ae7ca76a-24e5-407e-969f-3e91291c01dc", "persistent" : true, - "insertionIndex" : 146 + "insertionIndex" : 151 } \ No newline at end of file diff --git a/mock/mappings/api_klarna_gateways_wkwnjszpmj-bd0bff65-8457-480a-a623-43ca476de41e.json b/mock/mappings/api_klarna_gateways_wkwnjszpmj-bd0bff65-8457-480a-a623-43ca476de41e.json new file mode 100644 index 0000000..fbecb12 --- /dev/null +++ b/mock/mappings/api_klarna_gateways_wkwnjszpmj-bd0bff65-8457-480a-a623-43ca476de41e.json @@ -0,0 +1,38 @@ +{ + "id" : "bd0bff65-8457-480a-a623-43ca476de41e", + "name" : "api_klarna_gateways_wkwnjszpmj", + "request" : { + "url" : "/api/klarna_gateways/WkWNJszPMj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"WkWNJszPMj\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T16:05:49.752Z\",\"updated_at\":\"2024-10-24T16:05:49.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/WkWNJszPMj/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e2a1b847ec500c4d6496b14df7d431b90ad3bcb2809660505d52aa34e959887a\"}}}", + "headers" : { + "x-request-id" : "3095b53c-63fb-478f-8905-bf0a6eaea7ec", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "37", + "x-kong-request-id" : "ffd98c1df0abf472b175965ecd11f57d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:50 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"ae538bd5db76f5da26c906b1499bc36e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bd0bff65-8457-480a-a623-43ca476de41e", + "persistent" : true, + "scenarioName" : "scenario-23-api-klarna_gateways-WkWNJszPMj", + "requiredScenarioState" : "scenario-23-api-klarna_gateways-WkWNJszPMj-2", + "newScenarioState" : "scenario-23-api-klarna_gateways-WkWNJszPMj-3", + "insertionIndex" : 152 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways-d3622803-a267-474a-8f8b-5b9268069b0e.json b/mock/mappings/api_manual_gateways-a1d76a8f-5189-4c1f-a62a-3387c28b779d.json similarity index 54% rename from mock/mappings/manual_gateways-d3622803-a267-474a-8f8b-5b9268069b0e.json rename to mock/mappings/api_manual_gateways-a1d76a8f-5189-4c1f-a62a-3387c28b779d.json index c89bff7..dc5a72d 100644 --- a/mock/mappings/manual_gateways-d3622803-a267-474a-8f8b-5b9268069b0e.json +++ b/mock/mappings/api_manual_gateways-a1d76a8f-5189-4c1f-a62a-3387c28b779d.json @@ -1,8 +1,8 @@ { - "id" : "d3622803-a267-474a-8f8b-5b9268069b0e", - "name" : "manual_gateways", + "id" : "a1d76a8f-5189-4c1f-a62a-3387c28b779d", + "name" : "api_manual_gateways", "request" : { - "url" : "/manual_gateways", + "url" : "/api/manual_gateways", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"name\":\"Incentro Manual Gateway\",\"reference\":null,\"reference_origin\":null},\"type\":\"manual_gateways\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"62ba0e4c45a11f1e1bb2246a82cb9fb8d0594abc37917bedc7ac52ae0617be29\"}}}", + "body" : "{\"data\":{\"id\":\"ajYQYsZpoj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T16:05:51.773Z\",\"updated_at\":\"2024-10-24T16:05:51.773Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"772141014f7822815bcbaf14dabd702cd65c7d73b92aa45babfd9903512e01ae\"}}}", "headers" : { - "x-request-id" : "26a93999-36e6-4479-805b-c74a65e96a8b", - "x-kong-upstream-latency" : "13", + "x-request-id" : "7b7ad834-a559-4005-981e-c5bda565df37", + "x-kong-upstream-latency" : "20", "X-Ratelimit-Remaining" : "77", - "x-kong-request-id" : "1e837071bb6f1d7c348b99563b068667", + "x-kong-request-id" : "4b44a555e1908d22b53fdd083a218d04", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:02 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:51 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"7f5bf566b52dc4a97ac09add25f8cc0d\"", + "etag" : "W/\"1ebc8a4b16014d87bd0aa5069ce3067d\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d3622803-a267-474a-8f8b-5b9268069b0e", + "uuid" : "a1d76a8f-5189-4c1f-a62a-3387c28b779d", "persistent" : true, - "insertionIndex" : 142 + "insertionIndex" : 147 } \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-cc81a913-7a1e-4e65-8185-6d74dcefc615.json b/mock/mappings/api_manual_gateways_ajyqyszpoj-080d7dfe-110a-4f89-a1e0-9f2824f100e4.json similarity index 52% rename from mock/mappings/manual_gateways_oxoaeswmwj-cc81a913-7a1e-4e65-8185-6d74dcefc615.json rename to mock/mappings/api_manual_gateways_ajyqyszpoj-080d7dfe-110a-4f89-a1e0-9f2824f100e4.json index 89007d9..7c67bab 100644 --- a/mock/mappings/manual_gateways_oxoaeswmwj-cc81a913-7a1e-4e65-8185-6d74dcefc615.json +++ b/mock/mappings/api_manual_gateways_ajyqyszpoj-080d7dfe-110a-4f89-a1e0-9f2824f100e4.json @@ -1,40 +1,40 @@ { - "id" : "cc81a913-7a1e-4e65-8185-6d74dcefc615", - "name" : "manual_gateways_oxoaeswmwj", + "id" : "080d7dfe-110a-4f89-a1e0-9f2824f100e4", + "name" : "api_manual_gateways_ajyqyszpoj", "request" : { - "url" : "/manual_gateways/oxoaEswMWj", + "url" : "/api/manual_gateways/ajYQYsZpoj", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"name\":\"Incentro Manual Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"},\"name\":\"Incentro Manual Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"ajYQYsZpoj\",\"type\":\"manual_gateways\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway Changed\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.897Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1c73a334ef232d443870b9a99c0c9bc59d10600129093d83cb6032c60b5e065f\"}}}", + "body" : "{\"data\":{\"id\":\"ajYQYsZpoj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway Changed\",\"created_at\":\"2024-10-24T16:05:51.773Z\",\"updated_at\":\"2024-10-24T16:05:52.972Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ad9a24df6dae27885babe28a40ce512722d51e953c9b1e95af33fd7330a2896a\"}}}", "headers" : { - "x-request-id" : "8d7cc8a4-2dda-4ab3-95bb-15646c25d039", - "x-kong-upstream-latency" : "30", + "x-request-id" : "01728f36-5abf-47c2-8afc-acfedc961385", + "x-kong-upstream-latency" : "204", "X-Ratelimit-Remaining" : "85", - "x-kong-request-id" : "a4ec8306c2a0e576c277d57965f53c40", + "x-kong-request-id" : "2e468661fd533a70f0ca9d653bc13460", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:02 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:53 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"1c4bf76f08c2015d006bc7a9a8cd37a4\"", + "etag" : "W/\"4e08fed7c0ae548c283ac69a85720b75\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "cc81a913-7a1e-4e65-8185-6d74dcefc615", + "uuid" : "080d7dfe-110a-4f89-a1e0-9f2824f100e4", "persistent" : true, - "insertionIndex" : 139 + "insertionIndex" : 144 } \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_ajyqyszpoj-20ce7e16-888a-4e50-8408-cd6721256a60.json b/mock/mappings/api_manual_gateways_ajyqyszpoj-20ce7e16-888a-4e50-8408-cd6721256a60.json new file mode 100644 index 0000000..e70a05b --- /dev/null +++ b/mock/mappings/api_manual_gateways_ajyqyszpoj-20ce7e16-888a-4e50-8408-cd6721256a60.json @@ -0,0 +1,32 @@ +{ + "id" : "20ce7e16-888a-4e50-8408-cd6721256a60", + "name" : "api_manual_gateways_ajyqyszpoj", + "request" : { + "url" : "/api/manual_gateways/ajYQYsZpoj", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "f474a604-0c5c-4abc-95c9-4649a8599429", + "x-kong-upstream-latency" : "23", + "X-Ratelimit-Remaining" : "78", + "x-kong-request-id" : "db1a5262abc6414daf09bb0ad58b9135", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:53 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "20ce7e16-888a-4e50-8408-cd6721256a60", + "persistent" : true, + "insertionIndex" : 142 +} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_ajyqyszpoj-3610014e-6ad4-4cec-8f3b-a864a92d0086.json b/mock/mappings/api_manual_gateways_ajyqyszpoj-3610014e-6ad4-4cec-8f3b-a864a92d0086.json new file mode 100644 index 0000000..58bb623 --- /dev/null +++ b/mock/mappings/api_manual_gateways_ajyqyszpoj-3610014e-6ad4-4cec-8f3b-a864a92d0086.json @@ -0,0 +1,38 @@ +{ + "id" : "3610014e-6ad4-4cec-8f3b-a864a92d0086", + "name" : "api_manual_gateways_ajyqyszpoj", + "request" : { + "url" : "/api/manual_gateways/ajYQYsZpoj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ajYQYsZpoj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T16:05:51.773Z\",\"updated_at\":\"2024-10-24T16:05:51.773Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0368bd16aa032928474bb3982181d7582e5acd71df4adb3f539d4e362cc261c5\"}}}", + "headers" : { + "x-request-id" : "a978c959-1581-4625-838e-2d20e09d0465", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "33", + "x-kong-request-id" : "6672630314f88b4fde98ee1be8ef1111", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:52 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"ae1b84cb6b52f4cf5e459b7ddb8f161d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "3610014e-6ad4-4cec-8f3b-a864a92d0086", + "persistent" : true, + "scenarioName" : "scenario-22-api-manual_gateways-ajYQYsZpoj", + "requiredScenarioState" : "scenario-22-api-manual_gateways-ajYQYsZpoj-2", + "newScenarioState" : "scenario-22-api-manual_gateways-ajYQYsZpoj-3", + "insertionIndex" : 145 +} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_ajyqyszpoj-528b5848-39dd-43dd-b293-dc6b1fcaba43.json b/mock/mappings/api_manual_gateways_ajyqyszpoj-528b5848-39dd-43dd-b293-dc6b1fcaba43.json new file mode 100644 index 0000000..418e70d --- /dev/null +++ b/mock/mappings/api_manual_gateways_ajyqyszpoj-528b5848-39dd-43dd-b293-dc6b1fcaba43.json @@ -0,0 +1,38 @@ +{ + "id" : "528b5848-39dd-43dd-b293-dc6b1fcaba43", + "name" : "api_manual_gateways_ajyqyszpoj", + "request" : { + "url" : "/api/manual_gateways/ajYQYsZpoj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ajYQYsZpoj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T16:05:51.773Z\",\"updated_at\":\"2024-10-24T16:05:51.773Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"65faebf330e15fc838d4624d9b22d4edb4deaf4bac1f8f9bfbed54babd3b847e\"}}}", + "headers" : { + "x-request-id" : "247823c7-7f4f-41ea-ad52-c50e7b7f5b2e", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "34", + "x-kong-request-id" : "5c32b11e62022d7a530e926cdf944149", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:52 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"257c65e8cdaa7f387338ac82733ac026\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "528b5848-39dd-43dd-b293-dc6b1fcaba43", + "persistent" : true, + "scenarioName" : "scenario-22-api-manual_gateways-ajYQYsZpoj", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-22-api-manual_gateways-ajYQYsZpoj-2", + "insertionIndex" : 146 +} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_ajyqyszpoj-5b984139-e3f3-47a2-aeb6-55d854870a45.json b/mock/mappings/api_manual_gateways_ajyqyszpoj-5b984139-e3f3-47a2-aeb6-55d854870a45.json new file mode 100644 index 0000000..347d78d --- /dev/null +++ b/mock/mappings/api_manual_gateways_ajyqyszpoj-5b984139-e3f3-47a2-aeb6-55d854870a45.json @@ -0,0 +1,36 @@ +{ + "id" : "5b984139-e3f3-47a2-aeb6-55d854870a45", + "name" : "api_manual_gateways_ajyqyszpoj", + "request" : { + "url" : "/api/manual_gateways/ajYQYsZpoj", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "2aeba842-0f2c-4822-b7b7-dfb76c25610a", + "x-kong-upstream-latency" : "9", + "X-Ratelimit-Remaining" : "31", + "x-kong-request-id" : "c1ba1444e91c362105ed32224ac8e158", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:53 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "5b984139-e3f3-47a2-aeb6-55d854870a45", + "persistent" : true, + "scenarioName" : "scenario-22-api-manual_gateways-ajYQYsZpoj", + "requiredScenarioState" : "scenario-22-api-manual_gateways-ajYQYsZpoj-4", + "insertionIndex" : 141 +} \ No newline at end of file diff --git a/mock/mappings/api_manual_gateways_ajyqyszpoj-d9100517-a8a4-40ab-9f1c-fb200d6c7a67.json b/mock/mappings/api_manual_gateways_ajyqyszpoj-d9100517-a8a4-40ab-9f1c-fb200d6c7a67.json new file mode 100644 index 0000000..a3efc1c --- /dev/null +++ b/mock/mappings/api_manual_gateways_ajyqyszpoj-d9100517-a8a4-40ab-9f1c-fb200d6c7a67.json @@ -0,0 +1,38 @@ +{ + "id" : "d9100517-a8a4-40ab-9f1c-fb200d6c7a67", + "name" : "api_manual_gateways_ajyqyszpoj", + "request" : { + "url" : "/api/manual_gateways/ajYQYsZpoj", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ajYQYsZpoj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway Changed\",\"created_at\":\"2024-10-24T16:05:51.773Z\",\"updated_at\":\"2024-10-24T16:05:52.972Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/ajYQYsZpoj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"74aee32f3e4a6b73b1aa1fc06a124fea6fe4fa481194f60195e24947fbc89565\"}}}", + "headers" : { + "x-request-id" : "08c278b7-5b9e-40c9-b2e1-2eb76e5860c3", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "32", + "x-kong-request-id" : "3d9c330864a69c1d3aabc0274fe0bf6a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:53 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"ee6c002fb41818ef8f16c3a3cd329608\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d9100517-a8a4-40ab-9f1c-fb200d6c7a67", + "persistent" : true, + "scenarioName" : "scenario-22-api-manual_gateways-ajYQYsZpoj", + "requiredScenarioState" : "scenario-22-api-manual_gateways-ajYQYsZpoj-3", + "newScenarioState" : "scenario-22-api-manual_gateways-ajYQYsZpoj-4", + "insertionIndex" : 143 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json b/mock/mappings/api_manual_tax_calculators-d33a5a3d-6eb2-4f2f-88bf-6804e2c3ac34.json similarity index 54% rename from mock/mappings/manual_tax_calculators-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json rename to mock/mappings/api_manual_tax_calculators-d33a5a3d-6eb2-4f2f-88bf-6804e2c3ac34.json index b816dd5..6e14325 100644 --- a/mock/mappings/manual_tax_calculators-ee90cbcc-44cf-40bf-8d88-f76a6eb93716.json +++ b/mock/mappings/api_manual_tax_calculators-d33a5a3d-6eb2-4f2f-88bf-6804e2c3ac34.json @@ -1,8 +1,8 @@ { - "id" : "ee90cbcc-44cf-40bf-8d88-f76a6eb93716", - "name" : "manual_tax_calculators", + "id" : "d33a5a3d-6eb2-4f2f-88bf-6804e2c3ac34", + "name" : "api_manual_tax_calculators", "request" : { - "url" : "/manual_tax_calculators", + "url" : "/api/manual_tax_calculators", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"},\"name\":\"Incentro Manual Tax Calculator\",\"reference\":null,\"reference_origin\":null},\"type\":\"manual_tax_calculators\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:03.975Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01c46a418ae4c2e30b9c98989378046e56d5219a0f3d5586d2f16d8c1f635dea\"}}}", + "body" : "{\"data\":{\"id\":\"byXxMTpBky\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T16:05:54.066Z\",\"updated_at\":\"2024-10-24T16:05:54.066Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e9ca1fffee4ca3cf5ab9c7598dbf23e5ad59b09dc979eacb277708f16f3e5f88\"}}}", "headers" : { - "x-request-id" : "a04d022c-2b77-46fe-9596-c14e2070a83b", - "x-kong-upstream-latency" : "36", + "x-request-id" : "8100fe6d-03a3-4a84-afed-e68328851c98", + "x-kong-upstream-latency" : "21", "X-Ratelimit-Remaining" : "76", - "x-kong-request-id" : "d8017222a0884a04cc45630f71402337", + "x-kong-request-id" : "1edaa04ad74a4c3f2ffa5e41d92fdc6d", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:03 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:54 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"92f2a7142c4f10878e6a588e5ec553d1\"", + "etag" : "W/\"8e4e753168b75dfcd3ba28b15c1252f3\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "ee90cbcc-44cf-40bf-8d88-f76a6eb93716", + "uuid" : "d33a5a3d-6eb2-4f2f-88bf-6804e2c3ac34", "persistent" : true, - "insertionIndex" : 135 + "insertionIndex" : 140 } \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_byxxmtpbky-13b5fea9-82f8-4c8a-989b-8f2d0c02591e.json b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-13b5fea9-82f8-4c8a-989b-8f2d0c02591e.json new file mode 100644 index 0000000..84eab48 --- /dev/null +++ b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-13b5fea9-82f8-4c8a-989b-8f2d0c02591e.json @@ -0,0 +1,38 @@ +{ + "id" : "13b5fea9-82f8-4c8a-989b-8f2d0c02591e", + "name" : "api_manual_tax_calculators_byxxmtpbky", + "request" : { + "url" : "/api/manual_tax_calculators/byXxMTpBky", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"byXxMTpBky\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator Changed\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T16:05:54.066Z\",\"updated_at\":\"2024-10-24T16:05:54.860Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"51e0bd868be59fd950fc50322e6b211884ef1f28a89813ee009ac32d59cc9c2e\"}}}", + "headers" : { + "x-request-id" : "b6b8d64d-3506-4713-b0e9-5f4189684bca", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "30", + "x-kong-request-id" : "fcbbbd5e6d63a75edc39be77c0a05b59", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:55 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"500b6eb0b8de2c014bd2b3b7e7349160\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "13b5fea9-82f8-4c8a-989b-8f2d0c02591e", + "persistent" : true, + "scenarioName" : "scenario-21-api-manual_tax_calculators-byXxMTpBky", + "requiredScenarioState" : "scenario-21-api-manual_tax_calculators-byXxMTpBky-3", + "newScenarioState" : "scenario-21-api-manual_tax_calculators-byXxMTpBky-4", + "insertionIndex" : 136 +} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-1a0181cf-9509-4d0d-9b5e-08ec1734d421.json similarity index 60% rename from mock/mappings/manual_tax_calculators_evvrmtjxav-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json rename to mock/mappings/api_manual_tax_calculators_byxxmtpbky-1a0181cf-9509-4d0d-9b5e-08ec1734d421.json index d829b39..97e74ba 100644 --- a/mock/mappings/manual_tax_calculators_evvrmtjxav-4b525f45-1d07-4891-9879-7fd4cccd1dd5.json +++ b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-1a0181cf-9509-4d0d-9b5e-08ec1734d421.json @@ -1,22 +1,22 @@ { - "id" : "4b525f45-1d07-4891-9879-7fd4cccd1dd5", - "name" : "manual_tax_calculators_evvrmtjxav", + "id" : "1a0181cf-9509-4d0d-9b5e-08ec1734d421", + "name" : "api_manual_tax_calculators_byxxmtpbky", "request" : { - "url" : "/manual_tax_calculators/EvVRMTJxAv", + "url" : "/api/manual_tax_calculators/byXxMTpBky", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "ab0c4b90-e9a3-445a-9bf5-f124e3baef19", - "x-kong-upstream-latency" : "10", + "x-request-id" : "bc30aab7-bfc7-4e3f-aed4-745deadf2ff7", + "x-kong-upstream-latency" : "7", "X-Ratelimit-Remaining" : "27", - "x-kong-request-id" : "12690b17ce13c468c6220e4095587b23", + "x-kong-request-id" : "6ee95327b80512744d198a137d30bd00", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:05 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:56 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "4b525f45-1d07-4891-9879-7fd4cccd1dd5", + "uuid" : "1a0181cf-9509-4d0d-9b5e-08ec1734d421", "persistent" : true, - "scenarioName" : "scenario-21-manual_tax_calculators-EvVRMTJxAv", - "requiredScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-4", - "insertionIndex" : 129 + "scenarioName" : "scenario-21-api-manual_tax_calculators-byXxMTpBky", + "requiredScenarioState" : "scenario-21-api-manual_tax_calculators-byXxMTpBky-4", + "insertionIndex" : 134 } \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-3aa83e0a-23cf-4379-867a-01111f38a2ca.json similarity index 54% rename from mock/mappings/manual_tax_calculators_evvrmtjxav-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json rename to mock/mappings/api_manual_tax_calculators_byxxmtpbky-3aa83e0a-23cf-4379-867a-01111f38a2ca.json index e2069d5..facaac0 100644 --- a/mock/mappings/manual_tax_calculators_evvrmtjxav-e8b74286-bccf-4f9f-b4bd-bab7233f987a.json +++ b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-3aa83e0a-23cf-4379-867a-01111f38a2ca.json @@ -1,40 +1,40 @@ { - "id" : "e8b74286-bccf-4f9f-b4bd-bab7233f987a", - "name" : "manual_tax_calculators_evvrmtjxav", + "id" : "3aa83e0a-23cf-4379-867a-01111f38a2ca", + "name" : "api_manual_tax_calculators_byxxmtpbky", "request" : { - "url" : "/manual_tax_calculators/EvVRMTJxAv", + "url" : "/api/manual_tax_calculators/byXxMTpBky", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"},\"name\":\"Incentro Manual Tax Calculator Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"},\"name\":\"Incentro Manual Tax Calculator Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"byXxMTpBky\",\"type\":\"manual_tax_calculators\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator Changed\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:04.791Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"cd727d42378a79b8a5c25cab062118b7d8030a7fd047ce6e14102e10c2232a16\"}}}", + "body" : "{\"data\":{\"id\":\"byXxMTpBky\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator Changed\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T16:05:54.066Z\",\"updated_at\":\"2024-10-24T16:05:54.860Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4bee34bf05ef456d01c063a2415cb90f30b75687beb2deb1447591af502c0720\"}}}", "headers" : { - "x-request-id" : "ab10c6bf-f515-44b0-84b8-fa866840f7f5", - "x-kong-upstream-latency" : "20", + "x-request-id" : "316213e6-ae07-4459-8a3e-96908cf49395", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "84", - "x-kong-request-id" : "9cc5e504a464cb2d34b22c63acd43611", + "x-kong-request-id" : "c322e76a11dd7a6f855bae0decb4e84f", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:04 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:54 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"dae4cd491ac6546b5af06835912fda10\"", + "etag" : "W/\"611dfd95c36e4b79eb323bb0605a13a1\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "e8b74286-bccf-4f9f-b4bd-bab7233f987a", + "uuid" : "3aa83e0a-23cf-4379-867a-01111f38a2ca", "persistent" : true, - "insertionIndex" : 132 + "insertionIndex" : 137 } \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_byxxmtpbky-8f7b3836-82e0-4c1b-b66f-06817f5f38b5.json b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-8f7b3836-82e0-4c1b-b66f-06817f5f38b5.json new file mode 100644 index 0000000..61e3438 --- /dev/null +++ b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-8f7b3836-82e0-4c1b-b66f-06817f5f38b5.json @@ -0,0 +1,38 @@ +{ + "id" : "8f7b3836-82e0-4c1b-b66f-06817f5f38b5", + "name" : "api_manual_tax_calculators_byxxmtpbky", + "request" : { + "url" : "/api/manual_tax_calculators/byXxMTpBky", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"byXxMTpBky\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T16:05:54.066Z\",\"updated_at\":\"2024-10-24T16:05:54.066Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1c1efe2b352b7f3e5f490314b830e86fd142b756bc5fc1673fd672428b307b20\"}}}", + "headers" : { + "x-request-id" : "cb468a6b-336e-48c2-85b7-d9e098a36925", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "30", + "x-kong-request-id" : "464f5e3a50f4327b80ec2c75729c8743", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:54 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"7bcaccf5e76dd113e1584ce98d8c86ba\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "8f7b3836-82e0-4c1b-b66f-06817f5f38b5", + "persistent" : true, + "scenarioName" : "scenario-21-api-manual_tax_calculators-byXxMTpBky", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-21-api-manual_tax_calculators-byXxMTpBky-2", + "insertionIndex" : 139 +} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_byxxmtpbky-916a503d-4981-4f2f-a7a1-988d13a65c7d.json b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-916a503d-4981-4f2f-a7a1-988d13a65c7d.json new file mode 100644 index 0000000..ce50329 --- /dev/null +++ b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-916a503d-4981-4f2f-a7a1-988d13a65c7d.json @@ -0,0 +1,38 @@ +{ + "id" : "916a503d-4981-4f2f-a7a1-988d13a65c7d", + "name" : "api_manual_tax_calculators_byxxmtpbky", + "request" : { + "url" : "/api/manual_tax_calculators/byXxMTpBky", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"byXxMTpBky\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T16:05:54.066Z\",\"updated_at\":\"2024-10-24T16:05:54.066Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/byXxMTpBky/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6c79132652ebc2bacd14533a70a7ebef91eda76ce5ca8fad3e8fd8bc7b79bcd3\"}}}", + "headers" : { + "x-request-id" : "e28d167f-159b-4e94-9f89-1c01ce896ef4", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "29", + "x-kong-request-id" : "4184d83d2b5b1e63b45d01105d04142d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:54 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c8ee1546d6c476d1335c630b1c3378e3\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "916a503d-4981-4f2f-a7a1-988d13a65c7d", + "persistent" : true, + "scenarioName" : "scenario-21-api-manual_tax_calculators-byXxMTpBky", + "requiredScenarioState" : "scenario-21-api-manual_tax_calculators-byXxMTpBky-2", + "newScenarioState" : "scenario-21-api-manual_tax_calculators-byXxMTpBky-3", + "insertionIndex" : 138 +} \ No newline at end of file diff --git a/mock/mappings/api_manual_tax_calculators_byxxmtpbky-9df420e0-46b9-486e-9164-e8692cafa142.json b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-9df420e0-46b9-486e-9164-e8692cafa142.json new file mode 100644 index 0000000..f996fe7 --- /dev/null +++ b/mock/mappings/api_manual_tax_calculators_byxxmtpbky-9df420e0-46b9-486e-9164-e8692cafa142.json @@ -0,0 +1,32 @@ +{ + "id" : "9df420e0-46b9-486e-9164-e8692cafa142", + "name" : "api_manual_tax_calculators_byxxmtpbky", + "request" : { + "url" : "/api/manual_tax_calculators/byXxMTpBky", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "d1548d9f-285e-4b3e-b0b2-4fe07c971505", + "x-kong-upstream-latency" : "33", + "X-Ratelimit-Remaining" : "76", + "x-kong-request-id" : "99554a1170055d1748d0c10f0816d808", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:55 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "cache-control" : "no-cache", + "accept-ranges" : "bytes" + } + }, + "uuid" : "9df420e0-46b9-486e-9164-e8692cafa142", + "persistent" : true, + "insertionIndex" : 135 +} \ No newline at end of file diff --git a/mock/mappings/api_markets-1a87d54e-5d2d-4bf8-b762-1813dff8f641.json b/mock/mappings/api_markets-1a87d54e-5d2d-4bf8-b762-1813dff8f641.json new file mode 100644 index 0000000..b44dcc0 --- /dev/null +++ b/mock/mappings/api_markets-1a87d54e-5d2d-4bf8-b762-1813dff8f641.json @@ -0,0 +1,40 @@ +{ + "id" : "1a87d54e-5d2d-4bf8-b762-1813dff8f641", + "name" : "api_markets", + "request" : { + "url" : "/api/markets", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"checkout_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"external_prices_url\":null,\"facebook_pixel_id\":\"pixel\",\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Market\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"kZXEvSyREa\",\"type\":\"inventory_models\"}},\"merchant\":{\"data\":{\"id\":\"qnzZLHQmpn\",\"type\":\"merchants\"}},\"price_list\":{\"data\":{\"id\":\"AkYYaCErEk\",\"type\":\"price_lists\"}}},\"type\":\"markets\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 201, + "body" : "{\"data\":{\"id\":\"XjBdyhLYOl\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl\"},\"attributes\":{\"number\":27916,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"b1f95c80cd9123cc248c0635f2acd4ed\",\"created_at\":\"2024-10-24T16:05:57.059Z\",\"updated_at\":\"2024-10-24T16:05:57.059Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"96fdba63fed54a576b2df749e97ea952f449f0a052e9b1417756b48f76eacba3\"}}}", + "headers" : { + "x-request-id" : "89a4f479-2beb-445d-810e-553b61e96a55", + "x-kong-upstream-latency" : "93", + "X-Ratelimit-Remaining" : "70", + "x-kong-request-id" : "efbb014a021e711ebdfe802f8a53590d", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:57 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"7465123d51f26ba4163728cf97375b0a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "1a87d54e-5d2d-4bf8-b762-1813dff8f641", + "persistent" : true, + "insertionIndex" : 128 +} \ No newline at end of file diff --git a/mock/mappings/api_markets_xjbdyhlyol-2329486c-1492-47cc-a608-519ef1c30e58.json b/mock/mappings/api_markets_xjbdyhlyol-2329486c-1492-47cc-a608-519ef1c30e58.json new file mode 100644 index 0000000..bbcd21b --- /dev/null +++ b/mock/mappings/api_markets_xjbdyhlyol-2329486c-1492-47cc-a608-519ef1c30e58.json @@ -0,0 +1,40 @@ +{ + "id" : "2329486c-1492-47cc-a608-519ef1c30e58", + "name" : "api_markets_xjbdyhlyol", + "request" : { + "url" : "/api/markets/XjBdyhLYOl", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"checkout_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"external_prices_url\":null,\"facebook_pixel_id\":\"pixelchanged\",\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Market Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"XjBdyhLYOl\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"kZXEvSyREa\",\"type\":\"inventory_models\"}},\"merchant\":{\"data\":{\"id\":\"qnzZLHQmpn\",\"type\":\"merchants\"}},\"price_list\":{\"data\":{\"id\":\"AkYYaCErEk\",\"type\":\"price_lists\"}}},\"type\":\"markets\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XjBdyhLYOl\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl\"},\"attributes\":{\"number\":27916,\"name\":\"Incentro Market Changed\",\"code\":null,\"facebook_pixel_id\":\"pixelchanged\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"b1f95c80cd9123cc248c0635f2acd4ed\",\"created_at\":\"2024-10-24T16:05:57.059Z\",\"updated_at\":\"2024-10-24T16:05:59.317Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"58a00d60a25b398b773ae2989fcbeda86c9642bb38583daaae73f03000ffd84b\"}}}", + "headers" : { + "x-request-id" : "fe2e6960-36d2-4b49-b10d-79a88d198047", + "x-kong-upstream-latency" : "68", + "X-Ratelimit-Remaining" : "83", + "x-kong-request-id" : "fd184012ca3da84fddbb2e30fa67f60c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:59 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"dd39b65f81c20c15f98bd0e70539fd0f\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "2329486c-1492-47cc-a608-519ef1c30e58", + "persistent" : true, + "insertionIndex" : 115 +} \ No newline at end of file diff --git a/mock/mappings/api_markets_xjbdyhlyol-37c4e23c-d482-4ca8-82c8-84b556829529.json b/mock/mappings/api_markets_xjbdyhlyol-37c4e23c-d482-4ca8-82c8-84b556829529.json new file mode 100644 index 0000000..dfe4e9f --- /dev/null +++ b/mock/mappings/api_markets_xjbdyhlyol-37c4e23c-d482-4ca8-82c8-84b556829529.json @@ -0,0 +1,39 @@ +{ + "id" : "37c4e23c-d482-4ca8-82c8-84b556829529", + "name" : "api_markets_xjbdyhlyol", + "request" : { + "url" : "/api/markets/XjBdyhLYOl", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XjBdyhLYOl\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl\"},\"attributes\":{\"number\":27916,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"b1f95c80cd9123cc248c0635f2acd4ed\",\"created_at\":\"2024-10-24T16:05:57.059Z\",\"updated_at\":\"2024-10-24T16:05:57.059Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d342fcaacb3390e98223f7ed88c5a33c1c4077770595510712ec9ecb4dffb057\"}}}", + "headers" : { + "x-request-id" : "b0334476-7b65-4599-bfe2-991123fda553", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "475", + "x-kong-request-id" : "8b96874fe15aea14e00c3e798f0c931c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:59 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"aa2a77382211b4c38d8851bc447663e9\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "37c4e23c-d482-4ca8-82c8-84b556829529", + "persistent" : true, + "scenarioName" : "scenario-15-api-markets-XjBdyhLYOl", + "requiredScenarioState" : "scenario-15-api-markets-XjBdyhLYOl-2", + "newScenarioState" : "scenario-15-api-markets-XjBdyhLYOl-3", + "insertionIndex" : 116 +} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-db4cca06-bf19-4c77-9816-47f41c996816.json b/mock/mappings/api_markets_xjbdyhlyol-38f45706-9445-49e4-a98e-4914a336f787.json similarity index 60% rename from mock/mappings/markets_rjepzhzyro-db4cca06-bf19-4c77-9816-47f41c996816.json rename to mock/mappings/api_markets_xjbdyhlyol-38f45706-9445-49e4-a98e-4914a336f787.json index e7b0840..c6a2578 100644 --- a/mock/mappings/markets_rjepzhzyro-db4cca06-bf19-4c77-9816-47f41c996816.json +++ b/mock/mappings/api_markets_xjbdyhlyol-38f45706-9445-49e4-a98e-4914a336f787.json @@ -1,22 +1,22 @@ { - "id" : "db4cca06-bf19-4c77-9816-47f41c996816", - "name" : "markets_rjepzhzyro", + "id" : "38f45706-9445-49e4-a98e-4914a336f787", + "name" : "api_markets_xjbdyhlyol", "request" : { - "url" : "/markets/rjEPzhzyRo", + "url" : "/api/markets/XjBdyhLYOl", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "ef62f8d6-5fe7-46d8-964a-77ca28f50f44", - "x-kong-upstream-latency" : "14", + "x-request-id" : "b96539a1-8e37-4c1d-84c7-5df1a643060e", + "x-kong-upstream-latency" : "8", "X-Ratelimit-Remaining" : "471", - "x-kong-request-id" : "18e6b73969b95b17e4d1973bc3042128", + "x-kong-request-id" : "45acfb3df7e337029a866c2482537238", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", + "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:14 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:03 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -29,9 +29,9 @@ "Age" : "0" } }, - "uuid" : "db4cca06-bf19-4c77-9816-47f41c996816", + "uuid" : "38f45706-9445-49e4-a98e-4914a336f787", "persistent" : true, - "scenarioName" : "scenario-15-markets-rjEPzhzyRo", - "requiredScenarioState" : "scenario-15-markets-rjEPzhzyRo-4", - "insertionIndex" : 97 + "scenarioName" : "scenario-15-api-markets-XjBdyhLYOl", + "requiredScenarioState" : "scenario-15-api-markets-XjBdyhLYOl-4", + "insertionIndex" : 102 } \ No newline at end of file diff --git a/mock/mappings/api_markets_xjbdyhlyol-5bf45d4e-7d5d-41ac-962c-e41def54e8c0.json b/mock/mappings/api_markets_xjbdyhlyol-5bf45d4e-7d5d-41ac-962c-e41def54e8c0.json new file mode 100644 index 0000000..a8417cd --- /dev/null +++ b/mock/mappings/api_markets_xjbdyhlyol-5bf45d4e-7d5d-41ac-962c-e41def54e8c0.json @@ -0,0 +1,39 @@ +{ + "id" : "5bf45d4e-7d5d-41ac-962c-e41def54e8c0", + "name" : "api_markets_xjbdyhlyol", + "request" : { + "url" : "/api/markets/XjBdyhLYOl", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XjBdyhLYOl\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl\"},\"attributes\":{\"number\":27916,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"b1f95c80cd9123cc248c0635f2acd4ed\",\"created_at\":\"2024-10-24T16:05:57.059Z\",\"updated_at\":\"2024-10-24T16:05:57.059Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d342fcaacb3390e98223f7ed88c5a33c1c4077770595510712ec9ecb4dffb057\"}}}", + "headers" : { + "x-request-id" : "b0334476-7b65-4599-bfe2-991123fda553", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "478", + "x-kong-request-id" : "8b96874fe15aea14e00c3e798f0c931c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:58 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"aa2a77382211b4c38d8851bc447663e9\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "5bf45d4e-7d5d-41ac-962c-e41def54e8c0", + "persistent" : true, + "scenarioName" : "scenario-15-api-markets-XjBdyhLYOl", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-15-api-markets-XjBdyhLYOl-2", + "insertionIndex" : 122 +} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-ec677699-f440-47be-b662-b24e3ad09fdb.json b/mock/mappings/api_markets_xjbdyhlyol-ce01078a-2202-4323-996d-f07551474cbb.json similarity index 56% rename from mock/mappings/markets_rjepzhzyro-ec677699-f440-47be-b662-b24e3ad09fdb.json rename to mock/mappings/api_markets_xjbdyhlyol-ce01078a-2202-4323-996d-f07551474cbb.json index 1263647..549c129 100644 --- a/mock/mappings/markets_rjepzhzyro-ec677699-f440-47be-b662-b24e3ad09fdb.json +++ b/mock/mappings/api_markets_xjbdyhlyol-ce01078a-2202-4323-996d-f07551474cbb.json @@ -1,21 +1,21 @@ { - "id" : "ec677699-f440-47be-b662-b24e3ad09fdb", - "name" : "markets_rjepzhzyro", + "id" : "ce01078a-2202-4323-996d-f07551474cbb", + "name" : "api_markets_xjbdyhlyol", "request" : { - "url" : "/markets/rjEPzhzyRo", + "url" : "/api/markets/XjBdyhLYOl", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "4e5dfb65-0624-4668-bc81-484a0c5614a9", - "x-kong-upstream-latency" : "2024", + "x-request-id" : "f72c0c7a-23a0-4a46-a154-d3499feb2904", + "x-kong-upstream-latency" : "1324", "X-Ratelimit-Remaining" : "74", - "x-kong-request-id" : "3d3f714a5a13e425dfe2e56ca8c78207", + "x-kong-request-id" : "327f2e7f06bd507c28ecdf2022415b70", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:13 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:06:02 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "ec677699-f440-47be-b662-b24e3ad09fdb", + "uuid" : "ce01078a-2202-4323-996d-f07551474cbb", "persistent" : true, - "insertionIndex" : 102 + "insertionIndex" : 107 } \ No newline at end of file diff --git a/mock/mappings/api_markets_xjbdyhlyol-e61d926c-53db-40b4-87a3-27ca6fd5b2db.json b/mock/mappings/api_markets_xjbdyhlyol-e61d926c-53db-40b4-87a3-27ca6fd5b2db.json new file mode 100644 index 0000000..c068185 --- /dev/null +++ b/mock/mappings/api_markets_xjbdyhlyol-e61d926c-53db-40b4-87a3-27ca6fd5b2db.json @@ -0,0 +1,39 @@ +{ + "id" : "e61d926c-53db-40b4-87a3-27ca6fd5b2db", + "name" : "api_markets_xjbdyhlyol", + "request" : { + "url" : "/api/markets/XjBdyhLYOl", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"XjBdyhLYOl\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl\"},\"attributes\":{\"number\":27916,\"name\":\"Incentro Market Changed\",\"code\":null,\"facebook_pixel_id\":\"pixelchanged\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"b1f95c80cd9123cc248c0635f2acd4ed\",\"created_at\":\"2024-10-24T16:05:57.059Z\",\"updated_at\":\"2024-10-24T16:05:59.317Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/XjBdyhLYOl/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f6fdfe5b09c31fbf5d9a6172143ed0ae51e0bf2bebcb211daa6cb54edb548bb1\"}}}", + "headers" : { + "x-request-id" : "09964db0-268a-49c9-8da7-4d44ce4924fd", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "472", + "x-kong-request-id" : "86f9fe6b12f1ac13841d830a492d1d1f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:00 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"576fe85b3cb20bfb1254ae974be471d7\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "e61d926c-53db-40b4-87a3-27ca6fd5b2db", + "persistent" : true, + "scenarioName" : "scenario-15-api-markets-XjBdyhLYOl", + "requiredScenarioState" : "scenario-15-api-markets-XjBdyhLYOl-3", + "newScenarioState" : "scenario-15-api-markets-XjBdyhLYOl-4", + "insertionIndex" : 109 +} \ No newline at end of file diff --git a/mock/mappings/merchants-f862cb11-79fb-4849-8dc5-ab53304cfccc.json b/mock/mappings/api_merchants-5a60eda9-4898-4442-89ca-92945b3f8bec.json similarity index 52% rename from mock/mappings/merchants-f862cb11-79fb-4849-8dc5-ab53304cfccc.json rename to mock/mappings/api_merchants-5a60eda9-4898-4442-89ca-92945b3f8bec.json index 87c3679..ec7445f 100644 --- a/mock/mappings/merchants-f862cb11-79fb-4849-8dc5-ab53304cfccc.json +++ b/mock/mappings/api_merchants-5a60eda9-4898-4442-89ca-92945b3f8bec.json @@ -1,40 +1,40 @@ { - "id" : "f862cb11-79fb-4849-8dc5-ab53304cfccc", - "name" : "merchants", + "id" : "5a60eda9-4898-4442-89ca-92945b3f8bec", + "name" : "api_merchants", "request" : { - "url" : "/merchants", + "url" : "/api/merchants", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"name\":\"Incentro Merchant\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"address\":{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"name\":\"Incentro Merchant\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"address\":{\"data\":{\"id\":\"bAJxuPoYjJ\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:14.813Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8896cd944a305433342d9dff38b2ba33fb5030793185d6367d3cee82ef573af0\"}}}", + "body" : "{\"data\":{\"id\":\"mnYKRHXVVb\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T16:06:03.573Z\",\"updated_at\":\"2024-10-24T16:06:03.573Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b5825f33dc7274a168a05233db8bd91bb4a64785735434f4b992282e3ee150fb\"}}}", "headers" : { - "x-request-id" : "737ac2b0-882a-4979-8c3b-841e87e4bd1f", - "x-kong-upstream-latency" : "17", + "x-request-id" : "6f9d7a7d-5714-4ef8-be06-7ba11407952c", + "x-kong-upstream-latency" : "33", "X-Ratelimit-Remaining" : "68", - "x-kong-request-id" : "fe39a51d493c8f041599602cc055f247", + "x-kong-request-id" : "1b54005a036cea19f9724866ab98af6a", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:14 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:03 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"37ae2901afdc3d986018d843df4b1d39\"", + "etag" : "W/\"23593af285bd1c3bb6ceac7dbfb9e0dc\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "f862cb11-79fb-4849-8dc5-ab53304cfccc", + "uuid" : "5a60eda9-4898-4442-89ca-92945b3f8bec", "persistent" : true, - "insertionIndex" : 95 + "insertionIndex" : 100 } \ No newline at end of file diff --git a/mock/mappings/merchants-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json b/mock/mappings/api_merchants-beb1d70c-1b62-4b8e-a075-090681369210.json similarity index 51% rename from mock/mappings/merchants-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json rename to mock/mappings/api_merchants-beb1d70c-1b62-4b8e-a075-090681369210.json index 0527cad..17ea45b 100644 --- a/mock/mappings/merchants-ec7f3307-6453-4d6b-88a0-c76ce343e0e8.json +++ b/mock/mappings/api_merchants-beb1d70c-1b62-4b8e-a075-090681369210.json @@ -1,40 +1,40 @@ { - "id" : "ec7f3307-6453-4d6b-88a0-c76ce343e0e8", - "name" : "merchants", + "id" : "beb1d70c-1b62-4b8e-a075-090681369210", + "name" : "api_merchants", "request" : { - "url" : "/merchants", + "url" : "/api/merchants", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Merchant\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"address\":{\"data\":{\"id\":\"bzkoumknnk\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Merchant\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"address\":{\"data\":{\"id\":\"djekumgLRw\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:07.555Z\",\"updated_at\":\"2024-10-24T15:52:07.555Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4505be79b19e0a5f36d543bd397c8d2b410bacbc9d284d47a31d59bce8785d0e\"}}}", + "body" : "{\"data\":{\"id\":\"qnzZLHQmpn\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T16:05:56.910Z\",\"updated_at\":\"2024-10-24T16:05:56.910Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3f8dfd967e78ff7a547d4ef046ddf977e4e29dada72070b17200efd581c083f7\"}}}", "headers" : { - "x-request-id" : "df504221-29ac-40c1-bef5-54949608b382", - "x-kong-upstream-latency" : "28", + "x-request-id" : "efecab5b-5bf8-42cb-87d6-63ca3d7aa99c", + "x-kong-upstream-latency" : "21", "X-Ratelimit-Remaining" : "71", - "x-kong-request-id" : "958d5d3c74a8490580a0ca23ab3c9e77", + "x-kong-request-id" : "f12fa870d6a55a2887a0436f205a1736", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:56 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"d4034c32162bd3e5b41faf4a7def9cfa\"", + "etag" : "W/\"b9179b000b98263cf8cc03607438ebe3\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "ec7f3307-6453-4d6b-88a0-c76ce343e0e8", + "uuid" : "beb1d70c-1b62-4b8e-a075-090681369210", "persistent" : true, - "insertionIndex" : 124 + "insertionIndex" : 129 } \ No newline at end of file diff --git a/mock/mappings/api_merchants_mnykrhxvvb-0dcc7e2c-e4ed-4410-b6be-4956dffb54ba.json b/mock/mappings/api_merchants_mnykrhxvvb-0dcc7e2c-e4ed-4410-b6be-4956dffb54ba.json new file mode 100644 index 0000000..439c63a --- /dev/null +++ b/mock/mappings/api_merchants_mnykrhxvvb-0dcc7e2c-e4ed-4410-b6be-4956dffb54ba.json @@ -0,0 +1,38 @@ +{ + "id" : "0dcc7e2c-e4ed-4410-b6be-4956dffb54ba", + "name" : "api_merchants_mnykrhxvvb", + "request" : { + "url" : "/api/merchants/mnYKRHXVVb", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mnYKRHXVVb\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T16:06:03.573Z\",\"updated_at\":\"2024-10-24T16:06:03.573Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fb20b9e000ebd0102c94411a832be87ce279bde7a17c58be47e26ed0eb5f8251\"}}}", + "headers" : { + "x-request-id" : "8cc2bce6-a43f-40df-9377-6961014b2a41", + "x-kong-upstream-latency" : "94", + "X-Ratelimit-Remaining" : "14", + "x-kong-request-id" : "8a281f12bacba8047f4b6e191d89733d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:04 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"96448edd07f5ddecf71882fb770df413\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0dcc7e2c-e4ed-4410-b6be-4956dffb54ba", + "persistent" : true, + "scenarioName" : "scenario-13-api-merchants-mnYKRHXVVb", + "requiredScenarioState" : "scenario-13-api-merchants-mnYKRHXVVb-2", + "newScenarioState" : "scenario-13-api-merchants-mnYKRHXVVb-3", + "insertionIndex" : 96 +} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-16f65432-4b51-4f33-9e22-900c95d15ba4.json b/mock/mappings/api_merchants_mnykrhxvvb-23a1ad3c-d455-443b-9925-d8eac270a146.json similarity index 59% rename from mock/mappings/merchants_vxzdbhveom-16f65432-4b51-4f33-9e22-900c95d15ba4.json rename to mock/mappings/api_merchants_mnykrhxvvb-23a1ad3c-d455-443b-9925-d8eac270a146.json index 8295709..8684ee6 100644 --- a/mock/mappings/merchants_vxzdbhveom-16f65432-4b51-4f33-9e22-900c95d15ba4.json +++ b/mock/mappings/api_merchants_mnykrhxvvb-23a1ad3c-d455-443b-9925-d8eac270a146.json @@ -1,22 +1,22 @@ { - "id" : "16f65432-4b51-4f33-9e22-900c95d15ba4", - "name" : "merchants_vxzdbhveom", + "id" : "23a1ad3c-d455-443b-9925-d8eac270a146", + "name" : "api_merchants_mnykrhxvvb", "request" : { - "url" : "/merchants/vxZdBHVeOM", + "url" : "/api/merchants/mnYKRHXVVb", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "b063d2e3-d9c2-4ad8-bab5-8d257243eab9", - "x-kong-upstream-latency" : "6", + "x-request-id" : "42c80543-7c31-4717-bb91-ea2d1df4dcea", + "x-kong-upstream-latency" : "11", "X-Ratelimit-Remaining" : "10", - "x-kong-request-id" : "c0690a590e6e484424b169390997836e", + "x-kong-request-id" : "277da20ecaba2309a69ebf516b5ec751", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", + "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:17 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:06 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "16f65432-4b51-4f33-9e22-900c95d15ba4", + "uuid" : "23a1ad3c-d455-443b-9925-d8eac270a146", "persistent" : true, - "scenarioName" : "scenario-13-merchants-vxZdBHVeOM", - "requiredScenarioState" : "scenario-13-merchants-vxZdBHVeOM-4", - "insertionIndex" : 84 + "scenarioName" : "scenario-13-api-merchants-mnYKRHXVVb", + "requiredScenarioState" : "scenario-13-api-merchants-mnYKRHXVVb-4", + "insertionIndex" : 89 } \ No newline at end of file diff --git a/mock/mappings/api_merchants_mnykrhxvvb-a2cd0f42-3782-481d-bf2e-2d362a319668.json b/mock/mappings/api_merchants_mnykrhxvvb-a2cd0f42-3782-481d-bf2e-2d362a319668.json new file mode 100644 index 0000000..f80571d --- /dev/null +++ b/mock/mappings/api_merchants_mnykrhxvvb-a2cd0f42-3782-481d-bf2e-2d362a319668.json @@ -0,0 +1,38 @@ +{ + "id" : "a2cd0f42-3782-481d-bf2e-2d362a319668", + "name" : "api_merchants_mnykrhxvvb", + "request" : { + "url" : "/api/merchants/mnYKRHXVVb", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mnYKRHXVVb\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T16:06:03.573Z\",\"updated_at\":\"2024-10-24T16:06:03.573Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b36ef5646b2edd105441405f568e26ab87ac940f12f68b15f141000ff01eeb59\"}}}", + "headers" : { + "x-request-id" : "61348cc5-80d6-46d9-b62d-5dd4712f463d", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "16", + "x-kong-request-id" : "1303f33e49fef21884536c54495c6027", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:04 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"bd34f7500b9dca36f642420de88d333b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a2cd0f42-3782-481d-bf2e-2d362a319668", + "persistent" : true, + "scenarioName" : "scenario-13-api-merchants-mnYKRHXVVb", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-13-api-merchants-mnYKRHXVVb-2", + "insertionIndex" : 98 +} \ No newline at end of file diff --git a/mock/mappings/api_merchants_mnykrhxvvb-a3245254-223e-47e9-99cd-5e5fc2e19bb6.json b/mock/mappings/api_merchants_mnykrhxvvb-a3245254-223e-47e9-99cd-5e5fc2e19bb6.json new file mode 100644 index 0000000..cd50819 --- /dev/null +++ b/mock/mappings/api_merchants_mnykrhxvvb-a3245254-223e-47e9-99cd-5e5fc2e19bb6.json @@ -0,0 +1,40 @@ +{ + "id" : "a3245254-223e-47e9-99cd-5e5fc2e19bb6", + "name" : "api_merchants_mnykrhxvvb", + "request" : { + "url" : "/api/merchants/mnYKRHXVVb", + "method" : "PATCH", + "bodyPatterns" : [ { + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"name\":\"Incentro Updated Merchant\",\"reference\":null,\"reference_origin\":null},\"id\":\"mnYKRHXVVb\",\"relationships\":{\"address\":{\"data\":{\"id\":\"bAJxuPoYjJ\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mnYKRHXVVb\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb\"},\"attributes\":{\"name\":\"Incentro Updated Merchant\",\"created_at\":\"2024-10-24T16:06:03.573Z\",\"updated_at\":\"2024-10-24T16:06:04.905Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1319479cabaeb2578111fcc295b0ffe126550cc4abfe4a1a290a88a87925ef06\"}}}", + "headers" : { + "x-request-id" : "b2fb8f9d-d8f4-47a5-b1d0-cb097f8cfa55", + "x-kong-upstream-latency" : "21", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "14f11b37c257ba5221332f1fd539903c", + "x-download-options" : "noopen", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:06:04 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"80058a771df3b5ebee60265b6deb3d75\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a3245254-223e-47e9-99cd-5e5fc2e19bb6", + "persistent" : true, + "insertionIndex" : 95 +} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json b/mock/mappings/api_merchants_mnykrhxvvb-c921784a-4877-4ab2-b25e-35ebb612969e.json similarity index 59% rename from mock/mappings/merchants_vxzdbhveom-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json rename to mock/mappings/api_merchants_mnykrhxvvb-c921784a-4877-4ab2-b25e-35ebb612969e.json index 7769853..b05145b 100644 --- a/mock/mappings/merchants_vxzdbhveom-aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f.json +++ b/mock/mappings/api_merchants_mnykrhxvvb-c921784a-4877-4ab2-b25e-35ebb612969e.json @@ -1,21 +1,21 @@ { - "id" : "aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f", - "name" : "merchants_vxzdbhveom", + "id" : "c921784a-4877-4ab2-b25e-35ebb612969e", + "name" : "api_merchants_mnykrhxvvb", "request" : { - "url" : "/merchants/vxZdBHVeOM", + "url" : "/api/merchants/mnYKRHXVVb", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "8eeeb444-f4d4-4809-9815-fa2137051fa7", - "x-kong-upstream-latency" : "16", + "x-request-id" : "172bc885-3557-42aa-9a84-166f4f568451", + "x-kong-upstream-latency" : "36", "X-Ratelimit-Remaining" : "69", - "x-kong-request-id" : "e599022d3267076e34d041090325e36b", + "x-kong-request-id" : "fbe10740e4c7665162b23735b1466464", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:05 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "aa7d8e8f-a71d-4373-8ef5-32eb34cdc64f", + "uuid" : "c921784a-4877-4ab2-b25e-35ebb612969e", "persistent" : true, - "insertionIndex" : 87 + "insertionIndex" : 92 } \ No newline at end of file diff --git a/mock/mappings/api_merchants_mnykrhxvvb-ee2e07fe-8723-4d40-8da3-bf3a060d051d.json b/mock/mappings/api_merchants_mnykrhxvvb-ee2e07fe-8723-4d40-8da3-bf3a060d051d.json new file mode 100644 index 0000000..b18b491 --- /dev/null +++ b/mock/mappings/api_merchants_mnykrhxvvb-ee2e07fe-8723-4d40-8da3-bf3a060d051d.json @@ -0,0 +1,38 @@ +{ + "id" : "ee2e07fe-8723-4d40-8da3-bf3a060d051d", + "name" : "api_merchants_mnykrhxvvb", + "request" : { + "url" : "/api/merchants/mnYKRHXVVb", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mnYKRHXVVb\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb\"},\"attributes\":{\"name\":\"Incentro Updated Merchant\",\"created_at\":\"2024-10-24T16:06:03.573Z\",\"updated_at\":\"2024-10-24T16:06:04.905Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/mnYKRHXVVb/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"43a6a4a458426e0c8931b2ac1a78f81d24825f0f580a2cfe9d0bb7ff9a1dd036\"}}}", + "headers" : { + "x-request-id" : "ced9785d-2c37-4e95-bba6-0b14e436bb26", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "12", + "x-kong-request-id" : "aee6753b2befae64d537db02cc2b573c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:05 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"561cfd18cf84990b8039c44537bf884b\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "ee2e07fe-8723-4d40-8da3-bf3a060d051d", + "persistent" : true, + "scenarioName" : "scenario-13-api-merchants-mnYKRHXVVb", + "requiredScenarioState" : "scenario-13-api-merchants-mnYKRHXVVb-3", + "newScenarioState" : "scenario-13-api-merchants-mnYKRHXVVb-4", + "insertionIndex" : 93 +} \ No newline at end of file diff --git a/mock/mappings/addresses_bazyuqxgqj-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json b/mock/mappings/api_merchants_qnzzlhqmpn-6e25a9cc-e70b-429c-afd9-30209e6c21a1.json similarity index 59% rename from mock/mappings/addresses_bazyuqxgqj-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json rename to mock/mappings/api_merchants_qnzzlhqmpn-6e25a9cc-e70b-429c-afd9-30209e6c21a1.json index 8a47c7a..3963987 100644 --- a/mock/mappings/addresses_bazyuqxgqj-6d4798f2-8ae5-4aaf-bd44-5656e4256025.json +++ b/mock/mappings/api_merchants_qnzzlhqmpn-6e25a9cc-e70b-429c-afd9-30209e6c21a1.json @@ -1,21 +1,21 @@ { - "id" : "6d4798f2-8ae5-4aaf-bd44-5656e4256025", - "name" : "addresses_bazyuqxgqj", + "id" : "6e25a9cc-e70b-429c-afd9-30209e6c21a1", + "name" : "api_merchants_qnzzlhqmpn", "request" : { - "url" : "/addresses/baZYuqxgqJ", + "url" : "/api/merchants/qnzZLHQmpn", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "cd270d6b-8c3e-4ce9-ba8a-467bcf86de3a", + "x-request-id" : "7e5fcaab-95a6-4f6b-84e5-044e7b681428", "x-kong-upstream-latency" : "24", - "X-Ratelimit-Remaining" : "99", - "x-kong-request-id" : "999ca31c2b49d166e49ce95fe784a752", + "X-Ratelimit-Remaining" : "72", + "x-kong-request-id" : "98ff36656b728f77ab7c3552f26ae92a", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:27 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:02 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "6d4798f2-8ae5-4aaf-bd44-5656e4256025", + "uuid" : "6e25a9cc-e70b-429c-afd9-30209e6c21a1", "persistent" : true, - "insertionIndex" : 279 + "insertionIndex" : 105 } \ No newline at end of file diff --git a/mock/mappings/api_merchants_qnzzlhqmpn-a6a362c8-fef1-4a6d-9002-7bf34badbf8a.json b/mock/mappings/api_merchants_qnzzlhqmpn-a6a362c8-fef1-4a6d-9002-7bf34badbf8a.json new file mode 100644 index 0000000..df724ae --- /dev/null +++ b/mock/mappings/api_merchants_qnzzlhqmpn-a6a362c8-fef1-4a6d-9002-7bf34badbf8a.json @@ -0,0 +1,37 @@ +{ + "id" : "a6a362c8-fef1-4a6d-9002-7bf34badbf8a", + "name" : "api_merchants_qnzzlhqmpn", + "request" : { + "url" : "/api/merchants/qnzZLHQmpn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qnzZLHQmpn\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T16:05:56.910Z\",\"updated_at\":\"2024-10-24T16:05:56.910Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"166c1b5b2019b2e3261e4c91e51caddc276e57f32c165528b29bb4211d4e5852\"}}}", + "headers" : { + "x-request-id" : "d240297d-64f7-4467-b00b-372629a02c54", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "18", + "x-kong-request-id" : "65f9963cf7b58753380d4101bbb00274", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:00 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b5f8423b74806ee0a4ecc3e0e3548e95\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "a6a362c8-fef1-4a6d-9002-7bf34badbf8a", + "persistent" : true, + "scenarioName" : "scenario-16-api-merchants-qnzZLHQmpn", + "requiredScenarioState" : "scenario-16-api-merchants-qnzZLHQmpn-3", + "insertionIndex" : 110 +} \ No newline at end of file diff --git a/mock/mappings/api_merchants_qnzzlhqmpn-b10444ed-626b-4800-b8bc-2c7f6ad30f7f.json b/mock/mappings/api_merchants_qnzzlhqmpn-b10444ed-626b-4800-b8bc-2c7f6ad30f7f.json new file mode 100644 index 0000000..8e9cd95 --- /dev/null +++ b/mock/mappings/api_merchants_qnzzlhqmpn-b10444ed-626b-4800-b8bc-2c7f6ad30f7f.json @@ -0,0 +1,38 @@ +{ + "id" : "b10444ed-626b-4800-b8bc-2c7f6ad30f7f", + "name" : "api_merchants_qnzzlhqmpn", + "request" : { + "url" : "/api/merchants/qnzZLHQmpn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qnzZLHQmpn\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T16:05:56.910Z\",\"updated_at\":\"2024-10-24T16:05:56.910Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ba0bb37e59f175f03c4a7080d05fa509b16318d87123069e883bb6013248190a\"}}}", + "headers" : { + "x-request-id" : "90375452-7926-4e74-a12c-3d1e6039f7aa", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "21", + "x-kong-request-id" : "9af01f056cd32e59e9a51f73d3209840", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:58 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"b7b9d377e4b3b5ab75c7433f04d9a74c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "b10444ed-626b-4800-b8bc-2c7f6ad30f7f", + "persistent" : true, + "scenarioName" : "scenario-16-api-merchants-qnzZLHQmpn", + "requiredScenarioState" : "scenario-16-api-merchants-qnzZLHQmpn-2", + "newScenarioState" : "scenario-16-api-merchants-qnzZLHQmpn-3", + "insertionIndex" : 117 +} \ No newline at end of file diff --git a/mock/mappings/api_merchants_qnzzlhqmpn-e8517a23-a2b8-450b-9a6e-92cc383d1f1c.json b/mock/mappings/api_merchants_qnzzlhqmpn-e8517a23-a2b8-450b-9a6e-92cc383d1f1c.json new file mode 100644 index 0000000..8c2e34b --- /dev/null +++ b/mock/mappings/api_merchants_qnzzlhqmpn-e8517a23-a2b8-450b-9a6e-92cc383d1f1c.json @@ -0,0 +1,38 @@ +{ + "id" : "e8517a23-a2b8-450b-9a6e-92cc383d1f1c", + "name" : "api_merchants_qnzzlhqmpn", + "request" : { + "url" : "/api/merchants/qnzZLHQmpn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"qnzZLHQmpn\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T16:05:56.910Z\",\"updated_at\":\"2024-10-24T16:05:56.910Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/qnzZLHQmpn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c065c2654e3ded1dd50792f6c5ef146a234066b955124b9c7af092910ea8e486\"}}}", + "headers" : { + "x-request-id" : "6193ff18-180a-45c8-a36e-322823054fb8", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "24", + "x-kong-request-id" : "b41c31549ff9e90023963e3f7d760665", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:58 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"420d3dc9a842c9e68e541e5bd81553fb\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "e8517a23-a2b8-450b-9a6e-92cc383d1f1c", + "persistent" : true, + "scenarioName" : "scenario-16-api-merchants-qnzZLHQmpn", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-16-api-merchants-qnzZLHQmpn-2", + "insertionIndex" : 123 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods-d1c94c81-7b2a-4385-b232-7b37c265255d.json b/mock/mappings/api_payment_methods-e12b00e4-7260-414e-981d-253f57de4613.json similarity index 58% rename from mock/mappings/payment_methods-d1c94c81-7b2a-4385-b232-7b37c265255d.json rename to mock/mappings/api_payment_methods-e12b00e4-7260-414e-981d-253f57de4613.json index c42e18d..0e1238e 100644 --- a/mock/mappings/payment_methods-d1c94c81-7b2a-4385-b232-7b37c265255d.json +++ b/mock/mappings/api_payment_methods-e12b00e4-7260-414e-981d-253f57de4613.json @@ -1,40 +1,40 @@ { - "id" : "d1c94c81-7b2a-4385-b232-7b37c265255d", - "name" : "payment_methods", + "id" : "e12b00e4-7260-414e-981d-253f57de4613", + "name" : "api_payment_methods", "request" : { - "url" : "/payment_methods", + "url" : "/api/payment_methods", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"moto\":false,\"payment_source_type\":\"AdyenPayment\",\"price_amount_cents\":10,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"payment_gateway\":{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"payment_gateways\"}}},\"type\":\"payment_methods\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"moto\":false,\"payment_source_type\":\"AdyenPayment\",\"price_amount_cents\":10,\"reference\":null,\"reference_origin\":null},\"relationships\":{\"payment_gateway\":{\"data\":{\"id\":\"BxZLVszGyj\",\"type\":\"payment_gateways\"}}},\"type\":\"payment_methods\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:17.815Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"19904a30a2105ba0c0497d5982769bc33e201b41f044979e596e6eb57f08fa8d\"}}}", + "body" : "{\"data\":{\"id\":\"vEawJsbOAk\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T16:06:06.878Z\",\"updated_at\":\"2024-10-24T16:06:06.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fdb0c13c0dc11c7f4a117be189802a15f2acbe2f25df43138dc8603f7bffa083\"}}}", "headers" : { - "x-request-id" : "bfb0f5a7-33fb-46a7-81f2-f1bea81f6db9", - "x-kong-upstream-latency" : "20", + "x-request-id" : "3dda5ab2-485d-443b-ab7f-4edf7c358cf2", + "x-kong-upstream-latency" : "18", "X-Ratelimit-Remaining" : "66", - "x-kong-request-id" : "29452913e6257d7f059ea17eb6dc033e", + "x-kong-request-id" : "8a04a25470e8642c3582a150ce7f9021", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:17 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:06 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"fbf200a4a184117dfb676b5f1b0d8b65\"", + "etag" : "W/\"a9d1cade92c852e02dd7b8bce1652307\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d1c94c81-7b2a-4385-b232-7b37c265255d", + "uuid" : "e12b00e4-7260-414e-981d-253f57de4613", "persistent" : true, - "insertionIndex" : 82 + "insertionIndex" : 87 } \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_veawjsboak-0149dfb6-27b5-4b0e-925c-b03038017ff3.json b/mock/mappings/api_payment_methods_veawjsboak-0149dfb6-27b5-4b0e-925c-b03038017ff3.json new file mode 100644 index 0000000..d1e2116 --- /dev/null +++ b/mock/mappings/api_payment_methods_veawjsboak-0149dfb6-27b5-4b0e-925c-b03038017ff3.json @@ -0,0 +1,32 @@ +{ + "id" : "0149dfb6-27b5-4b0e-925c-b03038017ff3", + "name" : "api_payment_methods_veawjsboak", + "request" : { + "url" : "/api/payment_methods/vEawJsbOAk", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "a1b6a3db-71e2-4226-a9e4-7b8c260be325", + "x-kong-upstream-latency" : "20", + "X-Ratelimit-Remaining" : "67", + "x-kong-request-id" : "d9ddc93c8fc4836b22eece114c72256b", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:06:08 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "0149dfb6-27b5-4b0e-925c-b03038017ff3", + "persistent" : true, + "insertionIndex" : 79 +} \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_veawjsboak-0946bf88-ae7c-4c70-b703-637bf627b483.json b/mock/mappings/api_payment_methods_veawjsboak-0946bf88-ae7c-4c70-b703-637bf627b483.json new file mode 100644 index 0000000..84be8f5 --- /dev/null +++ b/mock/mappings/api_payment_methods_veawjsboak-0946bf88-ae7c-4c70-b703-637bf627b483.json @@ -0,0 +1,38 @@ +{ + "id" : "0946bf88-ae7c-4c70-b703-637bf627b483", + "name" : "api_payment_methods_veawjsboak", + "request" : { + "url" : "/api/payment_methods/vEawJsbOAk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"vEawJsbOAk\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T16:06:06.878Z\",\"updated_at\":\"2024-10-24T16:06:06.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"049f9c65e905fa97e3e662e091aee044aa8684deee082c4b55ec97c757110122\"}}}", + "headers" : { + "x-request-id" : "7f1084b8-139f-49bd-9c87-c910e66945b2", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "6", + "x-kong-request-id" : "89d0a879e982dc3926b3997c015cb417", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:07 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"060852d8388ef998461135ae87f7ff83\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "0946bf88-ae7c-4c70-b703-637bf627b483", + "persistent" : true, + "scenarioName" : "scenario-11-api-payment_methods-vEawJsbOAk", + "requiredScenarioState" : "scenario-11-api-payment_methods-vEawJsbOAk-2", + "newScenarioState" : "scenario-11-api-payment_methods-vEawJsbOAk-3", + "insertionIndex" : 83 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json b/mock/mappings/api_payment_methods_veawjsboak-43937e1d-9ba4-4058-9819-026de825677e.json similarity index 50% rename from mock/mappings/payment_methods_pmwzdsrdde-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json rename to mock/mappings/api_payment_methods_veawjsboak-43937e1d-9ba4-4058-9819-026de825677e.json index 2e37111..4ea4536 100644 --- a/mock/mappings/payment_methods_pmwzdsrdde-6af80003-47c5-4f28-987f-6fa0ff52b8c8.json +++ b/mock/mappings/api_payment_methods_veawjsboak-43937e1d-9ba4-4058-9819-026de825677e.json @@ -1,38 +1,38 @@ { - "id" : "6af80003-47c5-4f28-987f-6fa0ff52b8c8", - "name" : "payment_methods_pmwzdsrdde", + "id" : "43937e1d-9ba4-4058-9819-026de825677e", + "name" : "api_payment_methods_veawjsboak", "request" : { - "url" : "/payment_methods/pmWZdsrDdE", + "url" : "/api/payment_methods/vEawJsbOAk", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:17.815Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6bbf45eb6ee635834232007e38bb7f1c240c3342ddc0b365e0295f7a44067a31\"}}}", + "body" : "{\"data\":{\"id\":\"vEawJsbOAk\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T16:06:06.878Z\",\"updated_at\":\"2024-10-24T16:06:06.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d4fd5ef206128b3043b6a001cc864817107b1812a9cdd2853484a87384ec5f53\"}}}", "headers" : { - "x-request-id" : "a4a2c03e-c0fb-481e-b064-26c4982d693a", - "x-kong-upstream-latency" : "17", + "x-request-id" : "7beeb0a7-8135-428f-971a-606ebef70769", + "x-kong-upstream-latency" : "22", "X-Ratelimit-Remaining" : "8", - "x-kong-request-id" : "ec096935540cee76f3ae422e38da5d6e", + "x-kong-request-id" : "df880f0239673a0f889f2375a963e02b", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:18 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:07 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"054d1afb3585a92548dfaa113c73e40e\"", + "etag" : "W/\"b738f5266e395052ea48000817f6c77a\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "6af80003-47c5-4f28-987f-6fa0ff52b8c8", + "uuid" : "43937e1d-9ba4-4058-9819-026de825677e", "persistent" : true, - "scenarioName" : "scenario-12-payment_methods-pmWZdsrDdE", + "scenarioName" : "scenario-11-api-payment_methods-vEawJsbOAk", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-2", - "insertionIndex" : 80 + "newScenarioState" : "scenario-11-api-payment_methods-vEawJsbOAk-2", + "insertionIndex" : 85 } \ No newline at end of file diff --git a/mock/mappings/api_payment_methods_veawjsboak-56707e4f-c2d5-4b35-8ec6-c38a12fcd5c3.json b/mock/mappings/api_payment_methods_veawjsboak-56707e4f-c2d5-4b35-8ec6-c38a12fcd5c3.json new file mode 100644 index 0000000..2a49801 --- /dev/null +++ b/mock/mappings/api_payment_methods_veawjsboak-56707e4f-c2d5-4b35-8ec6-c38a12fcd5c3.json @@ -0,0 +1,38 @@ +{ + "id" : "56707e4f-c2d5-4b35-8ec6-c38a12fcd5c3", + "name" : "api_payment_methods_veawjsboak", + "request" : { + "url" : "/api/payment_methods/vEawJsbOAk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"vEawJsbOAk\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":5,\"price_amount_float\":0.05,\"formatted_price_amount\":\"€0,05\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T16:06:06.878Z\",\"updated_at\":\"2024-10-24T16:06:07.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"165a765f3b02391e4ea4b05d43d1de4490dec82421edecc1aa4ef8cdc0396f06\"}}}", + "headers" : { + "x-request-id" : "e2cbebab-6a9f-4ae7-9206-b842ed06c62b", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "4", + "x-kong-request-id" : "fe878345f346bf07c2304e68748f945a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:08 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"40eb505376b0d7dec3c04c34f1512d8f\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "56707e4f-c2d5-4b35-8ec6-c38a12fcd5c3", + "persistent" : true, + "scenarioName" : "scenario-11-api-payment_methods-vEawJsbOAk", + "requiredScenarioState" : "scenario-11-api-payment_methods-vEawJsbOAk-3", + "newScenarioState" : "scenario-11-api-payment_methods-vEawJsbOAk-4", + "insertionIndex" : 80 +} \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json b/mock/mappings/api_payment_methods_veawjsboak-d481314b-8c88-49dc-bf54-1683db50ee3b.json similarity index 63% rename from mock/mappings/adyen_gateways_pkaqrsdyzk-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json rename to mock/mappings/api_payment_methods_veawjsboak-d481314b-8c88-49dc-bf54-1683db50ee3b.json index 9d6df15..b9e8692 100644 --- a/mock/mappings/adyen_gateways_pkaqrsdyzk-c9cd4148-400d-4771-ba01-cd0b621c2cf6.json +++ b/mock/mappings/api_payment_methods_veawjsboak-d481314b-8c88-49dc-bf54-1683db50ee3b.json @@ -1,22 +1,22 @@ { - "id" : "c9cd4148-400d-4771-ba01-cd0b621c2cf6", - "name" : "adyen_gateways_pkaqrsdyzk", + "id" : "d481314b-8c88-49dc-bf54-1683db50ee3b", + "name" : "api_payment_methods_veawjsboak", "request" : { - "url" : "/adyen_gateways/PkaqRsdyzk", + "url" : "/api/payment_methods/vEawJsbOAk", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "17157097-0225-447f-a501-55b5c4c77f20", + "x-request-id" : "e264c456-9a0f-48af-92cd-be77b2a98304", "x-kong-upstream-latency" : "7", "X-Ratelimit-Remaining" : "2", - "x-kong-request-id" : "953ee167637b8162af7c3342665ba17c", + "x-kong-request-id" : "de3cec3e702cb12557d31b01a208e858", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:20 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:09 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "c9cd4148-400d-4771-ba01-cd0b621c2cf6", + "uuid" : "d481314b-8c88-49dc-bf54-1683db50ee3b", "persistent" : true, - "scenarioName" : "scenario-11-adyen_gateways-PkaqRsdyzk", - "requiredScenarioState" : "scenario-11-adyen_gateways-PkaqRsdyzk-4", - "insertionIndex" : 71 + "scenarioName" : "scenario-11-api-payment_methods-vEawJsbOAk", + "requiredScenarioState" : "scenario-11-api-payment_methods-vEawJsbOAk-4", + "insertionIndex" : 76 } \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json b/mock/mappings/api_payment_methods_veawjsboak-f8cfc944-d579-4123-8b71-a4a69c5dcc66.json similarity index 54% rename from mock/mappings/payment_methods_pmwzdsrdde-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json rename to mock/mappings/api_payment_methods_veawjsboak-f8cfc944-d579-4123-8b71-a4a69c5dcc66.json index a16902b..eb62671 100644 --- a/mock/mappings/payment_methods_pmwzdsrdde-cf93def7-feff-4d0d-9d32-ada48ff4b9fb.json +++ b/mock/mappings/api_payment_methods_veawjsboak-f8cfc944-d579-4123-8b71-a4a69c5dcc66.json @@ -1,40 +1,40 @@ { - "id" : "cf93def7-feff-4d0d-9d32-ada48ff4b9fb", - "name" : "payment_methods_pmwzdsrdde", + "id" : "f8cfc944-d579-4123-8b71-a4a69c5dcc66", + "name" : "api_payment_methods_veawjsboak", "request" : { - "url" : "/payment_methods/pmWZdsrDdE", + "url" : "/api/payment_methods/vEawJsbOAk", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"moto\":false,\"payment_source_type\":\"AdyenPayment\",\"price_amount_cents\":5,\"reference\":null,\"reference_origin\":null},\"id\":\"pmWZdsrDdE\",\"relationships\":{\"payment_gateway\":{\"data\":{\"id\":\"PkaqRsdyzk\",\"type\":\"payment_gateways\"}}},\"type\":\"payment_methods\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"},\"moto\":false,\"payment_source_type\":\"AdyenPayment\",\"price_amount_cents\":5,\"reference\":null,\"reference_origin\":null},\"id\":\"vEawJsbOAk\",\"relationships\":{\"payment_gateway\":{\"data\":{\"id\":\"BxZLVszGyj\",\"type\":\"payment_gateways\"}}},\"type\":\"payment_methods\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":5,\"price_amount_float\":0.05,\"formatted_price_amount\":\"€0,05\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:19.029Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7cee8b0dbe83a25a3f27ec719f6cc6179a82a494b895d8ecef5100748c3dbbc7\"}}}", + "body" : "{\"data\":{\"id\":\"vEawJsbOAk\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":5,\"price_amount_float\":0.05,\"formatted_price_amount\":\"€0,05\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T16:06:06.878Z\",\"updated_at\":\"2024-10-24T16:06:07.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/vEawJsbOAk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"90dfdf6b8dc068893f256994888d953774ca46f5a6a9039bfa2647b636fe6c05\"}}}", "headers" : { - "x-request-id" : "4c4541bd-4def-4fd1-abd2-52305b5676e9", - "x-kong-upstream-latency" : "25", + "x-request-id" : "ab305aae-d1a7-41c3-ba01-d92be9ec86e6", + "x-kong-upstream-latency" : "26", "X-Ratelimit-Remaining" : "81", - "x-kong-request-id" : "429ae27cf2a01e2553bd664484bb8576", + "x-kong-request-id" : "fe313759163ea748d674eb49bc531015", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:07 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"b07d69eb5c0027198b61c1c481a11025\"", + "etag" : "W/\"2b00a40d21c4936c3781ba096c12aa41\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "cf93def7-feff-4d0d-9d32-ada48ff4b9fb", + "uuid" : "f8cfc944-d579-4123-8b71-a4a69c5dcc66", "persistent" : true, - "insertionIndex" : 77 + "insertionIndex" : 82 } \ No newline at end of file diff --git a/mock/mappings/paypal_gateways-55519fa8-16e1-419b-833a-993c8be014e3.json b/mock/mappings/api_paypal_gateways-bd3d7112-4a1b-4513-9ac6-664a8d3c0f3f.json similarity index 55% rename from mock/mappings/paypal_gateways-55519fa8-16e1-419b-833a-993c8be014e3.json rename to mock/mappings/api_paypal_gateways-bd3d7112-4a1b-4513-9ac6-664a8d3c0f3f.json index 005b543..a3aa083 100644 --- a/mock/mappings/paypal_gateways-55519fa8-16e1-419b-833a-993c8be014e3.json +++ b/mock/mappings/api_paypal_gateways-bd3d7112-4a1b-4513-9ac6-664a8d3c0f3f.json @@ -1,8 +1,8 @@ { - "id" : "55519fa8-16e1-419b-833a-993c8be014e3", - "name" : "paypal_gateways", + "id" : "bd3d7112-4a1b-4513-9ac6-664a8d3c0f3f", + "name" : "api_paypal_gateways", "request" : { - "url" : "/paypal_gateways", + "url" : "/api/paypal_gateways", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"client_id\":\"xxxx-yyyy-zzzz\",\"client_secret\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"},\"name\":\"Incentro Paypal Gateway\",\"reference\":null,\"reference_origin\":null},\"type\":\"paypal_gateways\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:20.694Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"15ec1d5f8d3e0efad2f3264776f8b991a79c5130f811e8c0eeda952f0ece3a27\"}}}", + "body" : "{\"data\":{\"id\":\"RxeMeszGnx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T16:06:09.595Z\",\"updated_at\":\"2024-10-24T16:06:09.595Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"81f74dc191d688ecc22713e55d9c287d10da28907fb78566d314210a57493b4b\"}}}", "headers" : { - "x-request-id" : "ad19f0dd-9b37-4bb3-8244-12ce46686c19", - "x-kong-upstream-latency" : "25", + "x-request-id" : "6dfc3aaf-cc8b-47fa-81a8-77ec2e91d35f", + "x-kong-upstream-latency" : "21", "X-Ratelimit-Remaining" : "65", - "x-kong-request-id" : "69df624873492e12706a980b45e6ca57", + "x-kong-request-id" : "18392b471fdc473b5e876b54953daa17", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:20 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:06:09 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"12b4649d9a6c29151586f8d28fbb014b\"", + "etag" : "W/\"20eabb8e4074f4a0087385109326f920\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "55519fa8-16e1-419b-833a-993c8be014e3", + "uuid" : "bd3d7112-4a1b-4513-9ac6-664a8d3c0f3f", "persistent" : true, - "insertionIndex" : 70 + "insertionIndex" : 75 } \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_rxemeszgnx-00e3d720-2c65-4e46-be20-a59278e06e38.json b/mock/mappings/api_paypal_gateways_rxemeszgnx-00e3d720-2c65-4e46-be20-a59278e06e38.json new file mode 100644 index 0000000..f436da3 --- /dev/null +++ b/mock/mappings/api_paypal_gateways_rxemeszgnx-00e3d720-2c65-4e46-be20-a59278e06e38.json @@ -0,0 +1,32 @@ +{ + "id" : "00e3d720-2c65-4e46-be20-a59278e06e38", + "name" : "api_paypal_gateways_rxemeszgnx", + "request" : { + "url" : "/api/paypal_gateways/RxeMeszGnx", + "method" : "DELETE" + }, + "response" : { + "status" : 204, + "headers" : { + "x-request-id" : "4caa6684-5b66-4347-9ee5-543463df7f7a", + "x-kong-upstream-latency" : "31", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "65b2cf4de114635de00f023411064d0f", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:07:11 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Origin", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "00e3d720-2c65-4e46-be20-a59278e06e38", + "persistent" : true, + "insertionIndex" : 69 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json b/mock/mappings/api_paypal_gateways_rxemeszgnx-61d08a4b-91eb-46a6-b193-fb57456724c5.json similarity index 55% rename from mock/mappings/paypal_gateways_jklbysepav-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json rename to mock/mappings/api_paypal_gateways_rxemeszgnx-61d08a4b-91eb-46a6-b193-fb57456724c5.json index e6c64f4..9031464 100644 --- a/mock/mappings/paypal_gateways_jklbysepav-0ebc446f-6f6d-47be-b95d-0ed3af62aed2.json +++ b/mock/mappings/api_paypal_gateways_rxemeszgnx-61d08a4b-91eb-46a6-b193-fb57456724c5.json @@ -1,8 +1,8 @@ { - "id" : "0ebc446f-6f6d-47be-b95d-0ed3af62aed2", - "name" : "paypal_gateways_jklbysepav", + "id" : "61d08a4b-91eb-46a6-b193-fb57456724c5", + "name" : "api_paypal_gateways_rxemeszgnx", "request" : { - "url" : "/paypal_gateways/JkLbysepAv", + "url" : "/api/paypal_gateways/RxeMeszGnx", "method" : "GET" }, "response" : { @@ -16,14 +16,14 @@ "Retry-After" : "0", "Access-Control-Allow-Origin" : "*", "X-Ratelimit-Remaining" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:21 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:10 GMT", "Content-Type" : "application/json; charset=utf-8" } }, - "uuid" : "0ebc446f-6f6d-47be-b95d-0ed3af62aed2", + "uuid" : "61d08a4b-91eb-46a6-b193-fb57456724c5", "persistent" : true, - "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", - "requiredScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-3", - "newScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-4", - "insertionIndex" : 66 + "scenarioName" : "scenario-10-api-paypal_gateways-RxeMeszGnx", + "requiredScenarioState" : "scenario-10-api-paypal_gateways-RxeMeszGnx-3", + "newScenarioState" : "scenario-10-api-paypal_gateways-RxeMeszGnx-4", + "insertionIndex" : 71 } \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_rxemeszgnx-c39bb07f-cae8-4a84-826b-65994a40e6da.json b/mock/mappings/api_paypal_gateways_rxemeszgnx-c39bb07f-cae8-4a84-826b-65994a40e6da.json new file mode 100644 index 0000000..2388835 --- /dev/null +++ b/mock/mappings/api_paypal_gateways_rxemeszgnx-c39bb07f-cae8-4a84-826b-65994a40e6da.json @@ -0,0 +1,38 @@ +{ + "id" : "c39bb07f-cae8-4a84-826b-65994a40e6da", + "name" : "api_paypal_gateways_rxemeszgnx", + "request" : { + "url" : "/api/paypal_gateways/RxeMeszGnx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"RxeMeszGnx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T16:06:09.595Z\",\"updated_at\":\"2024-10-24T16:06:09.595Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1d9ca781e3da0d7ad1a45c228e34ca165551f9d43cab1c130d57323d335fd2c6\"}}}", + "headers" : { + "x-request-id" : "0471a336-3d46-4451-a3eb-870eaa0649e2", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "1", + "x-kong-request-id" : "c267435d57e5b118cadaab099b896f21", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:09 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"bfae9d017be22ce563fe29c7be3d7df0\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "c39bb07f-cae8-4a84-826b-65994a40e6da", + "persistent" : true, + "scenarioName" : "scenario-10-api-paypal_gateways-RxeMeszGnx", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-10-api-paypal_gateways-RxeMeszGnx-2", + "insertionIndex" : 74 +} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-6e4c2502-405b-4635-951a-256ff31022aa.json b/mock/mappings/api_paypal_gateways_rxemeszgnx-c3d5bcc5-91d5-43bd-b688-ebbbbeec8a10.json similarity index 52% rename from mock/mappings/paypal_gateways_jklbysepav-6e4c2502-405b-4635-951a-256ff31022aa.json rename to mock/mappings/api_paypal_gateways_rxemeszgnx-c3d5bcc5-91d5-43bd-b688-ebbbbeec8a10.json index f514826..0ecde4a 100644 --- a/mock/mappings/paypal_gateways_jklbysepav-6e4c2502-405b-4635-951a-256ff31022aa.json +++ b/mock/mappings/api_paypal_gateways_rxemeszgnx-c3d5bcc5-91d5-43bd-b688-ebbbbeec8a10.json @@ -1,40 +1,40 @@ { - "id" : "6e4c2502-405b-4635-951a-256ff31022aa", - "name" : "paypal_gateways_jklbysepav", + "id" : "c3d5bcc5-91d5-43bd-b688-ebbbbeec8a10", + "name" : "api_paypal_gateways_rxemeszgnx", "request" : { - "url" : "/paypal_gateways/JkLbysepAv", + "url" : "/api/paypal_gateways/RxeMeszGnx", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"client_id\":\"xxxx-yyyy-zzzz\",\"client_secret\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"},\"name\":\"Incentro Paypal Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"client_id\":\"xxxx-yyyy-zzzz\",\"client_secret\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"},\"name\":\"Incentro Paypal Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"RxeMeszGnx\",\"type\":\"paypal_gateways\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway Changed\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:21.623Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ee3fab4e5022e26bdc4d923a02ba88a15d297500835aa4a1100b3060c14381db\"}}}", + "body" : "{\"data\":{\"id\":\"RxeMeszGnx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway Changed\",\"created_at\":\"2024-10-24T16:06:09.595Z\",\"updated_at\":\"2024-10-24T16:06:10.452Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8ca7969da01ff8e131ae02283ace9fdfdd2dd536cedea7b063d23d4fdc0a4b2c\"}}}", "headers" : { - "x-request-id" : "e31a9985-ec9e-46eb-93e5-d70ede060b7e", - "x-kong-upstream-latency" : "17", + "x-request-id" : "42e872fb-82b4-4ce7-af53-661b1d9e2e59", + "x-kong-upstream-latency" : "22", "X-Ratelimit-Remaining" : "80", - "x-kong-request-id" : "c6c9fb0c340f34544d1c79327597274f", + "x-kong-request-id" : "d0b5d5683ea4d0094eb35c47d263b439", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:21 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:06:10 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"abaf7853f739ca7a816e0073834946b8\"", + "etag" : "W/\"aa7307a464aea2ab6cd58e8c845b4e3e\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "6e4c2502-405b-4635-951a-256ff31022aa", + "uuid" : "c3d5bcc5-91d5-43bd-b688-ebbbbeec8a10", "persistent" : true, - "insertionIndex" : 67 + "insertionIndex" : 72 } \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_rxemeszgnx-d854aaf2-540b-4525-ae1d-db698f9944ff.json b/mock/mappings/api_paypal_gateways_rxemeszgnx-d854aaf2-540b-4525-ae1d-db698f9944ff.json new file mode 100644 index 0000000..b96e752 --- /dev/null +++ b/mock/mappings/api_paypal_gateways_rxemeszgnx-d854aaf2-540b-4525-ae1d-db698f9944ff.json @@ -0,0 +1,38 @@ +{ + "id" : "d854aaf2-540b-4525-ae1d-db698f9944ff", + "name" : "api_paypal_gateways_rxemeszgnx", + "request" : { + "url" : "/api/paypal_gateways/RxeMeszGnx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"RxeMeszGnx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway Changed\",\"created_at\":\"2024-10-24T16:06:09.595Z\",\"updated_at\":\"2024-10-24T16:06:10.452Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"381d624d41490bfccb71a7b6ee32eb9a7702505ed4b767b08ffa0993a7126bce\"}}}", + "headers" : { + "x-request-id" : "b7114fee-cb0f-4e5f-9bb9-581e0cbf3d61", + "x-kong-upstream-latency" : "25", + "X-Ratelimit-Remaining" : "99", + "x-kong-request-id" : "af8e376707012a3228a7aa69996f0c44", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:10 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"e5883df01c3f17cb873f15c1fd9be60a\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "d854aaf2-540b-4525-ae1d-db698f9944ff", + "persistent" : true, + "scenarioName" : "scenario-10-api-paypal_gateways-RxeMeszGnx", + "requiredScenarioState" : "scenario-10-api-paypal_gateways-RxeMeszGnx-4", + "newScenarioState" : "scenario-10-api-paypal_gateways-RxeMeszGnx-5", + "insertionIndex" : 70 +} \ No newline at end of file diff --git a/mock/mappings/api_paypal_gateways_rxemeszgnx-efc97b91-1b8e-4bff-9ffc-15dcb6687c85.json b/mock/mappings/api_paypal_gateways_rxemeszgnx-efc97b91-1b8e-4bff-9ffc-15dcb6687c85.json new file mode 100644 index 0000000..db108b1 --- /dev/null +++ b/mock/mappings/api_paypal_gateways_rxemeszgnx-efc97b91-1b8e-4bff-9ffc-15dcb6687c85.json @@ -0,0 +1,38 @@ +{ + "id" : "efc97b91-1b8e-4bff-9ffc-15dcb6687c85", + "name" : "api_paypal_gateways_rxemeszgnx", + "request" : { + "url" : "/api/paypal_gateways/RxeMeszGnx", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"RxeMeszGnx\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T16:06:09.595Z\",\"updated_at\":\"2024-10-24T16:06:09.595Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/RxeMeszGnx/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e556606512850fcaea1c12cfa8157f32f4271de896251d9e782d86ebd4b13a90\"}}}", + "headers" : { + "x-request-id" : "e632e043-3140-47b0-9a55-7651fdca4f2c", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "0", + "x-kong-request-id" : "87b5127122cfc56cc8d6ba66811dbb60", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:06:10 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"c01ac3d8c3655b7bc6b31086ab49f795\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "efc97b91-1b8e-4bff-9ffc-15dcb6687c85", + "persistent" : true, + "scenarioName" : "scenario-10-api-paypal_gateways-RxeMeszGnx", + "requiredScenarioState" : "scenario-10-api-paypal_gateways-RxeMeszGnx-2", + "newScenarioState" : "scenario-10-api-paypal_gateways-RxeMeszGnx-3", + "insertionIndex" : 73 +} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json b/mock/mappings/api_paypal_gateways_rxemeszgnx-fe9692fa-1dc3-4167-a30c-f2d54acfb6b6.json similarity index 61% rename from mock/mappings/manual_gateways_oxoaeswmwj-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json rename to mock/mappings/api_paypal_gateways_rxemeszgnx-fe9692fa-1dc3-4167-a30c-f2d54acfb6b6.json index 1eb20db..d11026e 100644 --- a/mock/mappings/manual_gateways_oxoaeswmwj-e71a7c1f-7489-40c0-82b3-46195ab04fa2.json +++ b/mock/mappings/api_paypal_gateways_rxemeszgnx-fe9692fa-1dc3-4167-a30c-f2d54acfb6b6.json @@ -1,22 +1,22 @@ { - "id" : "e71a7c1f-7489-40c0-82b3-46195ab04fa2", - "name" : "manual_gateways_oxoaeswmwj", + "id" : "fe9692fa-1dc3-4167-a30c-f2d54acfb6b6", + "name" : "api_paypal_gateways_rxemeszgnx", "request" : { - "url" : "/manual_gateways/oxoaEswMWj", + "url" : "/api/paypal_gateways/RxeMeszGnx", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "ff299791-34bc-4b9e-af99-604cd54d904a", + "x-request-id" : "adcf701f-3aa6-4121-ba38-dc2b2146812d", "x-kong-upstream-latency" : "10", - "X-Ratelimit-Remaining" : "31", - "x-kong-request-id" : "805a9e3e24237257dcbf6568fbf9d536", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "14664b7083704051827e5c696a272736", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:03 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:11 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "e71a7c1f-7489-40c0-82b3-46195ab04fa2", + "uuid" : "fe9692fa-1dc3-4167-a30c-f2d54acfb6b6", "persistent" : true, - "scenarioName" : "scenario-22-manual_gateways-oxoaEswMWj", - "requiredScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-4", - "insertionIndex" : 136 + "scenarioName" : "scenario-10-api-paypal_gateways-RxeMeszGnx", + "requiredScenarioState" : "scenario-10-api-paypal_gateways-RxeMeszGnx-5", + "insertionIndex" : 68 } \ No newline at end of file diff --git a/mock/mappings/price_lists-f804d51d-1493-4cff-b644-4526ea147c43.json b/mock/mappings/api_price_lists-362f4706-48ca-4d19-90d4-2fd94d7dcfdf.json similarity index 55% rename from mock/mappings/price_lists-f804d51d-1493-4cff-b644-4526ea147c43.json rename to mock/mappings/api_price_lists-362f4706-48ca-4d19-90d4-2fd94d7dcfdf.json index 65b8c6b..bddedc1 100644 --- a/mock/mappings/price_lists-f804d51d-1493-4cff-b644-4526ea147c43.json +++ b/mock/mappings/api_price_lists-362f4706-48ca-4d19-90d4-2fd94d7dcfdf.json @@ -1,8 +1,8 @@ { - "id" : "f804d51d-1493-4cff-b644-4526ea147c43", - "name" : "price_lists", + "id" : "362f4706-48ca-4d19-90d4-2fd94d7dcfdf", + "name" : "api_price_lists", "request" : { - "url" : "/price_lists", + "url" : "/api/price_lists", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"},\"name\":\"incentro price list\",\"reference\":null,\"reference_origin\":null,\"tax_included\":true},\"type\":\"price_lists\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:22.937Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c35023a2ffeb515e4436f8c0722c3f935653c743736984a4b371a98bd1937798\"}}}", + "body" : "{\"data\":{\"id\":\"xlqjNCZXQL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:07:11.760Z\",\"updated_at\":\"2024-10-24T16:07:11.760Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"849f5ec15986516b08cdb2502b66054ade8a21921a08562a12f0aab06246ffdd\"}}}", "headers" : { - "x-request-id" : "cf4bf5d8-fe63-4b1d-93bb-5b8540909bf3", - "x-kong-upstream-latency" : "21", + "x-request-id" : "7cda03c7-1c45-4c75-817c-d1db31d176f4", + "x-kong-upstream-latency" : "30", "X-Ratelimit-Remaining" : "99", - "x-kong-request-id" : "aa5d804f9ea0e972c3ead924f84f916a", + "x-kong-request-id" : "5a3bac23c975730ba5f2335301cf3775", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:53:22 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:07:11 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"99307195583f355b84409d71d49c76cd\"", + "etag" : "W/\"c584c86614a35ef78e6eb8de539f2b90\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "f804d51d-1493-4cff-b644-4526ea147c43", + "uuid" : "362f4706-48ca-4d19-90d4-2fd94d7dcfdf", "persistent" : true, - "insertionIndex" : 62 + "insertionIndex" : 67 } \ No newline at end of file diff --git a/mock/mappings/price_lists-8192612f-1dd3-4b33-a3eb-4f548818daa6.json b/mock/mappings/api_price_lists-73e88280-cdf5-4240-86f2-d15eda52b0a6.json similarity index 53% rename from mock/mappings/price_lists-8192612f-1dd3-4b33-a3eb-4f548818daa6.json rename to mock/mappings/api_price_lists-73e88280-cdf5-4240-86f2-d15eda52b0a6.json index cc714dc..0056312 100644 --- a/mock/mappings/price_lists-8192612f-1dd3-4b33-a3eb-4f548818daa6.json +++ b/mock/mappings/api_price_lists-73e88280-cdf5-4240-86f2-d15eda52b0a6.json @@ -1,8 +1,8 @@ { - "id" : "8192612f-1dd3-4b33-a3eb-4f548818daa6", - "name" : "price_lists", + "id" : "73e88280-cdf5-4240-86f2-d15eda52b0a6", + "name" : "api_price_lists", "request" : { - "url" : "/price_lists", + "url" : "/api/price_lists", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"EUR\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"incentro price list\",\"reference\":null,\"reference_origin\":null,\"tax_included\":true},\"type\":\"price_lists\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:52:07.273Z\",\"updated_at\":\"2024-10-24T15:52:07.273Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"326f261fc8ef0b790525eeecda2e38bc42df7f6f1454b0fac99066e8df64612d\"}}}", + "body" : "{\"data\":{\"id\":\"AkYYaCErEk\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:05:56.659Z\",\"updated_at\":\"2024-10-24T16:05:56.659Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9eb6e6227719825b8dbec046a58082ea184efb3e00e287309f2d7ab679ca3a93\"}}}", "headers" : { - "x-request-id" : "91d9a024-dc9e-48df-8b4f-5ed82dca867d", - "x-kong-upstream-latency" : "25", + "x-request-id" : "afdd6913-a792-4206-bde2-93939b485afb", + "x-kong-upstream-latency" : "19", "X-Ratelimit-Remaining" : "73", - "x-kong-request-id" : "408aa863c0a4760b53195c34a6ac2b2f", + "x-kong-request-id" : "e7567d7f8bc36452cef5e6536032853c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:56 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"90ebe2ea123ea32073cd079aa6280726\"", + "etag" : "W/\"1182628f1dca24ff09d777ac9ebaad98\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "8192612f-1dd3-4b33-a3eb-4f548818daa6", + "uuid" : "73e88280-cdf5-4240-86f2-d15eda52b0a6", "persistent" : true, - "insertionIndex" : 126 + "insertionIndex" : 131 } \ No newline at end of file diff --git a/mock/mappings/api_price_lists_akyyacerek-0771d47e-51cf-48bf-85e6-8c185166dad6.json b/mock/mappings/api_price_lists_akyyacerek-0771d47e-51cf-48bf-85e6-8c185166dad6.json new file mode 100644 index 0000000..3e631f4 --- /dev/null +++ b/mock/mappings/api_price_lists_akyyacerek-0771d47e-51cf-48bf-85e6-8c185166dad6.json @@ -0,0 +1,38 @@ +{ + "id" : "0771d47e-51cf-48bf-85e6-8c185166dad6", + "name" : "api_price_lists_akyyacerek", + "request" : { + "url" : "/api/price_lists/AkYYaCErEk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"AkYYaCErEk\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:05:56.659Z\",\"updated_at\":\"2024-10-24T16:05:56.659Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"cfe12758a9f4ef624ab75943b4b358d9682c46768cc0c23691e028e1c53b7769\"}}}", + "headers" : { + "x-request-id" : "9dd6c568-1cd1-4630-bbd9-1f82acfc8e72", + "x-kong-upstream-latency" : "11", + "X-Ratelimit-Remaining" : "474", + "x-kong-request-id" : "c4be8f0b176b7d3993f3d7339b012e6a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:59 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"8ab42b967db7bad61e28a40c0ad96512\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "0771d47e-51cf-48bf-85e6-8c185166dad6", + "persistent" : true, + "scenarioName" : "scenario-19-api-price_lists-AkYYaCErEk", + "requiredScenarioState" : "scenario-19-api-price_lists-AkYYaCErEk-3", + "insertionIndex" : 113 +} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-efb838be-f6ca-438d-bf56-8aca2f9224e3.json b/mock/mappings/api_price_lists_akyyacerek-07f2829b-a203-4417-826e-c192362de4be.json similarity index 59% rename from mock/mappings/google_geocoders_mgwalsandn-efb838be-f6ca-438d-bf56-8aca2f9224e3.json rename to mock/mappings/api_price_lists_akyyacerek-07f2829b-a203-4417-826e-c192362de4be.json index 7e549ff..832af62 100644 --- a/mock/mappings/google_geocoders_mgwalsandn-efb838be-f6ca-438d-bf56-8aca2f9224e3.json +++ b/mock/mappings/api_price_lists_akyyacerek-07f2829b-a203-4417-826e-c192362de4be.json @@ -1,21 +1,21 @@ { - "id" : "efb838be-f6ca-438d-bf56-8aca2f9224e3", - "name" : "google_geocoders_mgwalsandn", + "id" : "07f2829b-a203-4417-826e-c192362de4be", + "name" : "api_price_lists_akyyacerek", "request" : { - "url" : "/google_geocoders/MGWAlsaNDn", + "url" : "/api/price_lists/AkYYaCErEk", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "d40c7c8c-c835-4413-845d-5afdb2215471", + "x-request-id" : "9ca5a9e6-7250-4d3c-95b8-0f7e4d5bf84f", "x-kong-upstream-latency" : "26", - "X-Ratelimit-Remaining" : "88", - "x-kong-request-id" : "12e11240f0e7e268061a850c4e1c6e7a", + "X-Ratelimit-Remaining" : "71", + "x-kong-request-id" : "ccecf70d6e1ec957283ad35c2f894f4b", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:48 GMT", + "Date" : "Thu, 24 Oct 2024 16:06:02 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "efb838be-f6ca-438d-bf56-8aca2f9224e3", + "uuid" : "07f2829b-a203-4417-826e-c192362de4be", "persistent" : true, - "insertionIndex" : 202 + "insertionIndex" : 104 } \ No newline at end of file diff --git a/mock/mappings/api_price_lists_akyyacerek-135d3438-8fc1-4d66-9f61-a33d8d98e743.json b/mock/mappings/api_price_lists_akyyacerek-135d3438-8fc1-4d66-9f61-a33d8d98e743.json new file mode 100644 index 0000000..7c3a394 --- /dev/null +++ b/mock/mappings/api_price_lists_akyyacerek-135d3438-8fc1-4d66-9f61-a33d8d98e743.json @@ -0,0 +1,39 @@ +{ + "id" : "135d3438-8fc1-4d66-9f61-a33d8d98e743", + "name" : "api_price_lists_akyyacerek", + "request" : { + "url" : "/api/price_lists/AkYYaCErEk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"AkYYaCErEk\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:05:56.659Z\",\"updated_at\":\"2024-10-24T16:05:56.659Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"29e168e84eabdcb57896ae3c44c04c9be9147bda941e6f0f671d705451057d9e\"}}}", + "headers" : { + "x-request-id" : "d75bb340-9a29-4ef4-84af-72d34348f8db", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "477", + "x-kong-request-id" : "fca1fe35bec91160e8144d3cc6572837", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:58 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"3f554d3ba75829e4944e9aa98f12b8c6\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "135d3438-8fc1-4d66-9f61-a33d8d98e743", + "persistent" : true, + "scenarioName" : "scenario-19-api-price_lists-AkYYaCErEk", + "requiredScenarioState" : "scenario-19-api-price_lists-AkYYaCErEk-2", + "newScenarioState" : "scenario-19-api-price_lists-AkYYaCErEk-3", + "insertionIndex" : 121 +} \ No newline at end of file diff --git a/mock/mappings/api_price_lists_akyyacerek-b8de358a-25fd-4198-8192-f5b48771fd59.json b/mock/mappings/api_price_lists_akyyacerek-b8de358a-25fd-4198-8192-f5b48771fd59.json new file mode 100644 index 0000000..8c458e6 --- /dev/null +++ b/mock/mappings/api_price_lists_akyyacerek-b8de358a-25fd-4198-8192-f5b48771fd59.json @@ -0,0 +1,39 @@ +{ + "id" : "b8de358a-25fd-4198-8192-f5b48771fd59", + "name" : "api_price_lists_akyyacerek", + "request" : { + "url" : "/api/price_lists/AkYYaCErEk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"AkYYaCErEk\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:05:56.659Z\",\"updated_at\":\"2024-10-24T16:05:56.659Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkYYaCErEk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"29e168e84eabdcb57896ae3c44c04c9be9147bda941e6f0f671d705451057d9e\"}}}", + "headers" : { + "x-request-id" : "d75bb340-9a29-4ef4-84af-72d34348f8db", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "480", + "x-kong-request-id" : "fca1fe35bec91160e8144d3cc6572837", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:57 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"3f554d3ba75829e4944e9aa98f12b8c6\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "b8de358a-25fd-4198-8192-f5b48771fd59", + "persistent" : true, + "scenarioName" : "scenario-19-api-price_lists-AkYYaCErEk", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-19-api-price_lists-AkYYaCErEk-2", + "insertionIndex" : 126 +} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-64440d62-8ad5-48d6-80f8-fbff121a2128.json b/mock/mappings/api_price_lists_xlqjnczxql-15d29cd9-1a91-45b7-8868-9c85d89a8a45.json similarity index 59% rename from mock/mappings/inventory_models_xwqxqspqea-64440d62-8ad5-48d6-80f8-fbff121a2128.json rename to mock/mappings/api_price_lists_xlqjnczxql-15d29cd9-1a91-45b7-8868-9c85d89a8a45.json index d99e4fc..c822065 100644 --- a/mock/mappings/inventory_models_xwqxqspqea-64440d62-8ad5-48d6-80f8-fbff121a2128.json +++ b/mock/mappings/api_price_lists_xlqjnczxql-15d29cd9-1a91-45b7-8868-9c85d89a8a45.json @@ -1,21 +1,21 @@ { - "id" : "64440d62-8ad5-48d6-80f8-fbff121a2128", - "name" : "inventory_models_xwqxqspqea", + "id" : "15d29cd9-1a91-45b7-8868-9c85d89a8a45", + "name" : "api_price_lists_xlqjnczxql", "request" : { - "url" : "/inventory_models/XWqxqSpqEa", + "url" : "/api/price_lists/xlqjNCZXQL", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "97732802-139a-4776-95d9-ec12325cea5b", + "x-request-id" : "8d1b9640-f410-4535-aebc-c4daa09720e6", "x-kong-upstream-latency" : "27", - "X-Ratelimit-Remaining" : "87", - "x-kong-request-id" : "15c3663e812333088d25781577594866", + "X-Ratelimit-Remaining" : "98", + "x-kong-request-id" : "e5b6f93e4b1c282a8d16b87641529778", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:50 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:13 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "64440d62-8ad5-48d6-80f8-fbff121a2128", + "uuid" : "15d29cd9-1a91-45b7-8868-9c85d89a8a45", "persistent" : true, - "insertionIndex" : 195 + "insertionIndex" : 62 } \ No newline at end of file diff --git a/mock/mappings/api_price_lists_xlqjnczxql-3003b543-2c46-421c-94a9-20d8bcbf4684.json b/mock/mappings/api_price_lists_xlqjnczxql-3003b543-2c46-421c-94a9-20d8bcbf4684.json new file mode 100644 index 0000000..2de88e7 --- /dev/null +++ b/mock/mappings/api_price_lists_xlqjnczxql-3003b543-2c46-421c-94a9-20d8bcbf4684.json @@ -0,0 +1,39 @@ +{ + "id" : "3003b543-2c46-421c-94a9-20d8bcbf4684", + "name" : "api_price_lists_xlqjnczxql", + "request" : { + "url" : "/api/price_lists/xlqjNCZXQL", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"xlqjNCZXQL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL\"},\"attributes\":{\"name\":\"incentro updated price list\",\"code\":null,\"currency_code\":\"CHF\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:07:11.760Z\",\"updated_at\":\"2024-10-24T16:07:12.531Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c0516b8da9214bfc6b778a3c10ee5f842429e87557389f623281ac8c1796edae\"}}}", + "headers" : { + "x-request-id" : "2f12fa0f-ba43-47d9-aaa3-369d1e1fdc5a", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "497", + "x-kong-request-id" : "a49bb27d7bfdf7559070d924285d4230", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:12 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"f659f28ed73b26f43b002e610aca13b2\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "3003b543-2c46-421c-94a9-20d8bcbf4684", + "persistent" : true, + "scenarioName" : "scenario-9-api-price_lists-xlqjNCZXQL", + "requiredScenarioState" : "scenario-9-api-price_lists-xlqjNCZXQL-3", + "newScenarioState" : "scenario-9-api-price_lists-xlqjNCZXQL-4", + "insertionIndex" : 63 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-76d1145b-ed14-47c8-bbff-114aab364c8b.json b/mock/mappings/api_price_lists_xlqjnczxql-64cc9921-6967-45c5-8a07-a368dc104005.json similarity index 60% rename from mock/mappings/price_lists_nlnwecrekb-76d1145b-ed14-47c8-bbff-114aab364c8b.json rename to mock/mappings/api_price_lists_xlqjnczxql-64cc9921-6967-45c5-8a07-a368dc104005.json index d5ec284..558413e 100644 --- a/mock/mappings/price_lists_nlnwecrekb-76d1145b-ed14-47c8-bbff-114aab364c8b.json +++ b/mock/mappings/api_price_lists_xlqjnczxql-64cc9921-6967-45c5-8a07-a368dc104005.json @@ -1,22 +1,22 @@ { - "id" : "76d1145b-ed14-47c8-bbff-114aab364c8b", - "name" : "price_lists_nlnwecrekb", + "id" : "64cc9921-6967-45c5-8a07-a368dc104005", + "name" : "api_price_lists_xlqjnczxql", "request" : { - "url" : "/price_lists/nLNWECREKB", + "url" : "/api/price_lists/xlqjNCZXQL", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "34501314-4495-4aff-8069-f8cc24615fdf", - "x-kong-upstream-latency" : "13", + "x-request-id" : "6bf85b36-c692-4e02-9198-a06b10316edd", + "x-kong-upstream-latency" : "7", "X-Ratelimit-Remaining" : "496", - "x-kong-request-id" : "180bca6d3ff09d289135f70939a89b35", + "x-kong-request-id" : "b234827fc291902b1d4b4909e716b77c", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", + "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:24 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:13 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -29,9 +29,9 @@ "Age" : "0" } }, - "uuid" : "76d1145b-ed14-47c8-bbff-114aab364c8b", + "uuid" : "64cc9921-6967-45c5-8a07-a368dc104005", "persistent" : true, - "scenarioName" : "scenario-9-price_lists-nLNWECREKB", - "requiredScenarioState" : "scenario-9-price_lists-nLNWECREKB-4", - "insertionIndex" : 56 + "scenarioName" : "scenario-9-api-price_lists-xlqjNCZXQL", + "requiredScenarioState" : "scenario-9-api-price_lists-xlqjNCZXQL-4", + "insertionIndex" : 61 } \ No newline at end of file diff --git a/mock/mappings/api_price_lists_xlqjnczxql-bcbe73fd-1585-4bab-8c01-bfc30656e825.json b/mock/mappings/api_price_lists_xlqjnczxql-bcbe73fd-1585-4bab-8c01-bfc30656e825.json new file mode 100644 index 0000000..341cda8 --- /dev/null +++ b/mock/mappings/api_price_lists_xlqjnczxql-bcbe73fd-1585-4bab-8c01-bfc30656e825.json @@ -0,0 +1,39 @@ +{ + "id" : "bcbe73fd-1585-4bab-8c01-bfc30656e825", + "name" : "api_price_lists_xlqjnczxql", + "request" : { + "url" : "/api/price_lists/xlqjNCZXQL", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"xlqjNCZXQL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:07:11.760Z\",\"updated_at\":\"2024-10-24T16:07:11.760Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8abc7efd8c511c10ec933c43816de5e3e51f5012b125df35102cd3233a50c3f8\"}}}", + "headers" : { + "x-request-id" : "0723365a-df56-40a4-9c45-175378a11083", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "498", + "x-kong-request-id" : "b818ba3152df9c4c7cd8890752ee447c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:12 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"6d7104e29b56a40ecbd5464811e3bf26\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "bcbe73fd-1585-4bab-8c01-bfc30656e825", + "persistent" : true, + "scenarioName" : "scenario-9-api-price_lists-xlqjNCZXQL", + "requiredScenarioState" : "scenario-9-api-price_lists-xlqjNCZXQL-2", + "newScenarioState" : "scenario-9-api-price_lists-xlqjNCZXQL-3", + "insertionIndex" : 65 +} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json b/mock/mappings/api_price_lists_xlqjnczxql-c35e228e-96c6-4085-afe1-eab88c66e176.json similarity index 50% rename from mock/mappings/price_lists_nlnwecrekb-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json rename to mock/mappings/api_price_lists_xlqjnczxql-c35e228e-96c6-4085-afe1-eab88c66e176.json index c303564..fa27d6c 100644 --- a/mock/mappings/price_lists_nlnwecrekb-da5e6515-301a-4e63-bec2-2d2ce1f7d102.json +++ b/mock/mappings/api_price_lists_xlqjnczxql-c35e228e-96c6-4085-afe1-eab88c66e176.json @@ -1,40 +1,40 @@ { - "id" : "da5e6515-301a-4e63-bec2-2d2ce1f7d102", - "name" : "price_lists_nlnwecrekb", + "id" : "c35e228e-96c6-4085-afe1-eab88c66e176", + "name" : "api_price_lists_xlqjnczxql", "request" : { - "url" : "/price_lists/nLNWECREKB", + "url" : "/api/price_lists/xlqjNCZXQL", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"CHF\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"},\"name\":\"incentro updated price list\",\"reference\":null,\"reference_origin\":null,\"tax_included\":true},\"id\":\"nLNWECREKB\",\"type\":\"price_lists\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"currency_code\":\"CHF\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"},\"name\":\"incentro updated price list\",\"reference\":null,\"reference_origin\":null,\"tax_included\":true},\"id\":\"xlqjNCZXQL\",\"type\":\"price_lists\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro updated price list\",\"code\":null,\"currency_code\":\"CHF\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:23.775Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0f79d8b3ec7e0a931ceb3d0ad6b05f36c4be0aa436e6c30a9cc78e8103221073\"}}}", + "body" : "{\"data\":{\"id\":\"xlqjNCZXQL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL\"},\"attributes\":{\"name\":\"incentro updated price list\",\"code\":null,\"currency_code\":\"CHF\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:07:11.760Z\",\"updated_at\":\"2024-10-24T16:07:12.531Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6162bbd1fc59886f54791298b4950513fdcfe0920cc454f5777f7bc98922bf8d\"}}}", "headers" : { - "x-request-id" : "b95b4bfe-b50e-4da4-8f11-f2b103223f2f", - "x-kong-upstream-latency" : "20", + "x-request-id" : "81427022-a2c3-4732-9efa-01b274ba74b5", + "x-kong-upstream-latency" : "31", "X-Ratelimit-Remaining" : "99", - "x-kong-request-id" : "e889de32052f4f3aa77e0609a1c14525", + "x-kong-request-id" : "4d981334c73edd70a138e21e00bc8042", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:53:23 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:12 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"8d312b3c4a3523a3daa86429a36695ea\"", + "etag" : "W/\"1fad171347e06776f5ad05def7419af8\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "da5e6515-301a-4e63-bec2-2d2ce1f7d102", + "uuid" : "c35e228e-96c6-4085-afe1-eab88c66e176", "persistent" : true, - "insertionIndex" : 59 + "insertionIndex" : 64 } \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-854ff045-a298-4574-9d2b-553cfe2cc4c4.json b/mock/mappings/api_price_lists_xlqjnczxql-caa119bf-db37-488b-b6e1-2526efda9dcf.json similarity index 50% rename from mock/mappings/price_lists_nlnwecrekb-854ff045-a298-4574-9d2b-553cfe2cc4c4.json rename to mock/mappings/api_price_lists_xlqjnczxql-caa119bf-db37-488b-b6e1-2526efda9dcf.json index 3e17f9b..7bb27d5 100644 --- a/mock/mappings/price_lists_nlnwecrekb-854ff045-a298-4574-9d2b-553cfe2cc4c4.json +++ b/mock/mappings/api_price_lists_xlqjnczxql-caa119bf-db37-488b-b6e1-2526efda9dcf.json @@ -1,22 +1,22 @@ { - "id" : "854ff045-a298-4574-9d2b-553cfe2cc4c4", - "name" : "price_lists_nlnwecrekb", + "id" : "caa119bf-db37-488b-b6e1-2526efda9dcf", + "name" : "api_price_lists_xlqjnczxql", "request" : { - "url" : "/price_lists/nLNWECREKB", + "url" : "/api/price_lists/xlqjNCZXQL", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:22.937Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"647d0c347ca23aff92270a429fd136a04ce107cdacce4b3a3e00b5e4c8cee0b7\"}}}", + "body" : "{\"data\":{\"id\":\"xlqjNCZXQL\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T16:07:11.760Z\",\"updated_at\":\"2024-10-24T16:07:11.760Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/xlqjNCZXQL/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8abc7efd8c511c10ec933c43816de5e3e51f5012b125df35102cd3233a50c3f8\"}}}", "headers" : { - "x-request-id" : "03ea18a4-9d3d-4bc6-9285-8f5a06ccf355", - "x-kong-upstream-latency" : "13", + "x-request-id" : "0723365a-df56-40a4-9c45-175378a11083", + "x-kong-upstream-latency" : "14", "X-Ratelimit-Remaining" : "499", - "x-kong-request-id" : "2ea7cb120512d1286f5ba95886d8b859", + "x-kong-request-id" : "b818ba3152df9c4c7cd8890752ee447c", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:23 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:12 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"9bbe3d1d256f39450b08aadd4a4f8872\"", + "etag" : "W/\"6d7104e29b56a40ecbd5464811e3bf26\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "854ff045-a298-4574-9d2b-553cfe2cc4c4", + "uuid" : "caa119bf-db37-488b-b6e1-2526efda9dcf", "persistent" : true, - "scenarioName" : "scenario-9-price_lists-nLNWECREKB", + "scenarioName" : "scenario-9-api-price_lists-xlqjNCZXQL", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-9-price_lists-nLNWECREKB-2", - "insertionIndex" : 61 + "newScenarioState" : "scenario-9-api-price_lists-xlqjNCZXQL-2", + "insertionIndex" : 66 } \ No newline at end of file diff --git a/mock/mappings/shipping_categories-3a89b7e7-372d-4a02-95da-f025168f7c4a.json b/mock/mappings/api_shipping_categories-048995e3-f502-49d8-a4b7-96071b912a3d.json similarity index 56% rename from mock/mappings/shipping_categories-3a89b7e7-372d-4a02-95da-f025168f7c4a.json rename to mock/mappings/api_shipping_categories-048995e3-f502-49d8-a4b7-96071b912a3d.json index f37b82c..8c042ff 100644 --- a/mock/mappings/shipping_categories-3a89b7e7-372d-4a02-95da-f025168f7c4a.json +++ b/mock/mappings/api_shipping_categories-048995e3-f502-49d8-a4b7-96071b912a3d.json @@ -1,8 +1,8 @@ { - "id" : "3a89b7e7-372d-4a02-95da-f025168f7c4a", - "name" : "shipping_categories", + "id" : "048995e3-f502-49d8-a4b7-96071b912a3d", + "name" : "api_shipping_categories", "request" : { - "url" : "/shipping_categories", + "url" : "/api/shipping_categories", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"},\"name\":\"Incentro Shipping Category\",\"reference\":null,\"reference_origin\":null},\"type\":\"shipping_categories\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"27eb45fa7eb67762cfe3a6130f25192b8bd09875709d8cd0c381844bd6d0d506\"}}}", + "body" : "{\"data\":{\"id\":\"PwZqYFVnRN\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T16:07:13.881Z\",\"updated_at\":\"2024-10-24T16:07:13.881Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"974bbf9b267146ef75debf4d475f9a801a397518b17200c328cc564ca14d003e\"}}}", "headers" : { - "x-request-id" : "a8e7a8fa-92c3-4154-a9b3-7c9c30a0c7ab", - "x-kong-upstream-latency" : "19", + "x-request-id" : "1b040ab5-4da7-4234-a195-1dc1d0d35492", + "x-kong-upstream-latency" : "12", "X-Ratelimit-Remaining" : "98", - "x-kong-request-id" : "922a4122b7555900f4a5cf3f1340151a", + "x-kong-request-id" : "db11315fc4a74d757c47c137b4a6e51d", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:25 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:07:13 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"b7dd06734d2ed968957be7bc484b32cd\"", + "etag" : "W/\"53d5a2cdc9da06b991e9880a4104a0ed\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "3a89b7e7-372d-4a02-95da-f025168f7c4a", + "uuid" : "048995e3-f502-49d8-a4b7-96071b912a3d", "persistent" : true, - "insertionIndex" : 55 + "insertionIndex" : 60 } \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-0da83c66-d888-4134-a3f1-89c62a57657f.json b/mock/mappings/api_shipping_categories_pwzqyfvnrn-2dcaaa21-dfdf-4dab-9f54-b5fbeb37377a.json similarity index 58% rename from mock/mappings/shipping_zones_ekvlvtjyxq-0da83c66-d888-4134-a3f1-89c62a57657f.json rename to mock/mappings/api_shipping_categories_pwzqyfvnrn-2dcaaa21-dfdf-4dab-9f54-b5fbeb37377a.json index f9b788c..1a590cf 100644 --- a/mock/mappings/shipping_zones_ekvlvtjyxq-0da83c66-d888-4134-a3f1-89c62a57657f.json +++ b/mock/mappings/api_shipping_categories_pwzqyfvnrn-2dcaaa21-dfdf-4dab-9f54-b5fbeb37377a.json @@ -1,21 +1,21 @@ { - "id" : "0da83c66-d888-4134-a3f1-89c62a57657f", - "name" : "shipping_zones_ekvlvtjyxq", + "id" : "2dcaaa21-dfdf-4dab-9f54-b5fbeb37377a", + "name" : "api_shipping_categories_pwzqyfvnrn", "request" : { - "url" : "/shipping_zones/EKVlVtJYxQ", + "url" : "/api/shipping_categories/PwZqYFVnRN", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "6799a1ec-7e16-47ef-a6af-a6e645add646", + "x-request-id" : "e67f0c6f-6bb7-40b4-b7d3-b87bfdde0c64", "x-kong-upstream-latency" : "20", - "X-Ratelimit-Remaining" : "95", - "x-kong-request-id" : "ad739c6f2002b6021ca17453fd167b20", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "0cc4d93e59ad5e72e5689a763068d574", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:53:30 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:15 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "0da83c66-d888-4134-a3f1-89c62a57657f", + "uuid" : "2dcaaa21-dfdf-4dab-9f54-b5fbeb37377a", "persistent" : true, - "insertionIndex" : 36 + "insertionIndex" : 55 } \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-10a04027-1d06-4136-a2c8-509f2fa915b7.json b/mock/mappings/api_shipping_categories_pwzqyfvnrn-488f8eef-4e1a-45ff-81a4-5cbacc930861.json similarity index 53% rename from mock/mappings/shipping_categories_enbljfzglw-10a04027-1d06-4136-a2c8-509f2fa915b7.json rename to mock/mappings/api_shipping_categories_pwzqyfvnrn-488f8eef-4e1a-45ff-81a4-5cbacc930861.json index f2c47c0..8c1daf4 100644 --- a/mock/mappings/shipping_categories_enbljfzglw-10a04027-1d06-4136-a2c8-509f2fa915b7.json +++ b/mock/mappings/api_shipping_categories_pwzqyfvnrn-488f8eef-4e1a-45ff-81a4-5cbacc930861.json @@ -1,40 +1,40 @@ { - "id" : "10a04027-1d06-4136-a2c8-509f2fa915b7", - "name" : "shipping_categories_enbljfzglw", + "id" : "488f8eef-4e1a-45ff-81a4-5cbacc930861", + "name" : "api_shipping_categories_pwzqyfvnrn", "request" : { - "url" : "/shipping_categories/ENblJFZgLW", + "url" : "/api/shipping_categories/PwZqYFVnRN", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"},\"name\":\"Incentro Shipping Category Updated\",\"reference\":null,\"reference_origin\":null},\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"},\"name\":\"Incentro Shipping Category Updated\",\"reference\":null,\"reference_origin\":null},\"id\":\"PwZqYFVnRN\",\"type\":\"shipping_categories\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category Updated\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.927Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"966ff929d160c9446b58e4ca5f6b78501366efa832e4346708ec6b84be2f5701\"}}}", + "body" : "{\"data\":{\"id\":\"PwZqYFVnRN\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN\"},\"attributes\":{\"name\":\"Incentro Shipping Category Updated\",\"code\":null,\"created_at\":\"2024-10-24T16:07:13.881Z\",\"updated_at\":\"2024-10-24T16:07:14.764Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f305cb85fff7960ada175c5435709608f89f87198798ce77191b450539d6d59f\"}}}", "headers" : { - "x-request-id" : "bde1268d-3066-43fb-995b-a406aa042aef", - "x-kong-upstream-latency" : "28", + "x-request-id" : "e82bf295-d632-440e-9b10-9ca4347fd31c", + "x-kong-upstream-latency" : "25", "X-Ratelimit-Remaining" : "98", - "x-kong-request-id" : "f1a54925738188495c2cb212da2d0011", + "x-kong-request-id" : "7054cf19698f7f0c087d8e70d2bb921c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:25 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:14 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"bea73c061bc973d2691022102bdf6ecd\"", + "etag" : "W/\"4c1f3e665d116497ff738a4134567581\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "10a04027-1d06-4136-a2c8-509f2fa915b7", + "uuid" : "488f8eef-4e1a-45ff-81a4-5cbacc930861", "persistent" : true, - "insertionIndex" : 52 + "insertionIndex" : 57 } \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_pwzqyfvnrn-835add12-0700-4885-b687-f371e75f6a8f.json b/mock/mappings/api_shipping_categories_pwzqyfvnrn-835add12-0700-4885-b687-f371e75f6a8f.json new file mode 100644 index 0000000..5ce4641 --- /dev/null +++ b/mock/mappings/api_shipping_categories_pwzqyfvnrn-835add12-0700-4885-b687-f371e75f6a8f.json @@ -0,0 +1,38 @@ +{ + "id" : "835add12-0700-4885-b687-f371e75f6a8f", + "name" : "api_shipping_categories_pwzqyfvnrn", + "request" : { + "url" : "/api/shipping_categories/PwZqYFVnRN", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PwZqYFVnRN\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T16:07:13.881Z\",\"updated_at\":\"2024-10-24T16:07:13.881Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"99cb787b65a43db30acd2656aa7c9235554dbfe21c22551355f544828e94f2a0\"}}}", + "headers" : { + "x-request-id" : "4bd855d8-5945-47b8-9ad8-fa83031649bb", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "96", + "x-kong-request-id" : "f4b9a032424e9f7b9edd8426bf79a347", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:14 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"d0e21906eb3a86d011c8387692b1213d\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "835add12-0700-4885-b687-f371e75f6a8f", + "persistent" : true, + "scenarioName" : "scenario-8-api-shipping_categories-PwZqYFVnRN", + "requiredScenarioState" : "scenario-8-api-shipping_categories-PwZqYFVnRN-2", + "newScenarioState" : "scenario-8-api-shipping_categories-PwZqYFVnRN-3", + "insertionIndex" : 58 +} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json b/mock/mappings/api_shipping_categories_pwzqyfvnrn-995cda40-c923-4a9b-b036-95ec07636a27.json similarity index 60% rename from mock/mappings/shipping_categories_enbljfzglw-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json rename to mock/mappings/api_shipping_categories_pwzqyfvnrn-995cda40-c923-4a9b-b036-95ec07636a27.json index 96e252e..098906b 100644 --- a/mock/mappings/shipping_categories_enbljfzglw-9c32de2b-c619-46d7-95b3-9b9ae4c82509.json +++ b/mock/mappings/api_shipping_categories_pwzqyfvnrn-995cda40-c923-4a9b-b036-95ec07636a27.json @@ -1,22 +1,22 @@ { - "id" : "9c32de2b-c619-46d7-95b3-9b9ae4c82509", - "name" : "shipping_categories_enbljfzglw", + "id" : "995cda40-c923-4a9b-b036-95ec07636a27", + "name" : "api_shipping_categories_pwzqyfvnrn", "request" : { - "url" : "/shipping_categories/ENblJFZgLW", + "url" : "/api/shipping_categories/PwZqYFVnRN", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "ad0d5f11-5a61-4428-9015-9fb151c57546", - "x-kong-upstream-latency" : "8", + "x-request-id" : "87b425f8-803c-4cb2-af78-b8bcabc2328b", + "x-kong-upstream-latency" : "9", "X-Ratelimit-Remaining" : "94", - "x-kong-request-id" : "79759464d77ff058c647821ebb501b7c", + "x-kong-request-id" : "baf91244c502b1552b817a5cba5d6f16", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:26 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:15 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "9c32de2b-c619-46d7-95b3-9b9ae4c82509", + "uuid" : "995cda40-c923-4a9b-b036-95ec07636a27", "persistent" : true, - "scenarioName" : "scenario-8-shipping_categories-ENblJFZgLW", - "requiredScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-4", - "insertionIndex" : 49 + "scenarioName" : "scenario-8-api-shipping_categories-PwZqYFVnRN", + "requiredScenarioState" : "scenario-8-api-shipping_categories-PwZqYFVnRN-4", + "insertionIndex" : 54 } \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_pwzqyfvnrn-bd7dfe78-88ee-424f-87e1-7848d3d1e0dd.json b/mock/mappings/api_shipping_categories_pwzqyfvnrn-bd7dfe78-88ee-424f-87e1-7848d3d1e0dd.json new file mode 100644 index 0000000..0fef4e5 --- /dev/null +++ b/mock/mappings/api_shipping_categories_pwzqyfvnrn-bd7dfe78-88ee-424f-87e1-7848d3d1e0dd.json @@ -0,0 +1,38 @@ +{ + "id" : "bd7dfe78-88ee-424f-87e1-7848d3d1e0dd", + "name" : "api_shipping_categories_pwzqyfvnrn", + "request" : { + "url" : "/api/shipping_categories/PwZqYFVnRN", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PwZqYFVnRN\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN\"},\"attributes\":{\"name\":\"Incentro Shipping Category Updated\",\"code\":null,\"created_at\":\"2024-10-24T16:07:13.881Z\",\"updated_at\":\"2024-10-24T16:07:14.764Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1c0e680f2fd2f652bebabd8d6a625c6de38abd534b535bbf2582ab30b7abeccb\"}}}", + "headers" : { + "x-request-id" : "f7eb4b2d-7e32-486a-8ebf-eadaf6b404e9", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "9600d852611c6f56b158353c3fb3af3a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:15 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"4e97ee9772fa0afe9aef867124acbc94\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bd7dfe78-88ee-424f-87e1-7848d3d1e0dd", + "persistent" : true, + "scenarioName" : "scenario-8-api-shipping_categories-PwZqYFVnRN", + "requiredScenarioState" : "scenario-8-api-shipping_categories-PwZqYFVnRN-3", + "newScenarioState" : "scenario-8-api-shipping_categories-PwZqYFVnRN-4", + "insertionIndex" : 56 +} \ No newline at end of file diff --git a/mock/mappings/api_shipping_categories_pwzqyfvnrn-dd5c3ce9-e489-49af-824f-ee0c5cc8d1d2.json b/mock/mappings/api_shipping_categories_pwzqyfvnrn-dd5c3ce9-e489-49af-824f-ee0c5cc8d1d2.json new file mode 100644 index 0000000..dcbab8c --- /dev/null +++ b/mock/mappings/api_shipping_categories_pwzqyfvnrn-dd5c3ce9-e489-49af-824f-ee0c5cc8d1d2.json @@ -0,0 +1,38 @@ +{ + "id" : "dd5c3ce9-e489-49af-824f-ee0c5cc8d1d2", + "name" : "api_shipping_categories_pwzqyfvnrn", + "request" : { + "url" : "/api/shipping_categories/PwZqYFVnRN", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"PwZqYFVnRN\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T16:07:13.881Z\",\"updated_at\":\"2024-10-24T16:07:13.881Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/PwZqYFVnRN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7adc84c33c835a89524f4ec67e8cd76779ad420e6376d1b9ff87f6c2d2daf3ff\"}}}", + "headers" : { + "x-request-id" : "e5beb520-8918-453a-bbae-02b10c466c23", + "x-kong-upstream-latency" : "12", + "X-Ratelimit-Remaining" : "97", + "x-kong-request-id" : "16ce2c1403e4e66a095b94055574d550", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:14 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"8ec6d0240f8fd744affe06dbc584ba27\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "dd5c3ce9-e489-49af-824f-ee0c5cc8d1d2", + "persistent" : true, + "scenarioName" : "scenario-8-api-shipping_categories-PwZqYFVnRN", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-8-api-shipping_categories-PwZqYFVnRN-2", + "insertionIndex" : 59 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json b/mock/mappings/api_shipping_methods-0f14e125-f390-4919-b08a-50667e5fece0.json similarity index 60% rename from mock/mappings/shipping_methods-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json rename to mock/mappings/api_shipping_methods-0f14e125-f390-4919-b08a-50667e5fece0.json index 4d56898..8273084 100644 --- a/mock/mappings/shipping_methods-0620d31c-17f9-4b38-9dd6-8cfcee89cc2e.json +++ b/mock/mappings/api_shipping_methods-0f14e125-f390-4919-b08a-50667e5fece0.json @@ -1,8 +1,8 @@ { - "id" : "0620d31c-17f9-4b38-9dd6-8cfcee89cc2e", - "name" : "shipping_methods", + "id" : "0f14e125-f390-4919-b08a-50667e5fece0", + "name" : "api_shipping_methods", "request" : { - "url" : "/shipping_methods", + "url" : "/api/shipping_methods", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"_enable\":true,\"currency_code\":\"EUR\",\"external_prices_url\":null,\"free_over_amount_cents\":10000,\"max_weight\":10,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_weight\":0.5,\"name\":\"Incentro Test Shipping Method\",\"price_amount_cents\":1000,\"reference\":null,\"reference_origin\":null,\"scheme\":\"flat\",\"unit_of_weight\":\"kg\",\"use_subtotal\":false},\"relationships\":{},\"type\":\"shipping_methods\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:51:37.570Z\",\"updated_at\":\"2024-10-24T15:51:37.570Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"30467facea24c160c60494345e7fe065d70028b5d968de5ccba58a7c6d237ea0\"}}}", + "body" : "{\"data\":{\"id\":\"JORxbFaRpV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T16:05:27.368Z\",\"updated_at\":\"2024-10-24T16:05:27.368Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4c147f9aa6f46fd7c932673f8459984c014077f3b6f3975d31d7ae7b872f135d\"}}}", "headers" : { - "x-request-id" : "84a6a7c2-b80c-4cdc-ac38-ad5448dde85e", - "x-kong-upstream-latency" : "46", - "X-Ratelimit-Remaining" : "93", - "x-kong-request-id" : "a5617c0e8973240c8f120c7beb099132", + "x-request-id" : "d04f0acf-bfa8-4b07-b2ae-d90e9876eed8", + "x-kong-upstream-latency" : "30", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "1d44de6051a15979f78fcd6cca24a229", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:37 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:27 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"6b039e2dc095569667cf38e9c45558f6\"", + "etag" : "W/\"b3bc5ac40ea9bac423625026e25d0566\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "0620d31c-17f9-4b38-9dd6-8cfcee89cc2e", + "uuid" : "0f14e125-f390-4919-b08a-50667e5fece0", "persistent" : true, - "insertionIndex" : 248 + "insertionIndex" : 254 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods-15d31379-0a42-4667-bcf5-7c90563c3028.json b/mock/mappings/api_shipping_methods-2a0768b1-55d4-4921-96f3-096866dae886.json similarity index 58% rename from mock/mappings/shipping_methods-15d31379-0a42-4667-bcf5-7c90563c3028.json rename to mock/mappings/api_shipping_methods-2a0768b1-55d4-4921-96f3-096866dae886.json index f93c197..d5d3951 100644 --- a/mock/mappings/shipping_methods-15d31379-0a42-4667-bcf5-7c90563c3028.json +++ b/mock/mappings/api_shipping_methods-2a0768b1-55d4-4921-96f3-096866dae886.json @@ -1,8 +1,8 @@ { - "id" : "15d31379-0a42-4667-bcf5-7c90563c3028", - "name" : "shipping_methods", + "id" : "2a0768b1-55d4-4921-96f3-096866dae886", + "name" : "api_shipping_methods", "request" : { - "url" : "/shipping_methods", + "url" : "/api/shipping_methods", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"_enable\":true,\"currency_code\":\"EUR\",\"external_prices_url\":null,\"free_over_amount_cents\":10000,\"max_weight\":10,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"},\"min_weight\":0.5,\"name\":\"Incentro Test Shipping Method\",\"price_amount_cents\":1000,\"reference\":null,\"reference_origin\":null,\"scheme\":\"flat\",\"unit_of_weight\":\"kg\",\"use_subtotal\":false},\"relationships\":{},\"type\":\"shipping_methods\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.118Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ae1478d37fe552a06d6984ba06e7d494d6a0cdb89d0554cf6c980690c0ea4e49\"}}}", + "body" : "{\"data\":{\"id\":\"YEPkYFrnAV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T16:07:16.146Z\",\"updated_at\":\"2024-10-24T16:07:16.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c63361df6341e46761984ddcbe68368443fe102479cdeb748436637d1034ceb7\"}}}", "headers" : { - "x-request-id" : "390a7e15-c70d-4614-aa36-e687316c8275", - "x-kong-upstream-latency" : "29", + "x-request-id" : "ae0ecbdd-b2fc-4646-b6a2-f70c507443f4", + "x-kong-upstream-latency" : "86", "X-Ratelimit-Remaining" : "97", - "x-kong-request-id" : "b6a2aa6ab3e8151c42bb3636041beb47", + "x-kong-request-id" : "bd12035367af6f60ce09ba2859a9160f", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:53:27 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:16 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"9e901513a9d89268654ae8dda1d5288d\"", + "etag" : "W/\"1032b9fbbd931f2197e477203c59e2ca\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "15d31379-0a42-4667-bcf5-7c90563c3028", + "uuid" : "2a0768b1-55d4-4921-96f3-096866dae886", "persistent" : true, - "insertionIndex" : 48 + "insertionIndex" : 53 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json b/mock/mappings/api_shipping_methods_jorxbfarpv-045694e2-fc86-4ffa-b85e-51fc7eb7371f.json similarity index 55% rename from mock/mappings/shipping_methods_mvjqofzjyn-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json rename to mock/mappings/api_shipping_methods_jorxbfarpv-045694e2-fc86-4ffa-b85e-51fc7eb7371f.json index c34da78..d93342e 100644 --- a/mock/mappings/shipping_methods_mvjqofzjyn-d65146dc-f8ef-4fdb-969e-c573ad70a8ea.json +++ b/mock/mappings/api_shipping_methods_jorxbfarpv-045694e2-fc86-4ffa-b85e-51fc7eb7371f.json @@ -1,22 +1,22 @@ { - "id" : "d65146dc-f8ef-4fdb-969e-c573ad70a8ea", - "name" : "shipping_methods_mvjqofzjyn", + "id" : "045694e2-fc86-4ffa-b85e-51fc7eb7371f", + "name" : "api_shipping_methods_jorxbfarpv", "request" : { - "url" : "/shipping_methods/mVJQoFZJyN", + "url" : "/api/shipping_methods/JORxbFaRpV", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:51:37.570Z\",\"updated_at\":\"2024-10-24T15:51:37.570Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a3edf333104a84f35e9b190adfbd58b1bf692ae0db60c9060e673f90cd844ca6\"}}}", + "body" : "{\"data\":{\"id\":\"JORxbFaRpV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T16:05:27.368Z\",\"updated_at\":\"2024-10-24T16:05:27.368Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1ad97c685b344a4e999240572a7c292805c22a81f2ca33c5f19786fcb58a352e\"}}}", "headers" : { - "x-request-id" : "a028a02f-1f68-4a53-bc40-9d6a93d5d45a", - "x-kong-upstream-latency" : "41", + "x-request-id" : "69232460-1aa4-42e2-b990-5918723b2ca2", + "x-kong-upstream-latency" : "26", "X-Ratelimit-Remaining" : "78", - "x-kong-request-id" : "6507a0252e8c665ad252c073ebfeec24", + "x-kong-request-id" : "fd8e9349f8e19e5558f29a6c9ad0c058", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:28 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"13be216d9b78bd1985137bd3af0c59c6\"", + "etag" : "W/\"600702314ae32f07c04bbf9d3c924618\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "d65146dc-f8ef-4fdb-969e-c573ad70a8ea", + "uuid" : "045694e2-fc86-4ffa-b85e-51fc7eb7371f", "persistent" : true, - "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", + "scenarioName" : "scenario-36-api-shipping_methods-JORxbFaRpV", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-2", - "insertionIndex" : 244 + "newScenarioState" : "scenario-36-api-shipping_methods-JORxbFaRpV-2", + "insertionIndex" : 249 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json b/mock/mappings/api_shipping_methods_jorxbfarpv-34cec9a3-a9af-41fd-b623-b12e5520df23.json similarity index 53% rename from mock/mappings/shipping_methods_mvjqofzjyn-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json rename to mock/mappings/api_shipping_methods_jorxbfarpv-34cec9a3-a9af-41fd-b623-b12e5520df23.json index 0c96a9b..bc16fb1 100644 --- a/mock/mappings/shipping_methods_mvjqofzjyn-c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0.json +++ b/mock/mappings/api_shipping_methods_jorxbfarpv-34cec9a3-a9af-41fd-b623-b12e5520df23.json @@ -1,22 +1,22 @@ { - "id" : "c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0", - "name" : "shipping_methods_mvjqofzjyn", + "id" : "34cec9a3-a9af-41fd-b623-b12e5520df23", + "name" : "api_shipping_methods_jorxbfarpv", "request" : { - "url" : "/shipping_methods/mVJQoFZJyN", + "url" : "/api/shipping_methods/JORxbFaRpV", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:51:37.570Z\",\"updated_at\":\"2024-10-24T15:51:37.570Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a3edf333104a84f35e9b190adfbd58b1bf692ae0db60c9060e673f90cd844ca6\"}}}", + "body" : "{\"data\":{\"id\":\"JORxbFaRpV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T16:05:27.368Z\",\"updated_at\":\"2024-10-24T16:05:27.368Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1ad97c685b344a4e999240572a7c292805c22a81f2ca33c5f19786fcb58a352e\"}}}", "headers" : { - "x-request-id" : "a028a02f-1f68-4a53-bc40-9d6a93d5d45a", - "x-kong-upstream-latency" : "41", + "x-request-id" : "69232460-1aa4-42e2-b990-5918723b2ca2", + "x-kong-upstream-latency" : "26", "X-Ratelimit-Remaining" : "76", - "x-kong-request-id" : "6507a0252e8c665ad252c073ebfeec24", + "x-kong-request-id" : "fd8e9349f8e19e5558f29a6c9ad0c058", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:29 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"13be216d9b78bd1985137bd3af0c59c6\"", + "etag" : "W/\"600702314ae32f07c04bbf9d3c924618\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "c0f1ba6d-c418-4f77-a0ed-bb8b18ca80c0", + "uuid" : "34cec9a3-a9af-41fd-b623-b12e5520df23", "persistent" : true, - "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", - "requiredScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-2", - "newScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-3", - "insertionIndex" : 241 + "scenarioName" : "scenario-36-api-shipping_methods-JORxbFaRpV", + "requiredScenarioState" : "scenario-36-api-shipping_methods-JORxbFaRpV-2", + "newScenarioState" : "scenario-36-api-shipping_methods-JORxbFaRpV-3", + "insertionIndex" : 246 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json b/mock/mappings/api_shipping_methods_jorxbfarpv-602d7c7f-60c4-446c-94e7-d4df8a0a06d2.json similarity index 58% rename from mock/mappings/shipping_methods_mvjqofzjyn-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json rename to mock/mappings/api_shipping_methods_jorxbfarpv-602d7c7f-60c4-446c-94e7-d4df8a0a06d2.json index 696fa98..afc4225 100644 --- a/mock/mappings/shipping_methods_mvjqofzjyn-7f1669d9-de2a-46f6-9fdd-7335e5d11db0.json +++ b/mock/mappings/api_shipping_methods_jorxbfarpv-602d7c7f-60c4-446c-94e7-d4df8a0a06d2.json @@ -1,22 +1,22 @@ { - "id" : "7f1669d9-de2a-46f6-9fdd-7335e5d11db0", - "name" : "shipping_methods_mvjqofzjyn", + "id" : "602d7c7f-60c4-446c-94e7-d4df8a0a06d2", + "name" : "api_shipping_methods_jorxbfarpv", "request" : { - "url" : "/shipping_methods/mVJQoFZJyN", + "url" : "/api/shipping_methods/JORxbFaRpV", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "a0a9ed54-0bf4-4f62-ae04-fff96f25f070", - "x-kong-upstream-latency" : "7", + "x-request-id" : "8f7942ae-5961-4c41-a248-89ef8d951f30", + "x-kong-upstream-latency" : "9", "X-Ratelimit-Remaining" : "68", - "x-kong-request-id" : "1d4f06222da1c905a91b3a2bba055127", + "x-kong-request-id" : "d9c7933049782d763a21e1746088f628", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:31 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -29,10 +29,10 @@ "Age" : "0" } }, - "uuid" : "7f1669d9-de2a-46f6-9fdd-7335e5d11db0", + "uuid" : "602d7c7f-60c4-446c-94e7-d4df8a0a06d2", "persistent" : true, - "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", - "requiredScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-4", - "newScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-5", - "insertionIndex" : 226 + "scenarioName" : "scenario-36-api-shipping_methods-JORxbFaRpV", + "requiredScenarioState" : "scenario-36-api-shipping_methods-JORxbFaRpV-4", + "newScenarioState" : "scenario-36-api-shipping_methods-JORxbFaRpV-5", + "insertionIndex" : 231 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-7f30fb03-a0ef-466b-aef4-33139aea7227.json b/mock/mappings/api_shipping_methods_jorxbfarpv-a761793d-029e-4d31-a275-a27366f6048a.json similarity index 61% rename from mock/mappings/shipping_methods_mvjqofzjyn-7f30fb03-a0ef-466b-aef4-33139aea7227.json rename to mock/mappings/api_shipping_methods_jorxbfarpv-a761793d-029e-4d31-a275-a27366f6048a.json index ba1dfcc..ddfdf71 100644 --- a/mock/mappings/shipping_methods_mvjqofzjyn-7f30fb03-a0ef-466b-aef4-33139aea7227.json +++ b/mock/mappings/api_shipping_methods_jorxbfarpv-a761793d-029e-4d31-a275-a27366f6048a.json @@ -1,22 +1,22 @@ { - "id" : "7f30fb03-a0ef-466b-aef4-33139aea7227", - "name" : "shipping_methods_mvjqofzjyn", + "id" : "a761793d-029e-4d31-a275-a27366f6048a", + "name" : "api_shipping_methods_jorxbfarpv", "request" : { - "url" : "/shipping_methods/mVJQoFZJyN", + "url" : "/api/shipping_methods/JORxbFaRpV", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "a0a9ed54-0bf4-4f62-ae04-fff96f25f070", - "x-kong-upstream-latency" : "7", + "x-request-id" : "8f7942ae-5961-4c41-a248-89ef8d951f30", + "x-kong-upstream-latency" : "9", "X-Ratelimit-Remaining" : "67", - "x-kong-request-id" : "1d4f06222da1c905a91b3a2bba055127", + "x-kong-request-id" : "d9c7933049782d763a21e1746088f628", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:31 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -29,9 +29,9 @@ "Age" : "0" } }, - "uuid" : "7f30fb03-a0ef-466b-aef4-33139aea7227", + "uuid" : "a761793d-029e-4d31-a275-a27366f6048a", "persistent" : true, - "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", - "requiredScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-5", - "insertionIndex" : 225 + "scenarioName" : "scenario-36-api-shipping_methods-JORxbFaRpV", + "requiredScenarioState" : "scenario-36-api-shipping_methods-JORxbFaRpV-5", + "insertionIndex" : 230 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-4dfed22a-45de-4d63-bc3d-26c39407b01e.json b/mock/mappings/api_shipping_methods_jorxbfarpv-b7b95089-2033-4bf0-92b2-d835bbc2740b.json similarity index 55% rename from mock/mappings/shipping_methods_mvjqofzjyn-4dfed22a-45de-4d63-bc3d-26c39407b01e.json rename to mock/mappings/api_shipping_methods_jorxbfarpv-b7b95089-2033-4bf0-92b2-d835bbc2740b.json index f82e786..3dcc063 100644 --- a/mock/mappings/shipping_methods_mvjqofzjyn-4dfed22a-45de-4d63-bc3d-26c39407b01e.json +++ b/mock/mappings/api_shipping_methods_jorxbfarpv-b7b95089-2033-4bf0-92b2-d835bbc2740b.json @@ -1,21 +1,21 @@ { - "id" : "4dfed22a-45de-4d63-bc3d-26c39407b01e", - "name" : "shipping_methods_mvjqofzjyn", + "id" : "b7b95089-2033-4bf0-92b2-d835bbc2740b", + "name" : "api_shipping_methods_jorxbfarpv", "request" : { - "url" : "/shipping_methods/mVJQoFZJyN", + "url" : "/api/shipping_methods/JORxbFaRpV", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "9087506b-02a3-4e55-b262-a0117e669d8a", - "x-kong-upstream-latency" : "38", + "x-request-id" : "6da98ef7-3047-4aeb-8819-05f980423ccb", + "x-kong-upstream-latency" : "39", "X-Ratelimit-Remaining" : "92", - "x-kong-request-id" : "08dc4728c2ec92537614bb14f5d0ed0b", + "x-kong-request-id" : "4675904a7f2ff61dca585f40c041ad21", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:30 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "4dfed22a-45de-4d63-bc3d-26c39407b01e", + "uuid" : "b7b95089-2033-4bf0-92b2-d835bbc2740b", "persistent" : true, - "insertionIndex" : 230 + "insertionIndex" : 235 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_mvjqofzjyn-14b8db65-0273-4b45-a670-f4e9a21b5666.json b/mock/mappings/api_shipping_methods_jorxbfarpv-d6167c8e-c5aa-4651-a63b-7cb7cdfcc7dc.json similarity index 53% rename from mock/mappings/shipping_methods_mvjqofzjyn-14b8db65-0273-4b45-a670-f4e9a21b5666.json rename to mock/mappings/api_shipping_methods_jorxbfarpv-d6167c8e-c5aa-4651-a63b-7cb7cdfcc7dc.json index ba71807..d5b8ea1 100644 --- a/mock/mappings/shipping_methods_mvjqofzjyn-14b8db65-0273-4b45-a670-f4e9a21b5666.json +++ b/mock/mappings/api_shipping_methods_jorxbfarpv-d6167c8e-c5aa-4651-a63b-7cb7cdfcc7dc.json @@ -1,22 +1,22 @@ { - "id" : "14b8db65-0273-4b45-a670-f4e9a21b5666", - "name" : "shipping_methods_mvjqofzjyn", + "id" : "d6167c8e-c5aa-4651-a63b-7cb7cdfcc7dc", + "name" : "api_shipping_methods_jorxbfarpv", "request" : { - "url" : "/shipping_methods/mVJQoFZJyN", + "url" : "/api/shipping_methods/JORxbFaRpV", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:51:37.570Z\",\"updated_at\":\"2024-10-24T15:51:37.570Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/mVJQoFZJyN/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"12876492c85d9cf558e12cd3285ab4a56960fd9c7499a5869f7119343737e27e\"}}}", + "body" : "{\"data\":{\"id\":\"JORxbFaRpV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T16:05:27.368Z\",\"updated_at\":\"2024-10-24T16:05:27.368Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/JORxbFaRpV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"47b07626a5bde61c2d72ed3949b8dd00e79afe9c0f5bbf11510372e4369a81cf\"}}}", "headers" : { - "x-request-id" : "bd26270f-de49-4b4e-aa4d-6de3dd147dee", - "x-kong-upstream-latency" : "39", + "x-request-id" : "1e7875c4-b6f2-4873-bbca-0e43b134f0b4", + "x-kong-upstream-latency" : "17", "X-Ratelimit-Remaining" : "72", - "x-kong-request-id" : "0648c565129d4b3cbdd6563f16cee466", + "x-kong-request-id" : "7c5a68247f185b22af48132a47a74728", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:30 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"8996c0986f315c53f7a2ebaebec55035\"", + "etag" : "W/\"dafc85b07cffa24d93393089d83cc757\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "14b8db65-0273-4b45-a670-f4e9a21b5666", + "uuid" : "d6167c8e-c5aa-4651-a63b-7cb7cdfcc7dc", "persistent" : true, - "scenarioName" : "scenario-36-shipping_methods-mVJQoFZJyN", - "requiredScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-3", - "newScenarioState" : "scenario-36-shipping_methods-mVJQoFZJyN-4", - "insertionIndex" : 235 + "scenarioName" : "scenario-36-api-shipping_methods-JORxbFaRpV", + "requiredScenarioState" : "scenario-36-api-shipping_methods-JORxbFaRpV-3", + "newScenarioState" : "scenario-36-api-shipping_methods-JORxbFaRpV-4", + "insertionIndex" : 240 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json b/mock/mappings/api_shipping_methods_yepkyfrnav-36655318-fde9-4612-9f6f-4248c622dd45.json similarity index 61% rename from mock/mappings/shipping_methods_avqkgfqjjo-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json rename to mock/mappings/api_shipping_methods_yepkyfrnav-36655318-fde9-4612-9f6f-4248c622dd45.json index ac31d1e..ae2387b 100644 --- a/mock/mappings/shipping_methods_avqkgfqjjo-d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb.json +++ b/mock/mappings/api_shipping_methods_yepkyfrnav-36655318-fde9-4612-9f6f-4248c622dd45.json @@ -1,22 +1,22 @@ { - "id" : "d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb", - "name" : "shipping_methods_avqkgfqjjo", + "id" : "36655318-fde9-4612-9f6f-4248c622dd45", + "name" : "api_shipping_methods_yepkyfrnav", "request" : { - "url" : "/shipping_methods/aVQkGFqJJO", + "url" : "/api/shipping_methods/YEPkYFrnAV", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "ecbed094-e7c0-48ac-a90d-34433d7fa37a", - "x-kong-upstream-latency" : "8", + "x-request-id" : "3ebca06b-ff4a-4527-8cef-4cf195d897f2", + "x-kong-upstream-latency" : "10", "X-Ratelimit-Remaining" : "90", - "x-kong-request-id" : "89cf031892aed341523b5d1b1d517525", + "x-kong-request-id" : "5919812ba759eb2ba4072a3af93d4164", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:28 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:18 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -29,9 +29,9 @@ "Age" : "0" } }, - "uuid" : "d452bf1d-a5bd-4da5-88d7-d76d7f9d1acb", + "uuid" : "36655318-fde9-4612-9f6f-4248c622dd45", "persistent" : true, - "scenarioName" : "scenario-7-shipping_methods-aVQkGFqJJO", - "requiredScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-4", - "insertionIndex" : 42 + "scenarioName" : "scenario-7-api-shipping_methods-YEPkYFrnAV", + "requiredScenarioState" : "scenario-7-api-shipping_methods-YEPkYFrnAV-4", + "insertionIndex" : 47 } \ No newline at end of file diff --git a/mock/mappings/api_shipping_methods_yepkyfrnav-4dfbd49c-4731-4b2b-b55e-70b3d3936ab0.json b/mock/mappings/api_shipping_methods_yepkyfrnav-4dfbd49c-4731-4b2b-b55e-70b3d3936ab0.json new file mode 100644 index 0000000..8cab34f --- /dev/null +++ b/mock/mappings/api_shipping_methods_yepkyfrnav-4dfbd49c-4731-4b2b-b55e-70b3d3936ab0.json @@ -0,0 +1,39 @@ +{ + "id" : "4dfbd49c-4731-4b2b-b55e-70b3d3936ab0", + "name" : "api_shipping_methods_yepkyfrnav", + "request" : { + "url" : "/api/shipping_methods/YEPkYFrnAV", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"YEPkYFrnAV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method Updated\",\"scheme\":\"external\",\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"price_amount_cents\":1,\"price_amount_float\":0.01,\"formatted_price_amount\":\"CHF 0.01\",\"free_over_amount_cents\":1,\"free_over_amount_float\":0.01,\"formatted_free_over_amount\":\"CHF 0.01\",\"use_subtotal\":true,\"price_amount_for_shipment_cents\":1,\"price_amount_for_shipment_float\":0.01,\"formatted_price_amount_for_shipment\":\"CHF 0.01\",\"min_weight\":1.0,\"max_weight\":20.0,\"unit_of_weight\":\"oz\",\"disabled_at\":\"2024-10-24T16:07:17.169Z\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"created_at\":\"2024-10-24T16:07:16.146Z\",\"updated_at\":\"2024-10-24T16:07:17.172Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"becadab6e7dea2eec1a473620bfbdd60b076dea89a7ffc460fb9a84b7e8c8a00\"}}}", + "headers" : { + "x-request-id" : "5c714faf-2712-4d4a-aa94-a9281f4b7cbd", + "x-kong-upstream-latency" : "24", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "951e4c45cc2dd27c645d856da8bab105", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:17 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"efd034a8fa84945901eb33642e988f8a\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "4dfbd49c-4731-4b2b-b55e-70b3d3936ab0", + "persistent" : true, + "scenarioName" : "scenario-7-api-shipping_methods-YEPkYFrnAV", + "requiredScenarioState" : "scenario-7-api-shipping_methods-YEPkYFrnAV-3", + "newScenarioState" : "scenario-7-api-shipping_methods-YEPkYFrnAV-4", + "insertionIndex" : 49 +} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json b/mock/mappings/api_shipping_methods_yepkyfrnav-6aaa15b9-4c9c-4382-bba4-a8449021196f.json similarity index 58% rename from mock/mappings/shipping_methods_avqkgfqjjo-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json rename to mock/mappings/api_shipping_methods_yepkyfrnav-6aaa15b9-4c9c-4382-bba4-a8449021196f.json index 8d43b48..54fa521 100644 --- a/mock/mappings/shipping_methods_avqkgfqjjo-5cd716c6-aaac-4283-95b2-29bf4fe0c6ab.json +++ b/mock/mappings/api_shipping_methods_yepkyfrnav-6aaa15b9-4c9c-4382-bba4-a8449021196f.json @@ -1,21 +1,21 @@ { - "id" : "5cd716c6-aaac-4283-95b2-29bf4fe0c6ab", - "name" : "shipping_methods_avqkgfqjjo", + "id" : "6aaa15b9-4c9c-4382-bba4-a8449021196f", + "name" : "api_shipping_methods_yepkyfrnav", "request" : { - "url" : "/shipping_methods/aVQkGFqJJO", + "url" : "/api/shipping_methods/YEPkYFrnAV", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "cefc434c-30c3-4b14-918b-770359b47b75", - "x-kong-upstream-latency" : "37", + "x-request-id" : "1c1f6f44-13ad-4d9d-b618-42824dca72ca", + "x-kong-upstream-latency" : "34", "X-Ratelimit-Remaining" : "96", - "x-kong-request-id" : "5c4dc56666bfe3765a0d0568baa1990f", + "x-kong-request-id" : "283fd264a0d8246b15271a79bbe72b02", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:28 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:18 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "5cd716c6-aaac-4283-95b2-29bf4fe0c6ab", + "uuid" : "6aaa15b9-4c9c-4382-bba4-a8449021196f", "persistent" : true, - "insertionIndex" : 43 + "insertionIndex" : 48 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json b/mock/mappings/api_shipping_methods_yepkyfrnav-89e93989-fe01-4da3-a0d8-50fbbb9792e5.json similarity index 50% rename from mock/mappings/shipping_methods_avqkgfqjjo-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json rename to mock/mappings/api_shipping_methods_yepkyfrnav-89e93989-fe01-4da3-a0d8-50fbbb9792e5.json index aa520f4..3d41c37 100644 --- a/mock/mappings/shipping_methods_avqkgfqjjo-77ffefa7-6e69-40a9-9391-dd6fe1c6a75d.json +++ b/mock/mappings/api_shipping_methods_yepkyfrnav-89e93989-fe01-4da3-a0d8-50fbbb9792e5.json @@ -1,22 +1,22 @@ { - "id" : "77ffefa7-6e69-40a9-9391-dd6fe1c6a75d", - "name" : "shipping_methods_avqkgfqjjo", + "id" : "89e93989-fe01-4da3-a0d8-50fbbb9792e5", + "name" : "api_shipping_methods_yepkyfrnav", "request" : { - "url" : "/shipping_methods/aVQkGFqJJO", + "url" : "/api/shipping_methods/YEPkYFrnAV", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.118Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c48738e52e264cb738bc4eed38bf995d412e32953e8ff1b87839491df3872c35\"}}}", + "body" : "{\"data\":{\"id\":\"YEPkYFrnAV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T16:07:16.146Z\",\"updated_at\":\"2024-10-24T16:07:16.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01549bde90825c8e65f99bd158f994c15fb17e026269b644712248896138ebfe\"}}}", "headers" : { - "x-request-id" : "7bf1afe8-9606-4af0-b401-dffce5ca72f6", - "x-kong-upstream-latency" : "25", + "x-request-id" : "fd37d9df-a66a-46a0-b044-887656f997a2", + "x-kong-upstream-latency" : "19", "X-Ratelimit-Remaining" : "92", - "x-kong-request-id" : "98b30045bf88831e3e563c344f56ab2f", + "x-kong-request-id" : "c2844f476e7bf709c987386bd60a026f", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:27 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:16 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"8876bd4ba39e8c2d3d3fcae06643b767\"", + "etag" : "W/\"f56d7a8e09ea0bac96307c622cdd66a0\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "77ffefa7-6e69-40a9-9391-dd6fe1c6a75d", + "uuid" : "89e93989-fe01-4da3-a0d8-50fbbb9792e5", "persistent" : true, - "scenarioName" : "scenario-7-shipping_methods-aVQkGFqJJO", - "requiredScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-2", - "newScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-3", - "insertionIndex" : 46 + "scenarioName" : "scenario-7-api-shipping_methods-YEPkYFrnAV", + "requiredScenarioState" : "scenario-7-api-shipping_methods-YEPkYFrnAV-2", + "newScenarioState" : "scenario-7-api-shipping_methods-YEPkYFrnAV-3", + "insertionIndex" : 51 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-7a7184ed-15bd-4613-8653-894aee50fd3d.json b/mock/mappings/api_shipping_methods_yepkyfrnav-9436309e-4180-4902-beb9-34fe18d219b5.json similarity index 51% rename from mock/mappings/shipping_methods_avqkgfqjjo-7a7184ed-15bd-4613-8653-894aee50fd3d.json rename to mock/mappings/api_shipping_methods_yepkyfrnav-9436309e-4180-4902-beb9-34fe18d219b5.json index cd477a3..dc305aa 100644 --- a/mock/mappings/shipping_methods_avqkgfqjjo-7a7184ed-15bd-4613-8653-894aee50fd3d.json +++ b/mock/mappings/api_shipping_methods_yepkyfrnav-9436309e-4180-4902-beb9-34fe18d219b5.json @@ -1,22 +1,22 @@ { - "id" : "7a7184ed-15bd-4613-8653-894aee50fd3d", - "name" : "shipping_methods_avqkgfqjjo", + "id" : "9436309e-4180-4902-beb9-34fe18d219b5", + "name" : "api_shipping_methods_yepkyfrnav", "request" : { - "url" : "/shipping_methods/aVQkGFqJJO", + "url" : "/api/shipping_methods/YEPkYFrnAV", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.118Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c48738e52e264cb738bc4eed38bf995d412e32953e8ff1b87839491df3872c35\"}}}", + "body" : "{\"data\":{\"id\":\"YEPkYFrnAV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method\",\"scheme\":\"flat\",\"currency_code\":\"EUR\",\"external_prices_url\":null,\"price_amount_cents\":1000,\"price_amount_float\":10.0,\"formatted_price_amount\":\"€10,00\",\"free_over_amount_cents\":10000,\"free_over_amount_float\":100.0,\"formatted_free_over_amount\":\"€100,00\",\"use_subtotal\":false,\"price_amount_for_shipment_cents\":1000,\"price_amount_for_shipment_float\":10.0,\"formatted_price_amount_for_shipment\":\"€10,00\",\"min_weight\":0.5,\"max_weight\":10.0,\"unit_of_weight\":\"kg\",\"disabled_at\":null,\"circuit_state\":null,\"circuit_failure_count\":null,\"created_at\":\"2024-10-24T16:07:16.146Z\",\"updated_at\":\"2024-10-24T16:07:16.146Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01549bde90825c8e65f99bd158f994c15fb17e026269b644712248896138ebfe\"}}}", "headers" : { - "x-request-id" : "7bf1afe8-9606-4af0-b401-dffce5ca72f6", - "x-kong-upstream-latency" : "25", + "x-request-id" : "fd37d9df-a66a-46a0-b044-887656f997a2", + "x-kong-upstream-latency" : "19", "X-Ratelimit-Remaining" : "93", - "x-kong-request-id" : "98b30045bf88831e3e563c344f56ab2f", + "x-kong-request-id" : "c2844f476e7bf709c987386bd60a026f", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "1", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:27 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:16 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", @@ -24,16 +24,16 @@ "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"8876bd4ba39e8c2d3d3fcae06643b767\"", + "etag" : "W/\"f56d7a8e09ea0bac96307c622cdd66a0\"", "content-type" : "application/vnd.api+json", "cache-control" : "public, no-cache", "Age" : "0" } }, - "uuid" : "7a7184ed-15bd-4613-8653-894aee50fd3d", + "uuid" : "9436309e-4180-4902-beb9-34fe18d219b5", "persistent" : true, - "scenarioName" : "scenario-7-shipping_methods-aVQkGFqJJO", + "scenarioName" : "scenario-7-api-shipping_methods-YEPkYFrnAV", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-2", - "insertionIndex" : 47 + "newScenarioState" : "scenario-7-api-shipping_methods-YEPkYFrnAV-2", + "insertionIndex" : 52 } \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-12145955-1d6e-4c70-b364-893a13f3b57e.json b/mock/mappings/api_shipping_methods_yepkyfrnav-cda8013f-a82c-48aa-a447-95a98d07898c.json similarity index 56% rename from mock/mappings/shipping_methods_avqkgfqjjo-12145955-1d6e-4c70-b364-893a13f3b57e.json rename to mock/mappings/api_shipping_methods_yepkyfrnav-cda8013f-a82c-48aa-a447-95a98d07898c.json index c1b78f7..99e9cc0 100644 --- a/mock/mappings/shipping_methods_avqkgfqjjo-12145955-1d6e-4c70-b364-893a13f3b57e.json +++ b/mock/mappings/api_shipping_methods_yepkyfrnav-cda8013f-a82c-48aa-a447-95a98d07898c.json @@ -1,40 +1,40 @@ { - "id" : "12145955-1d6e-4c70-b364-893a13f3b57e", - "name" : "shipping_methods_avqkgfqjjo", + "id" : "cda8013f-a82c-48aa-a447-95a98d07898c", + "name" : "api_shipping_methods_yepkyfrnav", "request" : { - "url" : "/shipping_methods/aVQkGFqJJO", + "url" : "/api/shipping_methods/YEPkYFrnAV", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"_disable\":true,\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"free_over_amount_cents\":1,\"max_weight\":20,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"},\"min_weight\":1,\"name\":\"Incentro Test Shipping Method Updated\",\"price_amount_cents\":1,\"reference\":null,\"reference_origin\":null,\"scheme\":\"external\",\"unit_of_weight\":\"oz\",\"use_subtotal\":true},\"id\":\"aVQkGFqJJO\",\"relationships\":{},\"type\":\"shipping_methods\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"_disable\":true,\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"free_over_amount_cents\":1,\"max_weight\":20,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"},\"min_weight\":1,\"name\":\"Incentro Test Shipping Method Updated\",\"price_amount_cents\":1,\"reference\":null,\"reference_origin\":null,\"scheme\":\"external\",\"unit_of_weight\":\"oz\",\"use_subtotal\":true},\"id\":\"YEPkYFrnAV\",\"relationships\":{},\"type\":\"shipping_methods\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method Updated\",\"scheme\":\"external\",\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"price_amount_cents\":1,\"price_amount_float\":0.01,\"formatted_price_amount\":\"CHF 0.01\",\"free_over_amount_cents\":1,\"free_over_amount_float\":0.01,\"formatted_free_over_amount\":\"CHF 0.01\",\"use_subtotal\":true,\"price_amount_for_shipment_cents\":1,\"price_amount_for_shipment_float\":0.01,\"formatted_price_amount_for_shipment\":\"CHF 0.01\",\"min_weight\":1.0,\"max_weight\":20.0,\"unit_of_weight\":\"oz\",\"disabled_at\":\"2024-10-24T15:53:27.944Z\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.947Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0b3f00bfc696dc958ad76201f373ff2e81831b7358311a0b0c0a41177bd59ad5\"}}}", + "body" : "{\"data\":{\"id\":\"YEPkYFrnAV\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method Updated\",\"scheme\":\"external\",\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"price_amount_cents\":1,\"price_amount_float\":0.01,\"formatted_price_amount\":\"CHF 0.01\",\"free_over_amount_cents\":1,\"free_over_amount_float\":0.01,\"formatted_free_over_amount\":\"CHF 0.01\",\"use_subtotal\":true,\"price_amount_for_shipment_cents\":1,\"price_amount_for_shipment_float\":0.01,\"formatted_price_amount_for_shipment\":\"CHF 0.01\",\"min_weight\":1.0,\"max_weight\":20.0,\"unit_of_weight\":\"oz\",\"disabled_at\":\"2024-10-24T16:07:17.169Z\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"created_at\":\"2024-10-24T16:07:16.146Z\",\"updated_at\":\"2024-10-24T16:07:17.172Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/YEPkYFrnAV/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a63f3580b8ce6770e375dcf6fa7acefc1d6d16a1c5e697a1294dff90aaee899c\"}}}", "headers" : { - "x-request-id" : "5289a14e-1e65-4177-9976-fdabda57a347", - "x-kong-upstream-latency" : "47", + "x-request-id" : "fd2a63df-b72b-4169-92ec-cab4b6f8aca5", + "x-kong-upstream-latency" : "34", "X-Ratelimit-Remaining" : "97", - "x-kong-request-id" : "62072b3cb7ff1714f20e123d310e422d", + "x-kong-request-id" : "2fb0d53ffae591509e51a3578fd61611", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:27 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:07:17 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"5f3facff0315560f9cbedb57942f942c\"", + "etag" : "W/\"3158e8f4e8a34718229c90a738e1e18a\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "12145955-1d6e-4c70-b364-893a13f3b57e", + "uuid" : "cda8013f-a82c-48aa-a447-95a98d07898c", "persistent" : true, - "insertionIndex" : 45 + "insertionIndex" : 50 } \ No newline at end of file diff --git a/mock/mappings/shipping_zones-d95c6987-72d9-4998-b692-833c165dbf9d.json b/mock/mappings/api_shipping_zones-228d4d36-9998-4943-8da1-a9b9f1e4c0ab.json similarity index 62% rename from mock/mappings/shipping_zones-d95c6987-72d9-4998-b692-833c165dbf9d.json rename to mock/mappings/api_shipping_zones-228d4d36-9998-4943-8da1-a9b9f1e4c0ab.json index 3d56068..a8fe569 100644 --- a/mock/mappings/shipping_zones-d95c6987-72d9-4998-b692-833c165dbf9d.json +++ b/mock/mappings/api_shipping_zones-228d4d36-9998-4943-8da1-a9b9f1e4c0ab.json @@ -1,8 +1,8 @@ { - "id" : "d95c6987-72d9-4998-b692-833c165dbf9d", - "name" : "shipping_zones", + "id" : "228d4d36-9998-4943-8da1-a9b9f1e4c0ab", + "name" : "api_shipping_zones", "request" : { - "url" : "/shipping_zones", + "url" : "/api/shipping_zones", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"country_code_regex\":\".*\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"},\"name\":\"Incentro Shipping Zone\",\"not_country_code_regex\":\"[^i*\\u00262@]\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"not_zip_code_regex\":\".+\",\"reference\":null,\"reference_origin\":null,\"state_code_regex\":\"^dog\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\"},\"type\":\"shipping_zones\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:29.156Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7249bb067628038aeb6936371ef6baea20a4c6c5d14d4ec1598c0ef8a4712479\"}}}", + "body" : "{\"data\":{\"id\":\"xKYwYtdPZQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T16:07:18.494Z\",\"updated_at\":\"2024-10-24T16:07:18.494Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3cb59ad25ab29b22629074de3f26162fb27ec5b6b8943f4177d8520566bb60e0\"}}}", "headers" : { - "x-request-id" : "fb104822-9cef-4c87-8628-8b369f3b607d", - "x-kong-upstream-latency" : "24", + "x-request-id" : "3282579c-5591-4047-b5f2-7fa75cbd3c7d", + "x-kong-upstream-latency" : "20", "X-Ratelimit-Remaining" : "96", - "x-kong-request-id" : "c348805004d6c84c9ddf1219ddaa570a", + "x-kong-request-id" : "12e319486430b831169458194903b57f", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:29 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:18 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"08f067b503b207a44047a149285259b7\"", + "etag" : "W/\"6dd04803519d74624a0fb8e384b96593\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d95c6987-72d9-4998-b692-833c165dbf9d", + "uuid" : "228d4d36-9998-4943-8da1-a9b9f1e4c0ab", "persistent" : true, - "insertionIndex" : 41 + "insertionIndex" : 46 } \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-dfef547f-6604-45af-8e31-808c0a573b3c.json b/mock/mappings/api_shipping_zones_xkywytdpzq-0e32a0e1-f52d-424c-9e31-7d30ee909732.json similarity index 64% rename from mock/mappings/shipping_zones_ekvlvtjyxq-dfef547f-6604-45af-8e31-808c0a573b3c.json rename to mock/mappings/api_shipping_zones_xkywytdpzq-0e32a0e1-f52d-424c-9e31-7d30ee909732.json index ac2b92b..dae7dfb 100644 --- a/mock/mappings/shipping_zones_ekvlvtjyxq-dfef547f-6604-45af-8e31-808c0a573b3c.json +++ b/mock/mappings/api_shipping_zones_xkywytdpzq-0e32a0e1-f52d-424c-9e31-7d30ee909732.json @@ -1,22 +1,22 @@ { - "id" : "dfef547f-6604-45af-8e31-808c0a573b3c", - "name" : "shipping_zones_ekvlvtjyxq", + "id" : "0e32a0e1-f52d-424c-9e31-7d30ee909732", + "name" : "api_shipping_zones_xkywytdpzq", "request" : { - "url" : "/shipping_zones/EKVlVtJYxQ", + "url" : "/api/shipping_zones/xKYwYtdPZQ", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "051ffc7d-1c61-4542-be02-6b004f19d7ba", + "x-request-id" : "26c25333-0079-4e59-8b2a-9541ea200a09", "x-kong-upstream-latency" : "8", "X-Ratelimit-Remaining" : "86", - "x-kong-request-id" : "9cf1a354f6b58a4ac6a99736b8f1b438", + "x-kong-request-id" : "c3c24833420f22285f72ca7950395e34", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:30 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:20 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "dfef547f-6604-45af-8e31-808c0a573b3c", + "uuid" : "0e32a0e1-f52d-424c-9e31-7d30ee909732", "persistent" : true, - "scenarioName" : "scenario-6-shipping_zones-EKVlVtJYxQ", - "requiredScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-4", - "insertionIndex" : 35 + "scenarioName" : "scenario-6-api-shipping_zones-xKYwYtdPZQ", + "requiredScenarioState" : "scenario-6-api-shipping_zones-xKYwYtdPZQ-4", + "insertionIndex" : 40 } \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-927fd378-cd26-4238-b127-951ff99290d5.json b/mock/mappings/api_shipping_zones_xkywytdpzq-11e6cca7-52ab-4a0f-b344-c7a73b21272a.json similarity index 50% rename from mock/mappings/shipping_zones_ekvlvtjyxq-927fd378-cd26-4238-b127-951ff99290d5.json rename to mock/mappings/api_shipping_zones_xkywytdpzq-11e6cca7-52ab-4a0f-b344-c7a73b21272a.json index f6be039..89aaa65 100644 --- a/mock/mappings/shipping_zones_ekvlvtjyxq-927fd378-cd26-4238-b127-951ff99290d5.json +++ b/mock/mappings/api_shipping_zones_xkywytdpzq-11e6cca7-52ab-4a0f-b344-c7a73b21272a.json @@ -1,38 +1,38 @@ { - "id" : "927fd378-cd26-4238-b127-951ff99290d5", - "name" : "shipping_zones_ekvlvtjyxq", + "id" : "11e6cca7-52ab-4a0f-b344-c7a73b21272a", + "name" : "api_shipping_zones_xkywytdpzq", "request" : { - "url" : "/shipping_zones/EKVlVtJYxQ", + "url" : "/api/shipping_zones/xKYwYtdPZQ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:29.156Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f114b58136df20344332db9c21fb8fd07921962e399a135bb04db8542e53665e\"}}}", + "body" : "{\"data\":{\"id\":\"xKYwYtdPZQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T16:07:18.494Z\",\"updated_at\":\"2024-10-24T16:07:18.494Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1d22c3976d5f66887401759eba68d6785fbb88620f4a5e3908d61cbd809b4023\"}}}", "headers" : { - "x-request-id" : "e2db6674-1e5f-4726-9af3-a5a71cb89d94", - "x-kong-upstream-latency" : "20", + "x-request-id" : "fb8e3ada-9045-4170-971a-1c99aa2776b0", + "x-kong-upstream-latency" : "15", "X-Ratelimit-Remaining" : "89", - "x-kong-request-id" : "6c85fa453596ab40d8bd8974f331a428", + "x-kong-request-id" : "18487233dfa12675747fde51c315fc75", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:29 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:18 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"71e919dc3e3f1fab396b487715195f5c\"", + "etag" : "W/\"9a86a6a63d195e81e243328751353182\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "927fd378-cd26-4238-b127-951ff99290d5", + "uuid" : "11e6cca7-52ab-4a0f-b344-c7a73b21272a", "persistent" : true, - "scenarioName" : "scenario-6-shipping_zones-EKVlVtJYxQ", + "scenarioName" : "scenario-6-api-shipping_zones-xKYwYtdPZQ", "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-2", - "insertionIndex" : 40 + "newScenarioState" : "scenario-6-api-shipping_zones-xKYwYtdPZQ-2", + "insertionIndex" : 45 } \ No newline at end of file diff --git a/mock/mappings/api_shipping_zones_xkywytdpzq-4715c2b9-0d9b-44ca-8c07-54a7e9ee3490.json b/mock/mappings/api_shipping_zones_xkywytdpzq-4715c2b9-0d9b-44ca-8c07-54a7e9ee3490.json new file mode 100644 index 0000000..d54678e --- /dev/null +++ b/mock/mappings/api_shipping_zones_xkywytdpzq-4715c2b9-0d9b-44ca-8c07-54a7e9ee3490.json @@ -0,0 +1,38 @@ +{ + "id" : "4715c2b9-0d9b-44ca-8c07-54a7e9ee3490", + "name" : "api_shipping_zones_xkywytdpzq", + "request" : { + "url" : "/api/shipping_zones/xKYwYtdPZQ", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"xKYwYtdPZQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T16:07:18.494Z\",\"updated_at\":\"2024-10-24T16:07:18.494Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"12029dd05e65e441fc35bd95dec70ecce436f896eb3fe018c4b53ba5a91b74d3\"}}}", + "headers" : { + "x-request-id" : "2dad9673-9ee5-47ba-bd98-d9cb1ad109be", + "x-kong-upstream-latency" : "47", + "X-Ratelimit-Remaining" : "88", + "x-kong-request-id" : "8fda21663ef4972cf51c8e238058066d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:19 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"fcc8ff5314d3018b93a3ceeeaa0c6f72\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "4715c2b9-0d9b-44ca-8c07-54a7e9ee3490", + "persistent" : true, + "scenarioName" : "scenario-6-api-shipping_zones-xKYwYtdPZQ", + "requiredScenarioState" : "scenario-6-api-shipping_zones-xKYwYtdPZQ-2", + "newScenarioState" : "scenario-6-api-shipping_zones-xKYwYtdPZQ-3", + "insertionIndex" : 44 +} \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json b/mock/mappings/api_shipping_zones_xkywytdpzq-8425252b-6f56-406e-a56c-d75d02d3e61b.json similarity index 60% rename from mock/mappings/shipping_zones_ekvlvtjyxq-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json rename to mock/mappings/api_shipping_zones_xkywytdpzq-8425252b-6f56-406e-a56c-d75d02d3e61b.json index b6cc251..de57ae6 100644 --- a/mock/mappings/shipping_zones_ekvlvtjyxq-08094f36-a4fe-4735-ab3a-05e7a4a5c3b1.json +++ b/mock/mappings/api_shipping_zones_xkywytdpzq-8425252b-6f56-406e-a56c-d75d02d3e61b.json @@ -1,40 +1,40 @@ { - "id" : "08094f36-a4fe-4735-ab3a-05e7a4a5c3b1", - "name" : "shipping_zones_ekvlvtjyxq", + "id" : "8425252b-6f56-406e-a56c-d75d02d3e61b", + "name" : "api_shipping_zones_xkywytdpzq", "request" : { - "url" : "/shipping_zones/EKVlVtJYxQ", + "url" : "/api/shipping_zones/xKYwYtdPZQ", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"country_code_regex\":\".+\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"},\"name\":\"Incentro Shipping Zone Updated\",\"not_country_code_regex\":\"[^i*\\u00262@]G\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"not_zip_code_regex\":\".*\",\"reference\":null,\"reference_origin\":null,\"state_code_regex\":\"^cat\",\"zip_code_regex\":\"[a-z]{1,2}\"},\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"country_code_regex\":\".+\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"},\"name\":\"Incentro Shipping Zone Updated\",\"not_country_code_regex\":\"[^i*\\u00262@]G\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"not_zip_code_regex\":\".*\",\"reference\":null,\"reference_origin\":null,\"state_code_regex\":\"^cat\",\"zip_code_regex\":\"[a-z]{1,2}\"},\"id\":\"xKYwYtdPZQ\",\"type\":\"shipping_zones\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone Updated\",\"country_code_regex\":\".+\",\"not_country_code_regex\":\"[^i*&2@]G\",\"state_code_regex\":\"^cat\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"zip_code_regex\":\"[a-z]{1,2}\",\"not_zip_code_regex\":\".*\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:30.082Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"273fb6c009ce1ea23d40c441c84fee3c322e2f83a087cc0aa8b4d705536fd92d\"}}}", + "body" : "{\"data\":{\"id\":\"xKYwYtdPZQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone Updated\",\"country_code_regex\":\".+\",\"not_country_code_regex\":\"[^i*&2@]G\",\"state_code_regex\":\"^cat\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"zip_code_regex\":\"[a-z]{1,2}\",\"not_zip_code_regex\":\".*\",\"created_at\":\"2024-10-24T16:07:18.494Z\",\"updated_at\":\"2024-10-24T16:07:19.488Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9abcd578d28abd18dac83bde7ab20f097a7d2f1d9a43805788a89fd63a2189e4\"}}}", "headers" : { - "x-request-id" : "b9527d6d-d3a2-4779-bd6e-8cfb69ddb4bf", - "x-kong-upstream-latency" : "24", + "x-request-id" : "2f6e20c7-125c-439d-9e64-df0a488a4fcd", + "x-kong-upstream-latency" : "27", "X-Ratelimit-Remaining" : "96", - "x-kong-request-id" : "7049e222bbf5f3206658047b4ddad94e", + "x-kong-request-id" : "058969187aa85551d5f60a17b3dbe07c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:53:30 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:07:19 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"b18aaf6e052e2bf74b66f64b7711d7f9\"", + "etag" : "W/\"9b6620c2dc4fd69d78a1db02007c9eae\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "08094f36-a4fe-4735-ab3a-05e7a4a5c3b1", + "uuid" : "8425252b-6f56-406e-a56c-d75d02d3e61b", "persistent" : true, - "insertionIndex" : 38 + "insertionIndex" : 43 } \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json b/mock/mappings/api_shipping_zones_xkywytdpzq-9a9da595-08d7-49b7-b8f0-f36a4a319c04.json similarity index 59% rename from mock/mappings/webhooks_epqzocjdyk-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json rename to mock/mappings/api_shipping_zones_xkywytdpzq-9a9da595-08d7-49b7-b8f0-f36a4a319c04.json index 24870fa..0c2f499 100644 --- a/mock/mappings/webhooks_epqzocjdyk-f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee.json +++ b/mock/mappings/api_shipping_zones_xkywytdpzq-9a9da595-08d7-49b7-b8f0-f36a4a319c04.json @@ -1,21 +1,21 @@ { - "id" : "f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee", - "name" : "webhooks_epqzocjdyk", + "id" : "9a9da595-08d7-49b7-b8f0-f36a4a319c04", + "name" : "api_shipping_zones_xkywytdpzq", "request" : { - "url" : "/webhooks/ePqzoCJDYK", + "url" : "/api/shipping_zones/xKYwYtdPZQ", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "2bf91081-89d5-483d-a5ba-f47e4551f3cf", + "x-request-id" : "4d6d0778-ba08-4d6c-a240-24da2cf9aa15", "x-kong-upstream-latency" : "24", - "X-Ratelimit-Remaining" : "90", - "x-kong-request-id" : "a9949d20ee560d43b737de5ab347d862", + "X-Ratelimit-Remaining" : "95", + "x-kong-request-id" : "fed9901763dd194656f4865ce673db43", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:39 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:20 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "f4feb2dd-5e9d-4ba1-90bd-ab745b47b7ee", + "uuid" : "9a9da595-08d7-49b7-b8f0-f36a4a319c04", "persistent" : true, - "insertionIndex" : 2 + "insertionIndex" : 41 } \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json b/mock/mappings/api_shipping_zones_xkywytdpzq-fcf6f0d8-6e8d-427a-87b9-18f0467b2b46.json similarity index 50% rename from mock/mappings/shipping_zones_ekvlvtjyxq-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json rename to mock/mappings/api_shipping_zones_xkywytdpzq-fcf6f0d8-6e8d-427a-87b9-18f0467b2b46.json index b9f3305..9986322 100644 --- a/mock/mappings/shipping_zones_ekvlvtjyxq-11da5df1-8d0d-4ddb-9cdb-445fb7dd8435.json +++ b/mock/mappings/api_shipping_zones_xkywytdpzq-fcf6f0d8-6e8d-427a-87b9-18f0467b2b46.json @@ -1,38 +1,38 @@ { - "id" : "11da5df1-8d0d-4ddb-9cdb-445fb7dd8435", - "name" : "shipping_zones_ekvlvtjyxq", + "id" : "fcf6f0d8-6e8d-427a-87b9-18f0467b2b46", + "name" : "api_shipping_zones_xkywytdpzq", "request" : { - "url" : "/shipping_zones/EKVlVtJYxQ", + "url" : "/api/shipping_zones/xKYwYtdPZQ", "method" : "GET" }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone Updated\",\"country_code_regex\":\".+\",\"not_country_code_regex\":\"[^i*&2@]G\",\"state_code_regex\":\"^cat\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"zip_code_regex\":\"[a-z]{1,2}\",\"not_zip_code_regex\":\".*\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:30.082Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"889f526cb4dae13acbdfdbc8651551313b256c56775f31d2e581ecb1ce502adc\"}}}", + "body" : "{\"data\":{\"id\":\"xKYwYtdPZQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone Updated\",\"country_code_regex\":\".+\",\"not_country_code_regex\":\"[^i*&2@]G\",\"state_code_regex\":\"^cat\",\"not_state_code_regex\":\"//[^\\r\\n]\",\"zip_code_regex\":\"[a-z]{1,2}\",\"not_zip_code_regex\":\".*\",\"created_at\":\"2024-10-24T16:07:18.494Z\",\"updated_at\":\"2024-10-24T16:07:19.488Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/xKYwYtdPZQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6a71682186d001237f5b8ddf1aeca6bf12c895d725181abb55354278d96ce420\"}}}", "headers" : { - "x-request-id" : "19c8cd90-bb18-4cf2-a331-31a9c5a12a4a", - "x-kong-upstream-latency" : "14", + "x-request-id" : "66fceed0-0827-41f9-a0df-59800bed262e", + "x-kong-upstream-latency" : "53", "X-Ratelimit-Remaining" : "87", - "x-kong-request-id" : "3421246f6ade303199c96127207fbd2a", + "x-kong-request-id" : "7b678d119e41316a02d3604483adbe2f", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:30 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:19 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"453c3ee459db475ed06612b406869f13\"", + "etag" : "W/\"75c469dbc73b1f1fa29ea4cb74d36b4f\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "11da5df1-8d0d-4ddb-9cdb-445fb7dd8435", + "uuid" : "fcf6f0d8-6e8d-427a-87b9-18f0467b2b46", "persistent" : true, - "scenarioName" : "scenario-6-shipping_zones-EKVlVtJYxQ", - "requiredScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-3", - "newScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-4", - "insertionIndex" : 37 + "scenarioName" : "scenario-6-api-shipping_zones-xKYwYtdPZQ", + "requiredScenarioState" : "scenario-6-api-shipping_zones-xKYwYtdPZQ-3", + "newScenarioState" : "scenario-6-api-shipping_zones-xKYwYtdPZQ-4", + "insertionIndex" : 42 } \ No newline at end of file diff --git a/mock/mappings/stock_locations-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json b/mock/mappings/api_stock_locations-2f96002d-6ec8-42e5-975d-15f8fc050f4c.json similarity index 51% rename from mock/mappings/stock_locations-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json rename to mock/mappings/api_stock_locations-2f96002d-6ec8-42e5-975d-15f8fc050f4c.json index b4cbd32..896036f 100644 --- a/mock/mappings/stock_locations-a1fb7884-5462-4a09-89ff-3c28f7e66b27.json +++ b/mock/mappings/api_stock_locations-2f96002d-6ec8-42e5-975d-15f8fc050f4c.json @@ -1,40 +1,40 @@ { - "id" : "a1fb7884-5462-4a09-89ff-3c28f7e66b27", - "name" : "stock_locations", + "id" : "2f96002d-6ec8-42e5-975d-15f8fc050f4c", + "name" : "api_stock_locations", "request" : { - "url" : "/stock_locations", + "url" : "/api/stock_locations", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"BKZQuEGLLe\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"bQxrurpApJ\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk\"},\"attributes\":{\"number\":25279,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:51.513Z\",\"updated_at\":\"2024-10-24T15:51:51.513Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"5114b3c22096b0321588f324f4c980dee0cfe5f987969f16f998c9d4fe5b5dbf\"}}}", + "body" : "{\"data\":{\"id\":\"NnoYJuqOqk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk\"},\"attributes\":{\"number\":25283,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:41.209Z\",\"updated_at\":\"2024-10-24T16:05:41.209Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d4c3e84fa4be0b094b0e1545dac0b4e30f993b2e5a9d3ee17b308379a168848d\"}}}", "headers" : { - "x-request-id" : "d734d01e-2574-4e00-b95a-b3d250ec0622", - "x-kong-upstream-latency" : "66", + "x-request-id" : "3c513aa2-3479-4de0-955e-f2fb3364326f", + "x-kong-upstream-latency" : "79", "X-Ratelimit-Remaining" : "84", - "x-kong-request-id" : "1057917bedc81455c8c6c332c49cfb0b", + "x-kong-request-id" : "56cbc9631f1f5375d9951f520a84a149", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:51 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:41 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"580c1d780ee2ba596c7cd2af572946c1\"", + "etag" : "W/\"16fce694aaf72df4fd04ab744025a338\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "a1fb7884-5462-4a09-89ff-3c28f7e66b27", + "uuid" : "2f96002d-6ec8-42e5-975d-15f8fc050f4c", "persistent" : true, - "insertionIndex" : 191 + "insertionIndex" : 196 } \ No newline at end of file diff --git a/mock/mappings/stock_locations-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json b/mock/mappings/api_stock_locations-9f7af7ea-88a8-49c9-b8d9-f21f33cb9793.json similarity index 50% rename from mock/mappings/stock_locations-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json rename to mock/mappings/api_stock_locations-9f7af7ea-88a8-49c9-b8d9-f21f33cb9793.json index 2d5d0e1..64c2adb 100644 --- a/mock/mappings/stock_locations-eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae.json +++ b/mock/mappings/api_stock_locations-9f7af7ea-88a8-49c9-b8d9-f21f33cb9793.json @@ -1,40 +1,40 @@ { - "id" : "eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae", - "name" : "stock_locations", + "id" : "9f7af7ea-88a8-49c9-b8d9-f21f33cb9793", + "name" : "api_stock_locations", "request" : { - "url" : "/stock_locations", + "url" : "/api/stock_locations", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"djekumgYYO\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"beJOulJmJO\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG\"},\"attributes\":{\"number\":25280,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:55.809Z\",\"updated_at\":\"2024-10-24T15:51:55.809Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f02c704e856ae3c488909644221550c9746ef4dffff2985243b0bc7f852dbfe9\"}}}", + "body" : "{\"data\":{\"id\":\"BGOxpulLWk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk\"},\"attributes\":{\"number\":25284,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:45.536Z\",\"updated_at\":\"2024-10-24T16:05:45.536Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4843cbc244c1638c41623192ea1266ace3cf11085435fe84ad228dfde967f52d\"}}}", "headers" : { - "x-request-id" : "9d9684bb-6974-4f2c-ba4e-73423b27c51f", - "x-kong-upstream-latency" : "69", + "x-request-id" : "674f60ac-38b8-4605-8ea0-814b7dadd2b1", + "x-kong-upstream-latency" : "57", "X-Ratelimit-Remaining" : "80", - "x-kong-request-id" : "4e95cc17a4476c70ab20e0736b66be0a", + "x-kong-request-id" : "cb3cc124e8fb273634296e1be8280e77", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:55 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:05:45 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c0a8c715886520dccde9092e280f3752\"", + "etag" : "W/\"2af2a329cb0be71b120a8f6fb71fd727\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "eafe302a-bab7-4cf7-a2e0-dfa5768bb0ae", + "uuid" : "9f7af7ea-88a8-49c9-b8d9-f21f33cb9793", "persistent" : true, - "insertionIndex" : 169 + "insertionIndex" : 174 } \ No newline at end of file diff --git a/mock/mappings/stock_locations-f94a6c29-5446-4fc7-9857-7d0178580e68.json b/mock/mappings/api_stock_locations-a5498580-3784-4263-a15b-da71c1d774ed.json similarity index 53% rename from mock/mappings/stock_locations-f94a6c29-5446-4fc7-9857-7d0178580e68.json rename to mock/mappings/api_stock_locations-a5498580-3784-4263-a15b-da71c1d774ed.json index cfc4afc..5197159 100644 --- a/mock/mappings/stock_locations-f94a6c29-5446-4fc7-9857-7d0178580e68.json +++ b/mock/mappings/api_stock_locations-a5498580-3784-4263-a15b-da71c1d774ed.json @@ -1,40 +1,40 @@ { - "id" : "f94a6c29-5446-4fc7-9857-7d0178580e68", - "name" : "stock_locations", + "id" : "a5498580-3784-4263-a15b-da71c1d774ed", + "name" : "api_stock_locations", "request" : { - "url" : "/stock_locations", + "url" : "/api/stock_locations", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"WoelupqXVn\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:31.310Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"029433b96c6e4253a57d7d1d173b94d97cbcc67a765f97a6fe69e579222e1394\"}}}", + "body" : "{\"data\":{\"id\":\"xMXBXuomZG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG\"},\"attributes\":{\"number\":25285,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:07:20.950Z\",\"updated_at\":\"2024-10-24T16:07:20.950Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"94bc0eccf74e2415ff2385bac3e546b39736cf64cc46cc4018221230c5c5f696\"}}}", "headers" : { - "x-request-id" : "a833e698-5e47-4497-9f52-3b53cd7af969", - "x-kong-upstream-latency" : "50", + "x-request-id" : "f95e7ecd-6958-4803-9b9f-273811bc2b6f", + "x-kong-upstream-latency" : "100", "X-Ratelimit-Remaining" : "94", - "x-kong-request-id" : "83a7412ae80bd87397f6bf12aac0d41b", + "x-kong-request-id" : "df314208f60a307e777fa27cf082507c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:31 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:07:21 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"f0a0a3cdf98acdbf81956f023aece8bf\"", + "etag" : "W/\"cfdc476da362fa1e10269d96733e97a5\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "f94a6c29-5446-4fc7-9857-7d0178580e68", + "uuid" : "a5498580-3784-4263-a15b-da71c1d774ed", "persistent" : true, - "insertionIndex" : 33 + "insertionIndex" : 38 } \ No newline at end of file diff --git a/mock/mappings/stock_locations-d730271e-e618-4dd8-af9e-edc244602dcb.json b/mock/mappings/api_stock_locations-c67cbf10-f907-481c-9b05-503558ab0854.json similarity index 55% rename from mock/mappings/stock_locations-d730271e-e618-4dd8-af9e-edc244602dcb.json rename to mock/mappings/api_stock_locations-c67cbf10-f907-481c-9b05-503558ab0854.json index 72484b6..ad14988 100644 --- a/mock/mappings/stock_locations-d730271e-e618-4dd8-af9e-edc244602dcb.json +++ b/mock/mappings/api_stock_locations-c67cbf10-f907-481c-9b05-503558ab0854.json @@ -1,40 +1,40 @@ { - "id" : "d730271e-e618-4dd8-af9e-edc244602dcb", - "name" : "stock_locations", + "id" : "c67cbf10-f907-481c-9b05-503558ab0854", + "name" : "api_stock_locations", "request" : { - "url" : "/stock_locations", + "url" : "/api/stock_locations", "method" : "POST", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"Boelupqapl\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PNG\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"name\":\"Incentro Stock Location\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":true},\"relationships\":{\"address\":{\"data\":{\"id\":\"dYNyuJKEKw\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG\"},\"attributes\":{\"number\":25278,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:37.752Z\",\"updated_at\":\"2024-10-24T15:51:37.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4cf104a9b14cf3590fc84fb27ed065dfc7ce5889f42fdbb116316acea2f9527a\"}}}", + "body" : "{\"data\":{\"id\":\"ekjpouwNAn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn\"},\"attributes\":{\"number\":25282,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:27.622Z\",\"updated_at\":\"2024-10-24T16:05:27.622Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b34c5dcd168a322009a48705c09f4a19ae10541c148d63cdd52c4a2b3221d1bb\"}}}", "headers" : { - "x-request-id" : "d680aa40-ac3d-49b0-a207-039fb6452df9", - "x-kong-upstream-latency" : "53", + "x-request-id" : "f2243309-d10c-4b59-8759-6cb93289ff61", + "x-kong-upstream-latency" : "88", "X-Ratelimit-Remaining" : "92", - "x-kong-request-id" : "56bd2261286236432108357668cd1315", + "x-kong-request-id" : "27c483472ab05635b8dfb65d44086228", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:37 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:27 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"4be4d734e5675c741b7f376679d86dd9\"", + "etag" : "W/\"8a2431b846cbba5b11afa02c0bf9918e\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d730271e-e618-4dd8-af9e-edc244602dcb", + "uuid" : "c67cbf10-f907-481c-9b05-503558ab0854", "persistent" : true, - "insertionIndex" : 247 + "insertionIndex" : 252 } \ No newline at end of file diff --git a/mock/mappings/inventory_models_lwlwdsayma-7bf60a76-a018-40eb-bb98-60a28abc28d1.json b/mock/mappings/api_stock_locations_bgoxpullwk-076e23d1-28f7-45ae-8016-73cc65541c1c.json similarity index 62% rename from mock/mappings/inventory_models_lwlwdsayma-7bf60a76-a018-40eb-bb98-60a28abc28d1.json rename to mock/mappings/api_stock_locations_bgoxpullwk-076e23d1-28f7-45ae-8016-73cc65541c1c.json index eeeb245..221f131 100644 --- a/mock/mappings/inventory_models_lwlwdsayma-7bf60a76-a018-40eb-bb98-60a28abc28d1.json +++ b/mock/mappings/api_stock_locations_bgoxpullwk-076e23d1-28f7-45ae-8016-73cc65541c1c.json @@ -1,21 +1,21 @@ { - "id" : "7bf60a76-a018-40eb-bb98-60a28abc28d1", - "name" : "inventory_models_lwlwdsayma", + "id" : "076e23d1-28f7-45ae-8016-73cc65541c1c", + "name" : "api_stock_locations_bgoxpullwk", "request" : { - "url" : "/inventory_models/lWlwDSAyMa", + "url" : "/api/stock_locations/BGOxpulLWk", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "1f03543a-c276-41b9-a485-fdd27f0d93cd", + "x-request-id" : "40b3bf07-5b12-4275-9227-e47936abe64f", "x-kong-upstream-latency" : "56", "X-Ratelimit-Remaining" : "80", - "x-kong-request-id" : "73cdab00472dfa31133d5a04432c2a5d", + "x-kong-request-id" : "3feb083cf68dd0397df0cc78cf27ac7d", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:59 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:49 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "7bf60a76-a018-40eb-bb98-60a28abc28d1", + "uuid" : "076e23d1-28f7-45ae-8016-73cc65541c1c", "persistent" : true, - "insertionIndex" : 152 + "insertionIndex" : 157 } \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpullwk-16aea91e-0cd6-4d40-bd64-ce329ee25e9b.json b/mock/mappings/api_stock_locations_bgoxpullwk-16aea91e-0cd6-4d40-bd64-ce329ee25e9b.json new file mode 100644 index 0000000..51bd036 --- /dev/null +++ b/mock/mappings/api_stock_locations_bgoxpullwk-16aea91e-0cd6-4d40-bd64-ce329ee25e9b.json @@ -0,0 +1,39 @@ +{ + "id" : "16aea91e-0cd6-4d40-bd64-ce329ee25e9b", + "name" : "api_stock_locations_bgoxpullwk", + "request" : { + "url" : "/api/stock_locations/BGOxpulLWk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BGOxpulLWk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk\"},\"attributes\":{\"number\":25284,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:45.536Z\",\"updated_at\":\"2024-10-24T16:05:45.536Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ae36ce2c28b6416b916c5a53806e8d2383a8ad382d355b2a770a4d952b5a34a0\"}}}", + "headers" : { + "x-request-id" : "67edb9df-04ce-4fc0-98c4-d105c4da998d", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "483", + "x-kong-request-id" : "c1d80875758c6d73743fca1b43c7cb17", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:47 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"c93d34c9fa9c880e91b2b72d03ede2f5\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "16aea91e-0cd6-4d40-bd64-ce329ee25e9b", + "persistent" : true, + "scenarioName" : "scenario-25-api-stock_locations-BGOxpulLWk", + "requiredScenarioState" : "scenario-25-api-stock_locations-BGOxpulLWk-2", + "newScenarioState" : "scenario-25-api-stock_locations-BGOxpulLWk-3", + "insertionIndex" : 166 +} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpullwk-56230053-e3ed-49b6-a69a-de968ce09c6f.json b/mock/mappings/api_stock_locations_bgoxpullwk-56230053-e3ed-49b6-a69a-de968ce09c6f.json new file mode 100644 index 0000000..2b4d625 --- /dev/null +++ b/mock/mappings/api_stock_locations_bgoxpullwk-56230053-e3ed-49b6-a69a-de968ce09c6f.json @@ -0,0 +1,38 @@ +{ + "id" : "56230053-e3ed-49b6-a69a-de968ce09c6f", + "name" : "api_stock_locations_bgoxpullwk", + "request" : { + "url" : "/api/stock_locations/BGOxpulLWk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BGOxpulLWk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk\"},\"attributes\":{\"number\":25284,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:45.536Z\",\"updated_at\":\"2024-10-24T16:05:45.536Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ae36ce2c28b6416b916c5a53806e8d2383a8ad382d355b2a770a4d952b5a34a0\"}}}", + "headers" : { + "x-request-id" : "67edb9df-04ce-4fc0-98c4-d105c4da998d", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "481", + "x-kong-request-id" : "c1d80875758c6d73743fca1b43c7cb17", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:48 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"c93d34c9fa9c880e91b2b72d03ede2f5\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "2" + } + }, + "uuid" : "56230053-e3ed-49b6-a69a-de968ce09c6f", + "persistent" : true, + "scenarioName" : "scenario-25-api-stock_locations-BGOxpulLWk", + "requiredScenarioState" : "scenario-25-api-stock_locations-BGOxpulLWk-3", + "insertionIndex" : 161 +} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_bgoxpullwk-5787bb17-27cc-4de2-9da0-382fcc8d0ed7.json b/mock/mappings/api_stock_locations_bgoxpullwk-5787bb17-27cc-4de2-9da0-382fcc8d0ed7.json new file mode 100644 index 0000000..4c74a30 --- /dev/null +++ b/mock/mappings/api_stock_locations_bgoxpullwk-5787bb17-27cc-4de2-9da0-382fcc8d0ed7.json @@ -0,0 +1,39 @@ +{ + "id" : "5787bb17-27cc-4de2-9da0-382fcc8d0ed7", + "name" : "api_stock_locations_bgoxpullwk", + "request" : { + "url" : "/api/stock_locations/BGOxpulLWk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"BGOxpulLWk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk\"},\"attributes\":{\"number\":25284,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:45.536Z\",\"updated_at\":\"2024-10-24T16:05:45.536Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/BGOxpulLWk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ae36ce2c28b6416b916c5a53806e8d2383a8ad382d355b2a770a4d952b5a34a0\"}}}", + "headers" : { + "x-request-id" : "67edb9df-04ce-4fc0-98c4-d105c4da998d", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "485", + "x-kong-request-id" : "c1d80875758c6d73743fca1b43c7cb17", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:46 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"c93d34c9fa9c880e91b2b72d03ede2f5\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "5787bb17-27cc-4de2-9da0-382fcc8d0ed7", + "persistent" : true, + "scenarioName" : "scenario-25-api-stock_locations-BGOxpulLWk", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-25-api-stock_locations-BGOxpulLWk-2", + "insertionIndex" : 170 +} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_ekjpouwnan-08742d6b-93c2-4b26-b357-fa57c554b1e1.json b/mock/mappings/api_stock_locations_ekjpouwnan-08742d6b-93c2-4b26-b357-fa57c554b1e1.json new file mode 100644 index 0000000..9cec9ab --- /dev/null +++ b/mock/mappings/api_stock_locations_ekjpouwnan-08742d6b-93c2-4b26-b357-fa57c554b1e1.json @@ -0,0 +1,39 @@ +{ + "id" : "08742d6b-93c2-4b26-b357-fa57c554b1e1", + "name" : "api_stock_locations_ekjpouwnan", + "request" : { + "url" : "/api/stock_locations/ekjpouwNAn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ekjpouwNAn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn\"},\"attributes\":{\"number\":25282,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:27.622Z\",\"updated_at\":\"2024-10-24T16:05:27.622Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bf77704cdce1fe3049173a80250f049f596c2f4050f8f567d8f4b106eded36f5\"}}}", + "headers" : { + "x-request-id" : "1f0f1373-161b-4932-ae00-57b9810891b8", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "499", + "x-kong-request-id" : "3330527f2b21882d1781ff3127eac06c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:28 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"520e807d77931941353726350bf86385\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "08742d6b-93c2-4b26-b357-fa57c554b1e1", + "persistent" : true, + "scenarioName" : "scenario-39-api-stock_locations-ekjpouwNAn", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-39-api-stock_locations-ekjpouwNAn-2", + "insertionIndex" : 248 +} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_ekjpouwnan-18733807-6d23-49f5-b73e-c9965e3ad87a.json b/mock/mappings/api_stock_locations_ekjpouwnan-18733807-6d23-49f5-b73e-c9965e3ad87a.json new file mode 100644 index 0000000..a4558fe --- /dev/null +++ b/mock/mappings/api_stock_locations_ekjpouwnan-18733807-6d23-49f5-b73e-c9965e3ad87a.json @@ -0,0 +1,39 @@ +{ + "id" : "18733807-6d23-49f5-b73e-c9965e3ad87a", + "name" : "api_stock_locations_ekjpouwnan", + "request" : { + "url" : "/api/stock_locations/ekjpouwNAn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ekjpouwNAn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn\"},\"attributes\":{\"number\":25282,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:27.622Z\",\"updated_at\":\"2024-10-24T16:05:27.622Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bf77704cdce1fe3049173a80250f049f596c2f4050f8f567d8f4b106eded36f5\"}}}", + "headers" : { + "x-request-id" : "1f0f1373-161b-4932-ae00-57b9810891b8", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "498", + "x-kong-request-id" : "3330527f2b21882d1781ff3127eac06c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:29 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"520e807d77931941353726350bf86385\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "18733807-6d23-49f5-b73e-c9965e3ad87a", + "persistent" : true, + "scenarioName" : "scenario-39-api-stock_locations-ekjpouwNAn", + "requiredScenarioState" : "scenario-39-api-stock_locations-ekjpouwNAn-2", + "newScenarioState" : "scenario-39-api-stock_locations-ekjpouwNAn-3", + "insertionIndex" : 244 +} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_ekjpouwnan-19ac9e67-93c4-4d7b-a230-25dd89e5c8a7.json b/mock/mappings/api_stock_locations_ekjpouwnan-19ac9e67-93c4-4d7b-a230-25dd89e5c8a7.json new file mode 100644 index 0000000..298af56 --- /dev/null +++ b/mock/mappings/api_stock_locations_ekjpouwnan-19ac9e67-93c4-4d7b-a230-25dd89e5c8a7.json @@ -0,0 +1,38 @@ +{ + "id" : "19ac9e67-93c4-4d7b-a230-25dd89e5c8a7", + "name" : "api_stock_locations_ekjpouwnan", + "request" : { + "url" : "/api/stock_locations/ekjpouwNAn", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"ekjpouwNAn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn\"},\"attributes\":{\"number\":25282,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:27.622Z\",\"updated_at\":\"2024-10-24T16:05:27.622Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekjpouwNAn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bf77704cdce1fe3049173a80250f049f596c2f4050f8f567d8f4b106eded36f5\"}}}", + "headers" : { + "x-request-id" : "1f0f1373-161b-4932-ae00-57b9810891b8", + "x-kong-upstream-latency" : "13", + "X-Ratelimit-Remaining" : "497", + "x-kong-request-id" : "3330527f2b21882d1781ff3127eac06c", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:30 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"520e807d77931941353726350bf86385\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "19ac9e67-93c4-4d7b-a230-25dd89e5c8a7", + "persistent" : true, + "scenarioName" : "scenario-39-api-stock_locations-ekjpouwNAn", + "requiredScenarioState" : "scenario-39-api-stock_locations-ekjpouwNAn-3", + "insertionIndex" : 239 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_ekbqqudzmg-bb16c65f-d84b-4655-808c-d51fd7ef956f.json b/mock/mappings/api_stock_locations_ekjpouwnan-bf437996-ec62-41fd-a1d0-1605d04de786.json similarity index 55% rename from mock/mappings/stock_locations_ekbqqudzmg-bb16c65f-d84b-4655-808c-d51fd7ef956f.json rename to mock/mappings/api_stock_locations_ekjpouwnan-bf437996-ec62-41fd-a1d0-1605d04de786.json index 0cbbe93..ce05a04 100644 --- a/mock/mappings/stock_locations_ekbqqudzmg-bb16c65f-d84b-4655-808c-d51fd7ef956f.json +++ b/mock/mappings/api_stock_locations_ekjpouwnan-bf437996-ec62-41fd-a1d0-1605d04de786.json @@ -1,21 +1,21 @@ { - "id" : "bb16c65f-d84b-4655-808c-d51fd7ef956f", - "name" : "stock_locations_ekbqqudzmg", + "id" : "bf437996-ec62-41fd-a1d0-1605d04de786", + "name" : "api_stock_locations_ekjpouwnan", "request" : { - "url" : "/stock_locations/ekbqQudZmG", + "url" : "/api/stock_locations/ekjpouwNAn", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "6fda8045-2113-4536-bd54-636d2df686fa", - "x-kong-upstream-latency" : "100", + "x-request-id" : "ab33dc22-7b98-4648-a427-df91bd7cd204", + "x-kong-upstream-latency" : "78", "X-Ratelimit-Remaining" : "93", - "x-kong-request-id" : "cf4f0e56971ee4302ef1131e45aa0f54", + "x-kong-request-id" : "b23d8f34f02c0b460ad9175311134457", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:05:30 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "bb16c65f-d84b-4655-808c-d51fd7ef956f", + "uuid" : "bf437996-ec62-41fd-a1d0-1605d04de786", "persistent" : true, - "insertionIndex" : 231 + "insertionIndex" : 236 } \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_nnoyjuqoqk-3fb7c940-5bbe-44b5-9714-508966d0f984.json b/mock/mappings/api_stock_locations_nnoyjuqoqk-3fb7c940-5bbe-44b5-9714-508966d0f984.json new file mode 100644 index 0000000..e319311 --- /dev/null +++ b/mock/mappings/api_stock_locations_nnoyjuqoqk-3fb7c940-5bbe-44b5-9714-508966d0f984.json @@ -0,0 +1,39 @@ +{ + "id" : "3fb7c940-5bbe-44b5-9714-508966d0f984", + "name" : "api_stock_locations_nnoyjuqoqk", + "request" : { + "url" : "/api/stock_locations/NnoYJuqOqk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"NnoYJuqOqk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk\"},\"attributes\":{\"number\":25283,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:41.209Z\",\"updated_at\":\"2024-10-24T16:05:41.209Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2315774fc008855fee133e9564387198fd4b3ac38439f7c240a09f6604b13aa6\"}}}", + "headers" : { + "x-request-id" : "14aa0f1c-9f9c-43c9-96d4-85dc9d5ec967", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "491", + "x-kong-request-id" : "88f84a2e9e7910042bfc715b13f31a6d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:42 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"6f390a328d908607e72414fe7437f8f6\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "3fb7c940-5bbe-44b5-9714-508966d0f984", + "persistent" : true, + "scenarioName" : "scenario-29-api-stock_locations-NnoYJuqOqk", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-29-api-stock_locations-NnoYJuqOqk-2", + "insertionIndex" : 192 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_bkeequwyyk-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json b/mock/mappings/api_stock_locations_nnoyjuqoqk-51e9aea3-f03b-4b75-bc98-721747f91c4c.json similarity index 58% rename from mock/mappings/stock_locations_bkeequwyyk-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json rename to mock/mappings/api_stock_locations_nnoyjuqoqk-51e9aea3-f03b-4b75-bc98-721747f91c4c.json index e37a68f..bf2ff7f 100644 --- a/mock/mappings/stock_locations_bkeequwyyk-3a8c6f58-630b-4a03-9b27-d50da487c1bc.json +++ b/mock/mappings/api_stock_locations_nnoyjuqoqk-51e9aea3-f03b-4b75-bc98-721747f91c4c.json @@ -1,21 +1,21 @@ { - "id" : "3a8c6f58-630b-4a03-9b27-d50da487c1bc", - "name" : "stock_locations_bkeequwyyk", + "id" : "51e9aea3-f03b-4b75-bc98-721747f91c4c", + "name" : "api_stock_locations_nnoyjuqoqk", "request" : { - "url" : "/stock_locations/bkEeQuWyYk", + "url" : "/api/stock_locations/NnoYJuqOqk", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "d4e0240a-e48f-4fc2-ab32-445bd7ba9104", - "x-kong-upstream-latency" : "81", + "x-request-id" : "d01cf6e0-ec3f-42cf-8a01-143c0f731289", + "x-kong-upstream-latency" : "53", "X-Ratelimit-Remaining" : "84", - "x-kong-request-id" : "1af116468cec172323e04c206e3dd11c", + "x-kong-request-id" : "41632a51bea94b4249390a0e27313818", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", + "Date" : "Thu, 24 Oct 2024 16:05:44 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "3a8c6f58-630b-4a03-9b27-d50da487c1bc", + "uuid" : "51e9aea3-f03b-4b75-bc98-721747f91c4c", "persistent" : true, - "insertionIndex" : 174 + "insertionIndex" : 179 } \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_nnoyjuqoqk-6dd7e0bb-771d-456c-b79f-8b27c46f0475.json b/mock/mappings/api_stock_locations_nnoyjuqoqk-6dd7e0bb-771d-456c-b79f-8b27c46f0475.json new file mode 100644 index 0000000..4f59a04 --- /dev/null +++ b/mock/mappings/api_stock_locations_nnoyjuqoqk-6dd7e0bb-771d-456c-b79f-8b27c46f0475.json @@ -0,0 +1,38 @@ +{ + "id" : "6dd7e0bb-771d-456c-b79f-8b27c46f0475", + "name" : "api_stock_locations_nnoyjuqoqk", + "request" : { + "url" : "/api/stock_locations/NnoYJuqOqk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"NnoYJuqOqk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk\"},\"attributes\":{\"number\":25283,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:41.209Z\",\"updated_at\":\"2024-10-24T16:05:41.209Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2315774fc008855fee133e9564387198fd4b3ac38439f7c240a09f6604b13aa6\"}}}", + "headers" : { + "x-request-id" : "14aa0f1c-9f9c-43c9-96d4-85dc9d5ec967", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "487", + "x-kong-request-id" : "88f84a2e9e7910042bfc715b13f31a6d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:43 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"6f390a328d908607e72414fe7437f8f6\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "6dd7e0bb-771d-456c-b79f-8b27c46f0475", + "persistent" : true, + "scenarioName" : "scenario-29-api-stock_locations-NnoYJuqOqk", + "requiredScenarioState" : "scenario-29-api-stock_locations-NnoYJuqOqk-3", + "insertionIndex" : 183 +} \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_nnoyjuqoqk-ee512139-6a76-45b4-9d5f-e81ea1c1087d.json b/mock/mappings/api_stock_locations_nnoyjuqoqk-ee512139-6a76-45b4-9d5f-e81ea1c1087d.json new file mode 100644 index 0000000..fe69809 --- /dev/null +++ b/mock/mappings/api_stock_locations_nnoyjuqoqk-ee512139-6a76-45b4-9d5f-e81ea1c1087d.json @@ -0,0 +1,39 @@ +{ + "id" : "ee512139-6a76-45b4-9d5f-e81ea1c1087d", + "name" : "api_stock_locations_nnoyjuqoqk", + "request" : { + "url" : "/api/stock_locations/NnoYJuqOqk", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"NnoYJuqOqk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk\"},\"attributes\":{\"number\":25283,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:05:41.209Z\",\"updated_at\":\"2024-10-24T16:05:41.209Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/NnoYJuqOqk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2315774fc008855fee133e9564387198fd4b3ac38439f7c240a09f6604b13aa6\"}}}", + "headers" : { + "x-request-id" : "14aa0f1c-9f9c-43c9-96d4-85dc9d5ec967", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "489", + "x-kong-request-id" : "88f84a2e9e7910042bfc715b13f31a6d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:42 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"6f390a328d908607e72414fe7437f8f6\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "1" + } + }, + "uuid" : "ee512139-6a76-45b4-9d5f-e81ea1c1087d", + "persistent" : true, + "scenarioName" : "scenario-29-api-stock_locations-NnoYJuqOqk", + "requiredScenarioState" : "scenario-29-api-stock_locations-NnoYJuqOqk-2", + "newScenarioState" : "scenario-29-api-stock_locations-NnoYJuqOqk-3", + "insertionIndex" : 188 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-158cd75d-739d-4b7f-86d2-a519006a893c.json b/mock/mappings/api_stock_locations_xmxbxuomzg-16b440b3-2727-44a1-9374-c87c2878759d.json similarity index 53% rename from mock/mappings/stock_locations_rneebuyjln-158cd75d-739d-4b7f-86d2-a519006a893c.json rename to mock/mappings/api_stock_locations_xmxbxuomzg-16b440b3-2727-44a1-9374-c87c2878759d.json index 6a9ee75..f766793 100644 --- a/mock/mappings/stock_locations_rneebuyjln-158cd75d-739d-4b7f-86d2-a519006a893c.json +++ b/mock/mappings/api_stock_locations_xmxbxuomzg-16b440b3-2727-44a1-9374-c87c2878759d.json @@ -1,40 +1,40 @@ { - "id" : "158cd75d-739d-4b7f-86d2-a519006a893c", - "name" : "stock_locations_rneebuyjln", + "id" : "16b440b3-2727-44a1-9374-c87c2878759d", + "name" : "api_stock_locations_xmxbxuomzg", "request" : { - "url" : "/stock_locations/rneEbuYJLn", + "url" : "/api/stock_locations/xMXBXuomZG", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PDF\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"name\":\"Incentro Stock Location Updated\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":false},\"id\":\"rneEbuYJLn\",\"relationships\":{\"address\":{\"data\":{\"id\":\"djekumgLNX\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"label_format\":\"PDF\",\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"},\"name\":\"Incentro Stock Location Updated\",\"reference\":null,\"reference_origin\":null,\"suppress_etd\":false},\"id\":\"xMXBXuomZG\",\"relationships\":{\"address\":{\"data\":{\"id\":\"WoelupqXVn\",\"type\":\"addresses\"}}},\"type\":\"stock_locations\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location Updated\",\"code\":null,\"label_format\":\"PDF\",\"suppress_etd\":false,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:32.381Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d45c8c9ae5ce0f2d661dc1949d65eab195eac279b4cb55c5f2541e8d08e21a07\"}}}", + "body" : "{\"data\":{\"id\":\"xMXBXuomZG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG\"},\"attributes\":{\"number\":25285,\"name\":\"Incentro Stock Location Updated\",\"code\":null,\"label_format\":\"PDF\",\"suppress_etd\":false,\"created_at\":\"2024-10-24T16:07:20.950Z\",\"updated_at\":\"2024-10-24T16:07:22.223Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"00a68a2e7cdb63be49314c309db32b4297b752c22ad644934b0d731891db5e68\"}}}", "headers" : { - "x-request-id" : "12fc2ea4-0a98-4276-a80e-e387f96c9515", - "x-kong-upstream-latency" : "63", + "x-request-id" : "a5ee96f5-dcc2-421a-9d32-3d1bb93f84b0", + "x-kong-upstream-latency" : "76", "X-Ratelimit-Remaining" : "95", - "x-kong-request-id" : "550c8716e0b9257cb94e373d7443e447", + "x-kong-request-id" : "9cad9969ff20ed566b9dc24ee1dcee1c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:22 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"53cbed9031164ae38cd6f3ae44ae024c\"", + "etag" : "W/\"a7ccd9912b38a18cde5de391b2dd6caf\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "158cd75d-739d-4b7f-86d2-a519006a893c", + "uuid" : "16b440b3-2727-44a1-9374-c87c2878759d", "persistent" : true, - "insertionIndex" : 28 + "insertionIndex" : 33 } \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_xmxbxuomzg-2253ee09-b491-4124-84ca-cf60bf29a6eb.json b/mock/mappings/api_stock_locations_xmxbxuomzg-2253ee09-b491-4124-84ca-cf60bf29a6eb.json new file mode 100644 index 0000000..411d36c --- /dev/null +++ b/mock/mappings/api_stock_locations_xmxbxuomzg-2253ee09-b491-4124-84ca-cf60bf29a6eb.json @@ -0,0 +1,39 @@ +{ + "id" : "2253ee09-b491-4124-84ca-cf60bf29a6eb", + "name" : "api_stock_locations_xmxbxuomzg", + "request" : { + "url" : "/api/stock_locations/xMXBXuomZG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"xMXBXuomZG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG\"},\"attributes\":{\"number\":25285,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:07:20.950Z\",\"updated_at\":\"2024-10-24T16:07:20.950Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"aeb7b088b8d24664beb37545ee0cb2ead04cd397e2c5819291f96458061de038\"}}}", + "headers" : { + "x-request-id" : "9f759086-c7e7-4530-b1dd-f4fd35b89248", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "495", + "x-kong-request-id" : "3c22ba7b4923eb5f980141757cef8a67", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:21 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"aa8c9c40215bc1d63a7416d6dec39d18\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "2253ee09-b491-4124-84ca-cf60bf29a6eb", + "persistent" : true, + "scenarioName" : "scenario-4-api-stock_locations-xMXBXuomZG", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-4-api-stock_locations-xMXBXuomZG-2", + "insertionIndex" : 36 +} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json b/mock/mappings/api_stock_locations_xmxbxuomzg-33c7cc16-5279-4640-a69a-2000427e5440.json similarity index 64% rename from mock/mappings/stock_locations_rneebuyjln-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json rename to mock/mappings/api_stock_locations_xmxbxuomzg-33c7cc16-5279-4640-a69a-2000427e5440.json index 891c5b1..d5f08a5 100644 --- a/mock/mappings/stock_locations_rneebuyjln-f7eb5500-dae7-4b21-b4f4-522098e59bd6.json +++ b/mock/mappings/api_stock_locations_xmxbxuomzg-33c7cc16-5279-4640-a69a-2000427e5440.json @@ -1,22 +1,22 @@ { - "id" : "f7eb5500-dae7-4b21-b4f4-522098e59bd6", - "name" : "stock_locations_rneebuyjln", + "id" : "33c7cc16-5279-4640-a69a-2000427e5440", + "name" : "api_stock_locations_xmxbxuomzg", "request" : { - "url" : "/stock_locations/rneEbuYJLn", + "url" : "/api/stock_locations/xMXBXuomZG", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "a8c139c7-a8e9-444c-99aa-1814d72a5934", + "x-request-id" : "bdd9f032-8345-4179-a28e-b03e21288d84", "x-kong-upstream-latency" : "8", "X-Ratelimit-Remaining" : "492", - "x-kong-request-id" : "4345bf1044a0265e0f79b634e0090e7c", + "x-kong-request-id" : "60476a0ae29fef0e2f7aec16b2e2c92f", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:33 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:23 GMT", "Accept-Ranges" : "bytes", "X-Ratelimit-Limit" : "500", "X-Ratelimit-Interval" : "60", @@ -29,9 +29,9 @@ "Age" : "0" } }, - "uuid" : "f7eb5500-dae7-4b21-b4f4-522098e59bd6", + "uuid" : "33c7cc16-5279-4640-a69a-2000427e5440", "persistent" : true, - "scenarioName" : "scenario-4-stock_locations-rneEbuYJLn", - "requiredScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-4", - "insertionIndex" : 23 + "scenarioName" : "scenario-4-api-stock_locations-xMXBXuomZG", + "requiredScenarioState" : "scenario-4-api-stock_locations-xMXBXuomZG-4", + "insertionIndex" : 28 } \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_xmxbxuomzg-38e56a52-7a0d-4eff-aaa2-a0a4f3369813.json b/mock/mappings/api_stock_locations_xmxbxuomzg-38e56a52-7a0d-4eff-aaa2-a0a4f3369813.json new file mode 100644 index 0000000..b47ed9e --- /dev/null +++ b/mock/mappings/api_stock_locations_xmxbxuomzg-38e56a52-7a0d-4eff-aaa2-a0a4f3369813.json @@ -0,0 +1,39 @@ +{ + "id" : "38e56a52-7a0d-4eff-aaa2-a0a4f3369813", + "name" : "api_stock_locations_xmxbxuomzg", + "request" : { + "url" : "/api/stock_locations/xMXBXuomZG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"xMXBXuomZG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG\"},\"attributes\":{\"number\":25285,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T16:07:20.950Z\",\"updated_at\":\"2024-10-24T16:07:20.950Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"aeb7b088b8d24664beb37545ee0cb2ead04cd397e2c5819291f96458061de038\"}}}", + "headers" : { + "x-request-id" : "9f759086-c7e7-4530-b1dd-f4fd35b89248", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "494", + "x-kong-request-id" : "3c22ba7b4923eb5f980141757cef8a67", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:21 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"aa8c9c40215bc1d63a7416d6dec39d18\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "38e56a52-7a0d-4eff-aaa2-a0a4f3369813", + "persistent" : true, + "scenarioName" : "scenario-4-api-stock_locations-xMXBXuomZG", + "requiredScenarioState" : "scenario-4-api-stock_locations-xMXBXuomZG-2", + "newScenarioState" : "scenario-4-api-stock_locations-xMXBXuomZG-3", + "insertionIndex" : 34 +} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-ba50887e-11cc-4939-8438-1016d435b267.json b/mock/mappings/api_stock_locations_xmxbxuomzg-44c73591-5bc6-4986-b8dd-2297125acb34.json similarity index 59% rename from mock/mappings/braintree_gateways_dkmlxsnjnj-ba50887e-11cc-4939-8438-1016d435b267.json rename to mock/mappings/api_stock_locations_xmxbxuomzg-44c73591-5bc6-4986-b8dd-2297125acb34.json index 11492f4..03343c6 100644 --- a/mock/mappings/braintree_gateways_dkmlxsnjnj-ba50887e-11cc-4939-8438-1016d435b267.json +++ b/mock/mappings/api_stock_locations_xmxbxuomzg-44c73591-5bc6-4986-b8dd-2297125acb34.json @@ -1,21 +1,21 @@ { - "id" : "ba50887e-11cc-4939-8438-1016d435b267", - "name" : "braintree_gateways_dkmlxsnjnj", + "id" : "44c73591-5bc6-4986-b8dd-2297125acb34", + "name" : "api_stock_locations_xmxbxuomzg", "request" : { - "url" : "/braintree_gateways/DkMLXsNJnj", + "url" : "/api/stock_locations/xMXBXuomZG", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "6a086688-799d-4068-87d0-5eabd39f393a", + "x-request-id" : "48fc9daf-dfad-4fb8-a1f2-624d5d9b213d", "x-kong-upstream-latency" : "88", - "X-Ratelimit-Remaining" : "96", - "x-kong-request-id" : "fb0059416811ef11ca007122d9ad8317", + "X-Ratelimit-Remaining" : "94", + "x-kong-request-id" : "207f994ba938432141ab206f07439623", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:34 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:23 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "ba50887e-11cc-4939-8438-1016d435b267", + "uuid" : "44c73591-5bc6-4986-b8dd-2297125acb34", "persistent" : true, - "insertionIndex" : 258 + "insertionIndex" : 30 } \ No newline at end of file diff --git a/mock/mappings/api_stock_locations_xmxbxuomzg-f19d1249-8f00-40e6-8af5-0688583a2f12.json b/mock/mappings/api_stock_locations_xmxbxuomzg-f19d1249-8f00-40e6-8af5-0688583a2f12.json new file mode 100644 index 0000000..f899a93 --- /dev/null +++ b/mock/mappings/api_stock_locations_xmxbxuomzg-f19d1249-8f00-40e6-8af5-0688583a2f12.json @@ -0,0 +1,39 @@ +{ + "id" : "f19d1249-8f00-40e6-8af5-0688583a2f12", + "name" : "api_stock_locations_xmxbxuomzg", + "request" : { + "url" : "/api/stock_locations/xMXBXuomZG", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"xMXBXuomZG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG\"},\"attributes\":{\"number\":25285,\"name\":\"Incentro Stock Location Updated\",\"code\":null,\"label_format\":\"PDF\",\"suppress_etd\":false,\"created_at\":\"2024-10-24T16:07:20.950Z\",\"updated_at\":\"2024-10-24T16:07:22.223Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/xMXBXuomZG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c8ae871d81d651cce49cc08c842fd562ebca9b7d666b309b6094fc2ca49d690c\"}}}", + "headers" : { + "x-request-id" : "c845c48a-e157-4962-b184-93c2cfc7392a", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "493", + "x-kong-request-id" : "a761b05a37668b3106a5ac65f9e2bc46", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:22 GMT", + "Accept-Ranges" : "bytes", + "X-Ratelimit-Limit" : "500", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Authorization, Accept-Encoding, Origin", + "etag" : "W/\"00feb24a80338cfc41316dde8290b0aa\"", + "content-type" : "application/vnd.api+json", + "cache-control" : "public, no-cache", + "Age" : "0" + } + }, + "uuid" : "f19d1249-8f00-40e6-8af5-0688583a2f12", + "persistent" : true, + "scenarioName" : "scenario-4-api-stock_locations-xMXBXuomZG", + "requiredScenarioState" : "scenario-4-api-stock_locations-xMXBXuomZG-3", + "newScenarioState" : "scenario-4-api-stock_locations-xMXBXuomZG-4", + "insertionIndex" : 31 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways-44d939ca-4a54-459e-901a-df3eae051476.json b/mock/mappings/api_stripe_gateways-6af970ec-1597-458c-b35b-44e3303f6477.json similarity index 57% rename from mock/mappings/stripe_gateways-44d939ca-4a54-459e-901a-df3eae051476.json rename to mock/mappings/api_stripe_gateways-6af970ec-1597-458c-b35b-44e3303f6477.json index 135ab20..a2648b3 100644 --- a/mock/mappings/stripe_gateways-44d939ca-4a54-459e-901a-df3eae051476.json +++ b/mock/mappings/api_stripe_gateways-6af970ec-1597-458c-b35b-44e3303f6477.json @@ -1,8 +1,8 @@ { - "id" : "44d939ca-4a54-459e-901a-df3eae051476", - "name" : "stripe_gateways", + "id" : "6af970ec-1597-458c-b35b-44e3303f6477", + "name" : "api_stripe_gateways", "request" : { - "url" : "/stripe_gateways", + "url" : "/api/stripe_gateways", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"login\":\"xxxx-yyyy-zzzz\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"name\":\"Incentro Stripe Gateway\",\"publishable_key\":\"aaaa-bbbb-cccc\",\"reference\":null,\"reference_origin\":null},\"type\":\"stripe_gateways\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:33.972Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"075713a4bcacd294721ce20b0a4bf05d2060a2417f72c0ade1df118f635bdb1b\"}}}", + "body" : "{\"data\":{\"id\":\"LjBAQsaezv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T16:07:23.940Z\",\"updated_at\":\"2024-10-24T16:07:23.940Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/LjBAQsaezv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"98e070a60d2db5c08002b3af9abdcd77949340363ea123a0bd588ee778dfdd75\"}}}", "headers" : { - "x-request-id" : "a0358835-a3e4-4c9d-8c7e-2f803bc7996a", - "x-kong-upstream-latency" : "49", + "x-request-id" : "47d7a162-995d-483d-a0c3-688a31e615df", + "x-kong-upstream-latency" : "40", "X-Ratelimit-Remaining" : "93", - "x-kong-request-id" : "6e631b23f08e0b192d39af2abea95602", + "x-kong-request-id" : "524a14121bd0e0442ac18251fe21441c", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:34 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:23 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"d7e6a108c87bb9c0efef96ceebbaa9f3\"", + "etag" : "W/\"634ab4b619f03e1acee3fd8619de0345\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "44d939ca-4a54-459e-901a-df3eae051476", + "uuid" : "6af970ec-1597-458c-b35b-44e3303f6477", "persistent" : true, - "insertionIndex" : 22 + "insertionIndex" : 27 } \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json b/mock/mappings/api_stripe_gateways_ljbaqsaezv-1acf4ae3-be5e-4f1a-8078-d3981c8372d9.json similarity index 59% rename from mock/mappings/stripe_gateways_mjrmbswxyv-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json rename to mock/mappings/api_stripe_gateways_ljbaqsaezv-1acf4ae3-be5e-4f1a-8078-d3981c8372d9.json index 3512ca7..62b80c4 100644 --- a/mock/mappings/stripe_gateways_mjrmbswxyv-f6975abb-0ebd-49f6-9bd7-2a102feffff7.json +++ b/mock/mappings/api_stripe_gateways_ljbaqsaezv-1acf4ae3-be5e-4f1a-8078-d3981c8372d9.json @@ -1,21 +1,21 @@ { - "id" : "f6975abb-0ebd-49f6-9bd7-2a102feffff7", - "name" : "stripe_gateways_mjrmbswxyv", + "id" : "1acf4ae3-be5e-4f1a-8078-d3981c8372d9", + "name" : "api_stripe_gateways_ljbaqsaezv", "request" : { - "url" : "/stripe_gateways/MjRMbsWXYv", + "url" : "/api/stripe_gateways/LjBAQsaezv", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "df98a3de-dda2-4b72-a088-a125d19de88e", + "x-request-id" : "63f1e8ae-5c47-407f-8bef-b9db9e18f7d7", "x-kong-upstream-latency" : "39", "X-Ratelimit-Remaining" : "92", - "x-kong-request-id" : "7f23901755d5851342a547367758f241", + "x-kong-request-id" : "bcbc0b4eedf5ac12fc29b54054b78d33", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:53:35 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:07:25 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "f6975abb-0ebd-49f6-9bd7-2a102feffff7", + "uuid" : "1acf4ae3-be5e-4f1a-8078-d3981c8372d9", "persistent" : true, - "insertionIndex" : 17 + "insertionIndex" : 22 } \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_ljbaqsaezv-1e4df003-5d94-49ff-a913-9a78306446a6.json b/mock/mappings/api_stripe_gateways_ljbaqsaezv-1e4df003-5d94-49ff-a913-9a78306446a6.json new file mode 100644 index 0000000..a40bcbd --- /dev/null +++ b/mock/mappings/api_stripe_gateways_ljbaqsaezv-1e4df003-5d94-49ff-a913-9a78306446a6.json @@ -0,0 +1,38 @@ +{ + "id" : "1e4df003-5d94-49ff-a913-9a78306446a6", + "name" : "api_stripe_gateways_ljbaqsaezv", + "request" : { + "url" : "/api/stripe_gateways/LjBAQsaezv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"LjBAQsaezv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T16:07:23.940Z\",\"updated_at\":\"2024-10-24T16:07:23.940Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/LjBAQsaezv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a5230e3f3a149a24270930d2f9f46f9c269b0f9919838e007b9b47a0104e1776\"}}}", + "headers" : { + "x-request-id" : "f8720cb4-bcbf-48e2-92fe-da04dd8e9431", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "82", + "x-kong-request-id" : "cee5ce05e0429f0406a9c07b8397b922", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:24 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"254d9b31e4ea9bd98ada9a8fc270f533\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "1e4df003-5d94-49ff-a913-9a78306446a6", + "persistent" : true, + "scenarioName" : "scenario-3-api-stripe_gateways-LjBAQsaezv", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-3-api-stripe_gateways-LjBAQsaezv-2", + "insertionIndex" : 26 +} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_ljbaqsaezv-79364ca4-0920-49b4-bab2-6faa41ff5f84.json b/mock/mappings/api_stripe_gateways_ljbaqsaezv-79364ca4-0920-49b4-bab2-6faa41ff5f84.json new file mode 100644 index 0000000..e490d45 --- /dev/null +++ b/mock/mappings/api_stripe_gateways_ljbaqsaezv-79364ca4-0920-49b4-bab2-6faa41ff5f84.json @@ -0,0 +1,38 @@ +{ + "id" : "79364ca4-0920-49b4-bab2-6faa41ff5f84", + "name" : "api_stripe_gateways_ljbaqsaezv", + "request" : { + "url" : "/api/stripe_gateways/LjBAQsaezv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"LjBAQsaezv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T16:07:23.940Z\",\"updated_at\":\"2024-10-24T16:07:23.940Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/LjBAQsaezv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"899142d6a9e356cef12acd32d34fb6d78e522de29b18e88fe8e6d8f933c59850\"}}}", + "headers" : { + "x-request-id" : "bd4ffccf-583a-4ed5-a8bd-3102a3f9b258", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "81", + "x-kong-request-id" : "7015dd54fb4243606bf48c3f4b716f77", + "x-permitted-cross-domain-policies" : "none", + "x-download-options" : "noopen", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:07:24 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-content-type-options" : "nosniff", + "x-xss-protection" : "1; mode=block", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json", + "etag" : "W/\"5f5aaa70aa693c363c269719c04cd8ad\"", + "cache-control" : "max-age=0, private, must-revalidate", + "accept-ranges" : "bytes" + } + }, + "uuid" : "79364ca4-0920-49b4-bab2-6faa41ff5f84", + "persistent" : true, + "scenarioName" : "scenario-3-api-stripe_gateways-LjBAQsaezv", + "requiredScenarioState" : "scenario-3-api-stripe_gateways-LjBAQsaezv-2", + "newScenarioState" : "scenario-3-api-stripe_gateways-LjBAQsaezv-3", + "insertionIndex" : 25 +} \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_ljbaqsaezv-85e15a08-9741-4994-834a-b51a58954c78.json b/mock/mappings/api_stripe_gateways_ljbaqsaezv-85e15a08-9741-4994-834a-b51a58954c78.json new file mode 100644 index 0000000..410ab16 --- /dev/null +++ b/mock/mappings/api_stripe_gateways_ljbaqsaezv-85e15a08-9741-4994-834a-b51a58954c78.json @@ -0,0 +1,36 @@ +{ + "id" : "85e15a08-9741-4994-834a-b51a58954c78", + "name" : "api_stripe_gateways_ljbaqsaezv", + "request" : { + "url" : "/api/stripe_gateways/LjBAQsaezv", + "method" : "GET" + }, + "response" : { + "status" : 404, + "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", + "headers" : { + "x-request-id" : "eba83407-0780-489e-b734-4c9b12fa736e", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "79", + "x-kong-request-id" : "ff6fe27d21ddc2020265f271c5cced53", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "content-type" : "application/vnd.api+json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-cache" + } + }, + "uuid" : "85e15a08-9741-4994-834a-b51a58954c78", + "persistent" : true, + "scenarioName" : "scenario-3-api-stripe_gateways-LjBAQsaezv", + "requiredScenarioState" : "scenario-3-api-stripe_gateways-LjBAQsaezv-4", + "insertionIndex" : 21 +} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-e04d3158-431f-4d9b-b050-f5591cc7ccea.json b/mock/mappings/api_stripe_gateways_ljbaqsaezv-a4c81a4d-d8fa-4540-9256-36c96c65c988.json similarity index 54% rename from mock/mappings/stripe_gateways_mjrmbswxyv-e04d3158-431f-4d9b-b050-f5591cc7ccea.json rename to mock/mappings/api_stripe_gateways_ljbaqsaezv-a4c81a4d-d8fa-4540-9256-36c96c65c988.json index 4feca84..9596f99 100644 --- a/mock/mappings/stripe_gateways_mjrmbswxyv-e04d3158-431f-4d9b-b050-f5591cc7ccea.json +++ b/mock/mappings/api_stripe_gateways_ljbaqsaezv-a4c81a4d-d8fa-4540-9256-36c96c65c988.json @@ -1,40 +1,40 @@ { - "id" : "e04d3158-431f-4d9b-b050-f5591cc7ccea", - "name" : "stripe_gateways_mjrmbswxyv", + "id" : "a4c81a4d-d8fa-4540-9256-36c96c65c988", + "name" : "api_stripe_gateways_ljbaqsaezv", "request" : { - "url" : "/stripe_gateways/MjRMbsWXYv", + "url" : "/api/stripe_gateways/LjBAQsaezv", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"name\":\"Incentro Stripe Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"name\":\"Incentro Stripe Gateway Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"LjBAQsaezv\",\"type\":\"stripe_gateways\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway Changed\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:34.937Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ef386c20d0092cecd0113380f612c201574f3f1a38c24dff3375be7eab0539c1\"}}}", + "body" : "{\"data\":{\"id\":\"LjBAQsaezv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway Changed\",\"created_at\":\"2024-10-24T16:07:23.940Z\",\"updated_at\":\"2024-10-24T16:07:24.943Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/LjBAQsaezv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ee97a1e3c2255d030ace2f9cab4c1184a0e743ae9186e9c522839a97c5200148\"}}}", "headers" : { - "x-request-id" : "ffb6fbd5-048d-4d8f-a219-a753783cc06d", - "x-kong-upstream-latency" : "48", + "x-request-id" : "144aa233-107f-4d80-a5fa-ccc92f037e9f", + "x-kong-upstream-latency" : "20", "X-Ratelimit-Remaining" : "94", - "x-kong-request-id" : "425c311865a5c47fc9cd4354bab3d140", + "x-kong-request-id" : "9b6cda7cdc77683c298b76088ef98658", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:34 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:24 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"bdb501aae9b5e073a5a48a2ba9879e7b\"", + "etag" : "W/\"a645c77eab0069cb9ca6861e542e281d\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "e04d3158-431f-4d9b-b050-f5591cc7ccea", + "uuid" : "a4c81a4d-d8fa-4540-9256-36c96c65c988", "persistent" : true, - "insertionIndex" : 19 + "insertionIndex" : 24 } \ No newline at end of file diff --git a/mock/mappings/api_stripe_gateways_ljbaqsaezv-b5519154-8e2e-467a-9b24-a6c165643f35.json b/mock/mappings/api_stripe_gateways_ljbaqsaezv-b5519154-8e2e-467a-9b24-a6c165643f35.json new file mode 100644 index 0000000..ed250b4 --- /dev/null +++ b/mock/mappings/api_stripe_gateways_ljbaqsaezv-b5519154-8e2e-467a-9b24-a6c165643f35.json @@ -0,0 +1,38 @@ +{ + "id" : "b5519154-8e2e-467a-9b24-a6c165643f35", + "name" : "api_stripe_gateways_ljbaqsaezv", + "request" : { + "url" : "/api/stripe_gateways/LjBAQsaezv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"LjBAQsaezv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway Changed\",\"created_at\":\"2024-10-24T16:07:23.940Z\",\"updated_at\":\"2024-10-24T16:07:24.943Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/LjBAQsaezv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/LjBAQsaezv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"86726a7419a9915a1bfc3ac99d425afcd251e1be27d5c7e8106924f1237ac459\"}}}", + "headers" : { + "x-request-id" : "afdb39e8-8843-4f6a-bc78-0e10731d4bed", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "80", + "x-kong-request-id" : "cfc04c503d0f8b1f1ff774224c07545a", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:25 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"a7e247a49e259ff2a772ed2df91f170c\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "b5519154-8e2e-467a-9b24-a6c165643f35", + "persistent" : true, + "scenarioName" : "scenario-3-api-stripe_gateways-LjBAQsaezv", + "requiredScenarioState" : "scenario-3-api-stripe_gateways-LjBAQsaezv-3", + "newScenarioState" : "scenario-3-api-stripe_gateways-LjBAQsaezv-4", + "insertionIndex" : 23 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json b/mock/mappings/api_taxjar_accounts-7c6e4e53-82aa-49c5-9960-859c2cbc51ba.json similarity index 51% rename from mock/mappings/taxjar_accounts-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json rename to mock/mappings/api_taxjar_accounts-7c6e4e53-82aa-49c5-9960-859c2cbc51ba.json index ed7194f..ad173fb 100644 --- a/mock/mappings/taxjar_accounts-d39f0cc3-a754-4ada-8f24-2dbe32f96210.json +++ b/mock/mappings/api_taxjar_accounts-7c6e4e53-82aa-49c5-9960-859c2cbc51ba.json @@ -1,8 +1,8 @@ { - "id" : "d39f0cc3-a754-4ada-8f24-2dbe32f96210", - "name" : "taxjar_accounts", + "id" : "7c6e4e53-82aa-49c5-9960-859c2cbc51ba", + "name" : "api_taxjar_accounts", "request" : { - "url" : "/taxjar_accounts", + "url" : "/api/taxjar_accounts", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"api_key\":\"TAXJAR_API_KEY\",\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"},\"name\":\"Incentro Taxjar Account\",\"reference\":null,\"reference_origin\":null},\"type\":\"taxjar_accounts\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.032Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3b7ac95be4905d7e0925bdb30462dce54698c2701a9a04aa88055fa5b8317c75\"}}}", + "body" : "{\"data\":{\"id\":\"jynPYTLmlv\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T16:07:25.987Z\",\"updated_at\":\"2024-10-24T16:07:25.987Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"328e4fb2bbdc8f0a0cac8260eaedd5f0f170d53fd3d19e35c7c8c64bb70a20ea\"}}}", "headers" : { - "x-request-id" : "d4f449a7-f2e8-447c-8316-660bc1545f51", - "x-kong-upstream-latency" : "21", + "x-request-id" : "89790e50-b04d-4f47-bce4-939a31299708", + "x-kong-upstream-latency" : "16", "X-Ratelimit-Remaining" : "92", - "x-kong-request-id" : "378fd006a8beda31f1c53568de782677", + "x-kong-request-id" : "cc17986b349ef84eb396da0a4df9b666", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:36 GMT", + "x-kong-proxy-latency" : "1", + "Date" : "Thu, 24 Oct 2024 16:07:26 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"b416bb39430f74fde8474ccee29e225d\"", + "etag" : "W/\"75c18c86f2151aca33a6f8d5cc03b25a\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "d39f0cc3-a754-4ada-8f24-2dbe32f96210", + "uuid" : "7c6e4e53-82aa-49c5-9960-859c2cbc51ba", "persistent" : true, - "insertionIndex" : 15 + "insertionIndex" : 20 } \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json b/mock/mappings/api_taxjar_accounts_jynpytlmlv-01ea972d-22b0-48cc-8778-45050ab00749.json similarity index 52% rename from mock/mappings/taxjar_accounts_kyzeltzedq-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json rename to mock/mappings/api_taxjar_accounts_jynpytlmlv-01ea972d-22b0-48cc-8778-45050ab00749.json index ce96f69..041a840 100644 --- a/mock/mappings/taxjar_accounts_kyzeltzedq-6832fdf9-9cf9-43db-9459-2d6aff6ff5bd.json +++ b/mock/mappings/api_taxjar_accounts_jynpytlmlv-01ea972d-22b0-48cc-8778-45050ab00749.json @@ -1,40 +1,40 @@ { - "id" : "6832fdf9-9cf9-43db-9459-2d6aff6ff5bd", - "name" : "taxjar_accounts_kyzeltzedq", + "id" : "01ea972d-22b0-48cc-8778-45050ab00749", + "name" : "api_taxjar_accounts_jynpytlmlv", "request" : { - "url" : "/taxjar_accounts/kyzeLTzEdq", + "url" : "/api/taxjar_accounts/jynPYTLmlv", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"},\"name\":\"Incentro Taxjar Account Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"},\"name\":\"Incentro Taxjar Account Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"jynPYTLmlv\",\"type\":\"taxjar_accounts\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account Changed\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.948Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3aa92c2546e9bd0b7e08cabc2692e20bc6115e46261922b41df1261a7b815c4d\"}}}", + "body" : "{\"data\":{\"id\":\"jynPYTLmlv\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv\"},\"attributes\":{\"name\":\"Incentro Taxjar Account Changed\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T16:07:25.987Z\",\"updated_at\":\"2024-10-24T16:07:26.862Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f659a4700fe9d3e015f540732e6794453155cf4c58fe52ccacf992cb8f61f470\"}}}", "headers" : { - "x-request-id" : "51360fdc-a883-4c36-ad57-c2b2d2e66ea4", - "x-kong-upstream-latency" : "31", + "x-request-id" : "fe98a739-9170-4159-af66-37cd60c26383", + "x-kong-upstream-latency" : "24", "X-Ratelimit-Remaining" : "93", - "x-kong-request-id" : "bbfc7424e0b4087b03f91e232fcee73a", + "x-kong-request-id" : "866b471ea340357e5c5ae31fc6e4f42d", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:36 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:26 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"22021f30ed1f5a3d323a526082ecb6d4\"", + "etag" : "W/\"7d649fddc00039307be77a5165d0b4e7\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "6832fdf9-9cf9-43db-9459-2d6aff6ff5bd", + "uuid" : "01ea972d-22b0-48cc-8778-45050ab00749", "persistent" : true, - "insertionIndex" : 12 + "insertionIndex" : 17 } \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_jynpytlmlv-648b0de1-1655-42ce-a46f-4c425f39b573.json b/mock/mappings/api_taxjar_accounts_jynpytlmlv-648b0de1-1655-42ce-a46f-4c425f39b573.json new file mode 100644 index 0000000..5e8400f --- /dev/null +++ b/mock/mappings/api_taxjar_accounts_jynpytlmlv-648b0de1-1655-42ce-a46f-4c425f39b573.json @@ -0,0 +1,38 @@ +{ + "id" : "648b0de1-1655-42ce-a46f-4c425f39b573", + "name" : "api_taxjar_accounts_jynpytlmlv", + "request" : { + "url" : "/api/taxjar_accounts/jynPYTLmlv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"jynPYTLmlv\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T16:07:25.987Z\",\"updated_at\":\"2024-10-24T16:07:25.987Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a4bed919f72031d23445db48c838a0ac26a25e0695e616f50bd5a11cb767b973\"}}}", + "headers" : { + "x-request-id" : "6154b975-c001-4fbb-bdbe-095153203bf4", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "78", + "x-kong-request-id" : "4f247c63f6716367851e7f4f013de639", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"6da6b9c20a85e6c0c98741cae52c50a4\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "648b0de1-1655-42ce-a46f-4c425f39b573", + "persistent" : true, + "scenarioName" : "scenario-2-api-taxjar_accounts-jynPYTLmlv", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-2-api-taxjar_accounts-jynPYTLmlv-2", + "insertionIndex" : 19 +} \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_jynpytlmlv-8510fb4d-1cc8-4e96-aec5-5cb92e8069b8.json b/mock/mappings/api_taxjar_accounts_jynpytlmlv-8510fb4d-1cc8-4e96-aec5-5cb92e8069b8.json new file mode 100644 index 0000000..b0218f1 --- /dev/null +++ b/mock/mappings/api_taxjar_accounts_jynpytlmlv-8510fb4d-1cc8-4e96-aec5-5cb92e8069b8.json @@ -0,0 +1,38 @@ +{ + "id" : "8510fb4d-1cc8-4e96-aec5-5cb92e8069b8", + "name" : "api_taxjar_accounts_jynpytlmlv", + "request" : { + "url" : "/api/taxjar_accounts/jynPYTLmlv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"jynPYTLmlv\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv\"},\"attributes\":{\"name\":\"Incentro Taxjar Account Changed\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T16:07:25.987Z\",\"updated_at\":\"2024-10-24T16:07:26.862Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3a23a09baaf258ad0fc057e7107a1eb7b3ead3cc9afaa6b5dee6dba639034ef1\"}}}", + "headers" : { + "x-request-id" : "d2ea5071-e9a5-4eac-9196-a1449f85a404", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "76", + "x-kong-request-id" : "4dfd0d3d3540f60c00a74c066e95a37f", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:27 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"54d5309e130087b6f02d5ab99f481351\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "8510fb4d-1cc8-4e96-aec5-5cb92e8069b8", + "persistent" : true, + "scenarioName" : "scenario-2-api-taxjar_accounts-jynPYTLmlv", + "requiredScenarioState" : "scenario-2-api-taxjar_accounts-jynPYTLmlv-3", + "newScenarioState" : "scenario-2-api-taxjar_accounts-jynPYTLmlv-4", + "insertionIndex" : 16 +} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-215a324c-cf6a-44c1-8777-af57fa28a70f.json b/mock/mappings/api_taxjar_accounts_jynpytlmlv-9be0cc95-0bd4-4196-bed1-8be0ec35bfc2.json similarity index 64% rename from mock/mappings/taxjar_accounts_kyzeltzedq-215a324c-cf6a-44c1-8777-af57fa28a70f.json rename to mock/mappings/api_taxjar_accounts_jynpytlmlv-9be0cc95-0bd4-4196-bed1-8be0ec35bfc2.json index 881a4e3..0d59a6b 100644 --- a/mock/mappings/taxjar_accounts_kyzeltzedq-215a324c-cf6a-44c1-8777-af57fa28a70f.json +++ b/mock/mappings/api_taxjar_accounts_jynpytlmlv-9be0cc95-0bd4-4196-bed1-8be0ec35bfc2.json @@ -1,22 +1,22 @@ { - "id" : "215a324c-cf6a-44c1-8777-af57fa28a70f", - "name" : "taxjar_accounts_kyzeltzedq", + "id" : "9be0cc95-0bd4-4196-bed1-8be0ec35bfc2", + "name" : "api_taxjar_accounts_jynpytlmlv", "request" : { - "url" : "/taxjar_accounts/kyzeLTzEdq", + "url" : "/api/taxjar_accounts/jynPYTLmlv", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "907e891b-9596-4626-9180-a4eb04b52041", + "x-request-id" : "cc91f28c-375d-40e1-9d73-e113a7fcdec1", "x-kong-upstream-latency" : "9", "X-Ratelimit-Remaining" : "75", - "x-kong-request-id" : "50a91c314638d163739db072ac175417", + "x-kong-request-id" : "0d820200e3022428064ccf3dbcb9831e", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:37 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:27 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "215a324c-cf6a-44c1-8777-af57fa28a70f", + "uuid" : "9be0cc95-0bd4-4196-bed1-8be0ec35bfc2", "persistent" : true, - "scenarioName" : "scenario-2-taxjar_accounts-kyzeLTzEdq", - "requiredScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-4", - "insertionIndex" : 9 + "scenarioName" : "scenario-2-api-taxjar_accounts-jynPYTLmlv", + "requiredScenarioState" : "scenario-2-api-taxjar_accounts-jynPYTLmlv-4", + "insertionIndex" : 14 } \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-51c345dd-7ba8-444e-8737-e4f1a4bce845.json b/mock/mappings/api_taxjar_accounts_jynpytlmlv-a975d9b4-fcc2-43cf-b9ae-0d3f5f1b784f.json similarity index 59% rename from mock/mappings/paypal_gateways_jklbysepav-51c345dd-7ba8-444e-8737-e4f1a4bce845.json rename to mock/mappings/api_taxjar_accounts_jynpytlmlv-a975d9b4-fcc2-43cf-b9ae-0d3f5f1b784f.json index 2d1c6bd..977c9e0 100644 --- a/mock/mappings/paypal_gateways_jklbysepav-51c345dd-7ba8-444e-8737-e4f1a4bce845.json +++ b/mock/mappings/api_taxjar_accounts_jynpytlmlv-a975d9b4-fcc2-43cf-b9ae-0d3f5f1b784f.json @@ -1,21 +1,21 @@ { - "id" : "51c345dd-7ba8-444e-8737-e4f1a4bce845", - "name" : "paypal_gateways_jklbysepav", + "id" : "a975d9b4-fcc2-43cf-b9ae-0d3f5f1b784f", + "name" : "api_taxjar_accounts_jynpytlmlv", "request" : { - "url" : "/paypal_gateways/JkLbysepAv", + "url" : "/api/taxjar_accounts/jynPYTLmlv", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "2a0fcd9c-fcc3-47c0-b3a9-d2aa61c77f46", + "x-request-id" : "6ceffd91-0458-4e0e-89b8-6cb60d12326b", "x-kong-upstream-latency" : "25", - "X-Ratelimit-Remaining" : "99", - "x-kong-request-id" : "1a319063ed873b7e2a0ada5e8fc2ac02", + "X-Ratelimit-Remaining" : "91", + "x-kong-request-id" : "4cef9a161d51d853c3328a0e58e9e15f", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:22 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:27 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "51c345dd-7ba8-444e-8737-e4f1a4bce845", + "uuid" : "a975d9b4-fcc2-43cf-b9ae-0d3f5f1b784f", "persistent" : true, - "insertionIndex" : 64 + "insertionIndex" : 15 } \ No newline at end of file diff --git a/mock/mappings/api_taxjar_accounts_jynpytlmlv-bc1d51bd-3131-4589-aad6-df64197015b9.json b/mock/mappings/api_taxjar_accounts_jynpytlmlv-bc1d51bd-3131-4589-aad6-df64197015b9.json new file mode 100644 index 0000000..3882584 --- /dev/null +++ b/mock/mappings/api_taxjar_accounts_jynpytlmlv-bc1d51bd-3131-4589-aad6-df64197015b9.json @@ -0,0 +1,38 @@ +{ + "id" : "bc1d51bd-3131-4589-aad6-df64197015b9", + "name" : "api_taxjar_accounts_jynpytlmlv", + "request" : { + "url" : "/api/taxjar_accounts/jynPYTLmlv", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"jynPYTLmlv\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T16:07:25.987Z\",\"updated_at\":\"2024-10-24T16:07:25.987Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/jynPYTLmlv/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"83881a624f3f3b727dd93be5b1a8a70624d700b48537fd12df329d6f19f16fba\"}}}", + "headers" : { + "x-request-id" : "07a57d96-6925-4843-8a8f-634ad2439f44", + "x-kong-upstream-latency" : "14", + "X-Ratelimit-Remaining" : "77", + "x-kong-request-id" : "4079ad0f8d39432846ca8c18994ada48", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:26 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"de3ec85676c0adeb6a614e67a3b82378\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bc1d51bd-3131-4589-aad6-df64197015b9", + "persistent" : true, + "scenarioName" : "scenario-2-api-taxjar_accounts-jynPYTLmlv", + "requiredScenarioState" : "scenario-2-api-taxjar_accounts-jynPYTLmlv-2", + "newScenarioState" : "scenario-2-api-taxjar_accounts-jynPYTLmlv-3", + "insertionIndex" : 18 +} \ No newline at end of file diff --git a/mock/mappings/webhooks-48ba9633-eb4f-4342-8cff-6821113f0bac.json b/mock/mappings/api_webhooks-088ac46b-31f5-48f6-91fc-bf2b678a008f.json similarity index 56% rename from mock/mappings/webhooks-48ba9633-eb4f-4342-8cff-6821113f0bac.json rename to mock/mappings/api_webhooks-088ac46b-31f5-48f6-91fc-bf2b678a008f.json index 77a442f..a23a6c5 100644 --- a/mock/mappings/webhooks-48ba9633-eb4f-4342-8cff-6821113f0bac.json +++ b/mock/mappings/api_webhooks-088ac46b-31f5-48f6-91fc-bf2b678a008f.json @@ -1,8 +1,8 @@ { - "id" : "48ba9633-eb4f-4342-8cff-6821113f0bac", - "name" : "webhooks", + "id" : "088ac46b-31f5-48f6-91fc-bf2b678a008f", + "name" : "api_webhooks", "request" : { - "url" : "/webhooks", + "url" : "/api/webhooks", "method" : "POST", "bodyPatterns" : [ { "equalToJson" : "{\"data\":{\"attributes\":{\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"},\"name\":\"incentro webhook\",\"reference\":null,\"reference_origin\":null,\"topic\":\"orders.create\"},\"type\":\"webhooks\"}}\n", @@ -12,29 +12,29 @@ }, "response" : { "status" : 201, - "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:38.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1a31c01287506f4819863706bb361c7dc4f6644ef440b631f95a17cafcee1172\"}}}", + "body" : "{\"data\":{\"id\":\"mPpvRCrEOd\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"9bdda3095ed58ab1cb07a1b35310481c\",\"created_at\":\"2024-10-24T16:07:28.016Z\",\"updated_at\":\"2024-10-24T16:07:28.016Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d801acc6ef371c4a5057dfae7b48647a9f5527b85c0baa811d0c9c7b98116168\"}}}", "headers" : { - "x-request-id" : "9827e7e8-e095-473d-9fb3-da011d57bfc4", - "x-kong-upstream-latency" : "22", + "x-request-id" : "a0fd2a1a-43e8-4fae-bc7e-88802cace2b3", + "x-kong-upstream-latency" : "23", "X-Ratelimit-Remaining" : "91", - "x-kong-request-id" : "262bc8223e4af164a643d85f1093296e", + "x-kong-request-id" : "8fc441000b299e3f3487c53e21cdb448", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:38 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:28 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"fc427e39fe88ffd676fb52aa86b8a49c\"", + "etag" : "W/\"c8eb3adad279efcd35774f7b32ded390\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "48ba9633-eb4f-4342-8cff-6821113f0bac", + "uuid" : "088ac46b-31f5-48f6-91fc-bf2b678a008f", "persistent" : true, - "insertionIndex" : 8 + "insertionIndex" : 13 } \ No newline at end of file diff --git a/mock/mappings/adyen_gateways_pkaqrsdyzk-7ef30764-8a25-46ee-a0d0-79f611d521cc.json b/mock/mappings/api_webhooks_mppvrcreod-0041d3ee-3515-4f04-95b8-11bfc58cecc9.json similarity index 55% rename from mock/mappings/adyen_gateways_pkaqrsdyzk-7ef30764-8a25-46ee-a0d0-79f611d521cc.json rename to mock/mappings/api_webhooks_mppvrcreod-0041d3ee-3515-4f04-95b8-11bfc58cecc9.json index 814e420..f7f79c5 100644 --- a/mock/mappings/adyen_gateways_pkaqrsdyzk-7ef30764-8a25-46ee-a0d0-79f611d521cc.json +++ b/mock/mappings/api_webhooks_mppvrcreod-0041d3ee-3515-4f04-95b8-11bfc58cecc9.json @@ -1,21 +1,21 @@ { - "id" : "7ef30764-8a25-46ee-a0d0-79f611d521cc", - "name" : "adyen_gateways_pkaqrsdyzk", + "id" : "0041d3ee-3515-4f04-95b8-11bfc58cecc9", + "name" : "api_webhooks_mppvrcreod", "request" : { - "url" : "/adyen_gateways/PkaqRsdyzk", + "url" : "/api/webhooks/mPpvRCrEOd", "method" : "DELETE" }, "response" : { "status" : 204, "headers" : { - "x-request-id" : "07d0b186-df84-4bb3-8f51-a5fc4279fa2f", - "x-kong-upstream-latency" : "125", - "X-Ratelimit-Remaining" : "66", - "x-kong-request-id" : "cb5c891b72f68e2a3535df2adb03724d", + "x-request-id" : "078ae977-b8df-49c4-b3af-5d85697cfccc", + "x-kong-upstream-latency" : "18", + "X-Ratelimit-Remaining" : "90", + "x-kong-request-id" : "283bdf476868142023f0590b9e2f8f0f", "x-permitted-cross-domain-policies" : "none", "x-download-options" : "noopen", "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:29 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -26,7 +26,7 @@ "cache-control" : "no-cache" } }, - "uuid" : "7ef30764-8a25-46ee-a0d0-79f611d521cc", + "uuid" : "0041d3ee-3515-4f04-95b8-11bfc58cecc9", "persistent" : true, - "insertionIndex" : 73 + "insertionIndex" : 7 } \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mppvrcreod-67b2c179-91b4-4eed-87ce-f7b7a63dfb27.json b/mock/mappings/api_webhooks_mppvrcreod-67b2c179-91b4-4eed-87ce-f7b7a63dfb27.json new file mode 100644 index 0000000..1a93bb4 --- /dev/null +++ b/mock/mappings/api_webhooks_mppvrcreod-67b2c179-91b4-4eed-87ce-f7b7a63dfb27.json @@ -0,0 +1,38 @@ +{ + "id" : "67b2c179-91b4-4eed-87ce-f7b7a63dfb27", + "name" : "api_webhooks_mppvrcreod", + "request" : { + "url" : "/api/webhooks/mPpvRCrEOd", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mPpvRCrEOd\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"9bdda3095ed58ab1cb07a1b35310481c\",\"created_at\":\"2024-10-24T16:07:28.016Z\",\"updated_at\":\"2024-10-24T16:07:28.016Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"79aaf5265159b3f19fbf6a23315bd642fec00663aabb732c1e9fd8a5c5b593c9\"}}}", + "headers" : { + "x-request-id" : "aec078f9-6479-42a9-86fd-d2e52758c8ef", + "x-kong-upstream-latency" : "16", + "X-Ratelimit-Remaining" : "73", + "x-kong-request-id" : "b593b11d26cf5d366a35801b5306d774", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:28 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"0ecaa7a992a4e57339340dafb05b2c00\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "67b2c179-91b4-4eed-87ce-f7b7a63dfb27", + "persistent" : true, + "scenarioName" : "scenario-1-api-webhooks-mPpvRCrEOd", + "requiredScenarioState" : "scenario-1-api-webhooks-mPpvRCrEOd-2", + "newScenarioState" : "scenario-1-api-webhooks-mPpvRCrEOd-3", + "insertionIndex" : 11 +} \ No newline at end of file diff --git a/mock/mappings/addresses_boelupqapl-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json b/mock/mappings/api_webhooks_mppvrcreod-77e4a178-eff7-496b-a38d-f36e1c5e76f8.json similarity index 62% rename from mock/mappings/addresses_boelupqapl-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json rename to mock/mappings/api_webhooks_mppvrcreod-77e4a178-eff7-496b-a38d-f36e1c5e76f8.json index 99e9268..47aafb5 100644 --- a/mock/mappings/addresses_boelupqapl-0e78e47d-4917-4aab-a5e2-cbe5fbac92d9.json +++ b/mock/mappings/api_webhooks_mppvrcreod-77e4a178-eff7-496b-a38d-f36e1c5e76f8.json @@ -1,22 +1,22 @@ { - "id" : "0e78e47d-4917-4aab-a5e2-cbe5fbac92d9", - "name" : "addresses_boelupqapl", + "id" : "77e4a178-eff7-496b-a38d-f36e1c5e76f8", + "name" : "api_webhooks_mppvrcreod", "request" : { - "url" : "/addresses/Boelupqapl", + "url" : "/api/webhooks/mPpvRCrEOd", "method" : "GET" }, "response" : { "status" : 404, "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", "headers" : { - "x-request-id" : "532beb0c-323d-43b1-9e0c-c97dd1e2e05d", - "x-kong-upstream-latency" : "16", + "x-request-id" : "ed7b3c5d-3d9f-4c97-bcd8-bd3562b6a5d5", + "x-kong-upstream-latency" : "9", "X-Ratelimit-Remaining" : "70", - "x-kong-request-id" : "e76ce31391997b0d441e6f290024ca51", + "x-kong-request-id" : "859a40236ccc6e1b41521f7f73fc2d4e", "x-permitted-cross-domain-policies" : "none", "x-kong-proxy-latency" : "0", "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:41 GMT", + "Date" : "Thu, 24 Oct 2024 16:07:29 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", @@ -28,9 +28,9 @@ "cache-control" : "no-cache" } }, - "uuid" : "0e78e47d-4917-4aab-a5e2-cbe5fbac92d9", + "uuid" : "77e4a178-eff7-496b-a38d-f36e1c5e76f8", "persistent" : true, - "scenarioName" : "scenario-38-addresses-Boelupqapl", - "requiredScenarioState" : "scenario-38-addresses-Boelupqapl-4", - "insertionIndex" : 228 + "scenarioName" : "scenario-1-api-webhooks-mPpvRCrEOd", + "requiredScenarioState" : "scenario-1-api-webhooks-mPpvRCrEOd-5", + "insertionIndex" : 6 } \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mppvrcreod-7a691042-5ad1-4245-b64c-5748bc8d9864.json b/mock/mappings/api_webhooks_mppvrcreod-7a691042-5ad1-4245-b64c-5748bc8d9864.json new file mode 100644 index 0000000..c52902e --- /dev/null +++ b/mock/mappings/api_webhooks_mppvrcreod-7a691042-5ad1-4245-b64c-5748bc8d9864.json @@ -0,0 +1,38 @@ +{ + "id" : "7a691042-5ad1-4245-b64c-5748bc8d9864", + "name" : "api_webhooks_mppvrcreod", + "request" : { + "url" : "/api/webhooks/mPpvRCrEOd", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mPpvRCrEOd\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"9bdda3095ed58ab1cb07a1b35310481c\",\"created_at\":\"2024-10-24T16:07:28.016Z\",\"updated_at\":\"2024-10-24T16:07:28.016Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ddb6f7c1241406d1b242185e5a4ad4d0a77acc6419e60d8bd74a5a70930824e4\"}}}", + "headers" : { + "x-request-id" : "2abf325c-841c-4ab5-b810-037aad47303b", + "x-kong-upstream-latency" : "19", + "X-Ratelimit-Remaining" : "74", + "x-kong-request-id" : "4871e2124720ef5131d8a20196a10055", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:28 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"223053eb9db5283083954624fe7dc583\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "7a691042-5ad1-4245-b64c-5748bc8d9864", + "persistent" : true, + "scenarioName" : "scenario-1-api-webhooks-mPpvRCrEOd", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-1-api-webhooks-mPpvRCrEOd-2", + "insertionIndex" : 12 +} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mppvrcreod-bd5de5ce-020a-4696-bb0e-e8fad95fadc8.json b/mock/mappings/api_webhooks_mppvrcreod-bd5de5ce-020a-4696-bb0e-e8fad95fadc8.json new file mode 100644 index 0000000..563c8c4 --- /dev/null +++ b/mock/mappings/api_webhooks_mppvrcreod-bd5de5ce-020a-4696-bb0e-e8fad95fadc8.json @@ -0,0 +1,38 @@ +{ + "id" : "bd5de5ce-020a-4696-bb0e-e8fad95fadc8", + "name" : "api_webhooks_mppvrcreod", + "request" : { + "url" : "/api/webhooks/mPpvRCrEOd", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mPpvRCrEOd\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd\"},\"attributes\":{\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\",\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"9bdda3095ed58ab1cb07a1b35310481c\",\"created_at\":\"2024-10-24T16:07:28.016Z\",\"updated_at\":\"2024-10-24T16:07:28.967Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4404edd97987d5e7a2737245322ce1892f66cdc7c287b2e6bf14261db33f11ca\"}}}", + "headers" : { + "x-request-id" : "2c4c89a1-b44a-4c6d-b612-ca5ee84e2d47", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "71", + "x-kong-request-id" : "b6956f6116f829137606562f93c6451d", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "1", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:29 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"075f11b1e2bc27f337d429b2064eb675\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "bd5de5ce-020a-4696-bb0e-e8fad95fadc8", + "persistent" : true, + "scenarioName" : "scenario-1-api-webhooks-mPpvRCrEOd", + "requiredScenarioState" : "scenario-1-api-webhooks-mPpvRCrEOd-4", + "newScenarioState" : "scenario-1-api-webhooks-mPpvRCrEOd-5", + "insertionIndex" : 8 +} \ No newline at end of file diff --git a/mock/mappings/api_webhooks_mppvrcreod-c158d8cd-0066-4c4b-8ef4-db65ed478a8d.json b/mock/mappings/api_webhooks_mppvrcreod-c158d8cd-0066-4c4b-8ef4-db65ed478a8d.json new file mode 100644 index 0000000..57f8ee2 --- /dev/null +++ b/mock/mappings/api_webhooks_mppvrcreod-c158d8cd-0066-4c4b-8ef4-db65ed478a8d.json @@ -0,0 +1,38 @@ +{ + "id" : "c158d8cd-0066-4c4b-8ef4-db65ed478a8d", + "name" : "api_webhooks_mppvrcreod", + "request" : { + "url" : "/api/webhooks/mPpvRCrEOd", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"data\":{\"id\":\"mPpvRCrEOd\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"9bdda3095ed58ab1cb07a1b35310481c\",\"created_at\":\"2024-10-24T16:07:28.016Z\",\"updated_at\":\"2024-10-24T16:07:28.016Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e97ce8d0cd5daceeca2b652e6ee0e32182c41b00a0f1433e8511ad6f68054654\"}}}", + "headers" : { + "x-request-id" : "47f488e3-6811-4b20-bccb-5a9c4ba93d06", + "x-kong-upstream-latency" : "15", + "X-Ratelimit-Remaining" : "72", + "x-kong-request-id" : "d7a06f5096b0c261bd482e3193097d0b", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:07:28 GMT", + "X-Ratelimit-Limit" : "100", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept, Accept-Encoding, Origin", + "etag" : "W/\"94416ebff9402ea6b0db94151207f63e\"", + "content-type" : "application/vnd.api+json", + "accept-ranges" : "bytes", + "cache-control" : "max-age=0, private, must-revalidate" + } + }, + "uuid" : "c158d8cd-0066-4c4b-8ef4-db65ed478a8d", + "persistent" : true, + "scenarioName" : "scenario-1-api-webhooks-mPpvRCrEOd", + "requiredScenarioState" : "scenario-1-api-webhooks-mPpvRCrEOd-3", + "newScenarioState" : "scenario-1-api-webhooks-mPpvRCrEOd-4", + "insertionIndex" : 10 +} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-a1fbb10d-de25-495d-bd9f-a57f24648559.json b/mock/mappings/api_webhooks_mppvrcreod-effc75de-360e-4c77-be65-1a5f4e893e7d.json similarity index 57% rename from mock/mappings/webhooks_epqzocjdyk-a1fbb10d-de25-495d-bd9f-a57f24648559.json rename to mock/mappings/api_webhooks_mppvrcreod-effc75de-360e-4c77-be65-1a5f4e893e7d.json index a7b69fd..ad3acd7 100644 --- a/mock/mappings/webhooks_epqzocjdyk-a1fbb10d-de25-495d-bd9f-a57f24648559.json +++ b/mock/mappings/api_webhooks_mppvrcreod-effc75de-360e-4c77-be65-1a5f4e893e7d.json @@ -1,40 +1,40 @@ { - "id" : "a1fbb10d-de25-495d-bd9f-a57f24648559", - "name" : "webhooks_epqzocjdyk", + "id" : "effc75de-360e-4c77-be65-1a5f4e893e7d", + "name" : "api_webhooks_mppvrcreod", "request" : { - "url" : "/webhooks/ePqzoCJDYK", + "url" : "/api/webhooks/mPpvRCrEOd", "method" : "PATCH", "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"},\"name\":\"incentro updated webhook\",\"reference\":null,\"reference_origin\":null,\"topic\":\"orders.place\"},\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\"}}\n", + "equalToJson" : "{\"data\":{\"attributes\":{\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"},\"name\":\"incentro updated webhook\",\"reference\":null,\"reference_origin\":null,\"topic\":\"orders.place\"},\"id\":\"mPpvRCrEOd\",\"type\":\"webhooks\"}}\n", "ignoreArrayOrder" : true, "ignoreExtraElements" : true } ] }, "response" : { "status" : 200, - "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\",\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:39.186Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d996447fa99826b56d7599fc0e9958d9b3fe32d47dd9b594095e2490570e9b43\"}}}", + "body" : "{\"data\":{\"id\":\"mPpvRCrEOd\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd\"},\"attributes\":{\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\",\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"9bdda3095ed58ab1cb07a1b35310481c\",\"created_at\":\"2024-10-24T16:07:28.016Z\",\"updated_at\":\"2024-10-24T16:07:28.967Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/mPpvRCrEOd/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9510cc0f86c8e1470051a38efdb7c767536d3b40e4ba6825edc6a5e86c8ec9fb\"}}}", "headers" : { - "x-request-id" : "2bfe50ee-c910-4e58-9a70-145db8d0d008", - "x-kong-upstream-latency" : "20", + "x-request-id" : "7cea6060-e0ac-4cba-9825-2269ca5276e1", + "x-kong-upstream-latency" : "24", "X-Ratelimit-Remaining" : "92", - "x-kong-request-id" : "4414ac4f608d331c6c63433ac66c8162", + "x-kong-request-id" : "9b2a032b86a122031ff5e548ac557e75", "x-download-options" : "noopen", "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:53:39 GMT", + "x-kong-proxy-latency" : "0", + "Date" : "Thu, 24 Oct 2024 16:07:28 GMT", "X-Ratelimit-Limit" : "100", "X-Ratelimit-Interval" : "60", "x-xss-protection" : "1; mode=block", "x-content-type-options" : "nosniff", "referrer-policy" : "strict-origin-when-cross-origin", "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"04b2856d02b5b3fbe21e14b5e494e617\"", + "etag" : "W/\"8b8dc84d1dbe75782b7da592d52da5c6\"", "content-type" : "application/vnd.api+json", "accept-ranges" : "bytes", "cache-control" : "max-age=0, private, must-revalidate" } }, - "uuid" : "a1fbb10d-de25-495d-bd9f-a57f24648559", + "uuid" : "effc75de-360e-4c77-be65-1a5f4e893e7d", "persistent" : true, - "insertionIndex" : 4 + "insertionIndex" : 9 } \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-465eed74-eb0b-43f9-8484-13c1b7f3c833.json b/mock/mappings/bing_geocoders_lxkgysqxbx-465eed74-eb0b-43f9-8484-13c1b7f3c833.json deleted file mode 100644 index 1c66bdb..0000000 --- a/mock/mappings/bing_geocoders_lxkgysqxbx-465eed74-eb0b-43f9-8484-13c1b7f3c833.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "465eed74-eb0b-43f9-8484-13c1b7f3c833", - "name" : "bing_geocoders_lxkgysqxbx", - "request" : { - "url" : "/bing_geocoders/lxKgysqXBx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:30.518Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7dea09a93f7802b99bd6b2fbd43fd1d804c87434989eb1e5e6f08bec50b72793\"}}}", - "headers" : { - "x-request-id" : "ef00844a-0d3b-47fa-a324-89204ea7289c", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "91", - "x-kong-request-id" : "6b9baa19c499aa7456c3826111326c28", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:30 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c789593e65a4b02804998d4735a76884\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "465eed74-eb0b-43f9-8484-13c1b7f3c833", - "persistent" : true, - "scenarioName" : "scenario-42-bing_geocoders-lxKgysqXBx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-2", - "insertionIndex" : 269 -} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-6a4a021e-845e-4059-ae6c-eeef7061e107.json b/mock/mappings/bing_geocoders_lxkgysqxbx-6a4a021e-845e-4059-ae6c-eeef7061e107.json deleted file mode 100644 index e398745..0000000 --- a/mock/mappings/bing_geocoders_lxkgysqxbx-6a4a021e-845e-4059-ae6c-eeef7061e107.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "6a4a021e-845e-4059-ae6c-eeef7061e107", - "name" : "bing_geocoders_lxkgysqxbx", - "request" : { - "url" : "/bing_geocoders/lxKgysqXBx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:31.492Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d8fdc56a2aecf7cc124bf7c127e87bfe5be3d7b67b7a09718ef82e4214d54b92\"}}}", - "headers" : { - "x-request-id" : "143dba09-484a-426b-b07e-65bb07920373", - "x-kong-upstream-latency" : "41", - "X-Ratelimit-Remaining" : "89", - "x-kong-request-id" : "dd6c216c4cbbc9054c81993d23ee0318", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:31 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"1210c7cb88e488aa00014eabce90a992\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "6a4a021e-845e-4059-ae6c-eeef7061e107", - "persistent" : true, - "scenarioName" : "scenario-42-bing_geocoders-lxKgysqXBx", - "requiredScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-3", - "newScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-4", - "insertionIndex" : 266 -} \ No newline at end of file diff --git a/mock/mappings/bing_geocoders_lxkgysqxbx-75081597-4c25-40a5-90e8-7f671ead5f6c.json b/mock/mappings/bing_geocoders_lxkgysqxbx-75081597-4c25-40a5-90e8-7f671ead5f6c.json deleted file mode 100644 index e433546..0000000 --- a/mock/mappings/bing_geocoders_lxkgysqxbx-75081597-4c25-40a5-90e8-7f671ead5f6c.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "75081597-4c25-40a5-90e8-7f671ead5f6c", - "name" : "bing_geocoders_lxkgysqxbx", - "request" : { - "url" : "/bing_geocoders/lxKgysqXBx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"lxKgysqXBx\",\"type\":\"bing_geocoders\",\"attributes\":{\"name\":\"Incentro Bing Geocoder\",\"type\":\"bing_geocoders\",\"created_at\":\"2024-10-24T15:51:30.518Z\",\"updated_at\":\"2024-10-24T15:51:30.518Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_bing_geocoder.incentro_bing_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/bing_geocoders/lxKgysqXBx/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c10632209907a89582b629a6eb8e41fa54ffdf143cc017cca6cb32299a10d0f2\"}}}", - "headers" : { - "x-request-id" : "fc59053e-5b7c-4102-9ba0-4f6bd569f94f", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "90", - "x-kong-request-id" : "d8326212d1373a545b85cf5c8aa31358", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:31 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"00ec239ccba45b9be6d1c6ce0eb36224\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "75081597-4c25-40a5-90e8-7f671ead5f6c", - "persistent" : true, - "scenarioName" : "scenario-42-bing_geocoders-lxKgysqXBx", - "requiredScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-2", - "newScenarioState" : "scenario-42-bing_geocoders-lxKgysqXBx-3", - "insertionIndex" : 268 -} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json deleted file mode 100644 index e6afb69..0000000 --- a/mock/mappings/braintree_gateways_dkmlxsnjnj-091bdfdb-6750-486f-ab2c-6202e5b8e68a.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "091bdfdb-6750-486f-ab2c-6202e5b8e68a", - "name" : "braintree_gateways_dkmlxsnjnj", - "request" : { - "url" : "/braintree_gateways/DkMLXsNJnj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:32.831Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6edc10b33b98309474fe0833016347893ffc2569e801ae07f4c36c7140c9a30a\"}}}", - "headers" : { - "x-request-id" : "faa5e5a7-4867-4cc4-a12a-8afbb198f3b5", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "87", - "x-kong-request-id" : "71a41d0da2a1963d04418c454790460d", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:33 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"ff6c9bed7b2cc972e821a9a9ca85f201\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "091bdfdb-6750-486f-ab2c-6202e5b8e68a", - "persistent" : true, - "scenarioName" : "scenario-41-braintree_gateways-DkMLXsNJnj", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-2", - "insertionIndex" : 262 -} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-0971fd9e-eb22-4c87-989e-cda5738d0858.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-0971fd9e-eb22-4c87-989e-cda5738d0858.json deleted file mode 100644 index 780c7b9..0000000 --- a/mock/mappings/braintree_gateways_dkmlxsnjnj-0971fd9e-eb22-4c87-989e-cda5738d0858.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "0971fd9e-eb22-4c87-989e-cda5738d0858", - "name" : "braintree_gateways_dkmlxsnjnj", - "request" : { - "url" : "/braintree_gateways/DkMLXsNJnj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:32.831Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"452696f5ca9f52a56519ce8db863dd2e0f3879e2d5575ba275da16fa1137cad6\"}}}", - "headers" : { - "x-request-id" : "2f848f35-5940-4883-a6ce-5b3ced373fa8", - "x-kong-upstream-latency" : "21", - "X-Ratelimit-Remaining" : "86", - "x-kong-request-id" : "559afb0422265b6db0e6a007b9381077", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:33 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"3a0161945f31a8cdd8a044bfc9691c5d\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "0971fd9e-eb22-4c87-989e-cda5738d0858", - "persistent" : true, - "scenarioName" : "scenario-41-braintree_gateways-DkMLXsNJnj", - "requiredScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-2", - "newScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-3", - "insertionIndex" : 261 -} \ No newline at end of file diff --git a/mock/mappings/braintree_gateways_dkmlxsnjnj-0d07ae32-151f-42f2-975f-3eeb1fceec35.json b/mock/mappings/braintree_gateways_dkmlxsnjnj-0d07ae32-151f-42f2-975f-3eeb1fceec35.json deleted file mode 100644 index 37e9acd..0000000 --- a/mock/mappings/braintree_gateways_dkmlxsnjnj-0d07ae32-151f-42f2-975f-3eeb1fceec35.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "0d07ae32-151f-42f2-975f-3eeb1fceec35", - "name" : "braintree_gateways_dkmlxsnjnj", - "request" : { - "url" : "/braintree_gateways/DkMLXsNJnj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"DkMLXsNJnj\",\"type\":\"braintree_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj\"},\"attributes\":{\"name\":\"Incentro Braintree Gateway Changed\",\"created_at\":\"2024-10-24T15:51:32.831Z\",\"updated_at\":\"2024-10-24T15:51:33.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_braintree_gateway.incentro_braintree_gateway\"},\"descriptor_name\":null,\"descriptor_phone\":null,\"descriptor_url\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/braintree_gateways/DkMLXsNJnj/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/versions\"}},\"braintree_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/relationships/braintree_payments\",\"related\":\"https://loucs.commercelayer.io/api/braintree_gateways/DkMLXsNJnj/braintree_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"b82a60e623312130c7103ab55775a0b990ed741b470398511f11c8b0a69b5271\"}}}", - "headers" : { - "x-request-id" : "678d26d7-e449-4b0f-befc-136a0c1a6847", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "85", - "x-kong-request-id" : "41210a2c4eb04f5b201d136614f03a44", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:34 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"db3fbb96cf18f19f468fb2c8251d4b08\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "0d07ae32-151f-42f2-975f-3eeb1fceec35", - "persistent" : true, - "scenarioName" : "scenario-41-braintree_gateways-DkMLXsNJnj", - "requiredScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-3", - "newScenarioState" : "scenario-41-braintree_gateways-DkMLXsNJnj-4", - "insertionIndex" : 259 -} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json b/mock/mappings/customer_groups_ypvbrhpgjp-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json deleted file mode 100644 index 8663b29..0000000 --- a/mock/mappings/customer_groups_ypvbrhpgjp-3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "id" : "3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c", - "name" : "customer_groups_ypvbrhpgjp", - "request" : { - "url" : "/customer_groups/YpvbrhPgjp", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", - "headers" : { - "x-request-id" : "3635b8bf-31d9-401e-b05e-e4179213d348", - "x-kong-upstream-latency" : "8", - "X-Ratelimit-Remaining" : "80", - "x-kong-request-id" : "56c4d00fe5a17314d0318f2f26748136", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:37 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "content-type" : "application/vnd.api+json; charset=utf-8", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "3ae51f31-124c-4cbf-b9a2-0d4ef0cf054c", - "persistent" : true, - "scenarioName" : "scenario-40-customer_groups-YpvbrhPgjp", - "requiredScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-4", - "insertionIndex" : 250 -} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-3c3d864a-6c42-4cfd-b366-3133054c42e9.json b/mock/mappings/customer_groups_ypvbrhpgjp-3c3d864a-6c42-4cfd-b366-3133054c42e9.json deleted file mode 100644 index 72268cc..0000000 --- a/mock/mappings/customer_groups_ypvbrhpgjp-3c3d864a-6c42-4cfd-b366-3133054c42e9.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "3c3d864a-6c42-4cfd-b366-3133054c42e9", - "name" : "customer_groups_ypvbrhpgjp", - "request" : { - "url" : "/customer_groups/YpvbrhPgjp", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:35.216Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7dce93aade6a9a0d4ff53d9289e8a33781062ab6ca91f5c72d5d7edc63f3aa97\"}}}", - "headers" : { - "x-request-id" : "68fd8a32-bcda-460b-9992-0e2beed63dab", - "x-kong-upstream-latency" : "78", - "X-Ratelimit-Remaining" : "83", - "x-kong-request-id" : "399ff6085f20683b4cd66304ac6c5565", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:35 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"154af81e59a8fbd923e84c23a2ce8a9f\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "3c3d864a-6c42-4cfd-b366-3133054c42e9", - "persistent" : true, - "scenarioName" : "scenario-40-customer_groups-YpvbrhPgjp", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-2", - "insertionIndex" : 255 -} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-75800631-5c7d-4848-abe3-65f861be3963.json b/mock/mappings/customer_groups_ypvbrhpgjp-75800631-5c7d-4848-abe3-65f861be3963.json deleted file mode 100644 index 9dcbcb1..0000000 --- a/mock/mappings/customer_groups_ypvbrhpgjp-75800631-5c7d-4848-abe3-65f861be3963.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "75800631-5c7d-4848-abe3-65f861be3963", - "name" : "customer_groups_ypvbrhpgjp", - "request" : { - "url" : "/customer_groups/YpvbrhPgjp", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:35.216Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9bd758b5277d0c6e6a92d885f7a5bdc1acd00186da91806ddb468f10928bdba1\"}}}", - "headers" : { - "x-request-id" : "afcddec6-922d-4b8b-9384-01daf1a0afc3", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "82", - "x-kong-request-id" : "efe6e27301ec2817adf363182ac9266e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:35 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"17c116de5306135aaf3850d0c84bd304\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "75800631-5c7d-4848-abe3-65f861be3963", - "persistent" : true, - "scenarioName" : "scenario-40-customer_groups-YpvbrhPgjp", - "requiredScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-2", - "newScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-3", - "insertionIndex" : 254 -} \ No newline at end of file diff --git a/mock/mappings/customer_groups_ypvbrhpgjp-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json b/mock/mappings/customer_groups_ypvbrhpgjp-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json deleted file mode 100644 index 604fab9..0000000 --- a/mock/mappings/customer_groups_ypvbrhpgjp-f86bc4bd-1a0c-48b9-bf02-121922caff8d.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "f86bc4bd-1a0c-48b9-bf02-121922caff8d", - "name" : "customer_groups_ypvbrhpgjp", - "request" : { - "url" : "/customer_groups/YpvbrhPgjp", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"YpvbrhPgjp\",\"type\":\"customer_groups\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp\"},\"attributes\":{\"name\":\"Incentro updated customer group\",\"code\":null,\"created_at\":\"2024-10-24T15:51:35.216Z\",\"updated_at\":\"2024-10-24T15:51:36.203Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_customer_group.incentro_customer_group\"}},\"relationships\":{\"customers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/customers\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/customers\"}},\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/customer_groups/YpvbrhPgjp/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"4c39a735071e2290fca77ff83581809df69d50de08b9bd3cb2b0ae3da4a5e800\"}}}", - "headers" : { - "x-request-id" : "502ac895-fc7f-48bf-b858-3c060c910250", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "81", - "x-kong-request-id" : "2e0b4d43ed82d136d76f0618ac67807e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:36 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"856bd80822e9c3ca72eeae082c84e039\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "f86bc4bd-1a0c-48b9-bf02-121922caff8d", - "persistent" : true, - "scenarioName" : "scenario-40-customer_groups-YpvbrhPgjp", - "requiredScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-3", - "newScenarioState" : "scenario-40-customer_groups-YpvbrhPgjp-4", - "insertionIndex" : 252 -} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-4229326a-6840-4aa1-888e-dd1567c701e0.json b/mock/mappings/delivery_lead_times_nogemfnlrx-4229326a-6840-4aa1-888e-dd1567c701e0.json deleted file mode 100644 index 6ed63a6..0000000 --- a/mock/mappings/delivery_lead_times_nogemfnlrx-4229326a-6840-4aa1-888e-dd1567c701e0.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "4229326a-6840-4aa1-888e-dd1567c701e0", - "name" : "delivery_lead_times_nogemfnlrx", - "request" : { - "url" : "/delivery_lead_times/NOgEMFNLRx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:38.006Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"25720e232d16029ef25f2ab8df4abb375929b5080a6456e62115ce6509e4edaa\"}}}", - "headers" : { - "x-request-id" : "67045124-4f49-42fa-b232-471aec17bfa1", - "x-kong-upstream-latency" : "18", - "X-Ratelimit-Remaining" : "77", - "x-kong-request-id" : "7ff6f849f47f5e5933d6e15ed437b91a", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"e862e63e32af95e3edb31b72dc1d314c\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "4229326a-6840-4aa1-888e-dd1567c701e0", - "persistent" : true, - "scenarioName" : "scenario-37-delivery_lead_times-NOgEMFNLRx", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-2", - "insertionIndex" : 242 -} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-7e9e1c7e-2540-46ed-abf1-144b867ce032.json b/mock/mappings/delivery_lead_times_nogemfnlrx-7e9e1c7e-2540-46ed-abf1-144b867ce032.json deleted file mode 100644 index 82698d1..0000000 --- a/mock/mappings/delivery_lead_times_nogemfnlrx-7e9e1c7e-2540-46ed-abf1-144b867ce032.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "id" : "7e9e1c7e-2540-46ed-abf1-144b867ce032", - "name" : "delivery_lead_times_nogemfnlrx", - "request" : { - "url" : "/delivery_lead_times/NOgEMFNLRx", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"max_hours\":200,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"},\"min_hours\":20,\"reference\":null,\"reference_origin\":null},\"id\":\"NOgEMFNLRx\",\"relationships\":{\"shipping_method\":{\"data\":{\"id\":\"mVJQoFZJyN\",\"type\":\"shipping_methods\"}},\"stock_location\":{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\"}}},\"type\":\"delivery_lead_times\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":20,\"max_hours\":200,\"min_days\":1,\"max_days\":8,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:39.553Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1d2fd162d82e0d64f941ca7bddbc73baa93e89efa63ea6c806b2379d044113ce\"}}}", - "headers" : { - "x-request-id" : "8ed90178-01d9-4cc9-b625-a3c58d6d0ed9", - "x-kong-upstream-latency" : "28", - "X-Ratelimit-Remaining" : "94", - "x-kong-request-id" : "0d63237028c4ee4c10f57e6c7286327e", - "x-download-options" : "noopen", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"37194a3e58bad26856650932bf7a4f7d\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "7e9e1c7e-2540-46ed-abf1-144b867ce032", - "persistent" : true, - "insertionIndex" : 237 -} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-84fb75a5-98f7-4e10-bb40-71f33c455a94.json b/mock/mappings/delivery_lead_times_nogemfnlrx-84fb75a5-98f7-4e10-bb40-71f33c455a94.json deleted file mode 100644 index d392391..0000000 --- a/mock/mappings/delivery_lead_times_nogemfnlrx-84fb75a5-98f7-4e10-bb40-71f33c455a94.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "84fb75a5-98f7-4e10-bb40-71f33c455a94", - "name" : "delivery_lead_times_nogemfnlrx", - "request" : { - "url" : "/delivery_lead_times/NOgEMFNLRx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":20,\"max_hours\":200,\"min_days\":1,\"max_days\":8,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:39.553Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"580800cd8b4f5be48c11ff30bfef1b95f1af7b0b0d5adaaa323db4ad1d4acf7d\"}}}", - "headers" : { - "x-request-id" : "0fd64622-a8ca-44c5-9069-14a044e6f5ae", - "x-kong-upstream-latency" : "19", - "X-Ratelimit-Remaining" : "71", - "x-kong-request-id" : "67500d6c2d05583a083ada708112dc09", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"6a426c4e12061d593b26d33bb908d085\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "84fb75a5-98f7-4e10-bb40-71f33c455a94", - "persistent" : true, - "scenarioName" : "scenario-37-delivery_lead_times-NOgEMFNLRx", - "requiredScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-3", - "newScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-4", - "insertionIndex" : 233 -} \ No newline at end of file diff --git a/mock/mappings/delivery_lead_times_nogemfnlrx-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json b/mock/mappings/delivery_lead_times_nogemfnlrx-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json deleted file mode 100644 index 207fe4a..0000000 --- a/mock/mappings/delivery_lead_times_nogemfnlrx-9cf722c5-12f9-4921-a7aa-c1c31c245ba4.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "9cf722c5-12f9-4921-a7aa-c1c31c245ba4", - "name" : "delivery_lead_times_nogemfnlrx", - "request" : { - "url" : "/delivery_lead_times/NOgEMFNLRx", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"NOgEMFNLRx\",\"type\":\"delivery_lead_times\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx\"},\"attributes\":{\"min_hours\":10,\"max_hours\":100,\"min_days\":0,\"max_days\":4,\"created_at\":\"2024-10-24T15:51:38.006Z\",\"updated_at\":\"2024-10-24T15:51:38.006Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/stock_location\"}},\"shipping_method\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/shipping_method\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/shipping_method\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/delivery_lead_times/NOgEMFNLRx/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"25720e232d16029ef25f2ab8df4abb375929b5080a6456e62115ce6509e4edaa\"}}}", - "headers" : { - "x-request-id" : "67045124-4f49-42fa-b232-471aec17bfa1", - "x-kong-upstream-latency" : "18", - "X-Ratelimit-Remaining" : "74", - "x-kong-request-id" : "7ff6f849f47f5e5933d6e15ed437b91a", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"e862e63e32af95e3edb31b72dc1d314c\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "9cf722c5-12f9-4921-a7aa-c1c31c245ba4", - "persistent" : true, - "scenarioName" : "scenario-37-delivery_lead_times-NOgEMFNLRx", - "requiredScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-2", - "newScenarioState" : "scenario-37-delivery_lead_times-NOgEMFNLRx-3", - "insertionIndex" : 238 -} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-62023398-28ff-488f-9e24-c959cb5895af.json b/mock/mappings/external_gateways_nxmoxsbbgj-62023398-28ff-488f-9e24-c959cb5895af.json deleted file mode 100644 index 15bd41c..0000000 --- a/mock/mappings/external_gateways_nxmoxsbbgj-62023398-28ff-488f-9e24-c959cb5895af.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "id" : "62023398-28ff-488f-9e24-c959cb5895af", - "name" : "external_gateways_nxmoxsbbgj", - "request" : { - "url" : "/external_gateways/nxmoXsbBgj", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "x-request-id" : "43d398d4-3ce9-41f9-bfc4-8903f79685f2", - "x-kong-upstream-latency" : "37", - "X-Ratelimit-Remaining" : "90", - "x-kong-request-id" : "519334090ccdad3e38c3223101a3b265", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:44 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Origin", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "62023398-28ff-488f-9e24-c959cb5895af", - "persistent" : true, - "insertionIndex" : 216 -} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json b/mock/mappings/external_gateways_nxmoxsbbgj-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json deleted file mode 100644 index 46c5d6d..0000000 --- a/mock/mappings/external_gateways_nxmoxsbbgj-ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26", - "name" : "external_gateways_nxmoxsbbgj", - "request" : { - "url" : "/external_gateways/nxmoXsbBgj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway_changed\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:43.708Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":null,\"capture_url\":null,\"void_url\":null,\"refund_url\":null,\"token_url\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"8a9f6fbe066f7e3c6f217f1e8c6057a829c0a8126871400f9ca4e330ce6e61ea\"}}}", - "headers" : { - "x-request-id" : "ebd5d803-d8e9-486e-b261-319c242e61b2", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "62", - "x-kong-request-id" : "204f0e1ac174a220f7626131c5682024", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:44 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"168858c1421b2f8205dedeb9dfef3e2e\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "ca55e46d-8582-4c0d-a4a9-b50ecc4c0c26", - "persistent" : true, - "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", - "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-5", - "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-6", - "insertionIndex" : 217 -} \ No newline at end of file diff --git a/mock/mappings/external_gateways_nxmoxsbbgj-d71df068-9300-4b57-a734-5271a334aaa5.json b/mock/mappings/external_gateways_nxmoxsbbgj-d71df068-9300-4b57-a734-5271a334aaa5.json deleted file mode 100644 index 6e2c5ab..0000000 --- a/mock/mappings/external_gateways_nxmoxsbbgj-d71df068-9300-4b57-a734-5271a334aaa5.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "d71df068-9300-4b57-a734-5271a334aaa5", - "name" : "external_gateways_nxmoxsbbgj", - "request" : { - "url" : "/external_gateways/nxmoXsbBgj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"nxmoXsbBgj\",\"type\":\"external_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj\"},\"attributes\":{\"name\":\"incentro_external_gateway\",\"created_at\":\"2024-10-24T15:51:41.908Z\",\"updated_at\":\"2024-10-24T15:51:41.908Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_gateway.incentro_external_gateway\"},\"authorize_url\":\"https://example.com\",\"capture_url\":\"https://example.com\",\"void_url\":\"https://example.com\",\"refund_url\":\"https://example.com\",\"token_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"bf5d19f38228a4f350a21a40140d518e\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/versions\"}},\"external_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/relationships/external_payments\",\"related\":\"https://loucs.commercelayer.io/api/external_gateways/nxmoXsbBgj/external_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ca2f596026e0e3bf8ce0c2f5ea9808cb2e692af80a658e3b972bc67958a71741\"}}}", - "headers" : { - "x-request-id" : "880e9d49-9f7f-42e6-a339-1bcd32418e59", - "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "65", - "x-kong-request-id" : "472a1f6f66b59a2db20a2b6d6a76b040", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:42 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c207b1bbaf8bf96829f4f6402c8009f1\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "d71df068-9300-4b57-a734-5271a334aaa5", - "persistent" : true, - "scenarioName" : "scenario-35-external_gateways-nxmoXsbBgj", - "requiredScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-2", - "newScenarioState" : "scenario-35-external_gateways-nxmoXsbBgj-3", - "insertionIndex" : 222 -} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json b/mock/mappings/external_tax_calculators_jnrqltraly-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json deleted file mode 100644 index 2be647a..0000000 --- a/mock/mappings/external_tax_calculators_jnrqltraly-27ad1ac6-9c8a-4602-b55c-311de2ec94b0.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "27ad1ac6-9c8a-4602-b55c-311de2ec94b0", - "name" : "external_tax_calculators_jnrqltraly", - "request" : { - "url" : "/external_tax_calculators/JNrQLTraLy", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator_changed\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:45.967Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://foo.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"5002013d39258ef930a9ffc88b328155ffa6a940b2f5aa1585d16e2069a7a5fa\"}}}", - "headers" : { - "x-request-id" : "70999fb1-1cc8-4e50-81de-ff6e5d35859f", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "58", - "x-kong-request-id" : "cffd7549ee94771ec3fbb56d92e9517b", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:46 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"d89639239cbbfb64a4aa1cd0763a3ae9\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "27ad1ac6-9c8a-4602-b55c-311de2ec94b0", - "persistent" : true, - "scenarioName" : "scenario-34-external_tax_calculators-JNrQLTraLy", - "requiredScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-3", - "newScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-4", - "insertionIndex" : 210 -} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-439da122-c274-46fb-8cc4-7931c4812e77.json b/mock/mappings/external_tax_calculators_jnrqltraly-439da122-c274-46fb-8cc4-7931c4812e77.json deleted file mode 100644 index 038aa20..0000000 --- a/mock/mappings/external_tax_calculators_jnrqltraly-439da122-c274-46fb-8cc4-7931c4812e77.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "439da122-c274-46fb-8cc4-7931c4812e77", - "name" : "external_tax_calculators_jnrqltraly", - "request" : { - "url" : "/external_tax_calculators/JNrQLTraLy", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:44.887Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"cc2d75c038f7665d4da20e0062a677bb8e2e245e4c564127d149630e891473a5\"}}}", - "headers" : { - "x-request-id" : "383b203c-fcd6-4edf-8fe1-d00b2868f4e0", - "x-kong-upstream-latency" : "30", - "X-Ratelimit-Remaining" : "60", - "x-kong-request-id" : "36dbe16804365b37a8fe0c31c3a2cf55", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:45 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"28969f1f620cd53ce5c38051421f34a5\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "439da122-c274-46fb-8cc4-7931c4812e77", - "persistent" : true, - "scenarioName" : "scenario-34-external_tax_calculators-JNrQLTraLy", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-2", - "insertionIndex" : 213 -} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_jnrqltraly-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json b/mock/mappings/external_tax_calculators_jnrqltraly-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json deleted file mode 100644 index 42a87a9..0000000 --- a/mock/mappings/external_tax_calculators_jnrqltraly-83c56e1e-d05e-4d0d-bb31-de34bf6c00f6.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "83c56e1e-d05e-4d0d-bb31-de34bf6c00f6", - "name" : "external_tax_calculators_jnrqltraly", - "request" : { - "url" : "/external_tax_calculators/JNrQLTraLy", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JNrQLTraLy\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:51:44.887Z\",\"updated_at\":\"2024-10-24T15:51:44.887Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_external_tax_calculator.incentro_external_tax_calculator\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"8096571930ebed570eaecb29c3940871\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/JNrQLTraLy/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"e1ff790cda77bb032eadf36a5ff54ccb02432f2a13a41c70b6f06473fb2d7b5e\"}}}", - "headers" : { - "x-request-id" : "3713aeea-8edc-4d9f-bf29-cc04a235393d", - "x-kong-upstream-latency" : "107", - "X-Ratelimit-Remaining" : "59", - "x-kong-request-id" : "597f012fd979e56fbac95c6f6c2aea6e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:45 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"8702196afaf1e2f59a1bc3258fd99778\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "83c56e1e-d05e-4d0d-bb31-de34bf6c00f6", - "persistent" : true, - "scenarioName" : "scenario-34-external_tax_calculators-JNrQLTraLy", - "requiredScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-2", - "newScenarioState" : "scenario-34-external_tax_calculators-JNrQLTraLy-3", - "insertionIndex" : 212 -} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_rvmjltrxpq-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json b/mock/mappings/external_tax_calculators_rvmjltrxpq-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json deleted file mode 100644 index 922d823..0000000 --- a/mock/mappings/external_tax_calculators_rvmjltrxpq-0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296", - "name" : "external_tax_calculators_rvmjltrxpq", - "request" : { - "url" : "/external_tax_calculators/RvMjlTRxPq", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RvMjlTRxPq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:52:06.953Z\",\"updated_at\":\"2024-10-24T15:52:06.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"69bb54542fe97db58ccfdedf5a761ca5\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2097172376f9d70da2bc40d3cdd7fea930123e436152df6becb0c3f14ffd1038\"}}}", - "headers" : { - "x-request-id" : "370ce46e-c92b-4470-8196-0b0556b67b1d", - "x-kong-upstream-latency" : "22", - "X-Ratelimit-Remaining" : "19", - "x-kong-request-id" : "a37090320de40b71ef13035e75277c11", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"94086e29bb663a1148689ace1635f1f7\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "0b2bf0ca-e4ad-4ef2-ab3e-996c2f43e296", - "persistent" : true, - "scenarioName" : "scenario-17-external_tax_calculators-RvMjlTRxPq", - "requiredScenarioState" : "scenario-17-external_tax_calculators-RvMjlTRxPq-3", - "insertionIndex" : 106 -} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_rvmjltrxpq-18b75e7a-85d5-40c9-8341-082db0370dc5.json b/mock/mappings/external_tax_calculators_rvmjltrxpq-18b75e7a-85d5-40c9-8341-082db0370dc5.json deleted file mode 100644 index cc25fb7..0000000 --- a/mock/mappings/external_tax_calculators_rvmjltrxpq-18b75e7a-85d5-40c9-8341-082db0370dc5.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "18b75e7a-85d5-40c9-8341-082db0370dc5", - "name" : "external_tax_calculators_rvmjltrxpq", - "request" : { - "url" : "/external_tax_calculators/RvMjlTRxPq", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RvMjlTRxPq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:52:06.953Z\",\"updated_at\":\"2024-10-24T15:52:06.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"69bb54542fe97db58ccfdedf5a761ca5\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"04786754832291ef7c8f0dd167d00ed553bb9ba8a606cc969804b9ad262bbe6c\"}}}", - "headers" : { - "x-request-id" : "9948f94f-1814-444f-8061-a1ad6c8f5314", - "x-kong-upstream-latency" : "11", - "X-Ratelimit-Remaining" : "26", - "x-kong-request-id" : "c2a71e1898bba235607ade43ad0a6952", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"db1f12907dc2e5e57e69f116519b4351\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "18b75e7a-85d5-40c9-8341-082db0370dc5", - "persistent" : true, - "scenarioName" : "scenario-17-external_tax_calculators-RvMjlTRxPq", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-17-external_tax_calculators-RvMjlTRxPq-2", - "insertionIndex" : 121 -} \ No newline at end of file diff --git a/mock/mappings/external_tax_calculators_rvmjltrxpq-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json b/mock/mappings/external_tax_calculators_rvmjltrxpq-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json deleted file mode 100644 index 6aa889b..0000000 --- a/mock/mappings/external_tax_calculators_rvmjltrxpq-558bf45a-2dd4-4bf4-acf4-af3cf57c91b3.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "558bf45a-2dd4-4bf4-acf4-af3cf57c91b3", - "name" : "external_tax_calculators_rvmjltrxpq", - "request" : { - "url" : "/external_tax_calculators/RvMjlTRxPq", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"RvMjlTRxPq\",\"type\":\"external_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq\"},\"attributes\":{\"name\":\"incentro_external_tax_calculator\",\"type\":\"external_tax_calculators\",\"created_at\":\"2024-10-24T15:52:06.953Z\",\"updated_at\":\"2024-10-24T15:52:06.953Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"},\"tax_calculator_url\":\"https://example.com\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"69bb54542fe97db58ccfdedf5a761ca5\"},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/external_tax_calculators/RvMjlTRxPq/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6d30f3ca4fbbc3eba803a411d99135ed038a1bdfa5957158f1df3d75a1327e5f\"}}}", - "headers" : { - "x-request-id" : "57f137ac-3348-42ba-a60b-80a8408e60ac", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "23", - "x-kong-request-id" : "be80447b302aa3660a9f0b472aa82416", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"f1c7252d8be9efe22b14579f66d1aecd\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "558bf45a-2dd4-4bf4-acf4-af3cf57c91b3", - "persistent" : true, - "scenarioName" : "scenario-17-external_tax_calculators-RvMjlTRxPq", - "requiredScenarioState" : "scenario-17-external_tax_calculators-RvMjlTRxPq-2", - "newScenarioState" : "scenario-17-external_tax_calculators-RvMjlTRxPq-3", - "insertionIndex" : 116 -} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-6a416c14-34f8-481f-a946-f08d106562b1.json b/mock/mappings/google_geocoders_mgwalsandn-6a416c14-34f8-481f-a946-f08d106562b1.json deleted file mode 100644 index 43b7d5c..0000000 --- a/mock/mappings/google_geocoders_mgwalsandn-6a416c14-34f8-481f-a946-f08d106562b1.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "6a416c14-34f8-481f-a946-f08d106562b1", - "name" : "google_geocoders_mgwalsandn", - "request" : { - "url" : "/google_geocoders/MGWAlsaNDn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Updated Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.939Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"663ddb1d4f684befb23d0aed9744bf0d1c022a1271e74330a6479806408cbfbc\"}}}", - "headers" : { - "x-request-id" : "bbdfab56-0148-4d55-9e02-60e9cc37afed", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "54", - "x-kong-request-id" : "5385913648ae5b6a3a9c70714bdb6f4f", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:48 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"ccbf142e55243104b09f30bd031ecc71\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "6a416c14-34f8-481f-a946-f08d106562b1", - "persistent" : true, - "scenarioName" : "scenario-33-google_geocoders-MGWAlsaNDn", - "requiredScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-3", - "newScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-4", - "insertionIndex" : 203 -} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json b/mock/mappings/google_geocoders_mgwalsandn-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json deleted file mode 100644 index 2dd7662..0000000 --- a/mock/mappings/google_geocoders_mgwalsandn-834f75ab-16c3-4993-9aa4-cd135d6b45a7.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "834f75ab-16c3-4993-9aa4-cd135d6b45a7", - "name" : "google_geocoders_mgwalsandn", - "request" : { - "url" : "/google_geocoders/MGWAlsaNDn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.077Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"adfac19d318b5171ca8d81f6a12a13d66d2e62703b18e1fb57665fbe1ea2177f\"}}}", - "headers" : { - "x-request-id" : "fdb1b34e-6d80-4e3d-9d62-722e591cd04f", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "56", - "x-kong-request-id" : "e58e3f5e392c2a34bcafac7672c5943d", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:47 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"65cca9823811eb9393d1c36cacd080ae\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "834f75ab-16c3-4993-9aa4-cd135d6b45a7", - "persistent" : true, - "scenarioName" : "scenario-33-google_geocoders-MGWAlsaNDn", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-2", - "insertionIndex" : 206 -} \ No newline at end of file diff --git a/mock/mappings/google_geocoders_mgwalsandn-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json b/mock/mappings/google_geocoders_mgwalsandn-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json deleted file mode 100644 index 1aa02fd..0000000 --- a/mock/mappings/google_geocoders_mgwalsandn-8847faf3-d398-4b4e-87ac-d3cecee2dc24.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "8847faf3-d398-4b4e-87ac-d3cecee2dc24", - "name" : "google_geocoders_mgwalsandn", - "request" : { - "url" : "/google_geocoders/MGWAlsaNDn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MGWAlsaNDn\",\"type\":\"google_geocoders\",\"attributes\":{\"name\":\"Incentro Google Geocoder\",\"type\":\"google_geocoders\",\"created_at\":\"2024-10-24T15:51:47.077Z\",\"updated_at\":\"2024-10-24T15:51:47.077Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_google_geocoder.incentro_google_geocoder\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/markets\"}},\"addresses\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/addresses\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/addresses\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/google_geocoders/MGWAlsaNDn/attachments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"35b9a10fa5e3e49aca9d662b8db358d9b20e56b4cf7fcbe6cba47a0f85a22848\"}}}", - "headers" : { - "x-request-id" : "c1b2d937-6816-4046-b902-3afab9167118", - "x-kong-upstream-latency" : "19", - "X-Ratelimit-Remaining" : "55", - "x-kong-request-id" : "bcbafd78da570c36943474530ae00638", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:47 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"9511c43594adb5ccfa88a0a3c41661e2\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "8847faf3-d398-4b4e-87ac-d3cecee2dc24", - "persistent" : true, - "scenarioName" : "scenario-33-google_geocoders-MGWAlsaNDn", - "requiredScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-2", - "newScenarioState" : "scenario-33-google_geocoders-MGWAlsaNDn-3", - "insertionIndex" : 205 -} \ No newline at end of file diff --git a/mock/mappings/inventory_models_qwgbzsxopa-27a39738-cc62-44d6-b487-55759d0d8ce8.json b/mock/mappings/inventory_models_qwgbzsxopa-27a39738-cc62-44d6-b487-55759d0d8ce8.json deleted file mode 100644 index 3935f87..0000000 --- a/mock/mappings/inventory_models_qwgbzsxopa-27a39738-cc62-44d6-b487-55759d0d8ce8.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "27a39738-cc62-44d6-b487-55759d0d8ce8", - "name" : "inventory_models_qwgbzsxopa", - "request" : { - "url" : "/inventory_models/qWGBzSXOPa", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:52:07.137Z\",\"updated_at\":\"2024-10-24T15:52:07.137Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"76cf78044e334b8acd092637ba2d5d0f131c97ca0943f51e769107ea606eb84e\"}}}", - "headers" : { - "x-request-id" : "c08e1445-195c-4458-bd20-fb91a0048c2f", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "474", - "x-kong-request-id" : "9034d01e80c93b28d96631741520e252", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"49f846d0fb0faa12f675f59e4ea1a8e3\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "27a39738-cc62-44d6-b487-55759d0d8ce8", - "persistent" : true, - "scenarioName" : "scenario-18-inventory_models-qWGBzSXOPa", - "requiredScenarioState" : "scenario-18-inventory_models-qWGBzSXOPa-3", - "insertionIndex" : 107 -} \ No newline at end of file diff --git a/mock/mappings/inventory_models_qwgbzsxopa-437793c9-5f9d-421d-9bc1-906882042d40.json b/mock/mappings/inventory_models_qwgbzsxopa-437793c9-5f9d-421d-9bc1-906882042d40.json deleted file mode 100644 index d416de1..0000000 --- a/mock/mappings/inventory_models_qwgbzsxopa-437793c9-5f9d-421d-9bc1-906882042d40.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "437793c9-5f9d-421d-9bc1-906882042d40", - "name" : "inventory_models_qwgbzsxopa", - "request" : { - "url" : "/inventory_models/qWGBzSXOPa", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:52:07.137Z\",\"updated_at\":\"2024-10-24T15:52:07.137Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"63d26c8860095a3508180acd6f80427001fbbfcdc36143d166f87dcd9ae61754\"}}}", - "headers" : { - "x-request-id" : "1172c6dd-b7c1-4d45-9af3-6bdc61e055ff", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "476", - "x-kong-request-id" : "d005f54dc711301c7123fe742a3ca04c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"c53dcf6a7d3aecd5ac9f482dba84adc4\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "1" - } - }, - "uuid" : "437793c9-5f9d-421d-9bc1-906882042d40", - "persistent" : true, - "scenarioName" : "scenario-18-inventory_models-qWGBzSXOPa", - "requiredScenarioState" : "scenario-18-inventory_models-qWGBzSXOPa-2", - "newScenarioState" : "scenario-18-inventory_models-qWGBzSXOPa-3", - "insertionIndex" : 114 -} \ No newline at end of file diff --git a/mock/mappings/inventory_models_qwgbzsxopa-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json b/mock/mappings/inventory_models_qwgbzsxopa-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json deleted file mode 100644 index fb90d9f..0000000 --- a/mock/mappings/inventory_models_qwgbzsxopa-4cd8e9bd-00f1-442f-b86b-55103d5b4f07.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "4cd8e9bd-00f1-442f-b86b-55103d5b4f07", - "name" : "inventory_models_qwgbzsxopa", - "request" : { - "url" : "/inventory_models/qWGBzSXOPa", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:52:07.137Z\",\"updated_at\":\"2024-10-24T15:52:07.137Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/qWGBzSXOPa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"63d26c8860095a3508180acd6f80427001fbbfcdc36143d166f87dcd9ae61754\"}}}", - "headers" : { - "x-request-id" : "1172c6dd-b7c1-4d45-9af3-6bdc61e055ff", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "479", - "x-kong-request-id" : "d005f54dc711301c7123fe742a3ca04c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"c53dcf6a7d3aecd5ac9f482dba84adc4\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "4cd8e9bd-00f1-442f-b86b-55103d5b4f07", - "persistent" : true, - "scenarioName" : "scenario-18-inventory_models-qWGBzSXOPa", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-18-inventory_models-qWGBzSXOPa-2", - "insertionIndex" : 120 -} \ No newline at end of file diff --git a/mock/mappings/inventory_models_qwgbzsxopa-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json b/mock/mappings/inventory_models_qwgbzsxopa-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json deleted file mode 100644 index 336a79e..0000000 --- a/mock/mappings/inventory_models_qwgbzsxopa-8085bd75-a4f1-4a49-ae22-646dc7d95d5d.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "id" : "8085bd75-a4f1-4a49-ae22-646dc7d95d5d", - "name" : "inventory_models_qwgbzsxopa", - "request" : { - "url" : "/inventory_models/qWGBzSXOPa", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "x-request-id" : "2007c769-c168-4205-8686-1acf547938d4", - "x-kong-upstream-latency" : "36", - "X-Ratelimit-Remaining" : "72", - "x-kong-request-id" : "75fc296d37a3d4289cd93537c9895e30", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:13 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Origin", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "8085bd75-a4f1-4a49-ae22-646dc7d95d5d", - "persistent" : true, - "insertionIndex" : 100 -} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xlazqspzez-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json b/mock/mappings/inventory_models_xlazqspzez-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json deleted file mode 100644 index dd6de1c..0000000 --- a/mock/mappings/inventory_models_xlazqspzez-d2e1633c-01e2-4cbd-bcc3-909bef74f81d.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "id" : "d2e1633c-01e2-4cbd-bcc3-909bef74f81d", - "name" : "inventory_models_xlazqspzez", - "request" : { - "url" : "/inventory_models/XLAzqSpzeZ", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "x-request-id" : "aeaf7ca6-147a-4e47-b23e-e73bf423edf7", - "x-kong-upstream-latency" : "24", - "X-Ratelimit-Remaining" : "85", - "x-kong-request-id" : "30dbc05e7a869c5f25f8a15d52d4337d", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Origin", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "d2e1633c-01e2-4cbd-bcc3-909bef74f81d", - "persistent" : true, - "insertionIndex" : 175 -} \ No newline at end of file diff --git a/mock/mappings/inventory_models_xwqxqspqea-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json b/mock/mappings/inventory_models_xwqxqspqea-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json deleted file mode 100644 index 4eed995..0000000 --- a/mock/mappings/inventory_models_xwqxqspqea-39cc05d4-cdb3-41c2-ad79-c2f833d489c4.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "39cc05d4-cdb3-41c2-ad79-c2f833d489c4", - "name" : "inventory_models_xwqxqspqea", - "request" : { - "url" : "/inventory_models/XWqxqSpqEa", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"XWqxqSpqEa\",\"type\":\"inventory_models\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa\"},\"attributes\":{\"name\":\"Incentro Inventory Model\",\"strategy\":\"no_split\",\"stock_locations_cutoff\":1,\"stock_reservation_cutoff\":3600,\"put_stock_transfers_on_hold\":false,\"manual_stock_decrement\":false,\"created_at\":\"2024-10-24T15:51:49.127Z\",\"updated_at\":\"2024-10-24T15:51:49.127Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_model.incentro_inventory_model\"}},\"relationships\":{\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/inventory_return_locations\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_models/XWqxqSpqEa/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fc926cf2a5d2a6e58a085f6e8115e956fec5c14d1585f4052157feaa5b8b19e1\"}}}", - "headers" : { - "x-request-id" : "7cd9bcf4-44a8-454f-ba7f-8bd2ca01eddd", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "495", - "x-kong-request-id" : "f1177b081f9cfc2d6e645d04fe2bfd6b", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:49 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"a33ef460a22b4a528856e98c2c9be9c9\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "39cc05d4-cdb3-41c2-ad79-c2f833d489c4", - "persistent" : true, - "scenarioName" : "scenario-32-inventory_models-XWqxqSpqEa", - "requiredScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-2", - "newScenarioState" : "scenario-32-inventory_models-XWqxqSpqEa-3", - "insertionIndex" : 198 -} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json deleted file mode 100644 index ae74e2d..0000000 --- a/mock/mappings/inventory_return_locations_vlkzeirgrv-28870b18-c1ca-47ce-a736-ee9ce78d26e9.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "id" : "28870b18-c1ca-47ce-a736-ee9ce78d26e9", - "name" : "inventory_return_locations_vlkzeirgrv", - "request" : { - "url" : "/inventory_return_locations/VlkzeiRGrv", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"},\"priority\":2,\"reference\":null,\"reference_origin\":null},\"id\":\"VlkzeiRGrv\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"XLAzqSpzeZ\",\"type\":\"inventory_models\"}},\"stock_location\":{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\"}}},\"type\":\"inventory_return_locations\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":2,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:53.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7ce671dbd20fee7f86e7de88900f1e712ed4b200e2b96bf121f6c88df71b119b\"}}}", - "headers" : { - "x-request-id" : "19226f29-904c-42a0-898b-d1b72bea2e39", - "x-kong-upstream-latency" : "19", - "X-Ratelimit-Remaining" : "88", - "x-kong-request-id" : "7ef081691738543780cf1a5a4410ed4d", - "x-download-options" : "noopen", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"fe3d2a108d190160d31e18f3b3c1e4e5\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "28870b18-c1ca-47ce-a736-ee9ce78d26e9", - "persistent" : true, - "insertionIndex" : 181 -} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-79755483-1d1a-434a-8e12-b5d131a81786.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-79755483-1d1a-434a-8e12-b5d131a81786.json deleted file mode 100644 index 38697fd..0000000 --- a/mock/mappings/inventory_return_locations_vlkzeirgrv-79755483-1d1a-434a-8e12-b5d131a81786.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "79755483-1d1a-434a-8e12-b5d131a81786", - "name" : "inventory_return_locations_vlkzeirgrv", - "request" : { - "url" : "/inventory_return_locations/VlkzeiRGrv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":2,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:53.446Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"493b957006f873d3926d4540f1e58e2332224619ea1208f82c5a505bc9db3ca5\"}}}", - "headers" : { - "x-request-id" : "1dbddc50-0279-4230-aa58-0263fc23c6c1", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "47", - "x-kong-request-id" : "70933b490acef619d762331a84e60a21", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:54 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"c0712629f4288ef358b2f49e10cfc0d6\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "79755483-1d1a-434a-8e12-b5d131a81786", - "persistent" : true, - "scenarioName" : "scenario-28-inventory_return_locations-VlkzeiRGrv", - "requiredScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-3", - "newScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-4", - "insertionIndex" : 177 -} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-7eb45641-0128-4743-81a1-af728c9d140b.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-7eb45641-0128-4743-81a1-af728c9d140b.json deleted file mode 100644 index 6b26a0d..0000000 --- a/mock/mappings/inventory_return_locations_vlkzeirgrv-7eb45641-0128-4743-81a1-af728c9d140b.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "7eb45641-0128-4743-81a1-af728c9d140b", - "name" : "inventory_return_locations_vlkzeirgrv", - "request" : { - "url" : "/inventory_return_locations/VlkzeiRGrv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:51.706Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"479a77add806e49605d7bd89c727fb6b2fd711a3f07e8f82cb0a3a634e700eec\"}}}", - "headers" : { - "x-request-id" : "00ec9781-6fbe-4988-838e-05e1edbbb274", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "49", - "x-kong-request-id" : "98e6ec03996efa1784783b7f0c692b6f", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"6b203d599802ae507fc89742a094097b\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "7eb45641-0128-4743-81a1-af728c9d140b", - "persistent" : true, - "scenarioName" : "scenario-28-inventory_return_locations-VlkzeiRGrv", - "requiredScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-2", - "newScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-3", - "insertionIndex" : 182 -} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-c10eb423-9e4c-409d-9ce4-b620788a9aed.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-c10eb423-9e4c-409d-9ce4-b620788a9aed.json deleted file mode 100644 index f5b1210..0000000 --- a/mock/mappings/inventory_return_locations_vlkzeirgrv-c10eb423-9e4c-409d-9ce4-b620788a9aed.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "c10eb423-9e4c-409d-9ce4-b620788a9aed", - "name" : "inventory_return_locations_vlkzeirgrv", - "request" : { - "url" : "/inventory_return_locations/VlkzeiRGrv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"VlkzeiRGrv\",\"type\":\"inventory_return_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv\"},\"attributes\":{\"priority\":1,\"created_at\":\"2024-10-24T15:51:51.706Z\",\"updated_at\":\"2024-10-24T15:51:51.706Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_return_locations/VlkzeiRGrv/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d8b2443316a2a64146d85228019d32c53ce47e61642241809203834378258c57\"}}}", - "headers" : { - "x-request-id" : "a7b90983-4d21-4d9a-a8bf-167615001b37", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "51", - "x-kong-request-id" : "55063a655475803ca18f627f3f74e46d", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"f02d6cca01def3cc3c7f4aeab2abf1dd\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "c10eb423-9e4c-409d-9ce4-b620788a9aed", - "persistent" : true, - "scenarioName" : "scenario-28-inventory_return_locations-VlkzeiRGrv", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-2", - "insertionIndex" : 186 -} \ No newline at end of file diff --git a/mock/mappings/inventory_return_locations_vlkzeirgrv-f515149b-a447-4f94-b548-e5942a056da9.json b/mock/mappings/inventory_return_locations_vlkzeirgrv-f515149b-a447-4f94-b548-e5942a056da9.json deleted file mode 100644 index 46e9e2b..0000000 --- a/mock/mappings/inventory_return_locations_vlkzeirgrv-f515149b-a447-4f94-b548-e5942a056da9.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "id" : "f515149b-a447-4f94-b548-e5942a056da9", - "name" : "inventory_return_locations_vlkzeirgrv", - "request" : { - "url" : "/inventory_return_locations/VlkzeiRGrv", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", - "headers" : { - "x-request-id" : "3d4a3fe9-0a5c-4eb7-8712-18a6d71497a2", - "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "46", - "x-kong-request-id" : "6225236240a6c337fc652c1c9b566143", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:55 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "content-type" : "application/vnd.api+json; charset=utf-8", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "f515149b-a447-4f94-b548-e5942a056da9", - "persistent" : true, - "scenarioName" : "scenario-28-inventory_return_locations-VlkzeiRGrv", - "requiredScenarioState" : "scenario-28-inventory_return_locations-VlkzeiRGrv-4", - "insertionIndex" : 172 -} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json deleted file mode 100644 index e94aa1e..0000000 --- a/mock/mappings/inventory_stock_locations_pwmewsngnw-77ebeb5e-b4fa-4537-b6db-eac72388c51b.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "id" : "77ebeb5e-b4fa-4537-b6db-eac72388c51b", - "name" : "inventory_stock_locations_pwmewsngnw", - "request" : { - "url" : "/inventory_stock_locations/PWmewSNGnW", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", - "headers" : { - "x-request-id" : "3f207e88-5eb7-4b41-98c9-847133c9d9c5", - "x-kong-upstream-latency" : "6", - "X-Ratelimit-Remaining" : "39", - "x-kong-request-id" : "4977606ad9a7b20030dae553c5814b48", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:59 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "content-type" : "application/vnd.api+json; charset=utf-8", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "77ebeb5e-b4fa-4537-b6db-eac72388c51b", - "persistent" : true, - "scenarioName" : "scenario-24-inventory_stock_locations-PWmewSNGnW", - "requiredScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-4", - "insertionIndex" : 150 -} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-8662f5be-10bd-417d-b89c-d185f47d3e31.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-8662f5be-10bd-417d-b89c-d185f47d3e31.json deleted file mode 100644 index af24477..0000000 --- a/mock/mappings/inventory_stock_locations_pwmewsngnw-8662f5be-10bd-417d-b89c-d185f47d3e31.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "id" : "8662f5be-10bd-417d-b89c-d185f47d3e31", - "name" : "inventory_stock_locations_pwmewsngnw", - "request" : { - "url" : "/inventory_stock_locations/PWmewSNGnW", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "x-request-id" : "ae6d7463-b0d0-4a38-ae6e-052ab51b8564", - "x-kong-upstream-latency" : "43", - "X-Ratelimit-Remaining" : "82", - "x-kong-request-id" : "014006311dddba06122d5646fc932d18", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Origin", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "8662f5be-10bd-417d-b89c-d185f47d3e31", - "persistent" : true, - "insertionIndex" : 154 -} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-a5627136-0910-48e7-bd87-87d0b759e5dc.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-a5627136-0910-48e7-bd87-87d0b759e5dc.json deleted file mode 100644 index bbd908e..0000000 --- a/mock/mappings/inventory_stock_locations_pwmewsngnw-a5627136-0910-48e7-bd87-87d0b759e5dc.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "a5627136-0910-48e7-bd87-87d0b759e5dc", - "name" : "inventory_stock_locations_pwmewsngnw", - "request" : { - "url" : "/inventory_stock_locations/PWmewSNGnW", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":2,\"on_hold\":false,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:57.838Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"7ace34fa4c9e77b7fb44384e547323e491ae31f536d6eecab7e4d96aa27e9cfa\"}}}", - "headers" : { - "x-request-id" : "3292fbbc-21bc-4941-aa8c-6ed6e15d62ba", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "40", - "x-kong-request-id" : "b1aea2552fa79736b028df2e0d9ecb58", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"605e2360f4a2084fc09494134e4d0962\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "a5627136-0910-48e7-bd87-87d0b759e5dc", - "persistent" : true, - "scenarioName" : "scenario-24-inventory_stock_locations-PWmewSNGnW", - "requiredScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-3", - "newScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-4", - "insertionIndex" : 155 -} \ No newline at end of file diff --git a/mock/mappings/inventory_stock_locations_pwmewsngnw-f7584548-1269-4442-88b2-8f62080f4e03.json b/mock/mappings/inventory_stock_locations_pwmewsngnw-f7584548-1269-4442-88b2-8f62080f4e03.json deleted file mode 100644 index 6058e36..0000000 --- a/mock/mappings/inventory_stock_locations_pwmewsngnw-f7584548-1269-4442-88b2-8f62080f4e03.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "f7584548-1269-4442-88b2-8f62080f4e03", - "name" : "inventory_stock_locations_pwmewsngnw", - "request" : { - "url" : "/inventory_stock_locations/PWmewSNGnW", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"PWmewSNGnW\",\"type\":\"inventory_stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW\"},\"attributes\":{\"priority\":1,\"on_hold\":true,\"created_at\":\"2024-10-24T15:51:56.055Z\",\"updated_at\":\"2024-10-24T15:51:56.055Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/stock_location\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/inventory_model\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/inventory_stock_locations/PWmewSNGnW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"15451896229daa05ef4fb4adf1b3ea6bcd0494a8d8b811edc8d275c66dae6081\"}}}", - "headers" : { - "x-request-id" : "93b9687d-b776-4928-89d3-c6746965c044", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "42", - "x-kong-request-id" : "06e8890994b3df716b31c357d27b961e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:57 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"6a6a6579bf185f5c2e91667bb5407f3e\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "f7584548-1269-4442-88b2-8f62080f4e03", - "persistent" : true, - "scenarioName" : "scenario-24-inventory_stock_locations-PWmewSNGnW", - "requiredScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-2", - "newScenarioState" : "scenario-24-inventory_stock_locations-PWmewSNGnW-3", - "insertionIndex" : 160 -} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json b/mock/mappings/klarna_gateways_ejjwlsjapk-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json deleted file mode 100644 index b56693e..0000000 --- a/mock/mappings/klarna_gateways_ejjwlsjapk-7ae61fa3-8cd9-4c9f-8b95-1959c12c0485.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "7ae61fa3-8cd9-4c9f-8b95-1959c12c0485", - "name" : "klarna_gateways_ejjwlsjapk", - "request" : { - "url" : "/klarna_gateways/EjJwlsJAPk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway Changed\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:52:00.932Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"753c7c9d090d5d5a37e19de86d56d130175000b80fa5c2aaf5a5039d2ab0361b\"}}}", - "headers" : { - "x-request-id" : "30b43ed5-a105-4325-b0ff-c6b8b52957b6", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "36", - "x-kong-request-id" : "6718ab64c0c4da4151e208435f72c121", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:01 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"93536a3b68e584c3b5c85c8e6bdafc9e\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "7ae61fa3-8cd9-4c9f-8b95-1959c12c0485", - "persistent" : true, - "scenarioName" : "scenario-23-klarna_gateways-EjJwlsJAPk", - "requiredScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-3", - "newScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-4", - "insertionIndex" : 145 -} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-9a24225b-8194-4c95-a22b-78cf50603ae0.json b/mock/mappings/klarna_gateways_ejjwlsjapk-9a24225b-8194-4c95-a22b-78cf50603ae0.json deleted file mode 100644 index d704c95..0000000 --- a/mock/mappings/klarna_gateways_ejjwlsjapk-9a24225b-8194-4c95-a22b-78cf50603ae0.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "9a24225b-8194-4c95-a22b-78cf50603ae0", - "name" : "klarna_gateways_ejjwlsjapk", - "request" : { - "url" : "/klarna_gateways/EjJwlsJAPk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:51:59.780Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f351f896ffbb140da2136af3120bdeb1060ed31227c99007415da168adf01a32\"}}}", - "headers" : { - "x-request-id" : "03024aca-5048-43f9-8e8c-bb18a6701c26", - "x-kong-upstream-latency" : "21", - "X-Ratelimit-Remaining" : "38", - "x-kong-request-id" : "2016671e140ec6720d732b4ed3b28a46", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:00 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"888ddbb320f8083e76fb5fb2137989c7\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "9a24225b-8194-4c95-a22b-78cf50603ae0", - "persistent" : true, - "scenarioName" : "scenario-23-klarna_gateways-EjJwlsJAPk", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-2", - "insertionIndex" : 148 -} \ No newline at end of file diff --git a/mock/mappings/klarna_gateways_ejjwlsjapk-f80b6c98-10e3-485b-ad92-a5dc757551df.json b/mock/mappings/klarna_gateways_ejjwlsjapk-f80b6c98-10e3-485b-ad92-a5dc757551df.json deleted file mode 100644 index bee7098..0000000 --- a/mock/mappings/klarna_gateways_ejjwlsjapk-f80b6c98-10e3-485b-ad92-a5dc757551df.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "f80b6c98-10e3-485b-ad92-a5dc757551df", - "name" : "klarna_gateways_ejjwlsjapk", - "request" : { - "url" : "/klarna_gateways/EjJwlsJAPk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EjJwlsJAPk\",\"type\":\"klarna_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk\"},\"attributes\":{\"name\":\"Incentro Klarna Gateway\",\"created_at\":\"2024-10-24T15:51:59.780Z\",\"updated_at\":\"2024-10-24T15:51:59.780Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_klarna_gateway.incentro_klarna_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/versions\"}},\"klarna_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/relationships/klarna_payments\",\"related\":\"https://loucs.commercelayer.io/api/klarna_gateways/EjJwlsJAPk/klarna_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2e4f76c72844bbb99ae7650f6566c6a7481a5e2fb57fbde4a4b1ef40697f781c\"}}}", - "headers" : { - "x-request-id" : "75bcc677-dded-45fb-a735-489488b9e90f", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "37", - "x-kong-request-id" : "8e3e697c6095023930231a6ca183093e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:00 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"711f485e5d29cee82b09fd6613c19e2b\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "f80b6c98-10e3-485b-ad92-a5dc757551df", - "persistent" : true, - "scenarioName" : "scenario-23-klarna_gateways-EjJwlsJAPk", - "requiredScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-2", - "newScenarioState" : "scenario-23-klarna_gateways-EjJwlsJAPk-3", - "insertionIndex" : 147 -} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-38d4f538-b44f-407c-bb99-61f23abd17a8.json b/mock/mappings/manual_gateways_oxoaeswmwj-38d4f538-b44f-407c-bb99-61f23abd17a8.json deleted file mode 100644 index 8b56da4..0000000 --- a/mock/mappings/manual_gateways_oxoaeswmwj-38d4f538-b44f-407c-bb99-61f23abd17a8.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "38d4f538-b44f-407c-bb99-61f23abd17a8", - "name" : "manual_gateways_oxoaeswmwj", - "request" : { - "url" : "/manual_gateways/oxoaEswMWj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"35cc26c236e4ff3ac46d7b6e4110edac30468f3e18025d40e00ede8d2b326243\"}}}", - "headers" : { - "x-request-id" : "b825bbcb-7678-41b9-88bc-2bb0168cb873", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "33", - "x-kong-request-id" : "2f0058761df541163f3646524d7e260f", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:02 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"d48a6c219065489e609a047e402f827a\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "38d4f538-b44f-407c-bb99-61f23abd17a8", - "persistent" : true, - "scenarioName" : "scenario-22-manual_gateways-oxoaEswMWj", - "requiredScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-2", - "newScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-3", - "insertionIndex" : 140 -} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-cf7b7100-a786-4f64-aecc-532b7ed13548.json b/mock/mappings/manual_gateways_oxoaeswmwj-cf7b7100-a786-4f64-aecc-532b7ed13548.json deleted file mode 100644 index ef85284..0000000 --- a/mock/mappings/manual_gateways_oxoaeswmwj-cf7b7100-a786-4f64-aecc-532b7ed13548.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "cf7b7100-a786-4f64-aecc-532b7ed13548", - "name" : "manual_gateways_oxoaeswmwj", - "request" : { - "url" : "/manual_gateways/oxoaEswMWj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway Changed\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.897Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"223c18a176e422d0efd3b26d4e814d040ac94dbcf2d9e2b8460a3696ae515b5b\"}}}", - "headers" : { - "x-request-id" : "ea30b21a-398b-4373-b8bd-466a558960fb", - "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "32", - "x-kong-request-id" : "7cf37457c3983d758e8f500b2b63b547", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:03 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"1e2437d8c4a5f0b2df605d1090d80e99\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "cf7b7100-a786-4f64-aecc-532b7ed13548", - "persistent" : true, - "scenarioName" : "scenario-22-manual_gateways-oxoaEswMWj", - "requiredScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-3", - "newScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-4", - "insertionIndex" : 138 -} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-db32005d-382f-43d4-9835-afb951d4113c.json b/mock/mappings/manual_gateways_oxoaeswmwj-db32005d-382f-43d4-9835-afb951d4113c.json deleted file mode 100644 index f7e4e78..0000000 --- a/mock/mappings/manual_gateways_oxoaeswmwj-db32005d-382f-43d4-9835-afb951d4113c.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "db32005d-382f-43d4-9835-afb951d4113c", - "name" : "manual_gateways_oxoaeswmwj", - "request" : { - "url" : "/manual_gateways/oxoaEswMWj", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"oxoaEswMWj\",\"type\":\"manual_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj\"},\"attributes\":{\"name\":\"Incentro Manual Gateway\",\"created_at\":\"2024-10-24T15:52:02.075Z\",\"updated_at\":\"2024-10-24T15:52:02.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_gateway.incentro_manual_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_gateways/oxoaEswMWj/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"14d038435d313a1f4e67a94b2d32862c325b09325733e5cd911d0ce3efa0fae8\"}}}", - "headers" : { - "x-request-id" : "6a87ac73-8b7d-4eb2-a0c8-0e878fb221cf", - "x-kong-upstream-latency" : "11", - "X-Ratelimit-Remaining" : "34", - "x-kong-request-id" : "a2f3ed212f8e90354c918f20dce6b91a", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:02 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"eef4bd33c8d2be5823d5fa3da3432916\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "db32005d-382f-43d4-9835-afb951d4113c", - "persistent" : true, - "scenarioName" : "scenario-22-manual_gateways-oxoaEswMWj", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-22-manual_gateways-oxoaEswMWj-2", - "insertionIndex" : 141 -} \ No newline at end of file diff --git a/mock/mappings/manual_gateways_oxoaeswmwj-fdd3d488-e259-4164-a702-bb60afdaa07e.json b/mock/mappings/manual_gateways_oxoaeswmwj-fdd3d488-e259-4164-a702-bb60afdaa07e.json deleted file mode 100644 index 09bdda3..0000000 --- a/mock/mappings/manual_gateways_oxoaeswmwj-fdd3d488-e259-4164-a702-bb60afdaa07e.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "id" : "fdd3d488-e259-4164-a702-bb60afdaa07e", - "name" : "manual_gateways_oxoaeswmwj", - "request" : { - "url" : "/manual_gateways/oxoaEswMWj", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "x-request-id" : "81039c65-3992-43ab-afb6-0eac65c9e457", - "x-kong-upstream-latency" : "36", - "X-Ratelimit-Remaining" : "77", - "x-kong-request-id" : "4ba6c115ac281d0edb98e851908cd21b", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:03 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Origin", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "fdd3d488-e259-4164-a702-bb60afdaa07e", - "persistent" : true, - "insertionIndex" : 137 -} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json deleted file mode 100644 index 41d4089..0000000 --- a/mock/mappings/manual_tax_calculators_evvrmtjxav-169c4445-cd22-4ba6-9c87-fa8f2bb3713b.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "169c4445-cd22-4ba6-9c87-fa8f2bb3713b", - "name" : "manual_tax_calculators_evvrmtjxav", - "request" : { - "url" : "/manual_tax_calculators/EvVRMTJxAv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator Changed\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:04.791Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fd5cee47b927c134b8f076d915f67ff28f8528bc0dd9791740a17b30ab162d6f\"}}}", - "headers" : { - "x-request-id" : "5b6a5bbc-668b-4a66-a593-520bead78a6c", - "x-kong-upstream-latency" : "18", - "X-Ratelimit-Remaining" : "28", - "x-kong-request-id" : "bd3cd21c72c8f0012d4e420760860c0f", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:05 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"3bcf2bcfdea6904de1feb545e0cd83e9\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "169c4445-cd22-4ba6-9c87-fa8f2bb3713b", - "persistent" : true, - "scenarioName" : "scenario-21-manual_tax_calculators-EvVRMTJxAv", - "requiredScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-3", - "newScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-4", - "insertionIndex" : 131 -} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json deleted file mode 100644 index 85d693a..0000000 --- a/mock/mappings/manual_tax_calculators_evvrmtjxav-2bab8ec0-013a-41e0-a688-8bd5dde5fc11.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "2bab8ec0-013a-41e0-a688-8bd5dde5fc11", - "name" : "manual_tax_calculators_evvrmtjxav", - "request" : { - "url" : "/manual_tax_calculators/EvVRMTJxAv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:03.975Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d1fdcee8d8ddffb34ed30b07817935f83c0adb9f519b380eb7ed12893ad71a2e\"}}}", - "headers" : { - "x-request-id" : "eb2d084d-9842-438d-b308-8fb3a9dcfbfc", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "29", - "x-kong-request-id" : "ce1dfb3cfcdf743e08dac94ce7cee14e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:04 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"425cc9cecdda3a3e43f43b3c48b5ca54\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "2bab8ec0-013a-41e0-a688-8bd5dde5fc11", - "persistent" : true, - "scenarioName" : "scenario-21-manual_tax_calculators-EvVRMTJxAv", - "requiredScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-2", - "newScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-3", - "insertionIndex" : 133 -} \ No newline at end of file diff --git a/mock/mappings/manual_tax_calculators_evvrmtjxav-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json b/mock/mappings/manual_tax_calculators_evvrmtjxav-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json deleted file mode 100644 index 892ccbe..0000000 --- a/mock/mappings/manual_tax_calculators_evvrmtjxav-44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3", - "name" : "manual_tax_calculators_evvrmtjxav", - "request" : { - "url" : "/manual_tax_calculators/EvVRMTJxAv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EvVRMTJxAv\",\"type\":\"manual_tax_calculators\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv\"},\"attributes\":{\"name\":\"Incentro Manual Tax Calculator\",\"type\":\"manual_tax_calculators\",\"created_at\":\"2024-10-24T15:52:03.975Z\",\"updated_at\":\"2024-10-24T15:52:03.975Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_manual_tax_calculator.incentro_manual_tax_calculator\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/versions\"}},\"tax_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/relationships/tax_rules\",\"related\":\"https://loucs.commercelayer.io/api/manual_tax_calculators/EvVRMTJxAv/tax_rules\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"326442176ecee40daeefcf9440e984ea52504dfae5ef516d425f964efbdcd85a\"}}}", - "headers" : { - "x-request-id" : "47d2efdd-c9d0-4034-abfe-99e90cfcddbc", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "30", - "x-kong-request-id" : "ca3c3f343c373b15644ae8020416bd3d", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:04 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"3c5701f7ce5efad5800687d0684ac9a1\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "44df4ea7-88f0-4c7e-a16e-c1eafadcf6e3", - "persistent" : true, - "scenarioName" : "scenario-21-manual_tax_calculators-EvVRMTJxAv", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-21-manual_tax_calculators-EvVRMTJxAv-2", - "insertionIndex" : 134 -} \ No newline at end of file diff --git a/mock/mappings/markets-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json b/mock/mappings/markets-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json deleted file mode 100644 index 0d5f318..0000000 --- a/mock/mappings/markets-e26ba0e1-0de2-4812-b67e-793be0e22d6f.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "id" : "e26ba0e1-0de2-4812-b67e-793be0e22d6f", - "name" : "markets", - "request" : { - "url" : "/markets", - "method" : "POST", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"checkout_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"external_prices_url\":null,\"facebook_pixel_id\":\"pixel\",\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Market\",\"reference\":null,\"reference_origin\":null},\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\"}},\"merchant\":{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\"}},\"price_list\":{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\"}}},\"type\":\"markets\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 201, - "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:07.716Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"37e4de3e2bd053edd4716156e0dead736d6710a8413af611ac4f23a50c3d1ee1\"}}}", - "headers" : { - "x-request-id" : "82ec4585-dd5a-4710-9d9a-2fa57fb4be08", - "x-kong-upstream-latency" : "93", - "X-Ratelimit-Remaining" : "70", - "x-kong-request-id" : "26face64f3dba7160d21c657f9571d38", - "x-download-options" : "noopen", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:07 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"bce275c042940471becf3315fc8117f9\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "e26ba0e1-0de2-4812-b67e-793be0e22d6f", - "persistent" : true, - "insertionIndex" : 123 -} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-3942aa83-8d03-431a-918a-fc11435415dd.json b/mock/mappings/markets_rjepzhzyro-3942aa83-8d03-431a-918a-fc11435415dd.json deleted file mode 100644 index 1516dc2..0000000 --- a/mock/mappings/markets_rjepzhzyro-3942aa83-8d03-431a-918a-fc11435415dd.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "3942aa83-8d03-431a-918a-fc11435415dd", - "name" : "markets_rjepzhzyro", - "request" : { - "url" : "/markets/rjEPzhzyRo", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:07.716Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"64851f5cab318bf0a50fe6c05ea3c4cc93e752bbae8d847c1b7ab7b86448d285\"}}}", - "headers" : { - "x-request-id" : "8f0b9b82-8c7c-4ae0-b5cc-9b928e311d22", - "x-kong-upstream-latency" : "11", - "X-Ratelimit-Remaining" : "475", - "x-kong-request-id" : "1fac45479e28b62e1c41a17c571cb63a", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"58fce88ee580c11b206f042c572a1ccb\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "1" - } - }, - "uuid" : "3942aa83-8d03-431a-918a-fc11435415dd", - "persistent" : true, - "scenarioName" : "scenario-15-markets-rjEPzhzyRo", - "requiredScenarioState" : "scenario-15-markets-rjEPzhzyRo-2", - "newScenarioState" : "scenario-15-markets-rjEPzhzyRo-3", - "insertionIndex" : 111 -} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json b/mock/mappings/markets_rjepzhzyro-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json deleted file mode 100644 index e52f0fb..0000000 --- a/mock/mappings/markets_rjepzhzyro-4c839a9e-21cb-4940-b5b0-ba3b95f7aa97.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "4c839a9e-21cb-4940-b5b0-ba3b95f7aa97", - "name" : "markets_rjepzhzyro", - "request" : { - "url" : "/markets/rjEPzhzyRo", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market\",\"code\":null,\"facebook_pixel_id\":\"pixel\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:07.716Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"64851f5cab318bf0a50fe6c05ea3c4cc93e752bbae8d847c1b7ab7b86448d285\"}}}", - "headers" : { - "x-request-id" : "8f0b9b82-8c7c-4ae0-b5cc-9b928e311d22", - "x-kong-upstream-latency" : "11", - "X-Ratelimit-Remaining" : "478", - "x-kong-request-id" : "1fac45479e28b62e1c41a17c571cb63a", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"58fce88ee580c11b206f042c572a1ccb\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "4c839a9e-21cb-4940-b5b0-ba3b95f7aa97", - "persistent" : true, - "scenarioName" : "scenario-15-markets-rjEPzhzyRo", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-15-markets-rjEPzhzyRo-2", - "insertionIndex" : 117 -} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json b/mock/mappings/markets_rjepzhzyro-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json deleted file mode 100644 index 16b9bb4..0000000 --- a/mock/mappings/markets_rjepzhzyro-5cfd35c2-7084-429e-b1e9-6ecc71438dff.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "5cfd35c2-7084-429e-b1e9-6ecc71438dff", - "name" : "markets_rjepzhzyro", - "request" : { - "url" : "/markets/rjEPzhzyRo", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market Changed\",\"code\":null,\"facebook_pixel_id\":\"pixelchanged\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:09.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"596861d666d9548ee5a11db744bc3df5cf9fe68fc16374636d3044f314151276\"}}}", - "headers" : { - "x-request-id" : "b7bf5bfa-1773-44ff-acb2-fa66897cf523", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "472", - "x-kong-request-id" : "2dd78e5ffcd2d44b50a0835ae8c5a237", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:11 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-content-type-options" : "nosniff", - "x-xss-protection" : "1; mode=block", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "content-type" : "application/vnd.api+json", - "etag" : "W/\"6c138410dc0d0d1940904ed327ada072\"", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "5cfd35c2-7084-429e-b1e9-6ecc71438dff", - "persistent" : true, - "scenarioName" : "scenario-15-markets-rjEPzhzyRo", - "requiredScenarioState" : "scenario-15-markets-rjEPzhzyRo-3", - "newScenarioState" : "scenario-15-markets-rjEPzhzyRo-4", - "insertionIndex" : 104 -} \ No newline at end of file diff --git a/mock/mappings/markets_rjepzhzyro-779594c5-6309-4cd8-b8e5-9c860d56af67.json b/mock/mappings/markets_rjepzhzyro-779594c5-6309-4cd8-b8e5-9c860d56af67.json deleted file mode 100644 index afa1eeb..0000000 --- a/mock/mappings/markets_rjepzhzyro-779594c5-6309-4cd8-b8e5-9c860d56af67.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "id" : "779594c5-6309-4cd8-b8e5-9c860d56af67", - "name" : "markets_rjepzhzyro", - "request" : { - "url" : "/markets/rjEPzhzyRo", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"checkout_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"external_prices_url\":null,\"facebook_pixel_id\":\"pixelchanged\",\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"},\"name\":\"Incentro Market Changed\",\"reference\":null,\"reference_origin\":null},\"id\":\"rjEPzhzyRo\",\"relationships\":{\"inventory_model\":{\"data\":{\"id\":\"qWGBzSXOPa\",\"type\":\"inventory_models\"}},\"merchant\":{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\"}},\"price_list\":{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\"}}},\"type\":\"markets\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rjEPzhzyRo\",\"type\":\"markets\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo\"},\"attributes\":{\"number\":27913,\"name\":\"Incentro Market Changed\",\"code\":null,\"facebook_pixel_id\":\"pixelchanged\",\"checkout_url\":null,\"external_prices_url\":null,\"external_order_validation_url\":\"https://www.example.com\",\"private\":false,\"shipping_cost_cutoff\":null,\"disabled_at\":null,\"shared_secret\":\"2fb3b84bcaaaecb6198b616176103bf4\",\"created_at\":\"2024-10-24T15:52:07.716Z\",\"updated_at\":\"2024-10-24T15:52:09.878Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"merchant\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/merchant\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/merchant\"}},\"price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list\"}},\"base_price_list\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/base_price_list\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/base_price_list\"}},\"inventory_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/inventory_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/inventory_model\"}},\"subscription_model\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/subscription_model\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/subscription_model\"}},\"tax_calculator\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/tax_calculator\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/tax_calculator\"}},\"customer_group\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/customer_group\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/customer_group\"}},\"geocoder\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/geocoder\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/geocoder\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/price_list_schedulers\"}},\"order_validation_rules\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/order_validation_rules\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/order_validation_rules\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/markets/rjEPzhzyRo/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1633fd8f82d9682df880453b74e316ea67e9819b96d7eac02ce464ce4e55edb4\"}}}", - "headers" : { - "x-request-id" : "4fd66621-8ed5-4838-b44c-a9d8d12c453c", - "x-kong-upstream-latency" : "75", - "X-Ratelimit-Remaining" : "83", - "x-kong-request-id" : "8f50fe5aedec40533dbecb41bc07f458", - "x-download-options" : "noopen", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"25edecfd2cb9b323a6511b15b74badd6\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "779594c5-6309-4cd8-b8e5-9c860d56af67", - "persistent" : true, - "insertionIndex" : 110 -} \ No newline at end of file diff --git a/mock/mappings/merchants_dbdevhrvam-bbc19227-afdd-431d-bca0-b71194911169.json b/mock/mappings/merchants_dbdevhrvam-bbc19227-afdd-431d-bca0-b71194911169.json deleted file mode 100644 index 37cef4f..0000000 --- a/mock/mappings/merchants_dbdevhrvam-bbc19227-afdd-431d-bca0-b71194911169.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "bbc19227-afdd-431d-bca0-b71194911169", - "name" : "merchants_dbdevhrvam", - "request" : { - "url" : "/merchants/dbdeVHRVAM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:07.555Z\",\"updated_at\":\"2024-10-24T15:52:07.555Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"aab797f16e7ac852227468cf4344d0d0dd92a0ed08a1c1180222d6212b8252dd\"}}}", - "headers" : { - "x-request-id" : "b475254e-fec3-4b3b-b641-0a3f1e465c67", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "24", - "x-kong-request-id" : "3d1eaf0eec383843b3bfc04e92b82711", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"e23f8a9e5097a3b6d72af9a6c48e9702\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "bbc19227-afdd-431d-bca0-b71194911169", - "persistent" : true, - "scenarioName" : "scenario-16-merchants-dbdeVHRVAM", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-16-merchants-dbdeVHRVAM-2", - "insertionIndex" : 118 -} \ No newline at end of file diff --git a/mock/mappings/merchants_dbdevhrvam-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json b/mock/mappings/merchants_dbdevhrvam-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json deleted file mode 100644 index 9376982..0000000 --- a/mock/mappings/merchants_dbdevhrvam-bcd30109-8bd8-41ea-b9cd-f445ba1340b5.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "bcd30109-8bd8-41ea-b9cd-f445ba1340b5", - "name" : "merchants_dbdevhrvam", - "request" : { - "url" : "/merchants/dbdeVHRVAM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:07.555Z\",\"updated_at\":\"2024-10-24T15:52:07.555Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"9f88ab2c7128bf86d720cb4bec76fbaeb0151f66d79e4722740e522ea6ea3090\"}}}", - "headers" : { - "x-request-id" : "535deafe-1e85-4c93-a450-cefe084d9b01", - "x-kong-upstream-latency" : "71", - "X-Ratelimit-Remaining" : "21", - "x-kong-request-id" : "cce664594bb6ac760c6067238425615b", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"fbc6c60e8d3f180b321c5dff3cf982bf\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "bcd30109-8bd8-41ea-b9cd-f445ba1340b5", - "persistent" : true, - "scenarioName" : "scenario-16-merchants-dbdeVHRVAM", - "requiredScenarioState" : "scenario-16-merchants-dbdeVHRVAM-2", - "newScenarioState" : "scenario-16-merchants-dbdeVHRVAM-3", - "insertionIndex" : 112 -} \ No newline at end of file diff --git a/mock/mappings/merchants_dbdevhrvam-c38de940-4b0c-446f-ad2a-78fc78342033.json b/mock/mappings/merchants_dbdevhrvam-c38de940-4b0c-446f-ad2a-78fc78342033.json deleted file mode 100644 index 6d4ae32..0000000 --- a/mock/mappings/merchants_dbdevhrvam-c38de940-4b0c-446f-ad2a-78fc78342033.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "id" : "c38de940-4b0c-446f-ad2a-78fc78342033", - "name" : "merchants_dbdevhrvam", - "request" : { - "url" : "/merchants/dbdeVHRVAM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"dbdeVHRVAM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:07.555Z\",\"updated_at\":\"2024-10-24T15:52:07.555Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/dbdeVHRVAM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3d26f0063fee3a84abe003a59156711581ea949c56de48c1cff89aab5ddec820\"}}}", - "headers" : { - "x-request-id" : "33402993-3d08-4143-a6a4-19baa18bf2ab", - "x-kong-upstream-latency" : "30", - "X-Ratelimit-Remaining" : "18", - "x-kong-request-id" : "069a304c9cbcbe59fca49c2455350711", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"73b62d9c0c2a2ea7bd23a17b880bf995\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "c38de940-4b0c-446f-ad2a-78fc78342033", - "persistent" : true, - "scenarioName" : "scenario-16-merchants-dbdeVHRVAM", - "requiredScenarioState" : "scenario-16-merchants-dbdeVHRVAM-3", - "insertionIndex" : 105 -} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json b/mock/mappings/merchants_vxzdbhveom-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json deleted file mode 100644 index 34897b0..0000000 --- a/mock/mappings/merchants_vxzdbhveom-22ab6826-3cd9-4c11-9829-a1c277cf4d3a.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "22ab6826-3cd9-4c11-9829-a1c277cf4d3a", - "name" : "merchants_vxzdbhveom", - "request" : { - "url" : "/merchants/vxZdBHVeOM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Updated Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:16.044Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ad5be2c050d464af41a54e27e5d7edc8024f2cb2b80d3813c96390d645ae457c\"}}}", - "headers" : { - "x-request-id" : "f98559e3-28cf-49cf-a409-83aff1fb5ba8", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "12", - "x-kong-request-id" : "0f01d97edb5d0a204ac4575f760ce667", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"aa1548f8e5202706c04db40ba363a8ba\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "22ab6826-3cd9-4c11-9829-a1c277cf4d3a", - "persistent" : true, - "scenarioName" : "scenario-13-merchants-vxZdBHVeOM", - "requiredScenarioState" : "scenario-13-merchants-vxZdBHVeOM-3", - "newScenarioState" : "scenario-13-merchants-vxZdBHVeOM-4", - "insertionIndex" : 88 -} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-275de801-77d9-46b1-b0c3-5c09bf7ec676.json b/mock/mappings/merchants_vxzdbhveom-275de801-77d9-46b1-b0c3-5c09bf7ec676.json deleted file mode 100644 index 6c6820d..0000000 --- a/mock/mappings/merchants_vxzdbhveom-275de801-77d9-46b1-b0c3-5c09bf7ec676.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "id" : "275de801-77d9-46b1-b0c3-5c09bf7ec676", - "name" : "merchants_vxzdbhveom", - "request" : { - "url" : "/merchants/vxZdBHVeOM", - "method" : "PATCH", - "bodyPatterns" : [ { - "equalToJson" : "{\"data\":{\"attributes\":{\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"},\"name\":\"Incentro Updated Merchant\",\"reference\":null,\"reference_origin\":null},\"id\":\"vxZdBHVeOM\",\"relationships\":{\"address\":{\"data\":{\"id\":\"BKZQuEGLkr\",\"type\":\"addresses\"}}},\"type\":\"merchants\"}}\n", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - } ] - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Updated Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:16.044Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"fbf850a189b66ae129bacf81dea52f19612b54be58b28374273403fd3dc1e28b\"}}}", - "headers" : { - "x-request-id" : "fb90dfef-1510-43ee-bde2-0354efec0f38", - "x-kong-upstream-latency" : "24", - "X-Ratelimit-Remaining" : "82", - "x-kong-request-id" : "00f07147033e3c3702682b650f0e9e1b", - "x-download-options" : "noopen", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "Date" : "Thu, 24 Oct 2024 15:52:16 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"012fcb120b63013818bb0bee9a179e71\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "275de801-77d9-46b1-b0c3-5c09bf7ec676", - "persistent" : true, - "insertionIndex" : 90 -} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json b/mock/mappings/merchants_vxzdbhveom-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json deleted file mode 100644 index a7c578e..0000000 --- a/mock/mappings/merchants_vxzdbhveom-a7a26d3e-2b37-41e9-b454-e08f0cdc54d5.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "a7a26d3e-2b37-41e9-b454-e08f0cdc54d5", - "name" : "merchants_vxzdbhveom", - "request" : { - "url" : "/merchants/vxZdBHVeOM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:14.813Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"138d6b5117d4ddc04ed15446761790197f5275911a42b8db61dd0e5c9a299209\"}}}", - "headers" : { - "x-request-id" : "08b11cd3-9517-42d5-9bff-0dee806469de", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "14", - "x-kong-request-id" : "44147341e0f7ef55b1ec28516f05e95c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:15 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"245a67d491b76cdc6f7ea3ed0bd8c658\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "a7a26d3e-2b37-41e9-b454-e08f0cdc54d5", - "persistent" : true, - "scenarioName" : "scenario-13-merchants-vxZdBHVeOM", - "requiredScenarioState" : "scenario-13-merchants-vxZdBHVeOM-2", - "newScenarioState" : "scenario-13-merchants-vxZdBHVeOM-3", - "insertionIndex" : 91 -} \ No newline at end of file diff --git a/mock/mappings/merchants_vxzdbhveom-ed9577ad-34cf-4d64-8512-507568760010.json b/mock/mappings/merchants_vxzdbhveom-ed9577ad-34cf-4d64-8512-507568760010.json deleted file mode 100644 index e459109..0000000 --- a/mock/mappings/merchants_vxzdbhveom-ed9577ad-34cf-4d64-8512-507568760010.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "ed9577ad-34cf-4d64-8512-507568760010", - "name" : "merchants_vxzdbhveom", - "request" : { - "url" : "/merchants/vxZdBHVeOM", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"vxZdBHVeOM\",\"type\":\"merchants\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM\"},\"attributes\":{\"name\":\"Incentro Merchant\",\"created_at\":\"2024-10-24T15:52:14.813Z\",\"updated_at\":\"2024-10-24T15:52:14.813Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_merchant.incentro_merchant\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/address\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/merchants/vxZdBHVeOM/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"deea92e115a7950944ded21bdb450b4685f598d79fae05e40121a4e3b000a50f\"}}}", - "headers" : { - "x-request-id" : "36b1fdeb-9d57-4d6e-ac24-020c2fb1a7cc", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "16", - "x-kong-request-id" : "cda70113b306666bc9f4fe7ecf61e069", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:15 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"57e09d2683c5ff56d5c028709547ecd8\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "ed9577ad-34cf-4d64-8512-507568760010", - "persistent" : true, - "scenarioName" : "scenario-13-merchants-vxZdBHVeOM", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-13-merchants-vxZdBHVeOM-2", - "insertionIndex" : 93 -} \ No newline at end of file diff --git a/mock/mappings/oauth_token-5d469a08-1362-4336-bf55-cad40fabdef0.json b/mock/mappings/oauth_token-5d469a08-1362-4336-bf55-cad40fabdef0.json new file mode 100644 index 0000000..1e3d65c --- /dev/null +++ b/mock/mappings/oauth_token-5d469a08-1362-4336-bf55-cad40fabdef0.json @@ -0,0 +1,39 @@ +{ + "id" : "5d469a08-1362-4336-bf55-cad40fabdef0", + "name" : "oauth_token", + "request" : { + "url" : "/oauth/token", + "method" : "POST", + "bodyPatterns" : [ { + "equalTo" : "grant_type=client_credentials", + "caseInsensitive" : false + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"access_token\":\"eyJhbGciOiJIUzUxMiJ9.eyJvcmdhbml6YXRpb24iOnsiaWQiOiJXblpQb0ZaRUt5Iiwic2x1ZyI6ImxvdWNzIiwiZW50ZXJwcmlzZSI6ZmFsc2UsInJlZ2lvbiI6ImV1LXdlc3QtMSJ9LCJhcHBsaWNhdGlvbiI6eyJpZCI6Ikd2UFhpWHJLQnAiLCJjbGllbnRfaWQiOiI0VHI0NWFOZ1NKMlpBdWhrRmtsWnh5YnBiUl9IQ1B0dEtHaFhRZEFVZjRvIiwia2luZCI6ImludGVncmF0aW9uIiwicHVibGljIjpmYWxzZX0sInNjb3BlIjoibWFya2V0OmFsbCIsImV4cCI6MTcyOTc4ODM4NCwidGVzdCI6dHJ1ZSwicmFuZCI6MC45MDgxNzk0MDQ0MzE0MDg3LCJpYXQiOjE3Mjk3ODExODQsImlzcyI6Imh0dHBzOi8vYXV0aC5jb21tZXJjZWxheWVyLmlvIn0.VDChFpwFHNZ-u_CfuXFAFOWnrC_xu1l3K0J9wt5ZseSjdWGoLiR_YBc9PHg9OTwXvNilW9v_WuulLtt3Lboemw\",\"token_type\":\"Bearer\",\"expires_in\":2468,\"scope\":\"market:all\",\"created_at\":1729781184}", + "headers" : { + "x-request-id" : "2ec0933f-e461-4174-9f68-cd0c8a001bca", + "x-kong-upstream-latency" : "9", + "X-Ratelimit-Remaining" : "25", + "x-kong-request-id" : "da43d95ae91a597bbda4a734b177b906", + "x-permitted-cross-domain-policies" : "none", + "x-kong-proxy-latency" : "0", + "x-download-options" : "noopen", + "Date" : "Thu, 24 Oct 2024 16:05:16 GMT", + "X-Ratelimit-Limit" : "30", + "X-Ratelimit-Interval" : "60", + "x-xss-protection" : "1; mode=block", + "x-content-type-options" : "nosniff", + "referrer-policy" : "strict-origin-when-cross-origin", + "Vary" : "Accept-Encoding, Origin", + "etag" : "W/\"7a0db506cbbdab173b960a218c4265c0\"", + "content-type" : "application/json; charset=utf-8", + "accept-ranges" : "bytes", + "cache-control" : "no-store" + } + }, + "uuid" : "5d469a08-1362-4336-bf55-cad40fabdef0", + "persistent" : true, + "insertionIndex" : 290 +} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-53d1c651-a1a3-47ec-af04-671296453348.json b/mock/mappings/payment_methods_pmwzdsrdde-53d1c651-a1a3-47ec-af04-671296453348.json deleted file mode 100644 index 8c0af1a..0000000 --- a/mock/mappings/payment_methods_pmwzdsrdde-53d1c651-a1a3-47ec-af04-671296453348.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "53d1c651-a1a3-47ec-af04-671296453348", - "name" : "payment_methods_pmwzdsrdde", - "request" : { - "url" : "/payment_methods/pmWZdsrDdE", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":5,\"price_amount_float\":0.05,\"formatted_price_amount\":\"€0,05\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:19.029Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a567d1ea7b70bd54fe274397bdc2d422946d616a39e7f7dfe44110ff868570d6\"}}}", - "headers" : { - "x-request-id" : "de4a960f-c698-4d67-bc60-2366285ad3b4", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "4", - "x-kong-request-id" : "c4e5810e0c399053056f4f74cac0cd73", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:19 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"deda2848e5cd50d7119e221a219893bd\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "53d1c651-a1a3-47ec-af04-671296453348", - "persistent" : true, - "scenarioName" : "scenario-12-payment_methods-pmWZdsrDdE", - "requiredScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-3", - "newScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-4", - "insertionIndex" : 75 -} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-b1f1837c-af9d-472d-a78e-e1c4741406eb.json b/mock/mappings/payment_methods_pmwzdsrdde-b1f1837c-af9d-472d-a78e-e1c4741406eb.json deleted file mode 100644 index 3923e20..0000000 --- a/mock/mappings/payment_methods_pmwzdsrdde-b1f1837c-af9d-472d-a78e-e1c4741406eb.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "id" : "b1f1837c-af9d-472d-a78e-e1c4741406eb", - "name" : "payment_methods_pmwzdsrdde", - "request" : { - "url" : "/payment_methods/pmWZdsrDdE", - "method" : "GET" - }, - "response" : { - "status" : 404, - "body" : "{\"errors\":[{\"title\":\"Record not found\",\"detail\":\"The requested resource was not found. Please double-check the resource id.\",\"code\":\"RECORD_NOT_FOUND\",\"status\":\"404\"}]}", - "headers" : { - "x-request-id" : "dca4bb34-5447-4a6f-b1cf-2045299b51ca", - "x-kong-upstream-latency" : "6", - "X-Ratelimit-Remaining" : "3", - "x-kong-request-id" : "6ded027061251b3a43aecc0905c90b0c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:20 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "content-type" : "application/vnd.api+json; charset=utf-8", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "b1f1837c-af9d-472d-a78e-e1c4741406eb", - "persistent" : true, - "scenarioName" : "scenario-12-payment_methods-pmWZdsrDdE", - "requiredScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-4", - "insertionIndex" : 72 -} \ No newline at end of file diff --git a/mock/mappings/payment_methods_pmwzdsrdde-d181f089-a311-416e-9ccb-e629e5b8743f.json b/mock/mappings/payment_methods_pmwzdsrdde-d181f089-a311-416e-9ccb-e629e5b8743f.json deleted file mode 100644 index 4dc96e0..0000000 --- a/mock/mappings/payment_methods_pmwzdsrdde-d181f089-a311-416e-9ccb-e629e5b8743f.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "d181f089-a311-416e-9ccb-e629e5b8743f", - "name" : "payment_methods_pmwzdsrdde", - "request" : { - "url" : "/payment_methods/pmWZdsrDdE", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"pmWZdsrDdE\",\"type\":\"payment_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE\"},\"attributes\":{\"name\":\"Adyen Payment\",\"payment_source_type\":\"adyen_payments\",\"currency_code\":\"EUR\",\"moto\":false,\"require_capture\":true,\"auto_place\":false,\"auto_capture\":false,\"price_amount_cents\":10,\"price_amount_float\":0.1,\"formatted_price_amount\":\"€0,10\",\"auto_capture_max_amount_cents\":null,\"auto_capture_max_amount_float\":null,\"formatted_auto_capture_max_amount\":null,\"disabled_at\":null,\"created_at\":\"2024-10-24T15:52:17.815Z\",\"updated_at\":\"2024-10-24T15:52:17.815Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_payment_method.incentro_payment_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/market\"}},\"payment_gateway\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/payment_gateway\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/payment_gateway\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/payment_methods/pmWZdsrDdE/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"917c2a1b457f9db00e160bdd1ebd7a3d6b8f3161186fdfddde56766b428db7ee\"}}}", - "headers" : { - "x-request-id" : "07f05c92-d2d3-408c-86fa-48aace3bcae7", - "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "6", - "x-kong-request-id" : "a6115f3b205eb904b6dbf95cdc6e7c54", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:18 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"1c6ded599ce12bfe47e34f81b294a45e\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "d181f089-a311-416e-9ccb-e629e5b8743f", - "persistent" : true, - "scenarioName" : "scenario-12-payment_methods-pmWZdsrDdE", - "requiredScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-2", - "newScenarioState" : "scenario-12-payment_methods-pmWZdsrDdE-3", - "insertionIndex" : 78 -} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-b22aac35-2569-45e3-867c-325c1a3e3025.json b/mock/mappings/paypal_gateways_jklbysepav-b22aac35-2569-45e3-867c-325c1a3e3025.json deleted file mode 100644 index 432cd30..0000000 --- a/mock/mappings/paypal_gateways_jklbysepav-b22aac35-2569-45e3-867c-325c1a3e3025.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "b22aac35-2569-45e3-867c-325c1a3e3025", - "name" : "paypal_gateways_jklbysepav", - "request" : { - "url" : "/paypal_gateways/JkLbysepAv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:20.694Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"90911cf55c78374fba8ee351974bb9a163a548040ede0415fc56b8c1333ff1d8\"}}}", - "headers" : { - "x-request-id" : "c6fd7e60-1d35-4f3a-9737-d61b6c23848d", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "0", - "x-kong-request-id" : "fa174e429a685c6753e1ae36d4a5046d", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:21 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"bd272fcf49d7ae545e148a7e672abcd6\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "b22aac35-2569-45e3-867c-325c1a3e3025", - "persistent" : true, - "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", - "requiredScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-2", - "newScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-3", - "insertionIndex" : 68 -} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json b/mock/mappings/paypal_gateways_jklbysepav-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json deleted file mode 100644 index 3a36b83..0000000 --- a/mock/mappings/paypal_gateways_jklbysepav-c4c620b5-9d85-4b52-aa96-5fb0ba8794b0.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "c4c620b5-9d85-4b52-aa96-5fb0ba8794b0", - "name" : "paypal_gateways_jklbysepav", - "request" : { - "url" : "/paypal_gateways/JkLbysepAv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:20.694Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2329ba132cab1d2b18e43d52660287d2e6ef40597f5fb4461ed2142ac8df2c9f\"}}}", - "headers" : { - "x-request-id" : "d6202f88-078f-4855-be6a-535686e24588", - "x-kong-upstream-latency" : "20", - "X-Ratelimit-Remaining" : "1", - "x-kong-request-id" : "6700133c34afce1e80d1dd32e73e7d51", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:21 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"4e44098f0ae9def8f4987bf4c72666a2\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "c4c620b5-9d85-4b52-aa96-5fb0ba8794b0", - "persistent" : true, - "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-2", - "insertionIndex" : 69 -} \ No newline at end of file diff --git a/mock/mappings/paypal_gateways_jklbysepav-edc679b6-624c-4d51-a627-8bbd3bc0373b.json b/mock/mappings/paypal_gateways_jklbysepav-edc679b6-624c-4d51-a627-8bbd3bc0373b.json deleted file mode 100644 index aa30464..0000000 --- a/mock/mappings/paypal_gateways_jklbysepav-edc679b6-624c-4d51-a627-8bbd3bc0373b.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "edc679b6-624c-4d51-a627-8bbd3bc0373b", - "name" : "paypal_gateways_jklbysepav", - "request" : { - "url" : "/paypal_gateways/JkLbysepAv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"JkLbysepAv\",\"type\":\"paypal_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv\"},\"attributes\":{\"name\":\"Incentro Paypal Gateway Changed\",\"created_at\":\"2024-10-24T15:52:20.694Z\",\"updated_at\":\"2024-10-24T15:52:21.623Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_paypal_gateway.incentro_paypal_gateway\"}},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/versions\"}},\"paypal_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/relationships/paypal_payments\",\"related\":\"https://loucs.commercelayer.io/api/paypal_gateways/JkLbysepAv/paypal_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"70e5d506af296f9c23ab6ae9eb61f5223dead5592483571b1ef05f283bae6a10\"}}}", - "headers" : { - "x-request-id" : "024bcf07-18e8-47bc-a442-f40ccb47a2bd", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "99", - "x-kong-request-id" : "72ff874dfe911651765b7d3a5a946606", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:22 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"a7c365a55bebe62688d263dcdfcdf519\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "edc679b6-624c-4d51-a627-8bbd3bc0373b", - "persistent" : true, - "scenarioName" : "scenario-10-paypal_gateways-JkLbysepAv", - "requiredScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-4", - "newScenarioState" : "scenario-10-paypal_gateways-JkLbysepAv-5", - "insertionIndex" : 65 -} \ No newline at end of file diff --git a/mock/mappings/price_lists_akebycwjml-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json b/mock/mappings/price_lists_akebycwjml-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json deleted file mode 100644 index 2ea24fa..0000000 --- a/mock/mappings/price_lists_akebycwjml-3927c92f-7c88-4fd0-b7cb-17f19cf79af5.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "3927c92f-7c88-4fd0-b7cb-17f19cf79af5", - "name" : "price_lists_akebycwjml", - "request" : { - "url" : "/price_lists/AkebyCWJml", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:52:07.273Z\",\"updated_at\":\"2024-10-24T15:52:07.273Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2f4837968d5ca00e2254ac8569fe08039cfce513cf2bb8e1c1cea0eba09e450a\"}}}", - "headers" : { - "x-request-id" : "15b953a5-1cf9-4aca-a5e2-c3703d15c54f", - "x-kong-upstream-latency" : "18", - "X-Ratelimit-Remaining" : "474", - "x-kong-request-id" : "996a864db6d81315f3a3a842478f045b", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:10 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"780bf65e8a370bbddafa64292d00e5cc\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "3927c92f-7c88-4fd0-b7cb-17f19cf79af5", - "persistent" : true, - "scenarioName" : "scenario-20-price_lists-AkebyCWJml", - "requiredScenarioState" : "scenario-20-price_lists-AkebyCWJml-3", - "insertionIndex" : 109 -} \ No newline at end of file diff --git a/mock/mappings/price_lists_akebycwjml-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json b/mock/mappings/price_lists_akebycwjml-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json deleted file mode 100644 index 837a545..0000000 --- a/mock/mappings/price_lists_akebycwjml-b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360", - "name" : "price_lists_akebycwjml", - "request" : { - "url" : "/price_lists/AkebyCWJml", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:52:07.273Z\",\"updated_at\":\"2024-10-24T15:52:07.273Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a63c6124bb181cfa354eb0faaa86910543cd1b35f2d3097e171c1d71ed76a593\"}}}", - "headers" : { - "x-request-id" : "cfe56f4c-327f-4c99-9ff3-e55040f7b159", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "480", - "x-kong-request-id" : "44ca341bd0a07657de439e1de04a4772", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:08 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"4b33468bc13c6d27cb1ca5f4dcfae738\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "b4ddbc88-d63b-4aa0-a0ca-bfcd921ef360", - "persistent" : true, - "scenarioName" : "scenario-20-price_lists-AkebyCWJml", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-20-price_lists-AkebyCWJml-2", - "insertionIndex" : 122 -} \ No newline at end of file diff --git a/mock/mappings/price_lists_akebycwjml-b760ce36-eeea-4a16-a826-df745cf55ee1.json b/mock/mappings/price_lists_akebycwjml-b760ce36-eeea-4a16-a826-df745cf55ee1.json deleted file mode 100644 index 623f1ec..0000000 --- a/mock/mappings/price_lists_akebycwjml-b760ce36-eeea-4a16-a826-df745cf55ee1.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "b760ce36-eeea-4a16-a826-df745cf55ee1", - "name" : "price_lists_akebycwjml", - "request" : { - "url" : "/price_lists/AkebyCWJml", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"AkebyCWJml\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:52:07.273Z\",\"updated_at\":\"2024-10-24T15:52:07.273Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_market.incentro_market\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/AkebyCWJml/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a63c6124bb181cfa354eb0faaa86910543cd1b35f2d3097e171c1d71ed76a593\"}}}", - "headers" : { - "x-request-id" : "cfe56f4c-327f-4c99-9ff3-e55040f7b159", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "477", - "x-kong-request-id" : "44ca341bd0a07657de439e1de04a4772", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:52:09 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"4b33468bc13c6d27cb1ca5f4dcfae738\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "1" - } - }, - "uuid" : "b760ce36-eeea-4a16-a826-df745cf55ee1", - "persistent" : true, - "scenarioName" : "scenario-20-price_lists-AkebyCWJml", - "requiredScenarioState" : "scenario-20-price_lists-AkebyCWJml-2", - "newScenarioState" : "scenario-20-price_lists-AkebyCWJml-3", - "insertionIndex" : 115 -} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-11f10920-f791-464e-9375-5275360a1fd4.json b/mock/mappings/price_lists_nlnwecrekb-11f10920-f791-464e-9375-5275360a1fd4.json deleted file mode 100644 index 3ec305e..0000000 --- a/mock/mappings/price_lists_nlnwecrekb-11f10920-f791-464e-9375-5275360a1fd4.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "11f10920-f791-464e-9375-5275360a1fd4", - "name" : "price_lists_nlnwecrekb", - "request" : { - "url" : "/price_lists/nLNWECREKB", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro updated price list\",\"code\":null,\"currency_code\":\"CHF\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:23.775Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"cd19f101ab305076753d9f5c135eead44d278ed1ac7364adc5ec906f12c472a6\"}}}", - "headers" : { - "x-request-id" : "2d6f5730-68e6-45e2-9e4f-98b00deeeb0e", - "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "497", - "x-kong-request-id" : "1972b352fb94520c8a645921945d683b", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:24 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"3d77011bbc42096e90f382955d3c7830\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "11f10920-f791-464e-9375-5275360a1fd4", - "persistent" : true, - "scenarioName" : "scenario-9-price_lists-nLNWECREKB", - "requiredScenarioState" : "scenario-9-price_lists-nLNWECREKB-3", - "newScenarioState" : "scenario-9-price_lists-nLNWECREKB-4", - "insertionIndex" : 58 -} \ No newline at end of file diff --git a/mock/mappings/price_lists_nlnwecrekb-84715bce-e82f-4507-a8c6-b3c2c516ea72.json b/mock/mappings/price_lists_nlnwecrekb-84715bce-e82f-4507-a8c6-b3c2c516ea72.json deleted file mode 100644 index a95520b..0000000 --- a/mock/mappings/price_lists_nlnwecrekb-84715bce-e82f-4507-a8c6-b3c2c516ea72.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "84715bce-e82f-4507-a8c6-b3c2c516ea72", - "name" : "price_lists_nlnwecrekb", - "request" : { - "url" : "/price_lists/nLNWECREKB", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"nLNWECREKB\",\"type\":\"price_lists\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB\"},\"attributes\":{\"name\":\"incentro price list\",\"code\":null,\"currency_code\":\"EUR\",\"tax_included\":true,\"created_at\":\"2024-10-24T15:53:22.937Z\",\"updated_at\":\"2024-10-24T15:53:22.937Z\",\"reference\":null,\"reference_origin\":null,\"rules\":{},\"rule_outcomes\":{},\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_price_list.incentro_price_list\"}},\"relationships\":{\"prices\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/prices\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/prices\"}},\"price_list_schedulers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/price_list_schedulers\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/price_list_schedulers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/price_lists/nLNWECREKB/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"647d0c347ca23aff92270a429fd136a04ce107cdacce4b3a3e00b5e4c8cee0b7\"}}}", - "headers" : { - "x-request-id" : "03ea18a4-9d3d-4bc6-9285-8f5a06ccf355", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "498", - "x-kong-request-id" : "2ea7cb120512d1286f5ba95886d8b859", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:23 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"9bbe3d1d256f39450b08aadd4a4f8872\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "84715bce-e82f-4507-a8c6-b3c2c516ea72", - "persistent" : true, - "scenarioName" : "scenario-9-price_lists-nLNWECREKB", - "requiredScenarioState" : "scenario-9-price_lists-nLNWECREKB-2", - "newScenarioState" : "scenario-9-price_lists-nLNWECREKB-3", - "insertionIndex" : 60 -} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json b/mock/mappings/shipping_categories_enbljfzglw-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json deleted file mode 100644 index c1d46d0..0000000 --- a/mock/mappings/shipping_categories_enbljfzglw-2f7e44a9-40a9-40eb-b17e-caedb528b25a.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "2f7e44a9-40a9-40eb-b17e-caedb528b25a", - "name" : "shipping_categories_enbljfzglw", - "request" : { - "url" : "/shipping_categories/ENblJFZgLW", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bfed94d83065908798b7a7c551c7d30abd4ade07d435428fa4059f92399d0910\"}}}", - "headers" : { - "x-request-id" : "f8161b0b-c8c6-4f92-9004-a39cbfa53d56", - "x-kong-upstream-latency" : "16", - "X-Ratelimit-Remaining" : "97", - "x-kong-request-id" : "84f74f2ce3d1951c82a1435f5898586f", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:25 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"e803735f4a9c65c73adef0a47b0610b0\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "2f7e44a9-40a9-40eb-b17e-caedb528b25a", - "persistent" : true, - "scenarioName" : "scenario-8-shipping_categories-ENblJFZgLW", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-2", - "insertionIndex" : 54 -} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-408a24db-193f-4979-be1d-bba839acdf4f.json b/mock/mappings/shipping_categories_enbljfzglw-408a24db-193f-4979-be1d-bba839acdf4f.json deleted file mode 100644 index ab9b82d..0000000 --- a/mock/mappings/shipping_categories_enbljfzglw-408a24db-193f-4979-be1d-bba839acdf4f.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "408a24db-193f-4979-be1d-bba839acdf4f", - "name" : "shipping_categories_enbljfzglw", - "request" : { - "url" : "/shipping_categories/ENblJFZgLW", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.075Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a69469b0eed93ebbd0c18d24e57e5db3aaf79e4ae93435a88f80e6db5283249c\"}}}", - "headers" : { - "x-request-id" : "15d8b449-ae2a-4c7b-a5d4-fff9373aa89c", - "x-kong-upstream-latency" : "11", - "X-Ratelimit-Remaining" : "96", - "x-kong-request-id" : "116c271e149b50421636891a11f3e948", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:25 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"d82f55c8c52470ac293c3d32da353ca1\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "408a24db-193f-4979-be1d-bba839acdf4f", - "persistent" : true, - "scenarioName" : "scenario-8-shipping_categories-ENblJFZgLW", - "requiredScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-2", - "newScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-3", - "insertionIndex" : 53 -} \ No newline at end of file diff --git a/mock/mappings/shipping_categories_enbljfzglw-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json b/mock/mappings/shipping_categories_enbljfzglw-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json deleted file mode 100644 index e06fa45..0000000 --- a/mock/mappings/shipping_categories_enbljfzglw-dc3e55b9-b604-4b7b-9af4-6a8daa34479a.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "dc3e55b9-b604-4b7b-9af4-6a8daa34479a", - "name" : "shipping_categories_enbljfzglw", - "request" : { - "url" : "/shipping_categories/ENblJFZgLW", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ENblJFZgLW\",\"type\":\"shipping_categories\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW\"},\"attributes\":{\"name\":\"Incentro Shipping Category Updated\",\"code\":null,\"created_at\":\"2024-10-24T15:53:25.075Z\",\"updated_at\":\"2024-10-24T15:53:25.927Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_category.incentro_shipping_category\"}},\"relationships\":{\"skus\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/skus\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/skus\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_categories/ENblJFZgLW/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"d9fb43d4ef613db1063f36ddfedf5244445a383cc8d465d97fedbbc73125f4b4\"}}}", - "headers" : { - "x-request-id" : "fbc679b7-04ab-493c-9eed-d0ab9a964e29", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "95", - "x-kong-request-id" : "95f01a4afac6e45c4ff9d9392309af3e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:26 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"dbafe557f99c75107d9d3b00be729cb4\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "dc3e55b9-b604-4b7b-9af4-6a8daa34479a", - "persistent" : true, - "scenarioName" : "scenario-8-shipping_categories-ENblJFZgLW", - "requiredScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-3", - "newScenarioState" : "scenario-8-shipping_categories-ENblJFZgLW-4", - "insertionIndex" : 51 -} \ No newline at end of file diff --git a/mock/mappings/shipping_methods_avqkgfqjjo-e0c92868-59ae-4324-9202-c913cd2b149a.json b/mock/mappings/shipping_methods_avqkgfqjjo-e0c92868-59ae-4324-9202-c913cd2b149a.json deleted file mode 100644 index 9fec3a4..0000000 --- a/mock/mappings/shipping_methods_avqkgfqjjo-e0c92868-59ae-4324-9202-c913cd2b149a.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "e0c92868-59ae-4324-9202-c913cd2b149a", - "name" : "shipping_methods_avqkgfqjjo", - "request" : { - "url" : "/shipping_methods/aVQkGFqJJO", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"aVQkGFqJJO\",\"type\":\"shipping_methods\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO\"},\"attributes\":{\"name\":\"Incentro Test Shipping Method Updated\",\"scheme\":\"external\",\"currency_code\":\"CHF\",\"external_prices_url\":\"https://api.commercelayer.io/v1/prices\",\"price_amount_cents\":1,\"price_amount_float\":0.01,\"formatted_price_amount\":\"CHF 0.01\",\"free_over_amount_cents\":1,\"free_over_amount_float\":0.01,\"formatted_free_over_amount\":\"CHF 0.01\",\"use_subtotal\":true,\"price_amount_for_shipment_cents\":1,\"price_amount_for_shipment_float\":0.01,\"formatted_price_amount_for_shipment\":\"CHF 0.01\",\"min_weight\":1.0,\"max_weight\":20.0,\"unit_of_weight\":\"oz\",\"disabled_at\":\"2024-10-24T15:53:27.944Z\",\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"created_at\":\"2024-10-24T15:53:27.118Z\",\"updated_at\":\"2024-10-24T15:53:27.947Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_shipping_method.incentro_shipping_method\"}},\"relationships\":{\"market\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/market\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/market\"}},\"shipping_zone\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_zone\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_zone\"}},\"shipping_category\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_category\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_category\"}},\"stock_location\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/stock_location\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/stock_location\"}},\"delivery_lead_time_for_shipment\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/delivery_lead_time_for_shipment\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/delivery_lead_time_for_shipment\"}},\"shipping_method_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_method_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_method_tiers\"}},\"shipping_weight_tiers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/shipping_weight_tiers\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/shipping_weight_tiers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_methods/aVQkGFqJJO/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"2cc5555770038af9d4fe70d017d812c692f621fa0377cc52679200651002d518\"}}}", - "headers" : { - "x-request-id" : "45be8b0b-8101-4d80-a591-24031138e875", - "x-kong-upstream-latency" : "22", - "X-Ratelimit-Remaining" : "91", - "x-kong-request-id" : "22baab701b27213d759fd73c529de128", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:28 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"0493367360e9d125b95dbc214a4217c7\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "e0c92868-59ae-4324-9202-c913cd2b149a", - "persistent" : true, - "scenarioName" : "scenario-7-shipping_methods-aVQkGFqJJO", - "requiredScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-3", - "newScenarioState" : "scenario-7-shipping_methods-aVQkGFqJJO-4", - "insertionIndex" : 44 -} \ No newline at end of file diff --git a/mock/mappings/shipping_zones_ekvlvtjyxq-bd9c9d43-94e3-457d-9419-c3158e0d0362.json b/mock/mappings/shipping_zones_ekvlvtjyxq-bd9c9d43-94e3-457d-9419-c3158e0d0362.json deleted file mode 100644 index f67da04..0000000 --- a/mock/mappings/shipping_zones_ekvlvtjyxq-bd9c9d43-94e3-457d-9419-c3158e0d0362.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "bd9c9d43-94e3-457d-9419-c3158e0d0362", - "name" : "shipping_zones_ekvlvtjyxq", - "request" : { - "url" : "/shipping_zones/EKVlVtJYxQ", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"EKVlVtJYxQ\",\"type\":\"shipping_zones\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ\"},\"attributes\":{\"name\":\"Incentro Shipping Zone\",\"country_code_regex\":\".*\",\"not_country_code_regex\":\"[^i*&2@]\",\"state_code_regex\":\"^dog\",\"not_state_code_regex\":\"//[^\\r\\n]*[\\r\\n]\",\"zip_code_regex\":\"[a-zA-Z]{2,4}\",\"not_zip_code_regex\":\".+\",\"created_at\":\"2024-10-24T15:53:29.156Z\",\"updated_at\":\"2024-10-24T15:53:29.156Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_shipping_zone.incentro_shipping_zone\"}},\"relationships\":{\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/shipping_zones/EKVlVtJYxQ/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"01c3259f7b63c8be3414e3ac033a3306fb53a1d9f77aed218ae71e9cf5897def\"}}}", - "headers" : { - "x-request-id" : "d550275e-65c4-4fcf-8734-bd1c9280def5", - "x-kong-upstream-latency" : "20", - "X-Ratelimit-Remaining" : "88", - "x-kong-request-id" : "18b8242be58882588c649b25f6268c1a", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:29 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"8f843842d844cce76af1bd9004954383\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "bd9c9d43-94e3-457d-9419-c3158e0d0362", - "persistent" : true, - "scenarioName" : "scenario-6-shipping_zones-EKVlVtJYxQ", - "requiredScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-2", - "newScenarioState" : "scenario-6-shipping_zones-EKVlVtJYxQ-3", - "insertionIndex" : 39 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_bkeequwyyk-60a49051-d491-4c78-8242-220aa743ec50.json b/mock/mappings/stock_locations_bkeequwyyk-60a49051-d491-4c78-8242-220aa743ec50.json deleted file mode 100644 index 45b6947..0000000 --- a/mock/mappings/stock_locations_bkeequwyyk-60a49051-d491-4c78-8242-220aa743ec50.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "60a49051-d491-4c78-8242-220aa743ec50", - "name" : "stock_locations_bkeequwyyk", - "request" : { - "url" : "/stock_locations/bkEeQuWyYk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk\"},\"attributes\":{\"number\":25279,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:51.513Z\",\"updated_at\":\"2024-10-24T15:51:51.513Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f6e66fac42b397bb9af74c7c2318d8e9d107a1253ebc8230f5fb0bd02b6c66d3\"}}}", - "headers" : { - "x-request-id" : "31bc3526-5611-484d-b690-47ec6dbca33b", - "x-kong-upstream-latency" : "10", - "X-Ratelimit-Remaining" : "491", - "x-kong-request-id" : "402eb3600cce425b0470c005aa5d3b04", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:52 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"2a1d280135efadbca2d30470f398535f\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "60a49051-d491-4c78-8242-220aa743ec50", - "persistent" : true, - "scenarioName" : "scenario-29-stock_locations-bkEeQuWyYk", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-29-stock_locations-bkEeQuWyYk-2", - "insertionIndex" : 187 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_bkeequwyyk-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json b/mock/mappings/stock_locations_bkeequwyyk-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json deleted file mode 100644 index 4356254..0000000 --- a/mock/mappings/stock_locations_bkeequwyyk-78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d", - "name" : "stock_locations_bkeequwyyk", - "request" : { - "url" : "/stock_locations/bkEeQuWyYk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk\"},\"attributes\":{\"number\":25279,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:51.513Z\",\"updated_at\":\"2024-10-24T15:51:51.513Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f6e66fac42b397bb9af74c7c2318d8e9d107a1253ebc8230f5fb0bd02b6c66d3\"}}}", - "headers" : { - "x-request-id" : "31bc3526-5611-484d-b690-47ec6dbca33b", - "x-kong-upstream-latency" : "10", - "X-Ratelimit-Remaining" : "489", - "x-kong-request-id" : "402eb3600cce425b0470c005aa5d3b04", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"2a1d280135efadbca2d30470f398535f\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "1" - } - }, - "uuid" : "78b28c5d-b8e6-4a27-9c80-d4e72ace0f4d", - "persistent" : true, - "scenarioName" : "scenario-29-stock_locations-bkEeQuWyYk", - "requiredScenarioState" : "scenario-29-stock_locations-bkEeQuWyYk-2", - "newScenarioState" : "scenario-29-stock_locations-bkEeQuWyYk-3", - "insertionIndex" : 183 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_bkeequwyyk-c185c581-52d4-4f0c-97eb-841f963cad6d.json b/mock/mappings/stock_locations_bkeequwyyk-c185c581-52d4-4f0c-97eb-841f963cad6d.json deleted file mode 100644 index fb4fd03..0000000 --- a/mock/mappings/stock_locations_bkeequwyyk-c185c581-52d4-4f0c-97eb-841f963cad6d.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "c185c581-52d4-4f0c-97eb-841f963cad6d", - "name" : "stock_locations_bkeequwyyk", - "request" : { - "url" : "/stock_locations/bkEeQuWyYk", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"bkEeQuWyYk\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk\"},\"attributes\":{\"number\":25279,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:51.513Z\",\"updated_at\":\"2024-10-24T15:51:51.513Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_return_location.incentro_inventory_return_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/bkEeQuWyYk/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f6e66fac42b397bb9af74c7c2318d8e9d107a1253ebc8230f5fb0bd02b6c66d3\"}}}", - "headers" : { - "x-request-id" : "31bc3526-5611-484d-b690-47ec6dbca33b", - "x-kong-upstream-latency" : "10", - "X-Ratelimit-Remaining" : "488", - "x-kong-request-id" : "402eb3600cce425b0470c005aa5d3b04", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:53 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"2a1d280135efadbca2d30470f398535f\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "1" - } - }, - "uuid" : "c185c581-52d4-4f0c-97eb-841f963cad6d", - "persistent" : true, - "scenarioName" : "scenario-29-stock_locations-bkEeQuWyYk", - "requiredScenarioState" : "scenario-29-stock_locations-bkEeQuWyYk-3", - "insertionIndex" : 178 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_ekbqqudzmg-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json b/mock/mappings/stock_locations_ekbqqudzmg-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json deleted file mode 100644 index 50a260d..0000000 --- a/mock/mappings/stock_locations_ekbqqudzmg-2ee23a69-8e4a-4c37-ab8e-5a34eec70243.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "2ee23a69-8e4a-4c37-ab8e-5a34eec70243", - "name" : "stock_locations_ekbqqudzmg", - "request" : { - "url" : "/stock_locations/ekbqQudZmG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG\"},\"attributes\":{\"number\":25278,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:37.752Z\",\"updated_at\":\"2024-10-24T15:51:37.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"96cdeb1550284bb8171d5dca1544e6eac45df17cf08964ef78857e955c1e0009\"}}}", - "headers" : { - "x-request-id" : "fcf4f7d4-a729-483f-9a0f-2dfcfd6aac36", - "x-kong-upstream-latency" : "10", - "X-Ratelimit-Remaining" : "499", - "x-kong-request-id" : "64609849595a0b17b023173b0b46536c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:38 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"f1eb354c5c34252e7f5dfdb07f923612\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "2ee23a69-8e4a-4c37-ab8e-5a34eec70243", - "persistent" : true, - "scenarioName" : "scenario-39-stock_locations-ekbqQudZmG", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-39-stock_locations-ekbqQudZmG-2", - "insertionIndex" : 243 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_ekbqqudzmg-b665ee32-0657-42ca-83bd-11883854e6c3.json b/mock/mappings/stock_locations_ekbqqudzmg-b665ee32-0657-42ca-83bd-11883854e6c3.json deleted file mode 100644 index ebba726..0000000 --- a/mock/mappings/stock_locations_ekbqqudzmg-b665ee32-0657-42ca-83bd-11883854e6c3.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "b665ee32-0657-42ca-83bd-11883854e6c3", - "name" : "stock_locations_ekbqqudzmg", - "request" : { - "url" : "/stock_locations/ekbqQudZmG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG\"},\"attributes\":{\"number\":25278,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:37.752Z\",\"updated_at\":\"2024-10-24T15:51:37.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"96cdeb1550284bb8171d5dca1544e6eac45df17cf08964ef78857e955c1e0009\"}}}", - "headers" : { - "x-request-id" : "fcf4f7d4-a729-483f-9a0f-2dfcfd6aac36", - "x-kong-upstream-latency" : "10", - "X-Ratelimit-Remaining" : "498", - "x-kong-request-id" : "64609849595a0b17b023173b0b46536c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:39 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"f1eb354c5c34252e7f5dfdb07f923612\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "1" - } - }, - "uuid" : "b665ee32-0657-42ca-83bd-11883854e6c3", - "persistent" : true, - "scenarioName" : "scenario-39-stock_locations-ekbqQudZmG", - "requiredScenarioState" : "scenario-39-stock_locations-ekbqQudZmG-2", - "newScenarioState" : "scenario-39-stock_locations-ekbqQudZmG-3", - "insertionIndex" : 239 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_ekbqqudzmg-c0043439-e0e4-435b-aef9-110381ecc4bd.json b/mock/mappings/stock_locations_ekbqqudzmg-c0043439-e0e4-435b-aef9-110381ecc4bd.json deleted file mode 100644 index 4d6a5c9..0000000 --- a/mock/mappings/stock_locations_ekbqqudzmg-c0043439-e0e4-435b-aef9-110381ecc4bd.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "c0043439-e0e4-435b-aef9-110381ecc4bd", - "name" : "stock_locations_ekbqqudzmg", - "request" : { - "url" : "/stock_locations/ekbqQudZmG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ekbqQudZmG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG\"},\"attributes\":{\"number\":25278,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:37.752Z\",\"updated_at\":\"2024-10-24T15:51:37.752Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_delivery_lead_time.incentro_delivery_lead_time\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/ekbqQudZmG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"96cdeb1550284bb8171d5dca1544e6eac45df17cf08964ef78857e955c1e0009\"}}}", - "headers" : { - "x-request-id" : "fcf4f7d4-a729-483f-9a0f-2dfcfd6aac36", - "x-kong-upstream-latency" : "10", - "X-Ratelimit-Remaining" : "497", - "x-kong-request-id" : "64609849595a0b17b023173b0b46536c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:40 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"f1eb354c5c34252e7f5dfdb07f923612\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "2" - } - }, - "uuid" : "c0043439-e0e4-435b-aef9-110381ecc4bd", - "persistent" : true, - "scenarioName" : "scenario-39-stock_locations-ekbqQudZmG", - "requiredScenarioState" : "scenario-39-stock_locations-ekbqQudZmG-3", - "insertionIndex" : 234 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_qkpoyuxerg-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json b/mock/mappings/stock_locations_qkpoyuxerg-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json deleted file mode 100644 index ac5d65f..0000000 --- a/mock/mappings/stock_locations_qkpoyuxerg-1d100a97-ac50-4b6d-86bf-d0f3409bfc03.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "1d100a97-ac50-4b6d-86bf-d0f3409bfc03", - "name" : "stock_locations_qkpoyuxerg", - "request" : { - "url" : "/stock_locations/qkpOyuXErG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG\"},\"attributes\":{\"number\":25280,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:55.809Z\",\"updated_at\":\"2024-10-24T15:51:55.809Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bbe93194c0a653640cf042d9f7be1ac67b8d68d45d7c97d6029e2a17a2a2f32d\"}}}", - "headers" : { - "x-request-id" : "78270026-58ff-46e9-a854-9f851f29950a", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "481", - "x-kong-request-id" : "618f8e090cf4fd49192f036c5b5c2041", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"cac0ce6f98d745533763dbc97ff63b30\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "2" - } - }, - "uuid" : "1d100a97-ac50-4b6d-86bf-d0f3409bfc03", - "persistent" : true, - "scenarioName" : "scenario-25-stock_locations-qkpOyuXErG", - "requiredScenarioState" : "scenario-25-stock_locations-qkpOyuXErG-3", - "insertionIndex" : 156 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_qkpoyuxerg-94f54298-cfc8-4f88-ba4b-8d1412171286.json b/mock/mappings/stock_locations_qkpoyuxerg-94f54298-cfc8-4f88-ba4b-8d1412171286.json deleted file mode 100644 index 549debf..0000000 --- a/mock/mappings/stock_locations_qkpoyuxerg-94f54298-cfc8-4f88-ba4b-8d1412171286.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "94f54298-cfc8-4f88-ba4b-8d1412171286", - "name" : "stock_locations_qkpoyuxerg", - "request" : { - "url" : "/stock_locations/qkpOyuXErG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG\"},\"attributes\":{\"number\":25280,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:55.809Z\",\"updated_at\":\"2024-10-24T15:51:55.809Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bbe93194c0a653640cf042d9f7be1ac67b8d68d45d7c97d6029e2a17a2a2f32d\"}}}", - "headers" : { - "x-request-id" : "78270026-58ff-46e9-a854-9f851f29950a", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "483", - "x-kong-request-id" : "618f8e090cf4fd49192f036c5b5c2041", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:57 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"cac0ce6f98d745533763dbc97ff63b30\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "1" - } - }, - "uuid" : "94f54298-cfc8-4f88-ba4b-8d1412171286", - "persistent" : true, - "scenarioName" : "scenario-25-stock_locations-qkpOyuXErG", - "requiredScenarioState" : "scenario-25-stock_locations-qkpOyuXErG-2", - "newScenarioState" : "scenario-25-stock_locations-qkpOyuXErG-3", - "insertionIndex" : 161 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_qkpoyuxerg-956ff1f4-b530-4337-9b54-2d37b71bf096.json b/mock/mappings/stock_locations_qkpoyuxerg-956ff1f4-b530-4337-9b54-2d37b71bf096.json deleted file mode 100644 index d2a0a11..0000000 --- a/mock/mappings/stock_locations_qkpoyuxerg-956ff1f4-b530-4337-9b54-2d37b71bf096.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "956ff1f4-b530-4337-9b54-2d37b71bf096", - "name" : "stock_locations_qkpoyuxerg", - "request" : { - "url" : "/stock_locations/qkpOyuXErG", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"qkpOyuXErG\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG\"},\"attributes\":{\"number\":25280,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:51:55.809Z\",\"updated_at\":\"2024-10-24T15:51:55.809Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_inventory_stock_location.incentro_inventory_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/qkpOyuXErG/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"bbe93194c0a653640cf042d9f7be1ac67b8d68d45d7c97d6029e2a17a2a2f32d\"}}}", - "headers" : { - "x-request-id" : "78270026-58ff-46e9-a854-9f851f29950a", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "485", - "x-kong-request-id" : "618f8e090cf4fd49192f036c5b5c2041", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:51:56 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"cac0ce6f98d745533763dbc97ff63b30\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "956ff1f4-b530-4337-9b54-2d37b71bf096", - "persistent" : true, - "scenarioName" : "scenario-25-stock_locations-qkpOyuXErG", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-25-stock_locations-qkpOyuXErG-2", - "insertionIndex" : 165 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_qkpoyuxerg-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json b/mock/mappings/stock_locations_qkpoyuxerg-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json deleted file mode 100644 index a4b321b..0000000 --- a/mock/mappings/stock_locations_qkpoyuxerg-ed6f9ec3-ccc6-48a6-8400-afdd01ff448f.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "id" : "ed6f9ec3-ccc6-48a6-8400-afdd01ff448f", - "name" : "stock_locations_qkpoyuxerg", - "request" : { - "url" : "/stock_locations/qkpOyuXErG", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "x-request-id" : "67e04e2a-12ec-4aff-a2d5-6ed285c71b3b", - "x-kong-upstream-latency" : "77", - "X-Ratelimit-Remaining" : "81", - "x-kong-request-id" : "7208e03d719e683ece88f723710eca76", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:51:58 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Origin", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "ed6f9ec3-ccc6-48a6-8400-afdd01ff448f", - "persistent" : true, - "insertionIndex" : 153 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-6c4f7873-a681-4339-a0c5-929662bba461.json b/mock/mappings/stock_locations_rneebuyjln-6c4f7873-a681-4339-a0c5-929662bba461.json deleted file mode 100644 index a105276..0000000 --- a/mock/mappings/stock_locations_rneebuyjln-6c4f7873-a681-4339-a0c5-929662bba461.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "6c4f7873-a681-4339-a0c5-929662bba461", - "name" : "stock_locations_rneebuyjln", - "request" : { - "url" : "/stock_locations/rneEbuYJLn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location Updated\",\"code\":null,\"label_format\":\"PDF\",\"suppress_etd\":false,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:32.381Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"f800e8ca141921bd03927fbe21f2fc399a068441bc583bd68acbf6f123b15d06\"}}}", - "headers" : { - "x-request-id" : "97a47cee-3cc8-497a-8955-1592c067363d", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "493", - "x-kong-request-id" : "9b9f09140010b118f8243f71e1de617c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"8949feb19690b3d6f3b803b30d613bdb\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "6c4f7873-a681-4339-a0c5-929662bba461", - "persistent" : true, - "scenarioName" : "scenario-4-stock_locations-rneEbuYJLn", - "requiredScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-3", - "newScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-4", - "insertionIndex" : 26 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-b59f2a00-610f-490c-b399-afbb424841b7.json b/mock/mappings/stock_locations_rneebuyjln-b59f2a00-610f-490c-b399-afbb424841b7.json deleted file mode 100644 index 6c962d9..0000000 --- a/mock/mappings/stock_locations_rneebuyjln-b59f2a00-610f-490c-b399-afbb424841b7.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "b59f2a00-610f-490c-b399-afbb424841b7", - "name" : "stock_locations_rneebuyjln", - "request" : { - "url" : "/stock_locations/rneEbuYJLn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:31.310Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3015acae70f0978f6197eb76afbaee18d8305bacef186d4f8dec8b2eafe0d98d\"}}}", - "headers" : { - "x-request-id" : "e0747d9e-054a-495a-989f-4f6a118cd693", - "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "494", - "x-kong-request-id" : "29d7f64550c2bf09b90f6f69afb10c07", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:32 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"f0286e801c28de61ad860299fd4af852\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "b59f2a00-610f-490c-b399-afbb424841b7", - "persistent" : true, - "scenarioName" : "scenario-4-stock_locations-rneEbuYJLn", - "requiredScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-2", - "newScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-3", - "insertionIndex" : 29 -} \ No newline at end of file diff --git a/mock/mappings/stock_locations_rneebuyjln-f4d11818-49ba-4c90-b84d-573241e8e1e1.json b/mock/mappings/stock_locations_rneebuyjln-f4d11818-49ba-4c90-b84d-573241e8e1e1.json deleted file mode 100644 index cd8a749..0000000 --- a/mock/mappings/stock_locations_rneebuyjln-f4d11818-49ba-4c90-b84d-573241e8e1e1.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "id" : "f4d11818-49ba-4c90-b84d-573241e8e1e1", - "name" : "stock_locations_rneebuyjln", - "request" : { - "url" : "/stock_locations/rneEbuYJLn", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"rneEbuYJLn\",\"type\":\"stock_locations\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn\"},\"attributes\":{\"number\":25281,\"name\":\"Incentro Stock Location\",\"code\":null,\"label_format\":\"PNG\",\"suppress_etd\":true,\"created_at\":\"2024-10-24T15:53:31.310Z\",\"updated_at\":\"2024-10-24T15:53:31.310Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stock_location.incentro_stock_location\"}},\"relationships\":{\"address\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/address\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/address\"}},\"inventory_stock_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_stock_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_stock_locations\"}},\"inventory_return_locations\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/inventory_return_locations\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/inventory_return_locations\"}},\"stock_items\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_items\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_items\"}},\"stock_transfers\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/stock_transfers\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/stock_transfers\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stock_locations/rneEbuYJLn/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"3015acae70f0978f6197eb76afbaee18d8305bacef186d4f8dec8b2eafe0d98d\"}}}", - "headers" : { - "x-request-id" : "e0747d9e-054a-495a-989f-4f6a118cd693", - "x-kong-upstream-latency" : "12", - "X-Ratelimit-Remaining" : "495", - "x-kong-request-id" : "29d7f64550c2bf09b90f6f69afb10c07", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:31 GMT", - "Accept-Ranges" : "bytes", - "X-Ratelimit-Limit" : "500", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Authorization, Accept-Encoding, Origin", - "etag" : "W/\"f0286e801c28de61ad860299fd4af852\"", - "content-type" : "application/vnd.api+json", - "cache-control" : "public, no-cache", - "Age" : "0" - } - }, - "uuid" : "f4d11818-49ba-4c90-b84d-573241e8e1e1", - "persistent" : true, - "scenarioName" : "scenario-4-stock_locations-rneEbuYJLn", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-4-stock_locations-rneEbuYJLn-2", - "insertionIndex" : 31 -} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json b/mock/mappings/stripe_gateways_mjrmbswxyv-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json deleted file mode 100644 index 1978f95..0000000 --- a/mock/mappings/stripe_gateways_mjrmbswxyv-36558ecc-dc3b-46e5-bf36-bf24c0e45921.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "36558ecc-dc3b-46e5-bf36-bf24c0e45921", - "name" : "stripe_gateways_mjrmbswxyv", - "request" : { - "url" : "/stripe_gateways/MjRMbsWXYv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway Changed\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:34.937Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"c22b90260f9971b86e42535f7d136a7cd521fb9184d2cc6009e71e140dba8752\"}}}", - "headers" : { - "x-request-id" : "85e098a9-52cb-42e3-90bf-6eb1f8f2e192", - "x-kong-upstream-latency" : "33", - "X-Ratelimit-Remaining" : "80", - "x-kong-request-id" : "a46811488c2299176b8a806d26abff5f", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:35 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"b4feb89dd0147b21fa2e9f1f977ec5ae\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "36558ecc-dc3b-46e5-bf36-bf24c0e45921", - "persistent" : true, - "scenarioName" : "scenario-3-stripe_gateways-MjRMbsWXYv", - "requiredScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-3", - "newScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-4", - "insertionIndex" : 18 -} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-7eb5c230-1642-497a-86cc-f81bd7217cfb.json b/mock/mappings/stripe_gateways_mjrmbswxyv-7eb5c230-1642-497a-86cc-f81bd7217cfb.json deleted file mode 100644 index 3e9a2ae..0000000 --- a/mock/mappings/stripe_gateways_mjrmbswxyv-7eb5c230-1642-497a-86cc-f81bd7217cfb.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "7eb5c230-1642-497a-86cc-f81bd7217cfb", - "name" : "stripe_gateways_mjrmbswxyv", - "request" : { - "url" : "/stripe_gateways/MjRMbsWXYv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:33.972Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"6f38a84a580aaecab8a9beead22279624c9344070e30d2b3000604d653f6dada\"}}}", - "headers" : { - "x-request-id" : "9185b2af-016e-476b-b882-a32be1284401", - "x-kong-upstream-latency" : "23", - "X-Ratelimit-Remaining" : "81", - "x-kong-request-id" : "453a534894e1523362613b57a50c923c", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:34 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"9ef49bd89100c9a86ab11501b6687ee8\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "7eb5c230-1642-497a-86cc-f81bd7217cfb", - "persistent" : true, - "scenarioName" : "scenario-3-stripe_gateways-MjRMbsWXYv", - "requiredScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-2", - "newScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-3", - "insertionIndex" : 20 -} \ No newline at end of file diff --git a/mock/mappings/stripe_gateways_mjrmbswxyv-93a5764d-0689-4fda-a31a-366e5a265190.json b/mock/mappings/stripe_gateways_mjrmbswxyv-93a5764d-0689-4fda-a31a-366e5a265190.json deleted file mode 100644 index 9302f57..0000000 --- a/mock/mappings/stripe_gateways_mjrmbswxyv-93a5764d-0689-4fda-a31a-366e5a265190.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "93a5764d-0689-4fda-a31a-366e5a265190", - "name" : "stripe_gateways_mjrmbswxyv", - "request" : { - "url" : "/stripe_gateways/MjRMbsWXYv", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"MjRMbsWXYv\",\"type\":\"stripe_gateways\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv\"},\"attributes\":{\"name\":\"Incentro Stripe Gateway\",\"created_at\":\"2024-10-24T15:53:33.972Z\",\"updated_at\":\"2024-10-24T15:53:33.972Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_stripe_gateway.incentro_stripe_gateway\"},\"connected_account\":null,\"auto_payments\":false,\"webhook_endpoint_id\":null,\"webhook_endpoint_secret\":null,\"webhook_endpoint_url\":\"https://core.commercelayer.io/webhook_callbacks/stripe_gateways/MjRMbsWXYv/eu-west-1\"},\"relationships\":{\"payment_methods\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/payment_methods\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/payment_methods\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/versions\"}},\"stripe_payments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/relationships/stripe_payments\",\"related\":\"https://loucs.commercelayer.io/api/stripe_gateways/MjRMbsWXYv/stripe_payments\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"ab81580e072e27ee232ce500dda90f59559b87b6290daa7b3510d9c304cfb717\"}}}", - "headers" : { - "x-request-id" : "ceb77fc7-4e6b-422c-9389-a68c72167ac4", - "x-kong-upstream-latency" : "18", - "X-Ratelimit-Remaining" : "82", - "x-kong-request-id" : "7f5335433acfac674e13ed162512ed03", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:34 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"6136e33d006dbac4827ce4fb7d1f1518\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "93a5764d-0689-4fda-a31a-366e5a265190", - "persistent" : true, - "scenarioName" : "scenario-3-stripe_gateways-MjRMbsWXYv", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-3-stripe_gateways-MjRMbsWXYv-2", - "insertionIndex" : 21 -} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json b/mock/mappings/taxjar_accounts_kyzeltzedq-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json deleted file mode 100644 index 91a1ac9..0000000 --- a/mock/mappings/taxjar_accounts_kyzeltzedq-bfa68a82-b92b-42c6-9880-e8de8af1aa35.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "bfa68a82-b92b-42c6-9880-e8de8af1aa35", - "name" : "taxjar_accounts_kyzeltzedq", - "request" : { - "url" : "/taxjar_accounts/kyzeLTzEdq", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account Changed\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.948Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"0f08ca0f914de79d4a23e3eb7fd7006d95c0a45737f350d2ad1d1584e750eb05\"}}}", - "headers" : { - "x-request-id" : "975c9e4b-3317-486f-b590-905bbc49ffa1", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "76", - "x-kong-request-id" : "c851150734486e669677197c5f1ca66f", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:37 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"6e508f4b807406c14e8599bce862884a\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "bfa68a82-b92b-42c6-9880-e8de8af1aa35", - "persistent" : true, - "scenarioName" : "scenario-2-taxjar_accounts-kyzeLTzEdq", - "requiredScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-3", - "newScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-4", - "insertionIndex" : 11 -} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-d0c22512-542d-437b-a696-a96780a082d5.json b/mock/mappings/taxjar_accounts_kyzeltzedq-d0c22512-542d-437b-a696-a96780a082d5.json deleted file mode 100644 index df3dc3b..0000000 --- a/mock/mappings/taxjar_accounts_kyzeltzedq-d0c22512-542d-437b-a696-a96780a082d5.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "d0c22512-542d-437b-a696-a96780a082d5", - "name" : "taxjar_accounts_kyzeltzedq", - "request" : { - "url" : "/taxjar_accounts/kyzeLTzEdq", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.032Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"1cb5c80ee3faebe48f807e1ad4416d8055a6833f9a64f5d6fdfd57abb7d46aa1\"}}}", - "headers" : { - "x-request-id" : "5bcab9b1-1152-4ed8-8b65-2cca8d290df4", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "77", - "x-kong-request-id" : "82c5642079dfe90be393c9564dd82401", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:36 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"5c40339d20072073f831586c0034fa7a\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "d0c22512-542d-437b-a696-a96780a082d5", - "persistent" : true, - "scenarioName" : "scenario-2-taxjar_accounts-kyzeLTzEdq", - "requiredScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-2", - "newScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-3", - "insertionIndex" : 13 -} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json b/mock/mappings/taxjar_accounts_kyzeltzedq-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json deleted file mode 100644 index d3a3a8b..0000000 --- a/mock/mappings/taxjar_accounts_kyzeltzedq-eaaa5509-f22d-41e5-b08e-c497d8f4d375.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "id" : "eaaa5509-f22d-41e5-b08e-c497d8f4d375", - "name" : "taxjar_accounts_kyzeltzedq", - "request" : { - "url" : "/taxjar_accounts/kyzeLTzEdq", - "method" : "DELETE" - }, - "response" : { - "status" : 204, - "headers" : { - "x-request-id" : "f0559dfb-bab8-41f0-b462-0c9fda1e2dc9", - "x-kong-upstream-latency" : "30", - "X-Ratelimit-Remaining" : "91", - "x-kong-request-id" : "c8010a4980d58b152cbbd9128e74c05f", - "x-permitted-cross-domain-policies" : "none", - "x-download-options" : "noopen", - "x-kong-proxy-latency" : "0", - "Date" : "Thu, 24 Oct 2024 15:53:37 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Origin", - "accept-ranges" : "bytes", - "cache-control" : "no-cache" - } - }, - "uuid" : "eaaa5509-f22d-41e5-b08e-c497d8f4d375", - "persistent" : true, - "insertionIndex" : 10 -} \ No newline at end of file diff --git a/mock/mappings/taxjar_accounts_kyzeltzedq-f38da734-a436-4c58-b40a-e969eec120f9.json b/mock/mappings/taxjar_accounts_kyzeltzedq-f38da734-a436-4c58-b40a-e969eec120f9.json deleted file mode 100644 index 3a60daa..0000000 --- a/mock/mappings/taxjar_accounts_kyzeltzedq-f38da734-a436-4c58-b40a-e969eec120f9.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "f38da734-a436-4c58-b40a-e969eec120f9", - "name" : "taxjar_accounts_kyzeltzedq", - "request" : { - "url" : "/taxjar_accounts/kyzeLTzEdq", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"kyzeLTzEdq\",\"type\":\"taxjar_accounts\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq\"},\"attributes\":{\"name\":\"Incentro Taxjar Account\",\"type\":\"taxjar_accounts\",\"created_at\":\"2024-10-24T15:53:36.032Z\",\"updated_at\":\"2024-10-24T15:53:36.032Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_taxjar_accounts.incentro_taxjar_account\"}},\"relationships\":{\"markets\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/markets\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/markets\"}},\"attachments\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/attachments\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/attachments\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/versions\"}},\"tax_categories\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/relationships/tax_categories\",\"related\":\"https://loucs.commercelayer.io/api/taxjar_accounts/kyzeLTzEdq/tax_categories\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"36bdbcfdcdb4bb6970065e44412c81d5a15f34e7924864e3c592a00cf7297c52\"}}}", - "headers" : { - "x-request-id" : "4c4b3998-6f17-4d2a-b987-0b850ab627d7", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "78", - "x-kong-request-id" : "d6ced37e26d7295f3f1b421279e5984e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:36 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"536450bc5a35df030a02779953fdaea6\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "f38da734-a436-4c58-b40a-e969eec120f9", - "persistent" : true, - "scenarioName" : "scenario-2-taxjar_accounts-kyzeLTzEdq", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-2-taxjar_accounts-kyzeLTzEdq-2", - "insertionIndex" : 14 -} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-15b09980-bc6c-4b56-bfe6-a0a38418c001.json b/mock/mappings/webhooks_epqzocjdyk-15b09980-bc6c-4b56-bfe6-a0a38418c001.json deleted file mode 100644 index c5317b0..0000000 --- a/mock/mappings/webhooks_epqzocjdyk-15b09980-bc6c-4b56-bfe6-a0a38418c001.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "15b09980-bc6c-4b56-bfe6-a0a38418c001", - "name" : "webhooks_epqzocjdyk", - "request" : { - "url" : "/webhooks/ePqzoCJDYK", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:38.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"75b87bed0c247fd56e235c0e3ff24193d2ad6d8d6452b9e5f01202dfaf583885\"}}}", - "headers" : { - "x-request-id" : "fa122a49-a66b-4fc6-88fd-f922a5ab5a9a", - "x-kong-upstream-latency" : "13", - "X-Ratelimit-Remaining" : "73", - "x-kong-request-id" : "5eeb7b764d1fbe09944bee3a1fd2ad11", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "1", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:38 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"dbb004d9669d61312ca9b7938fbc164c\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "15b09980-bc6c-4b56-bfe6-a0a38418c001", - "persistent" : true, - "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", - "requiredScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-2", - "newScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-3", - "insertionIndex" : 6 -} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json b/mock/mappings/webhooks_epqzocjdyk-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json deleted file mode 100644 index 77a1b54..0000000 --- a/mock/mappings/webhooks_epqzocjdyk-8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661", - "name" : "webhooks_epqzocjdyk", - "request" : { - "url" : "/webhooks/ePqzoCJDYK", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro updated webhook\",\"topic\":\"orders.place\",\"callback_url\":\"http://other-example.url\",\"include_resources\":[\"line_items\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:39.186Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"bar\":\"foo\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"a77d3991ca64e1cbdef480a23b3362f0648d71d068e210de57470ccab41ec13e\"}}}", - "headers" : { - "x-request-id" : "785557bb-3bfc-4656-8494-742e745fbb04", - "x-kong-upstream-latency" : "14", - "X-Ratelimit-Remaining" : "71", - "x-kong-request-id" : "bad98b6212dee2367a5b58000d567250", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:39 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"f4a35befbf94d43e1bd1ba48577c0f09\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "8f2ce0b5-9037-4ae9-b4fc-83fcf0a12661", - "persistent" : true, - "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", - "requiredScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-4", - "newScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-5", - "insertionIndex" : 3 -} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json b/mock/mappings/webhooks_epqzocjdyk-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json deleted file mode 100644 index 53afb56..0000000 --- a/mock/mappings/webhooks_epqzocjdyk-a9a093fa-457a-4d5a-9932-d9cf3d28421f.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "a9a093fa-457a-4d5a-9932-d9cf3d28421f", - "name" : "webhooks_epqzocjdyk", - "request" : { - "url" : "/webhooks/ePqzoCJDYK", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:38.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"641b9179f5fc298d1cbad9948945d3c3d269aa1bf3bbb452220d033d7945c780\"}}}", - "headers" : { - "x-request-id" : "6a5fabfd-97e0-4967-93a7-62520af77d1a", - "x-kong-upstream-latency" : "21", - "X-Ratelimit-Remaining" : "74", - "x-kong-request-id" : "0e49e001ff6c8450f2b41838298f9477", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:38 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"f3ddc945ca53f7d647f47f1cb41a1c4c\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "a9a093fa-457a-4d5a-9932-d9cf3d28421f", - "persistent" : true, - "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", - "requiredScenarioState" : "Started", - "newScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-2", - "insertionIndex" : 7 -} \ No newline at end of file diff --git a/mock/mappings/webhooks_epqzocjdyk-b1926da9-ec00-4bb2-95e7-01c07b532a99.json b/mock/mappings/webhooks_epqzocjdyk-b1926da9-ec00-4bb2-95e7-01c07b532a99.json deleted file mode 100644 index 29b4c22..0000000 --- a/mock/mappings/webhooks_epqzocjdyk-b1926da9-ec00-4bb2-95e7-01c07b532a99.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "id" : "b1926da9-ec00-4bb2-95e7-01c07b532a99", - "name" : "webhooks_epqzocjdyk", - "request" : { - "url" : "/webhooks/ePqzoCJDYK", - "method" : "GET" - }, - "response" : { - "status" : 200, - "body" : "{\"data\":{\"id\":\"ePqzoCJDYK\",\"type\":\"webhooks\",\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK\"},\"attributes\":{\"name\":\"incentro webhook\",\"topic\":\"orders.create\",\"callback_url\":\"http://example.url\",\"include_resources\":[\"customer\"],\"disabled_at\":null,\"circuit_state\":\"closed\",\"circuit_failure_count\":0,\"shared_secret\":\"4ada7d059b8ea23e93ead729b5c09d82\",\"created_at\":\"2024-10-24T15:53:38.076Z\",\"updated_at\":\"2024-10-24T15:53:38.076Z\",\"reference\":null,\"reference_origin\":null,\"metadata\":{\"foo\":\"bar\",\"testName\":\"commercelayer_webhook.incentro_webhook\"}},\"relationships\":{\"last_event_callbacks\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/last_event_callbacks\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/last_event_callbacks\"}},\"versions\":{\"links\":{\"self\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/relationships/versions\",\"related\":\"https://loucs.commercelayer.io/api/webhooks/ePqzoCJDYK/versions\"}}},\"meta\":{\"mode\":\"test\",\"organization_id\":\"WnZPoFZEKy\",\"trace_id\":\"616c9632c62fe7af699dde2ac87d80f430861c9a09f76aae5587f3c18435b1fa\"}}}", - "headers" : { - "x-request-id" : "f57cd768-498a-4ab0-8d95-7c57f798a6bd", - "x-kong-upstream-latency" : "15", - "X-Ratelimit-Remaining" : "72", - "x-kong-request-id" : "1e439d2ecb80ac38379efe6f969d327e", - "x-permitted-cross-domain-policies" : "none", - "x-kong-proxy-latency" : "0", - "x-download-options" : "noopen", - "Date" : "Thu, 24 Oct 2024 15:53:38 GMT", - "X-Ratelimit-Limit" : "100", - "X-Ratelimit-Interval" : "60", - "x-xss-protection" : "1; mode=block", - "x-content-type-options" : "nosniff", - "referrer-policy" : "strict-origin-when-cross-origin", - "Vary" : "Accept, Accept-Encoding, Origin", - "etag" : "W/\"481299decdaa2bbfabc498c678447ff1\"", - "content-type" : "application/vnd.api+json", - "accept-ranges" : "bytes", - "cache-control" : "max-age=0, private, must-revalidate" - } - }, - "uuid" : "b1926da9-ec00-4bb2-95e7-01c07b532a99", - "persistent" : true, - "scenarioName" : "scenario-1-webhooks-ePqzoCJDYK", - "requiredScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-3", - "newScenarioState" : "scenario-1-webhooks-ePqzoCJDYK-4", - "insertionIndex" : 5 -} \ No newline at end of file