@flowio/types 11.24.50 → 11.24.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.d.ts +2 -0
- package/package.json +2 -2
- package/src/api.ts +2 -0
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.
|
|
3
|
+
"version": "11.24.51",
|
|
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": "
|
|
28
|
+
"gitHead": "63fffa9137d71ba4d2ba733b317fa1ddb1906352"
|
|
29
29
|
}
|
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 {
|