karrio-server 2026.1.1__py3-none-any.whl → 2026.1.3__py3-none-any.whl
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.
- karrio/server/VERSION +1 -1
- karrio/server/static/karrio/js/karrio.js +20 -4
- karrio/server/static/karrio/js/karrio.js.map +1 -1
- {karrio_server-2026.1.1.dist-info → karrio_server-2026.1.3.dist-info}/METADATA +1 -1
- {karrio_server-2026.1.1.dist-info → karrio_server-2026.1.3.dist-info}/RECORD +8 -8
- {karrio_server-2026.1.1.dist-info → karrio_server-2026.1.3.dist-info}/WHEEL +1 -1
- {karrio_server-2026.1.1.dist-info → karrio_server-2026.1.3.dist-info}/entry_points.txt +0 -0
- {karrio_server-2026.1.1.dist-info → karrio_server-2026.1.3.dist-info}/top_level.txt +0 -0
karrio/server/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2026.1.
|
|
1
|
+
2026.1.3
|
|
@@ -601,6 +601,7 @@ var Karrio = (function () {
|
|
|
601
601
|
'address_line1': json['address_line1'] == null ? undefined : json['address_line1'],
|
|
602
602
|
'address_line2': json['address_line2'] == null ? undefined : json['address_line2'],
|
|
603
603
|
'validate_location': json['validate_location'] == null ? undefined : json['validate_location'],
|
|
604
|
+
'meta': json['meta'] == null ? undefined : json['meta'],
|
|
604
605
|
'object_type': json['object_type'] == null ? undefined : json['object_type'],
|
|
605
606
|
'validation': json['validation'] == null ? undefined : AddressValidationFromJSON(json['validation']),
|
|
606
607
|
};
|
|
@@ -629,6 +630,7 @@ var Karrio = (function () {
|
|
|
629
630
|
'address_line1': value['address_line1'],
|
|
630
631
|
'address_line2': value['address_line2'],
|
|
631
632
|
'validate_location': value['validate_location'],
|
|
633
|
+
'meta': value['meta'],
|
|
632
634
|
'object_type': value['object_type'],
|
|
633
635
|
'validation': AddressValidationToJSON(value['validation']),
|
|
634
636
|
};
|
|
@@ -658,6 +660,7 @@ var Karrio = (function () {
|
|
|
658
660
|
return json;
|
|
659
661
|
}
|
|
660
662
|
return {
|
|
663
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
661
664
|
'postal_code': json['postal_code'] == null ? undefined : json['postal_code'],
|
|
662
665
|
'city': json['city'] == null ? undefined : json['city'],
|
|
663
666
|
'federal_tax_id': json['federal_tax_id'] == null ? undefined : json['federal_tax_id'],
|
|
@@ -673,6 +676,7 @@ var Karrio = (function () {
|
|
|
673
676
|
'address_line1': json['address_line1'] == null ? undefined : json['address_line1'],
|
|
674
677
|
'address_line2': json['address_line2'] == null ? undefined : json['address_line2'],
|
|
675
678
|
'validate_location': json['validate_location'] == null ? undefined : json['validate_location'],
|
|
679
|
+
'meta': json['meta'] == null ? undefined : json['meta'],
|
|
676
680
|
};
|
|
677
681
|
}
|
|
678
682
|
function AddressDataToJSON(json) {
|
|
@@ -683,6 +687,7 @@ var Karrio = (function () {
|
|
|
683
687
|
return value;
|
|
684
688
|
}
|
|
685
689
|
return {
|
|
690
|
+
'id': value['id'],
|
|
686
691
|
'postal_code': value['postal_code'],
|
|
687
692
|
'city': value['city'],
|
|
688
693
|
'federal_tax_id': value['federal_tax_id'],
|
|
@@ -698,6 +703,7 @@ var Karrio = (function () {
|
|
|
698
703
|
'address_line1': value['address_line1'],
|
|
699
704
|
'address_line2': value['address_line2'],
|
|
700
705
|
'validate_location': value['validate_location'],
|
|
706
|
+
'meta': value['meta'],
|
|
701
707
|
};
|
|
702
708
|
}
|
|
703
709
|
|
|
@@ -1023,6 +1029,7 @@ var Karrio = (function () {
|
|
|
1023
1029
|
'variant_id': value['variant_id'],
|
|
1024
1030
|
'parent_id': value['parent_id'],
|
|
1025
1031
|
'metadata': value['metadata'],
|
|
1032
|
+
'meta': value['meta'],
|
|
1026
1033
|
};
|
|
1027
1034
|
}
|
|
1028
1035
|
|
|
@@ -1244,6 +1251,7 @@ var Karrio = (function () {
|
|
|
1244
1251
|
'reference_number': value['reference_number'],
|
|
1245
1252
|
'freight_class': value['freight_class'],
|
|
1246
1253
|
'options': value['options'],
|
|
1254
|
+
'meta': value['meta'],
|
|
1247
1255
|
};
|
|
1248
1256
|
}
|
|
1249
1257
|
|
|
@@ -2451,6 +2459,7 @@ var Karrio = (function () {
|
|
|
2451
2459
|
'variant_id': json['variant_id'] == null ? undefined : json['variant_id'],
|
|
2452
2460
|
'parent_id': json['parent_id'] == null ? undefined : json['parent_id'],
|
|
2453
2461
|
'metadata': json['metadata'] == null ? undefined : json['metadata'],
|
|
2462
|
+
'meta': json['meta'] == null ? undefined : json['meta'],
|
|
2454
2463
|
'object_type': json['object_type'] == null ? undefined : json['object_type'],
|
|
2455
2464
|
};
|
|
2456
2465
|
}
|
|
@@ -2479,6 +2488,7 @@ var Karrio = (function () {
|
|
|
2479
2488
|
'variant_id': value['variant_id'],
|
|
2480
2489
|
'parent_id': value['parent_id'],
|
|
2481
2490
|
'metadata': value['metadata'],
|
|
2491
|
+
'meta': value['meta'],
|
|
2482
2492
|
'object_type': value['object_type'],
|
|
2483
2493
|
};
|
|
2484
2494
|
}
|
|
@@ -2964,6 +2974,7 @@ var Karrio = (function () {
|
|
|
2964
2974
|
'variant_id': json['variant_id'] == null ? undefined : json['variant_id'],
|
|
2965
2975
|
'parent_id': json['parent_id'] == null ? undefined : json['parent_id'],
|
|
2966
2976
|
'metadata': json['metadata'] == null ? undefined : json['metadata'],
|
|
2977
|
+
'meta': json['meta'] == null ? undefined : json['meta'],
|
|
2967
2978
|
'object_type': json['object_type'] == null ? undefined : json['object_type'],
|
|
2968
2979
|
'unfulfilled_quantity': json['unfulfilled_quantity'] == null ? undefined : json['unfulfilled_quantity'],
|
|
2969
2980
|
};
|
|
@@ -3332,6 +3343,7 @@ var Karrio = (function () {
|
|
|
3332
3343
|
'reference_number': json['reference_number'] == null ? undefined : json['reference_number'],
|
|
3333
3344
|
'freight_class': json['freight_class'] == null ? undefined : json['freight_class'],
|
|
3334
3345
|
'options': json['options'] == null ? undefined : json['options'],
|
|
3346
|
+
'meta': json['meta'] == null ? undefined : json['meta'],
|
|
3335
3347
|
'object_type': json['object_type'] == null ? undefined : json['object_type'],
|
|
3336
3348
|
};
|
|
3337
3349
|
}
|
|
@@ -3359,6 +3371,7 @@ var Karrio = (function () {
|
|
|
3359
3371
|
'reference_number': value['reference_number'],
|
|
3360
3372
|
'freight_class': value['freight_class'],
|
|
3361
3373
|
'options': value['options'],
|
|
3374
|
+
'meta': value['meta'],
|
|
3362
3375
|
'object_type': value['object_type'],
|
|
3363
3376
|
};
|
|
3364
3377
|
}
|
|
@@ -3447,8 +3460,8 @@ var Karrio = (function () {
|
|
|
3447
3460
|
'tracking_url': json['tracking_url'] == null ? undefined : json['tracking_url'],
|
|
3448
3461
|
'shipper': AddressFromJSON(json['shipper']),
|
|
3449
3462
|
'recipient': AddressFromJSON(json['recipient']),
|
|
3450
|
-
'return_address': json['return_address'] == null ? undefined :
|
|
3451
|
-
'billing_address': json['billing_address'] == null ? undefined :
|
|
3463
|
+
'return_address': json['return_address'] == null ? undefined : AddressFromJSON(json['return_address']),
|
|
3464
|
+
'billing_address': json['billing_address'] == null ? undefined : AddressFromJSON(json['billing_address']),
|
|
3452
3465
|
'parcels': (json['parcels'].map(ParcelFromJSON)),
|
|
3453
3466
|
'services': json['services'] == null ? undefined : json['services'],
|
|
3454
3467
|
'options': json['options'] == null ? undefined : json['options'],
|
|
@@ -3627,6 +3640,7 @@ var Karrio = (function () {
|
|
|
3627
3640
|
return value;
|
|
3628
3641
|
}
|
|
3629
3642
|
return {
|
|
3643
|
+
'id': value['id'],
|
|
3630
3644
|
'postal_code': value['postal_code'],
|
|
3631
3645
|
'city': value['city'],
|
|
3632
3646
|
'federal_tax_id': value['federal_tax_id'],
|
|
@@ -3642,6 +3656,7 @@ var Karrio = (function () {
|
|
|
3642
3656
|
'address_line1': value['address_line1'],
|
|
3643
3657
|
'address_line2': value['address_line2'],
|
|
3644
3658
|
'validate_location': value['validate_location'],
|
|
3659
|
+
'meta': value['meta'],
|
|
3645
3660
|
};
|
|
3646
3661
|
}
|
|
3647
3662
|
|
|
@@ -3747,6 +3762,7 @@ var Karrio = (function () {
|
|
|
3747
3762
|
'reference_number': value['reference_number'],
|
|
3748
3763
|
'freight_class': value['freight_class'],
|
|
3749
3764
|
'options': value['options'],
|
|
3765
|
+
'meta': value['meta'],
|
|
3750
3766
|
};
|
|
3751
3767
|
}
|
|
3752
3768
|
|
|
@@ -4343,8 +4359,8 @@ var Karrio = (function () {
|
|
|
4343
4359
|
'tracking_url': json['tracking_url'] == null ? undefined : json['tracking_url'],
|
|
4344
4360
|
'shipper': AddressFromJSON(json['shipper']),
|
|
4345
4361
|
'recipient': AddressFromJSON(json['recipient']),
|
|
4346
|
-
'return_address': json['return_address'] == null ? undefined :
|
|
4347
|
-
'billing_address': json['billing_address'] == null ? undefined :
|
|
4362
|
+
'return_address': json['return_address'] == null ? undefined : AddressFromJSON(json['return_address']),
|
|
4363
|
+
'billing_address': json['billing_address'] == null ? undefined : AddressFromJSON(json['billing_address']),
|
|
4348
4364
|
'parcels': (json['parcels'].map(ParcelFromJSON)),
|
|
4349
4365
|
'services': json['services'] == null ? undefined : json['services'],
|
|
4350
4366
|
'options': json['options'] == null ? undefined : json['options'],
|