@flowio/api-factories 0.0.47 → 0.0.48
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/cjs/api.js +2 -0
- package/dist/esm/api.js +2 -0
- package/package.json +2 -2
- package/src/api.ts +2 -0
package/dist/cjs/api.js
CHANGED
|
@@ -6419,6 +6419,7 @@ var factories = {
|
|
|
6419
6419
|
}); },
|
|
6420
6420
|
'io.flow.v0.models.label_tracking_summary_update': function () { return ({
|
|
6421
6421
|
timestamp: factories.date_time_iso_8601(),
|
|
6422
|
+
created_at: factories.date_time_iso_8601(),
|
|
6422
6423
|
}); },
|
|
6423
6424
|
'io.flow.v0.models.label_upserted': function () { return ({
|
|
6424
6425
|
discriminator: 'label_upserted',
|
|
@@ -9901,6 +9902,7 @@ var factories = {
|
|
|
9901
9902
|
order_identifier: factories.string(),
|
|
9902
9903
|
fulfillment_key: factories.string(),
|
|
9903
9904
|
shipment_recipient: factories['io.flow.v0.enums.shipment_recipient'](),
|
|
9905
|
+
updated_at: factories.date_time_iso_8601(),
|
|
9904
9906
|
}); },
|
|
9905
9907
|
'io.flow.v0.models.shipping_notification_version': function () { return ({
|
|
9906
9908
|
id: factories.string(),
|
package/dist/esm/api.js
CHANGED
|
@@ -6381,6 +6381,7 @@ var factories = {
|
|
|
6381
6381
|
}); },
|
|
6382
6382
|
'io.flow.v0.models.label_tracking_summary_update': function () { return ({
|
|
6383
6383
|
timestamp: factories.date_time_iso_8601(),
|
|
6384
|
+
created_at: factories.date_time_iso_8601(),
|
|
6384
6385
|
}); },
|
|
6385
6386
|
'io.flow.v0.models.label_upserted': function () { return ({
|
|
6386
6387
|
discriminator: 'label_upserted',
|
|
@@ -9863,6 +9864,7 @@ var factories = {
|
|
|
9863
9864
|
order_identifier: factories.string(),
|
|
9864
9865
|
fulfillment_key: factories.string(),
|
|
9865
9866
|
shipment_recipient: factories['io.flow.v0.enums.shipment_recipient'](),
|
|
9867
|
+
updated_at: factories.date_time_iso_8601(),
|
|
9866
9868
|
}); },
|
|
9867
9869
|
'io.flow.v0.models.shipping_notification_version': function () { return ({
|
|
9868
9870
|
id: factories.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.48",
|
|
4
4
|
"description": "Flow API mock data factories",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"@faker-js/faker": "^6.2.0",
|
|
37
37
|
"@flowio/api-types": "*"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "63fffa9137d71ba4d2ba733b317fa1ddb1906352"
|
|
40
40
|
}
|
package/src/api.ts
CHANGED
|
@@ -7345,6 +7345,7 @@ const factories = {
|
|
|
7345
7345
|
|
|
7346
7346
|
'io.flow.v0.models.label_tracking_summary_update': (): io.flow.v0.models.LabelTrackingSummaryUpdate => ({
|
|
7347
7347
|
timestamp: factories.date_time_iso_8601(),
|
|
7348
|
+
created_at: factories.date_time_iso_8601(),
|
|
7348
7349
|
}),
|
|
7349
7350
|
|
|
7350
7351
|
'io.flow.v0.models.label_upserted': (): io.flow.v0.models.LabelUpserted => ({
|
|
@@ -11400,6 +11401,7 @@ const factories = {
|
|
|
11400
11401
|
order_identifier: factories.string(),
|
|
11401
11402
|
fulfillment_key: factories.string(),
|
|
11402
11403
|
shipment_recipient: factories['io.flow.v0.enums.shipment_recipient'](),
|
|
11404
|
+
updated_at: factories.date_time_iso_8601(),
|
|
11403
11405
|
}),
|
|
11404
11406
|
|
|
11405
11407
|
'io.flow.v0.models.shipping_notification_version': (): io.flow.v0.models.ShippingNotificationVersion => ({
|