@flowio/types 11.24.50 → 11.24.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5055,7 +5055,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
5055
5055
  type ShopifyOrderValueType = 'string' | 'integer';
5056
5056
  type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
5057
5057
  type ShopifyWebhookFormat = 'json' | 'xml';
5058
- type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update';
5058
+ type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update';
5059
5059
  }
5060
5060
  declare namespace io.flow.shopify.markets.v0.models {
5061
5061
  interface FulfillmentOrderInternationalDuties {
package/dist/api.d.ts CHANGED
@@ -5431,6 +5431,7 @@ declare namespace io.flow.v0.models {
5431
5431
  }
5432
5432
  interface LabelTrackingSummaryUpdate {
5433
5433
  readonly timestamp: string;
5434
+ readonly created_at?: string;
5434
5435
  }
5435
5436
  interface LabelUpserted {
5436
5437
  readonly discriminator: 'label_upserted';
@@ -8913,6 +8914,7 @@ declare namespace io.flow.v0.models {
8913
8914
  readonly order_identifier?: string;
8914
8915
  readonly fulfillment_key?: string;
8915
8916
  readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
8917
+ readonly updated_at: string;
8916
8918
  }
8917
8919
  interface ShippingNotificationVersion {
8918
8920
  readonly id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/types",
3
- "version": "11.24.50",
3
+ "version": "11.24.52",
4
4
  "description": "TypeScript type definitions for custom types found in Flow API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,5 +25,5 @@
25
25
  "maintainers": [
26
26
  "Christian Muñoz <christian.munoz@flow.io>"
27
27
  ],
28
- "gitHead": "67c63b1d0d73f3943c90b2a53df3408e2c92ab71"
28
+ "gitHead": "4583d2c8da865de78e80c9d74e1d244aeb40f57c"
29
29
  }
@@ -6899,6 +6899,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
6899
6899
  | 'locations/create'
6900
6900
  | 'locations/update'
6901
6901
  | 'locations/delete'
6902
+ | 'order_transactions/create'
6902
6903
  | 'orders/cancelled'
6903
6904
  | 'orders/create'
6904
6905
  | 'orders/fulfilled'
package/src/api.ts CHANGED
@@ -7243,6 +7243,7 @@ declare namespace io.flow.v0.models {
7243
7243
 
7244
7244
  interface LabelTrackingSummaryUpdate {
7245
7245
  readonly timestamp: string;
7246
+ readonly created_at?: string;
7246
7247
  }
7247
7248
 
7248
7249
  interface LabelUpserted {
@@ -11303,6 +11304,7 @@ declare namespace io.flow.v0.models {
11303
11304
  readonly order_identifier?: string;
11304
11305
  readonly fulfillment_key?: string;
11305
11306
  readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
11307
+ readonly updated_at: string;
11306
11308
  }
11307
11309
 
11308
11310
  interface ShippingNotificationVersion {