karrio-server-pricing 2025.5rc1__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.
Files changed (77) hide show
  1. karrio/server/pricing/__init__.py +1 -0
  2. karrio/server/pricing/admin.py +55 -0
  3. karrio/server/pricing/apps.py +12 -0
  4. karrio/server/pricing/migrations/0001_initial.py +974 -0
  5. karrio/server/pricing/migrations/0002_auto_20201127_0721.py +855 -0
  6. karrio/server/pricing/migrations/0003_auto_20201230_0820.py +939 -0
  7. karrio/server/pricing/migrations/0004_auto_20201231_1402.py +940 -0
  8. karrio/server/pricing/migrations/0005_auto_20210204_1725.py +923 -0
  9. karrio/server/pricing/migrations/0006_auto_20210217_1109.py +1224 -0
  10. karrio/server/pricing/migrations/0007_auto_20210218_1202.py +955 -0
  11. karrio/server/pricing/migrations/0008_auto_20210418_0504.py +1010 -0
  12. karrio/server/pricing/migrations/0009_auto_20210603_2149.py +1043 -0
  13. karrio/server/pricing/migrations/0010_auto_20210612_1608.py +1070 -0
  14. karrio/server/pricing/migrations/0011_auto_20210615_1601.py +1109 -0
  15. karrio/server/pricing/migrations/0012_surcharge_carrier_accounts.py +23 -0
  16. karrio/server/pricing/migrations/0013_alter_surcharge_services.py +1086 -0
  17. karrio/server/pricing/migrations/0014_auto_20211013_1520.py +12 -0
  18. karrio/server/pricing/migrations/0015_auto_20211204_1350.py +1124 -0
  19. karrio/server/pricing/migrations/0016_auto_20211220_1500.py +1126 -0
  20. karrio/server/pricing/migrations/0017_alter_surcharge_services.py +1093 -0
  21. karrio/server/pricing/migrations/0018_alter_surcharge_services.py +1100 -0
  22. karrio/server/pricing/migrations/0019_alter_surcharge_services.py +1093 -0
  23. karrio/server/pricing/migrations/0020_auto_20220412_1215.py +3175 -0
  24. karrio/server/pricing/migrations/0021_auto_20220413_0959.py +3179 -0
  25. karrio/server/pricing/migrations/0022_alter_surcharge_services.py +3144 -0
  26. karrio/server/pricing/migrations/0023_auto_20220504_1335.py +3175 -0
  27. karrio/server/pricing/migrations/0024_auto_20220808_0803.py +3180 -0
  28. karrio/server/pricing/migrations/0025_alter_surcharge_carriers.py +51 -0
  29. karrio/server/pricing/migrations/0026_auto_20220828_0158.py +3199 -0
  30. karrio/server/pricing/migrations/0027_alter_surcharge_services.py +3170 -0
  31. karrio/server/pricing/migrations/0028_surcharge_markup_carriers_surcharge_markup_services.py +3016 -0
  32. karrio/server/pricing/migrations/0029_alter_surcharge_services.py +2939 -0
  33. karrio/server/pricing/migrations/0030_alter_surcharge_services.py +2940 -0
  34. karrio/server/pricing/migrations/0031_alter_surcharge_carriers.py +52 -0
  35. karrio/server/pricing/migrations/0032_alter_surcharge_services.py +2963 -0
  36. karrio/server/pricing/migrations/0033_alter_surcharge_services.py +2964 -0
  37. karrio/server/pricing/migrations/0034_alter_surcharge_carriers_alter_surcharge_services.py +3009 -0
  38. karrio/server/pricing/migrations/0035_alter_surcharge_carriers.py +56 -0
  39. karrio/server/pricing/migrations/0036_alter_surcharge_carriers_alter_surcharge_services.py +3022 -0
  40. karrio/server/pricing/migrations/0037_alter_surcharge_carriers_alter_surcharge_services.py +3078 -0
  41. karrio/server/pricing/migrations/0038_alter_surcharge_carriers_alter_surcharge_services.py +3093 -0
  42. karrio/server/pricing/migrations/0039_alter_surcharge_carriers_alter_surcharge_services.py +3095 -0
  43. karrio/server/pricing/migrations/0040_alter_surcharge_services.py +3058 -0
  44. karrio/server/pricing/migrations/0041_alter_surcharge_services.py +3061 -0
  45. karrio/server/pricing/migrations/0042_alter_surcharge_carriers_alter_surcharge_services.py +3128 -0
  46. karrio/server/pricing/migrations/0043_alter_surcharge_services.py +3090 -0
  47. karrio/server/pricing/migrations/0044_alter_surcharge_carriers.py +62 -0
  48. karrio/server/pricing/migrations/0045_alter_surcharge_carriers.py +63 -0
  49. karrio/server/pricing/migrations/0046_alter_surcharge_services.py +3100 -0
  50. karrio/server/pricing/migrations/0047_alter_surcharge_services.py +3171 -0
  51. karrio/server/pricing/migrations/0048_alter_surcharge_services.py +3195 -0
  52. karrio/server/pricing/migrations/0049_alter_surcharge_carriers_alter_surcharge_services.py +3246 -0
  53. karrio/server/pricing/migrations/0050_alter_surcharge_carriers.py +64 -0
  54. karrio/server/pricing/migrations/0051_alter_surcharge_carriers_alter_surcharge_services.py +2956 -0
  55. karrio/server/pricing/migrations/0052_alter_surcharge_carriers_alter_surcharge_services.py +3547 -0
  56. karrio/server/pricing/migrations/0053_alter_surcharge_carriers_alter_surcharge_services.py +3561 -0
  57. karrio/server/pricing/migrations/0054_alter_surcharge_services.py +3409 -0
  58. karrio/server/pricing/migrations/0055_alter_surcharge_services.py +3455 -0
  59. karrio/server/pricing/migrations/0056_alter_surcharge_carriers_alter_surcharge_services.py +3609 -0
  60. karrio/server/pricing/migrations/0057_alter_surcharge_carriers_alter_surcharge_services.py +4384 -0
  61. karrio/server/pricing/migrations/0058_alter_surcharge_services.py +4321 -0
  62. karrio/server/pricing/migrations/0059_alter_surcharge_carriers_alter_surcharge_services.py +4892 -0
  63. karrio/server/pricing/migrations/0060_alter_surcharge_services.py +4894 -0
  64. karrio/server/pricing/migrations/0061_alter_surcharge_services.py +4888 -0
  65. karrio/server/pricing/migrations/0062_alter_surcharge_carriers_alter_surcharge_services.py +4704 -0
  66. karrio/server/pricing/migrations/0063_alter_surcharge_carriers_alter_surcharge_services.py +34 -0
  67. karrio/server/pricing/migrations/0064_alter_surcharge_carriers_alter_surcharge_services.py +4669 -0
  68. karrio/server/pricing/migrations/__init__.py +0 -0
  69. karrio/server/pricing/models.py +143 -0
  70. karrio/server/pricing/serializers.py +18 -0
  71. karrio/server/pricing/signals.py +35 -0
  72. karrio/server/pricing/tests.py +301 -0
  73. karrio/server/pricing/views.py +3 -0
  74. karrio_server_pricing-2025.5rc1.dist-info/METADATA +27 -0
  75. karrio_server_pricing-2025.5rc1.dist-info/RECORD +77 -0
  76. karrio_server_pricing-2025.5rc1.dist-info/WHEEL +5 -0
  77. karrio_server_pricing-2025.5rc1.dist-info/top_level.txt +2 -0
@@ -0,0 +1,3455 @@
1
+ # Generated by Django 4.2.14 on 2024-07-29 17:48
2
+
3
+ from django.db import migrations
4
+ import karrio.server.core.fields
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("pricing", "0054_alter_surcharge_services"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="surcharge",
16
+ name="services",
17
+ field=karrio.server.core.fields.MultiChoiceField(
18
+ blank=True,
19
+ choices=[
20
+ ("allied_road_service", "allied_road_service"),
21
+ ("allied_parcel_service", "allied_parcel_service"),
22
+ (
23
+ "allied_standard_pallet_service",
24
+ "allied_standard_pallet_service",
25
+ ),
26
+ (
27
+ "allied_oversized_pallet_service",
28
+ "allied_oversized_pallet_service",
29
+ ),
30
+ ("allied_road_service", "allied_road_service"),
31
+ ("allied_parcel_service", "allied_parcel_service"),
32
+ (
33
+ "allied_standard_pallet_service",
34
+ "allied_standard_pallet_service",
35
+ ),
36
+ (
37
+ "allied_oversized_pallet_service",
38
+ "allied_oversized_pallet_service",
39
+ ),
40
+ ("allied_local_normal_service", "allied_local_normal_service"),
41
+ ("allied_local_vip_service", "allied_local_vip_service"),
42
+ (
43
+ "allied_local_executive_service",
44
+ "allied_local_executive_service",
45
+ ),
46
+ ("allied_local_gold_service", "allied_local_gold_service"),
47
+ ("amazon_shipping_ground", "amazon_shipping_ground"),
48
+ ("amazon_shipping_standard", "amazon_shipping_standard"),
49
+ ("amazon_shipping_premium", "amazon_shipping_premium"),
50
+ ("asendia_us_e_com_tracked_ddp", "asendia_us_e_com_tracked_ddp"),
51
+ ("asendia_us_fully_tracked", "asendia_us_fully_tracked"),
52
+ ("asendia_us_country_tracked", "asendia_us_country_tracked"),
53
+ ("australiapost_parcel_post", "australiapost_parcel_post"),
54
+ ("australiapost_express_post", "australiapost_express_post"),
55
+ (
56
+ "australiapost_parcel_post_signature",
57
+ "australiapost_parcel_post_signature",
58
+ ),
59
+ (
60
+ "australiapost_express_post_signature",
61
+ "australiapost_express_post_signature",
62
+ ),
63
+ (
64
+ "australiapost_intl_standard_pack_track",
65
+ "australiapost_intl_standard_pack_track",
66
+ ),
67
+ (
68
+ "australiapost_intl_standard_with_signature",
69
+ "australiapost_intl_standard_with_signature",
70
+ ),
71
+ (
72
+ "australiapost_intl_express_merch",
73
+ "australiapost_intl_express_merch",
74
+ ),
75
+ (
76
+ "australiapost_intl_express_docs",
77
+ "australiapost_intl_express_docs",
78
+ ),
79
+ (
80
+ "australiapost_eparcel_post_returns",
81
+ "australiapost_eparcel_post_returns",
82
+ ),
83
+ (
84
+ "australiapost_express_eparcel_post_returns",
85
+ "australiapost_express_eparcel_post_returns",
86
+ ),
87
+ ("boxknight_sameday", "boxknight_sameday"),
88
+ ("boxknight_nextday", "boxknight_nextday"),
89
+ ("boxknight_scheduled", "boxknight_scheduled"),
90
+ ("bpack_24h_pro", "bpack_24h_pro"),
91
+ ("bpack_24h_business", "bpack_24h_business"),
92
+ ("bpack_bus", "bpack_bus"),
93
+ ("bpack_pallet", "bpack_pallet"),
94
+ ("bpack_easy_retour", "bpack_easy_retour"),
95
+ ("bpack_xl", "bpack_xl"),
96
+ ("bpack_bpost", "bpack_bpost"),
97
+ ("bpack_24_7", "bpack_24_7"),
98
+ ("bpack_world_business", "bpack_world_business"),
99
+ ("bpack_world_express_pro", "bpack_world_express_pro"),
100
+ ("bpack_europe_business", "bpack_europe_business"),
101
+ ("bpack_world_easy_return", "bpack_world_easy_return"),
102
+ ("bpack_bpost_international", "bpack_bpost_international"),
103
+ ("bpack_24_7_international", "bpack_24_7_international"),
104
+ ("canadapost_regular_parcel", "canadapost_regular_parcel"),
105
+ ("canadapost_expedited_parcel", "canadapost_expedited_parcel"),
106
+ ("canadapost_xpresspost", "canadapost_xpresspost"),
107
+ (
108
+ "canadapost_xpresspost_certified",
109
+ "canadapost_xpresspost_certified",
110
+ ),
111
+ ("canadapost_priority", "canadapost_priority"),
112
+ ("canadapost_library_books", "canadapost_library_books"),
113
+ (
114
+ "canadapost_expedited_parcel_usa",
115
+ "canadapost_expedited_parcel_usa",
116
+ ),
117
+ (
118
+ "canadapost_priority_worldwide_envelope_usa",
119
+ "canadapost_priority_worldwide_envelope_usa",
120
+ ),
121
+ (
122
+ "canadapost_priority_worldwide_pak_usa",
123
+ "canadapost_priority_worldwide_pak_usa",
124
+ ),
125
+ (
126
+ "canadapost_priority_worldwide_parcel_usa",
127
+ "canadapost_priority_worldwide_parcel_usa",
128
+ ),
129
+ (
130
+ "canadapost_small_packet_usa_air",
131
+ "canadapost_small_packet_usa_air",
132
+ ),
133
+ ("canadapost_tracked_packet_usa", "canadapost_tracked_packet_usa"),
134
+ (
135
+ "canadapost_tracked_packet_usa_lvm",
136
+ "canadapost_tracked_packet_usa_lvm",
137
+ ),
138
+ ("canadapost_xpresspost_usa", "canadapost_xpresspost_usa"),
139
+ (
140
+ "canadapost_xpresspost_international",
141
+ "canadapost_xpresspost_international",
142
+ ),
143
+ (
144
+ "canadapost_international_parcel_air",
145
+ "canadapost_international_parcel_air",
146
+ ),
147
+ (
148
+ "canadapost_international_parcel_surface",
149
+ "canadapost_international_parcel_surface",
150
+ ),
151
+ (
152
+ "canadapost_priority_worldwide_envelope_intl",
153
+ "canadapost_priority_worldwide_envelope_intl",
154
+ ),
155
+ (
156
+ "canadapost_priority_worldwide_pak_intl",
157
+ "canadapost_priority_worldwide_pak_intl",
158
+ ),
159
+ (
160
+ "canadapost_priority_worldwide_parcel_intl",
161
+ "canadapost_priority_worldwide_parcel_intl",
162
+ ),
163
+ (
164
+ "canadapost_small_packet_international_air",
165
+ "canadapost_small_packet_international_air",
166
+ ),
167
+ (
168
+ "canadapost_small_packet_international_surface",
169
+ "canadapost_small_packet_international_surface",
170
+ ),
171
+ (
172
+ "canadapost_tracked_packet_international",
173
+ "canadapost_tracked_packet_international",
174
+ ),
175
+ ("chronopost_retrait_bureau", "chronopost_retrait_bureau"),
176
+ ("chronopost_13", "chronopost_13"),
177
+ ("chronopost_10", "chronopost_10"),
178
+ ("chronopost_18", "chronopost_18"),
179
+ ("chronopost_relais", "chronopost_relais"),
180
+ (
181
+ "chronopost_express_international",
182
+ "chronopost_express_international",
183
+ ),
184
+ (
185
+ "chronopost_premium_international",
186
+ "chronopost_premium_international",
187
+ ),
188
+ (
189
+ "chronopost_classic_international",
190
+ "chronopost_classic_international",
191
+ ),
192
+ (
193
+ "colissimo_home_without_signature",
194
+ "colissimo_home_without_signature",
195
+ ),
196
+ ("colissimo_home_with_signature", "colissimo_home_with_signature"),
197
+ ("colissimo_eco_france", "colissimo_eco_france"),
198
+ ("colissimo_return_france", "colissimo_return_france"),
199
+ (
200
+ "colissimo_flash_without_signature",
201
+ "colissimo_flash_without_signature",
202
+ ),
203
+ (
204
+ "colissimo_flash_with_signature",
205
+ "colissimo_flash_with_signature",
206
+ ),
207
+ (
208
+ "colissimo_oversea_home_without_signature",
209
+ "colissimo_oversea_home_without_signature",
210
+ ),
211
+ (
212
+ "colissimo_oversea_home_with_signature",
213
+ "colissimo_oversea_home_with_signature",
214
+ ),
215
+ (
216
+ "colissimo_eco_om_without_signature",
217
+ "colissimo_eco_om_without_signature",
218
+ ),
219
+ (
220
+ "colissimo_eco_om_with_signature",
221
+ "colissimo_eco_om_with_signature",
222
+ ),
223
+ ("colissimo_retour_om", "colissimo_retour_om"),
224
+ (
225
+ "colissimo_return_international_from_france",
226
+ "colissimo_return_international_from_france",
227
+ ),
228
+ (
229
+ "colissimo_economical_big_export_offer",
230
+ "colissimo_economical_big_export_offer",
231
+ ),
232
+ (
233
+ "colissimo_out_of_home_national_international",
234
+ "colissimo_out_of_home_national_international",
235
+ ),
236
+ ("dhl_logistics_services", "dhl_logistics_services"),
237
+ ("dhl_domestic_express_12_00", "dhl_domestic_express_12_00"),
238
+ ("dhl_express_choice", "dhl_express_choice"),
239
+ ("dhl_express_choice_nondoc", "dhl_express_choice_nondoc"),
240
+ ("dhl_jetline", "dhl_jetline"),
241
+ ("dhl_sprintline", "dhl_sprintline"),
242
+ ("dhl_air_capacity_sales", "dhl_air_capacity_sales"),
243
+ ("dhl_express_easy", "dhl_express_easy"),
244
+ ("dhl_express_easy_nondoc", "dhl_express_easy_nondoc"),
245
+ ("dhl_parcel_product", "dhl_parcel_product"),
246
+ ("dhl_accounting", "dhl_accounting"),
247
+ ("dhl_breakbulk_express", "dhl_breakbulk_express"),
248
+ ("dhl_medical_express", "dhl_medical_express"),
249
+ ("dhl_express_worldwide_doc", "dhl_express_worldwide_doc"),
250
+ ("dhl_express_9_00_nondoc", "dhl_express_9_00_nondoc"),
251
+ ("dhl_freight_worldwide_nondoc", "dhl_freight_worldwide_nondoc"),
252
+ ("dhl_economy_select_domestic", "dhl_economy_select_domestic"),
253
+ ("dhl_economy_select_nondoc", "dhl_economy_select_nondoc"),
254
+ ("dhl_express_domestic_9_00", "dhl_express_domestic_9_00"),
255
+ ("dhl_jumbo_box_nondoc", "dhl_jumbo_box_nondoc"),
256
+ ("dhl_express_9_00", "dhl_express_9_00"),
257
+ ("dhl_express_10_30", "dhl_express_10_30"),
258
+ ("dhl_express_10_30_nondoc", "dhl_express_10_30_nondoc"),
259
+ ("dhl_express_domestic", "dhl_express_domestic"),
260
+ ("dhl_express_domestic_10_30", "dhl_express_domestic_10_30"),
261
+ ("dhl_express_worldwide_nondoc", "dhl_express_worldwide_nondoc"),
262
+ ("dhl_medical_express_nondoc", "dhl_medical_express_nondoc"),
263
+ ("dhl_globalmail", "dhl_globalmail"),
264
+ ("dhl_same_day", "dhl_same_day"),
265
+ ("dhl_express_12_00", "dhl_express_12_00"),
266
+ ("dhl_express_worldwide", "dhl_express_worldwide"),
267
+ ("dhl_parcel_product_nondoc", "dhl_parcel_product_nondoc"),
268
+ ("dhl_economy_select", "dhl_economy_select"),
269
+ ("dhl_express_envelope", "dhl_express_envelope"),
270
+ ("dhl_express_12_00_nondoc", "dhl_express_12_00_nondoc"),
271
+ ("dhl_destination_charges", "dhl_destination_charges"),
272
+ ("dhl_express_all", "dhl_express_all"),
273
+ ("dhl_parcel_de_paket", "dhl_parcel_de_paket"),
274
+ ("dhl_parcel_de_warenpost", "dhl_parcel_de_warenpost"),
275
+ ("dhl_parcel_de_europaket", "dhl_parcel_de_europaket"),
276
+ (
277
+ "dhl_parcel_de_paket_international",
278
+ "dhl_parcel_de_paket_international",
279
+ ),
280
+ (
281
+ "dhl_parcel_de_warenpost_international",
282
+ "dhl_parcel_de_warenpost_international",
283
+ ),
284
+ ("dhl_poland_premium", "dhl_poland_premium"),
285
+ ("dhl_poland_polska", "dhl_poland_polska"),
286
+ ("dhl_poland_09", "dhl_poland_09"),
287
+ ("dhl_poland_12", "dhl_poland_12"),
288
+ ("dhl_poland_connect", "dhl_poland_connect"),
289
+ ("dhl_poland_international", "dhl_poland_international"),
290
+ ("dpd_cl", "dpd_cl"),
291
+ ("dpd_express_10h", "dpd_express_10h"),
292
+ ("dpd_express_12h", "dpd_express_12h"),
293
+ ("dpd_express_18h_guarantee", "dpd_express_18h_guarantee"),
294
+ ("dpd_express_b2b_predict", "dpd_express_b2b_predict"),
295
+ ("dpdhl_paket", "dpdhl_paket"),
296
+ ("dpdhl_paket_international", "dpdhl_paket_international"),
297
+ ("dpdhl_europaket", "dpdhl_europaket"),
298
+ ("dpdhl_paket_connect", "dpdhl_paket_connect"),
299
+ ("dpdhl_warenpost", "dpdhl_warenpost"),
300
+ ("dpdhl_warenpost_international", "dpdhl_warenpost_international"),
301
+ ("dpdhl_retoure", "dpdhl_retoure"),
302
+ ("easypost_amazonmws_ups_rates", "easypost_amazonmws_ups_rates"),
303
+ ("easypost_amazonmws_usps_rates", "easypost_amazonmws_usps_rates"),
304
+ (
305
+ "easypost_amazonmws_fedex_rates",
306
+ "easypost_amazonmws_fedex_rates",
307
+ ),
308
+ ("easypost_amazonmws_ups_labels", "easypost_amazonmws_ups_labels"),
309
+ (
310
+ "easypost_amazonmws_usps_labels",
311
+ "easypost_amazonmws_usps_labels",
312
+ ),
313
+ (
314
+ "easypost_amazonmws_fedex_labels",
315
+ "easypost_amazonmws_fedex_labels",
316
+ ),
317
+ (
318
+ "easypost_amazonmws_ups_tracking",
319
+ "easypost_amazonmws_ups_tracking",
320
+ ),
321
+ (
322
+ "easypost_amazonmws_usps_tracking",
323
+ "easypost_amazonmws_usps_tracking",
324
+ ),
325
+ (
326
+ "easypost_amazonmws_fedex_tracking",
327
+ "easypost_amazonmws_fedex_tracking",
328
+ ),
329
+ (
330
+ "easypost_apc_parcel_connect_book_service",
331
+ "easypost_apc_parcel_connect_book_service",
332
+ ),
333
+ (
334
+ "easypost_apc_parcel_connect_expedited_ddp",
335
+ "easypost_apc_parcel_connect_expedited_ddp",
336
+ ),
337
+ (
338
+ "easypost_apc_parcel_connect_expedited_ddu",
339
+ "easypost_apc_parcel_connect_expedited_ddu",
340
+ ),
341
+ (
342
+ "easypost_apc_parcel_connect_priority_ddp",
343
+ "easypost_apc_parcel_connect_priority_ddp",
344
+ ),
345
+ (
346
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
347
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
348
+ ),
349
+ (
350
+ "easypost_apc_parcel_connect_priority_ddu",
351
+ "easypost_apc_parcel_connect_priority_ddu",
352
+ ),
353
+ (
354
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
355
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
356
+ ),
357
+ (
358
+ "easypost_apc_parcel_connect_priority_ddupqw",
359
+ "easypost_apc_parcel_connect_priority_ddupqw",
360
+ ),
361
+ (
362
+ "easypost_apc_parcel_connect_standard_ddu",
363
+ "easypost_apc_parcel_connect_standard_ddu",
364
+ ),
365
+ (
366
+ "easypost_apc_parcel_connect_standard_ddupqw",
367
+ "easypost_apc_parcel_connect_standard_ddupqw",
368
+ ),
369
+ (
370
+ "easypost_apc_parcel_connect_packet_ddu",
371
+ "easypost_apc_parcel_connect_packet_ddu",
372
+ ),
373
+ ("easypost_asendia_pmi", "easypost_asendia_pmi"),
374
+ ("easypost_asendia_e_packet", "easypost_asendia_e_packet"),
375
+ ("easypost_asendia_ipa", "easypost_asendia_ipa"),
376
+ ("easypost_asendia_isal", "easypost_asendia_isal"),
377
+ ("easypost_asendia_us_ads", "easypost_asendia_us_ads"),
378
+ (
379
+ "easypost_asendia_us_air_freight_inbound",
380
+ "easypost_asendia_us_air_freight_inbound",
381
+ ),
382
+ (
383
+ "easypost_asendia_us_air_freight_outbound",
384
+ "easypost_asendia_us_air_freight_outbound",
385
+ ),
386
+ (
387
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
388
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
389
+ ),
390
+ (
391
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
392
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
393
+ ),
394
+ (
395
+ "easypost_asendia_us_domestic_flats_expedited",
396
+ "easypost_asendia_us_domestic_flats_expedited",
397
+ ),
398
+ (
399
+ "easypost_asendia_us_domestic_flats_ground",
400
+ "easypost_asendia_us_domestic_flats_ground",
401
+ ),
402
+ (
403
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
404
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
405
+ ),
406
+ (
407
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
408
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
409
+ ),
410
+ (
411
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
412
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
413
+ ),
414
+ (
415
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
416
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
417
+ ),
418
+ (
419
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
420
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
421
+ ),
422
+ (
423
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
424
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
425
+ ),
426
+ (
427
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
428
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
429
+ ),
430
+ (
431
+ "easypost_asendia_us_domestic_promo_parcel_ground",
432
+ "easypost_asendia_us_domestic_promo_parcel_ground",
433
+ ),
434
+ (
435
+ "easypost_asendia_us_bulk_freight",
436
+ "easypost_asendia_us_bulk_freight",
437
+ ),
438
+ (
439
+ "easypost_asendia_us_business_mail_canada_lettermail",
440
+ "easypost_asendia_us_business_mail_canada_lettermail",
441
+ ),
442
+ (
443
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
444
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
445
+ ),
446
+ (
447
+ "easypost_asendia_us_business_mail_economy",
448
+ "easypost_asendia_us_business_mail_economy",
449
+ ),
450
+ (
451
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
452
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
453
+ ),
454
+ (
455
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
456
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
457
+ ),
458
+ (
459
+ "easypost_asendia_us_business_mail_ipa",
460
+ "easypost_asendia_us_business_mail_ipa",
461
+ ),
462
+ (
463
+ "easypost_asendia_us_business_mail_isal",
464
+ "easypost_asendia_us_business_mail_isal",
465
+ ),
466
+ (
467
+ "easypost_asendia_us_business_mail_priority",
468
+ "easypost_asendia_us_business_mail_priority",
469
+ ),
470
+ (
471
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
472
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
473
+ ),
474
+ (
475
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
476
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
477
+ ),
478
+ (
479
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
480
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
481
+ ),
482
+ (
483
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
484
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
485
+ ),
486
+ (
487
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
488
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
489
+ ),
490
+ (
491
+ "easypost_asendia_us_marketing_mail_economy",
492
+ "easypost_asendia_us_marketing_mail_economy",
493
+ ),
494
+ (
495
+ "easypost_asendia_us_marketing_mail_ipa",
496
+ "easypost_asendia_us_marketing_mail_ipa",
497
+ ),
498
+ (
499
+ "easypost_asendia_us_marketing_mail_isal",
500
+ "easypost_asendia_us_marketing_mail_isal",
501
+ ),
502
+ (
503
+ "easypost_asendia_us_marketing_mail_priority",
504
+ "easypost_asendia_us_marketing_mail_priority",
505
+ ),
506
+ (
507
+ "easypost_asendia_us_publications_canada_lcp",
508
+ "easypost_asendia_us_publications_canada_lcp",
509
+ ),
510
+ (
511
+ "easypost_asendia_us_publications_canada_ndg",
512
+ "easypost_asendia_us_publications_canada_ndg",
513
+ ),
514
+ (
515
+ "easypost_asendia_us_publications_economy",
516
+ "easypost_asendia_us_publications_economy",
517
+ ),
518
+ (
519
+ "easypost_asendia_us_publications_ipa",
520
+ "easypost_asendia_us_publications_ipa",
521
+ ),
522
+ (
523
+ "easypost_asendia_us_publications_isal",
524
+ "easypost_asendia_us_publications_isal",
525
+ ),
526
+ (
527
+ "easypost_asendia_us_publications_priority",
528
+ "easypost_asendia_us_publications_priority",
529
+ ),
530
+ (
531
+ "easypost_asendia_us_epaq_elite",
532
+ "easypost_asendia_us_epaq_elite",
533
+ ),
534
+ (
535
+ "easypost_asendia_us_epaq_elite_custom",
536
+ "easypost_asendia_us_epaq_elite_custom",
537
+ ),
538
+ (
539
+ "easypost_asendia_us_epaq_elite_dap",
540
+ "easypost_asendia_us_epaq_elite_dap",
541
+ ),
542
+ (
543
+ "easypost_asendia_us_epaq_elite_ddp",
544
+ "easypost_asendia_us_epaq_elite_ddp",
545
+ ),
546
+ (
547
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
548
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
549
+ ),
550
+ (
551
+ "easypost_asendia_us_epaq_elite_dpd",
552
+ "easypost_asendia_us_epaq_elite_dpd",
553
+ ),
554
+ (
555
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
556
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
557
+ ),
558
+ (
559
+ "easypost_asendia_us_epaq_elite_oversized",
560
+ "easypost_asendia_us_epaq_elite_oversized",
561
+ ),
562
+ ("easypost_asendia_us_epaq_plus", "easypost_asendia_us_epaq_plus"),
563
+ (
564
+ "easypost_asendia_us_epaq_plus_custom",
565
+ "easypost_asendia_us_epaq_plus_custom",
566
+ ),
567
+ (
568
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
569
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
570
+ ),
571
+ (
572
+ "easypost_asendia_us_epaq_plus_dap",
573
+ "easypost_asendia_us_epaq_plus_dap",
574
+ ),
575
+ (
576
+ "easypost_asendia_us_epaq_plus_ddp",
577
+ "easypost_asendia_us_epaq_plus_ddp",
578
+ ),
579
+ (
580
+ "easypost_asendia_us_epaq_plus_economy",
581
+ "easypost_asendia_us_epaq_plus_economy",
582
+ ),
583
+ (
584
+ "easypost_asendia_us_epaq_plus_wholesale",
585
+ "easypost_asendia_us_epaq_plus_wholesale",
586
+ ),
587
+ (
588
+ "easypost_asendia_us_epaq_pluse_packet",
589
+ "easypost_asendia_us_epaq_pluse_packet",
590
+ ),
591
+ (
592
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
593
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
594
+ ),
595
+ (
596
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
597
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
598
+ ),
599
+ (
600
+ "easypost_asendia_us_epaq_returns_domestic",
601
+ "easypost_asendia_us_epaq_returns_domestic",
602
+ ),
603
+ (
604
+ "easypost_asendia_us_epaq_returns_international",
605
+ "easypost_asendia_us_epaq_returns_international",
606
+ ),
607
+ (
608
+ "easypost_asendia_us_epaq_select",
609
+ "easypost_asendia_us_epaq_select",
610
+ ),
611
+ (
612
+ "easypost_asendia_us_epaq_select_custom",
613
+ "easypost_asendia_us_epaq_select_custom",
614
+ ),
615
+ (
616
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
617
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
618
+ ),
619
+ (
620
+ "easypost_asendia_us_epaq_select_dap",
621
+ "easypost_asendia_us_epaq_select_dap",
622
+ ),
623
+ (
624
+ "easypost_asendia_us_epaq_select_ddp",
625
+ "easypost_asendia_us_epaq_select_ddp",
626
+ ),
627
+ (
628
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
629
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
630
+ ),
631
+ (
632
+ "easypost_asendia_us_epaq_select_direct_access",
633
+ "easypost_asendia_us_epaq_select_direct_access",
634
+ ),
635
+ (
636
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
637
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
638
+ ),
639
+ (
640
+ "easypost_asendia_us_epaq_select_economy",
641
+ "easypost_asendia_us_epaq_select_economy",
642
+ ),
643
+ (
644
+ "easypost_asendia_us_epaq_select_oversized",
645
+ "easypost_asendia_us_epaq_select_oversized",
646
+ ),
647
+ (
648
+ "easypost_asendia_us_epaq_select_oversized_ddp",
649
+ "easypost_asendia_us_epaq_select_oversized_ddp",
650
+ ),
651
+ (
652
+ "easypost_asendia_us_epaq_select_pmei",
653
+ "easypost_asendia_us_epaq_select_pmei",
654
+ ),
655
+ (
656
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
657
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
658
+ ),
659
+ (
660
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
661
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
662
+ ),
663
+ (
664
+ "easypost_asendia_us_epaq_select_pmi",
665
+ "easypost_asendia_us_epaq_select_pmi",
666
+ ),
667
+ (
668
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
669
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
670
+ ),
671
+ (
672
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
673
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
674
+ ),
675
+ (
676
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
677
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
678
+ ),
679
+ (
680
+ "easypost_asendia_us_epaq_select_pmipc_postage",
681
+ "easypost_asendia_us_epaq_select_pmipc_postage",
682
+ ),
683
+ (
684
+ "easypost_asendia_us_epaq_standard",
685
+ "easypost_asendia_us_epaq_standard",
686
+ ),
687
+ (
688
+ "easypost_asendia_us_epaq_standard_custom",
689
+ "easypost_asendia_us_epaq_standard_custom",
690
+ ),
691
+ (
692
+ "easypost_asendia_us_epaq_standard_economy",
693
+ "easypost_asendia_us_epaq_standard_economy",
694
+ ),
695
+ (
696
+ "easypost_asendia_us_epaq_standard_ipa",
697
+ "easypost_asendia_us_epaq_standard_ipa",
698
+ ),
699
+ (
700
+ "easypost_asendia_us_epaq_standard_isal",
701
+ "easypost_asendia_us_epaq_standard_isal",
702
+ ),
703
+ (
704
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
705
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
706
+ ),
707
+ (
708
+ "easypost_australiapost_express_post",
709
+ "easypost_australiapost_express_post",
710
+ ),
711
+ (
712
+ "easypost_australiapost_express_post_signature",
713
+ "easypost_australiapost_express_post_signature",
714
+ ),
715
+ (
716
+ "easypost_australiapost_parcel_post",
717
+ "easypost_australiapost_parcel_post",
718
+ ),
719
+ (
720
+ "easypost_australiapost_parcel_post_signature",
721
+ "easypost_australiapost_parcel_post_signature",
722
+ ),
723
+ (
724
+ "easypost_australiapost_parcel_post_extra",
725
+ "easypost_australiapost_parcel_post_extra",
726
+ ),
727
+ (
728
+ "easypost_australiapost_parcel_post_wine_plus_signature",
729
+ "easypost_australiapost_parcel_post_wine_plus_signature",
730
+ ),
731
+ ("easypost_axlehire_delivery", "easypost_axlehire_delivery"),
732
+ (
733
+ "easypost_better_trucks_next_day",
734
+ "easypost_better_trucks_next_day",
735
+ ),
736
+ ("easypost_bond_standard", "easypost_bond_standard"),
737
+ (
738
+ "easypost_canadapost_regular_parcel",
739
+ "easypost_canadapost_regular_parcel",
740
+ ),
741
+ (
742
+ "easypost_canadapost_expedited_parcel",
743
+ "easypost_canadapost_expedited_parcel",
744
+ ),
745
+ (
746
+ "easypost_canadapost_xpresspost",
747
+ "easypost_canadapost_xpresspost",
748
+ ),
749
+ (
750
+ "easypost_canadapost_xpresspost_certified",
751
+ "easypost_canadapost_xpresspost_certified",
752
+ ),
753
+ ("easypost_canadapost_priority", "easypost_canadapost_priority"),
754
+ (
755
+ "easypost_canadapost_library_books",
756
+ "easypost_canadapost_library_books",
757
+ ),
758
+ (
759
+ "easypost_canadapost_expedited_parcel_usa",
760
+ "easypost_canadapost_expedited_parcel_usa",
761
+ ),
762
+ (
763
+ "easypost_canadapost_priority_worldwide_envelope_usa",
764
+ "easypost_canadapost_priority_worldwide_envelope_usa",
765
+ ),
766
+ (
767
+ "easypost_canadapost_priority_worldwide_pak_usa",
768
+ "easypost_canadapost_priority_worldwide_pak_usa",
769
+ ),
770
+ (
771
+ "easypost_canadapost_priority_worldwide_parcel_usa",
772
+ "easypost_canadapost_priority_worldwide_parcel_usa",
773
+ ),
774
+ (
775
+ "easypost_canadapost_small_packet_usa_air",
776
+ "easypost_canadapost_small_packet_usa_air",
777
+ ),
778
+ (
779
+ "easypost_canadapost_tracked_packet_usa",
780
+ "easypost_canadapost_tracked_packet_usa",
781
+ ),
782
+ (
783
+ "easypost_canadapost_tracked_packet_usalvm",
784
+ "easypost_canadapost_tracked_packet_usalvm",
785
+ ),
786
+ (
787
+ "easypost_canadapost_xpresspost_usa",
788
+ "easypost_canadapost_xpresspost_usa",
789
+ ),
790
+ (
791
+ "easypost_canadapost_xpresspost_international",
792
+ "easypost_canadapost_xpresspost_international",
793
+ ),
794
+ (
795
+ "easypost_canadapost_international_parcel_air",
796
+ "easypost_canadapost_international_parcel_air",
797
+ ),
798
+ (
799
+ "easypost_canadapost_international_parcel_surface",
800
+ "easypost_canadapost_international_parcel_surface",
801
+ ),
802
+ (
803
+ "easypost_canadapost_priority_worldwide_envelope_intl",
804
+ "easypost_canadapost_priority_worldwide_envelope_intl",
805
+ ),
806
+ (
807
+ "easypost_canadapost_priority_worldwide_pak_intl",
808
+ "easypost_canadapost_priority_worldwide_pak_intl",
809
+ ),
810
+ (
811
+ "easypost_canadapost_priority_worldwide_parcel_intl",
812
+ "easypost_canadapost_priority_worldwide_parcel_intl",
813
+ ),
814
+ (
815
+ "easypost_canadapost_small_packet_international_air",
816
+ "easypost_canadapost_small_packet_international_air",
817
+ ),
818
+ (
819
+ "easypost_canadapost_small_packet_international_surface",
820
+ "easypost_canadapost_small_packet_international_surface",
821
+ ),
822
+ (
823
+ "easypost_canadapost_tracked_packet_international",
824
+ "easypost_canadapost_tracked_packet_international",
825
+ ),
826
+ ("easypost_canpar_ground", "easypost_canpar_ground"),
827
+ ("easypost_canpar_select_letter", "easypost_canpar_select_letter"),
828
+ ("easypost_canpar_select_pak", "easypost_canpar_select_pak"),
829
+ ("easypost_canpar_select", "easypost_canpar_select"),
830
+ (
831
+ "easypost_canpar_overnight_letter",
832
+ "easypost_canpar_overnight_letter",
833
+ ),
834
+ ("easypost_canpar_overnight_pak", "easypost_canpar_overnight_pak"),
835
+ ("easypost_canpar_overnight", "easypost_canpar_overnight"),
836
+ ("easypost_canpar_select_usa", "easypost_canpar_select_usa"),
837
+ ("easypost_canpar_usa_pak", "easypost_canpar_usa_pak"),
838
+ ("easypost_canpar_usa_letter", "easypost_canpar_usa_letter"),
839
+ ("easypost_canpar_usa", "easypost_canpar_usa"),
840
+ ("easypost_canpar_international", "easypost_canpar_international"),
841
+ ("easypost_cdl_distribution", "easypost_cdl_distribution"),
842
+ ("easypost_cdl_same_day", "easypost_cdl_same_day"),
843
+ (
844
+ "easypost_courier_express_basic_parcel",
845
+ "easypost_courier_express_basic_parcel",
846
+ ),
847
+ (
848
+ "easypost_couriersplease_domestic_priority_signature",
849
+ "easypost_couriersplease_domestic_priority_signature",
850
+ ),
851
+ (
852
+ "easypost_couriersplease_domestic_priority",
853
+ "easypost_couriersplease_domestic_priority",
854
+ ),
855
+ (
856
+ "easypost_couriersplease_domestic_off_peak_signature",
857
+ "easypost_couriersplease_domestic_off_peak_signature",
858
+ ),
859
+ (
860
+ "easypost_couriersplease_domestic_off_peak",
861
+ "easypost_couriersplease_domestic_off_peak",
862
+ ),
863
+ (
864
+ "easypost_couriersplease_gold_domestic_signature",
865
+ "easypost_couriersplease_gold_domestic_signature",
866
+ ),
867
+ (
868
+ "easypost_couriersplease_gold_domestic",
869
+ "easypost_couriersplease_gold_domestic",
870
+ ),
871
+ (
872
+ "easypost_couriersplease_australian_city_express_signature",
873
+ "easypost_couriersplease_australian_city_express_signature",
874
+ ),
875
+ (
876
+ "easypost_couriersplease_australian_city_express",
877
+ "easypost_couriersplease_australian_city_express",
878
+ ),
879
+ (
880
+ "easypost_couriersplease_domestic_saver_signature",
881
+ "easypost_couriersplease_domestic_saver_signature",
882
+ ),
883
+ (
884
+ "easypost_couriersplease_domestic_saver",
885
+ "easypost_couriersplease_domestic_saver",
886
+ ),
887
+ (
888
+ "easypost_couriersplease_road_express",
889
+ "easypost_couriersplease_road_express",
890
+ ),
891
+ (
892
+ "easypost_couriersplease_5_kg_satchel",
893
+ "easypost_couriersplease_5_kg_satchel",
894
+ ),
895
+ (
896
+ "easypost_couriersplease_3_kg_satchel",
897
+ "easypost_couriersplease_3_kg_satchel",
898
+ ),
899
+ (
900
+ "easypost_couriersplease_1_kg_satchel",
901
+ "easypost_couriersplease_1_kg_satchel",
902
+ ),
903
+ (
904
+ "easypost_couriersplease_5_kg_satchel_atl",
905
+ "easypost_couriersplease_5_kg_satchel_atl",
906
+ ),
907
+ (
908
+ "easypost_couriersplease_3_kg_satchel_atl",
909
+ "easypost_couriersplease_3_kg_satchel_atl",
910
+ ),
911
+ (
912
+ "easypost_couriersplease_1_kg_satchel_atl",
913
+ "easypost_couriersplease_1_kg_satchel_atl",
914
+ ),
915
+ (
916
+ "easypost_couriersplease_500_gram_satchel",
917
+ "easypost_couriersplease_500_gram_satchel",
918
+ ),
919
+ (
920
+ "easypost_couriersplease_500_gram_satchel_atl",
921
+ "easypost_couriersplease_500_gram_satchel_atl",
922
+ ),
923
+ (
924
+ "easypost_couriersplease_25_kg_parcel",
925
+ "easypost_couriersplease_25_kg_parcel",
926
+ ),
927
+ (
928
+ "easypost_couriersplease_10_kg_parcel",
929
+ "easypost_couriersplease_10_kg_parcel",
930
+ ),
931
+ (
932
+ "easypost_couriersplease_5_kg_parcel",
933
+ "easypost_couriersplease_5_kg_parcel",
934
+ ),
935
+ (
936
+ "easypost_couriersplease_3_kg_parcel",
937
+ "easypost_couriersplease_3_kg_parcel",
938
+ ),
939
+ (
940
+ "easypost_couriersplease_1_kg_parcel",
941
+ "easypost_couriersplease_1_kg_parcel",
942
+ ),
943
+ (
944
+ "easypost_couriersplease_500_gram_parcel",
945
+ "easypost_couriersplease_500_gram_parcel",
946
+ ),
947
+ (
948
+ "easypost_couriersplease_500_gram_parcel_atl",
949
+ "easypost_couriersplease_500_gram_parcel_atl",
950
+ ),
951
+ (
952
+ "easypost_couriersplease_express_international_priority",
953
+ "easypost_couriersplease_express_international_priority",
954
+ ),
955
+ (
956
+ "easypost_couriersplease_international_saver",
957
+ "easypost_couriersplease_international_saver",
958
+ ),
959
+ (
960
+ "easypost_couriersplease_international_express_import",
961
+ "easypost_couriersplease_international_express_import",
962
+ ),
963
+ (
964
+ "easypost_couriersplease_domestic_tracked",
965
+ "easypost_couriersplease_domestic_tracked",
966
+ ),
967
+ (
968
+ "easypost_couriersplease_international_economy",
969
+ "easypost_couriersplease_international_economy",
970
+ ),
971
+ (
972
+ "easypost_couriersplease_international_standard",
973
+ "easypost_couriersplease_international_standard",
974
+ ),
975
+ (
976
+ "easypost_couriersplease_international_express",
977
+ "easypost_couriersplease_international_express",
978
+ ),
979
+ (
980
+ "easypost_deutschepost_packet_plus",
981
+ "easypost_deutschepost_packet_plus",
982
+ ),
983
+ (
984
+ "easypost_deutschepost_uk_priority_packet_plus",
985
+ "easypost_deutschepost_uk_priority_packet_plus",
986
+ ),
987
+ (
988
+ "easypost_deutschepost_uk_priority_packet",
989
+ "easypost_deutschepost_uk_priority_packet",
990
+ ),
991
+ (
992
+ "easypost_deutschepost_uk_priority_packet_tracked",
993
+ "easypost_deutschepost_uk_priority_packet_tracked",
994
+ ),
995
+ (
996
+ "easypost_deutschepost_uk_business_mail_registered",
997
+ "easypost_deutschepost_uk_business_mail_registered",
998
+ ),
999
+ (
1000
+ "easypost_deutschepost_uk_standard_packet",
1001
+ "easypost_deutschepost_uk_standard_packet",
1002
+ ),
1003
+ (
1004
+ "easypost_deutschepost_uk_business_mail_standard",
1005
+ "easypost_deutschepost_uk_business_mail_standard",
1006
+ ),
1007
+ ("easypost_dhl_ecom_asia_packet", "easypost_dhl_ecom_asia_packet"),
1008
+ (
1009
+ "easypost_dhl_ecom_asia_parcel_direct",
1010
+ "easypost_dhl_ecom_asia_parcel_direct",
1011
+ ),
1012
+ (
1013
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1014
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1015
+ ),
1016
+ (
1017
+ "easypost_dhl_ecom_parcel_expedited",
1018
+ "easypost_dhl_ecom_parcel_expedited",
1019
+ ),
1020
+ (
1021
+ "easypost_dhl_ecom_parcel_expedited_max",
1022
+ "easypost_dhl_ecom_parcel_expedited_max",
1023
+ ),
1024
+ (
1025
+ "easypost_dhl_ecom_parcel_ground",
1026
+ "easypost_dhl_ecom_parcel_ground",
1027
+ ),
1028
+ (
1029
+ "easypost_dhl_ecom_bpm_expedited",
1030
+ "easypost_dhl_ecom_bpm_expedited",
1031
+ ),
1032
+ ("easypost_dhl_ecom_bpm_ground", "easypost_dhl_ecom_bpm_ground"),
1033
+ (
1034
+ "easypost_dhl_ecom_parcel_international_direct",
1035
+ "easypost_dhl_ecom_parcel_international_direct",
1036
+ ),
1037
+ (
1038
+ "easypost_dhl_ecom_parcel_international_standard",
1039
+ "easypost_dhl_ecom_parcel_international_standard",
1040
+ ),
1041
+ (
1042
+ "easypost_dhl_ecom_packet_international",
1043
+ "easypost_dhl_ecom_packet_international",
1044
+ ),
1045
+ (
1046
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1047
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1048
+ ),
1049
+ (
1050
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1051
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1052
+ ),
1053
+ (
1054
+ "easypost_dhl_express_break_bulk_economy",
1055
+ "easypost_dhl_express_break_bulk_economy",
1056
+ ),
1057
+ (
1058
+ "easypost_dhl_express_break_bulk_express",
1059
+ "easypost_dhl_express_break_bulk_express",
1060
+ ),
1061
+ (
1062
+ "easypost_dhl_express_domestic_economy_select",
1063
+ "easypost_dhl_express_domestic_economy_select",
1064
+ ),
1065
+ (
1066
+ "easypost_dhl_express_domestic_express",
1067
+ "easypost_dhl_express_domestic_express",
1068
+ ),
1069
+ (
1070
+ "easypost_dhl_express_domestic_express1030",
1071
+ "easypost_dhl_express_domestic_express1030",
1072
+ ),
1073
+ (
1074
+ "easypost_dhl_express_domestic_express1200",
1075
+ "easypost_dhl_express_domestic_express1200",
1076
+ ),
1077
+ (
1078
+ "easypost_dhl_express_economy_select",
1079
+ "easypost_dhl_express_economy_select",
1080
+ ),
1081
+ (
1082
+ "easypost_dhl_express_economy_select_non_doc",
1083
+ "easypost_dhl_express_economy_select_non_doc",
1084
+ ),
1085
+ (
1086
+ "easypost_dhl_express_euro_pack",
1087
+ "easypost_dhl_express_euro_pack",
1088
+ ),
1089
+ (
1090
+ "easypost_dhl_express_europack_non_doc",
1091
+ "easypost_dhl_express_europack_non_doc",
1092
+ ),
1093
+ (
1094
+ "easypost_dhl_express_express1030",
1095
+ "easypost_dhl_express_express1030",
1096
+ ),
1097
+ (
1098
+ "easypost_dhl_express_express1030_non_doc",
1099
+ "easypost_dhl_express_express1030_non_doc",
1100
+ ),
1101
+ (
1102
+ "easypost_dhl_express_express1200_non_doc",
1103
+ "easypost_dhl_express_express1200_non_doc",
1104
+ ),
1105
+ (
1106
+ "easypost_dhl_express_express1200",
1107
+ "easypost_dhl_express_express1200",
1108
+ ),
1109
+ (
1110
+ "easypost_dhl_express_express900",
1111
+ "easypost_dhl_express_express900",
1112
+ ),
1113
+ (
1114
+ "easypost_dhl_express_express900_non_doc",
1115
+ "easypost_dhl_express_express900_non_doc",
1116
+ ),
1117
+ (
1118
+ "easypost_dhl_express_express_easy",
1119
+ "easypost_dhl_express_express_easy",
1120
+ ),
1121
+ (
1122
+ "easypost_dhl_express_express_easy_non_doc",
1123
+ "easypost_dhl_express_express_easy_non_doc",
1124
+ ),
1125
+ (
1126
+ "easypost_dhl_express_express_envelope",
1127
+ "easypost_dhl_express_express_envelope",
1128
+ ),
1129
+ (
1130
+ "easypost_dhl_express_express_worldwide",
1131
+ "easypost_dhl_express_express_worldwide",
1132
+ ),
1133
+ (
1134
+ "easypost_dhl_express_express_worldwide_b2_c",
1135
+ "easypost_dhl_express_express_worldwide_b2_c",
1136
+ ),
1137
+ (
1138
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1139
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1140
+ ),
1141
+ (
1142
+ "easypost_dhl_express_express_worldwide_ecx",
1143
+ "easypost_dhl_express_express_worldwide_ecx",
1144
+ ),
1145
+ (
1146
+ "easypost_dhl_express_express_worldwide_non_doc",
1147
+ "easypost_dhl_express_express_worldwide_non_doc",
1148
+ ),
1149
+ (
1150
+ "easypost_dhl_express_freight_worldwide",
1151
+ "easypost_dhl_express_freight_worldwide",
1152
+ ),
1153
+ (
1154
+ "easypost_dhl_express_globalmail_business",
1155
+ "easypost_dhl_express_globalmail_business",
1156
+ ),
1157
+ ("easypost_dhl_express_jet_line", "easypost_dhl_express_jet_line"),
1158
+ (
1159
+ "easypost_dhl_express_jumbo_box",
1160
+ "easypost_dhl_express_jumbo_box",
1161
+ ),
1162
+ (
1163
+ "easypost_dhl_express_logistics_services",
1164
+ "easypost_dhl_express_logistics_services",
1165
+ ),
1166
+ ("easypost_dhl_express_same_day", "easypost_dhl_express_same_day"),
1167
+ (
1168
+ "easypost_dhl_express_secure_line",
1169
+ "easypost_dhl_express_secure_line",
1170
+ ),
1171
+ (
1172
+ "easypost_dhl_express_sprint_line",
1173
+ "easypost_dhl_express_sprint_line",
1174
+ ),
1175
+ ("easypost_dpd_classic", "easypost_dpd_classic"),
1176
+ ("easypost_dpd_8_30", "easypost_dpd_8_30"),
1177
+ ("easypost_dpd_10_00", "easypost_dpd_10_00"),
1178
+ ("easypost_dpd_12_00", "easypost_dpd_12_00"),
1179
+ ("easypost_dpd_18_00", "easypost_dpd_18_00"),
1180
+ ("easypost_dpd_express", "easypost_dpd_express"),
1181
+ ("easypost_dpd_parcelletter", "easypost_dpd_parcelletter"),
1182
+ ("easypost_dpd_parcelletterplus", "easypost_dpd_parcelletterplus"),
1183
+ (
1184
+ "easypost_dpd_internationalmail",
1185
+ "easypost_dpd_internationalmail",
1186
+ ),
1187
+ (
1188
+ "easypost_dpd_uk_air_express_international_air",
1189
+ "easypost_dpd_uk_air_express_international_air",
1190
+ ),
1191
+ (
1192
+ "easypost_dpd_uk_air_classic_international_air",
1193
+ "easypost_dpd_uk_air_classic_international_air",
1194
+ ),
1195
+ ("easypost_dpd_uk_parcel_sunday", "easypost_dpd_uk_parcel_sunday"),
1196
+ (
1197
+ "easypost_dpd_uk_freight_parcel_sunday",
1198
+ "easypost_dpd_uk_freight_parcel_sunday",
1199
+ ),
1200
+ ("easypost_dpd_uk_pallet_sunday", "easypost_dpd_uk_pallet_sunday"),
1201
+ (
1202
+ "easypost_dpd_uk_pallet_dpd_classic",
1203
+ "easypost_dpd_uk_pallet_dpd_classic",
1204
+ ),
1205
+ (
1206
+ "easypost_dpd_uk_expresspak_dpd_classic",
1207
+ "easypost_dpd_uk_expresspak_dpd_classic",
1208
+ ),
1209
+ (
1210
+ "easypost_dpd_uk_expresspak_sunday",
1211
+ "easypost_dpd_uk_expresspak_sunday",
1212
+ ),
1213
+ (
1214
+ "easypost_dpd_uk_parcel_dpd_classic",
1215
+ "easypost_dpd_uk_parcel_dpd_classic",
1216
+ ),
1217
+ (
1218
+ "easypost_dpd_uk_parcel_dpd_two_day",
1219
+ "easypost_dpd_uk_parcel_dpd_two_day",
1220
+ ),
1221
+ (
1222
+ "easypost_dpd_uk_parcel_dpd_next_day",
1223
+ "easypost_dpd_uk_parcel_dpd_next_day",
1224
+ ),
1225
+ ("easypost_dpd_uk_parcel_dpd12", "easypost_dpd_uk_parcel_dpd12"),
1226
+ ("easypost_dpd_uk_parcel_dpd10", "easypost_dpd_uk_parcel_dpd10"),
1227
+ (
1228
+ "easypost_dpd_uk_parcel_return_to_shop",
1229
+ "easypost_dpd_uk_parcel_return_to_shop",
1230
+ ),
1231
+ (
1232
+ "easypost_dpd_uk_parcel_saturday",
1233
+ "easypost_dpd_uk_parcel_saturday",
1234
+ ),
1235
+ (
1236
+ "easypost_dpd_uk_parcel_saturday12",
1237
+ "easypost_dpd_uk_parcel_saturday12",
1238
+ ),
1239
+ (
1240
+ "easypost_dpd_uk_parcel_saturday10",
1241
+ "easypost_dpd_uk_parcel_saturday10",
1242
+ ),
1243
+ (
1244
+ "easypost_dpd_uk_parcel_sunday12",
1245
+ "easypost_dpd_uk_parcel_sunday12",
1246
+ ),
1247
+ (
1248
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1249
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1250
+ ),
1251
+ (
1252
+ "easypost_dpd_uk_freight_parcel_sunday12",
1253
+ "easypost_dpd_uk_freight_parcel_sunday12",
1254
+ ),
1255
+ (
1256
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1257
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1258
+ ),
1259
+ (
1260
+ "easypost_dpd_uk_expresspak_dpd12",
1261
+ "easypost_dpd_uk_expresspak_dpd12",
1262
+ ),
1263
+ (
1264
+ "easypost_dpd_uk_expresspak_dpd10",
1265
+ "easypost_dpd_uk_expresspak_dpd10",
1266
+ ),
1267
+ (
1268
+ "easypost_dpd_uk_expresspak_saturday",
1269
+ "easypost_dpd_uk_expresspak_saturday",
1270
+ ),
1271
+ (
1272
+ "easypost_dpd_uk_expresspak_saturday12",
1273
+ "easypost_dpd_uk_expresspak_saturday12",
1274
+ ),
1275
+ (
1276
+ "easypost_dpd_uk_expresspak_saturday10",
1277
+ "easypost_dpd_uk_expresspak_saturday10",
1278
+ ),
1279
+ (
1280
+ "easypost_dpd_uk_expresspak_sunday12",
1281
+ "easypost_dpd_uk_expresspak_sunday12",
1282
+ ),
1283
+ (
1284
+ "easypost_dpd_uk_pallet_sunday12",
1285
+ "easypost_dpd_uk_pallet_sunday12",
1286
+ ),
1287
+ (
1288
+ "easypost_dpd_uk_pallet_dpd_two_day",
1289
+ "easypost_dpd_uk_pallet_dpd_two_day",
1290
+ ),
1291
+ (
1292
+ "easypost_dpd_uk_pallet_dpd_next_day",
1293
+ "easypost_dpd_uk_pallet_dpd_next_day",
1294
+ ),
1295
+ ("easypost_dpd_uk_pallet_dpd12", "easypost_dpd_uk_pallet_dpd12"),
1296
+ ("easypost_dpd_uk_pallet_dpd10", "easypost_dpd_uk_pallet_dpd10"),
1297
+ (
1298
+ "easypost_dpd_uk_pallet_saturday",
1299
+ "easypost_dpd_uk_pallet_saturday",
1300
+ ),
1301
+ (
1302
+ "easypost_dpd_uk_pallet_saturday12",
1303
+ "easypost_dpd_uk_pallet_saturday12",
1304
+ ),
1305
+ (
1306
+ "easypost_dpd_uk_pallet_saturday10",
1307
+ "easypost_dpd_uk_pallet_saturday10",
1308
+ ),
1309
+ (
1310
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1311
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1312
+ ),
1313
+ (
1314
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1315
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1316
+ ),
1317
+ (
1318
+ "easypost_dpd_uk_freight_parcel_dpd12",
1319
+ "easypost_dpd_uk_freight_parcel_dpd12",
1320
+ ),
1321
+ (
1322
+ "easypost_dpd_uk_freight_parcel_dpd10",
1323
+ "easypost_dpd_uk_freight_parcel_dpd10",
1324
+ ),
1325
+ (
1326
+ "easypost_dpd_uk_freight_parcel_saturday",
1327
+ "easypost_dpd_uk_freight_parcel_saturday",
1328
+ ),
1329
+ (
1330
+ "easypost_dpd_uk_freight_parcel_saturday12",
1331
+ "easypost_dpd_uk_freight_parcel_saturday12",
1332
+ ),
1333
+ (
1334
+ "easypost_dpd_uk_freight_parcel_saturday10",
1335
+ "easypost_dpd_uk_freight_parcel_saturday10",
1336
+ ),
1337
+ (
1338
+ "easypost_epost_courier_service_ddp",
1339
+ "easypost_epost_courier_service_ddp",
1340
+ ),
1341
+ (
1342
+ "easypost_epost_courier_service_ddu",
1343
+ "easypost_epost_courier_service_ddu",
1344
+ ),
1345
+ (
1346
+ "easypost_epost_domestic_economy_parcel",
1347
+ "easypost_epost_domestic_economy_parcel",
1348
+ ),
1349
+ (
1350
+ "easypost_epost_domestic_parcel_bpm",
1351
+ "easypost_epost_domestic_parcel_bpm",
1352
+ ),
1353
+ (
1354
+ "easypost_epost_domestic_priority_parcel",
1355
+ "easypost_epost_domestic_priority_parcel",
1356
+ ),
1357
+ (
1358
+ "easypost_epost_domestic_priority_parcel_bpm",
1359
+ "easypost_epost_domestic_priority_parcel_bpm",
1360
+ ),
1361
+ ("easypost_epost_emi_service", "easypost_epost_emi_service"),
1362
+ (
1363
+ "easypost_epost_economy_parcel_service",
1364
+ "easypost_epost_economy_parcel_service",
1365
+ ),
1366
+ ("easypost_epost_ipa_service", "easypost_epost_ipa_service"),
1367
+ ("easypost_epost_isal_service", "easypost_epost_isal_service"),
1368
+ ("easypost_epost_pmi_service", "easypost_epost_pmi_service"),
1369
+ (
1370
+ "easypost_epost_priority_parcel_ddp",
1371
+ "easypost_epost_priority_parcel_ddp",
1372
+ ),
1373
+ (
1374
+ "easypost_epost_priority_parcel_ddu",
1375
+ "easypost_epost_priority_parcel_ddu",
1376
+ ),
1377
+ (
1378
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1379
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1380
+ ),
1381
+ (
1382
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1383
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1384
+ ),
1385
+ (
1386
+ "easypost_epost_epacket_service",
1387
+ "easypost_epost_epacket_service",
1388
+ ),
1389
+ (
1390
+ "easypost_estafeta_next_day_by930",
1391
+ "easypost_estafeta_next_day_by930",
1392
+ ),
1393
+ (
1394
+ "easypost_estafeta_next_day_by1130",
1395
+ "easypost_estafeta_next_day_by1130",
1396
+ ),
1397
+ ("easypost_estafeta_next_day", "easypost_estafeta_next_day"),
1398
+ ("easypost_estafeta_two_day", "easypost_estafeta_two_day"),
1399
+ ("easypost_estafeta_ltl", "easypost_estafeta_ltl"),
1400
+ ("easypost_fastway_parcel", "easypost_fastway_parcel"),
1401
+ ("easypost_fastway_satchel", "easypost_fastway_satchel"),
1402
+ ("easypost_fedex_ground", "easypost_fedex_ground"),
1403
+ ("easypost_fedex_2_day", "easypost_fedex_2_day"),
1404
+ ("easypost_fedex_2_day_am", "easypost_fedex_2_day_am"),
1405
+ ("easypost_fedex_express_saver", "easypost_fedex_express_saver"),
1406
+ (
1407
+ "easypost_fedex_standard_overnight",
1408
+ "easypost_fedex_standard_overnight",
1409
+ ),
1410
+ (
1411
+ "easypost_fedex_first_overnight",
1412
+ "easypost_fedex_first_overnight",
1413
+ ),
1414
+ (
1415
+ "easypost_fedex_priority_overnight",
1416
+ "easypost_fedex_priority_overnight",
1417
+ ),
1418
+ (
1419
+ "easypost_fedex_international_economy",
1420
+ "easypost_fedex_international_economy",
1421
+ ),
1422
+ (
1423
+ "easypost_fedex_international_first",
1424
+ "easypost_fedex_international_first",
1425
+ ),
1426
+ (
1427
+ "easypost_fedex_international_priority",
1428
+ "easypost_fedex_international_priority",
1429
+ ),
1430
+ (
1431
+ "easypost_fedex_ground_home_delivery",
1432
+ "easypost_fedex_ground_home_delivery",
1433
+ ),
1434
+ (
1435
+ "easypost_fedex_crossborder_cbec",
1436
+ "easypost_fedex_crossborder_cbec",
1437
+ ),
1438
+ (
1439
+ "easypost_fedex_crossborder_cbecl",
1440
+ "easypost_fedex_crossborder_cbecl",
1441
+ ),
1442
+ (
1443
+ "easypost_fedex_crossborder_cbecp",
1444
+ "easypost_fedex_crossborder_cbecp",
1445
+ ),
1446
+ (
1447
+ "easypost_fedex_sameday_city_economy_service",
1448
+ "easypost_fedex_sameday_city_economy_service",
1449
+ ),
1450
+ (
1451
+ "easypost_fedex_sameday_city_standard_service",
1452
+ "easypost_fedex_sameday_city_standard_service",
1453
+ ),
1454
+ (
1455
+ "easypost_fedex_sameday_city_priority_service",
1456
+ "easypost_fedex_sameday_city_priority_service",
1457
+ ),
1458
+ (
1459
+ "easypost_fedex_sameday_city_last_mile",
1460
+ "easypost_fedex_sameday_city_last_mile",
1461
+ ),
1462
+ ("easypost_fedex_smart_post", "easypost_fedex_smart_post"),
1463
+ ("easypost_globegistics_pmei", "easypost_globegistics_pmei"),
1464
+ (
1465
+ "easypost_globegistics_ecom_domestic",
1466
+ "easypost_globegistics_ecom_domestic",
1467
+ ),
1468
+ (
1469
+ "easypost_globegistics_ecom_europe",
1470
+ "easypost_globegistics_ecom_europe",
1471
+ ),
1472
+ (
1473
+ "easypost_globegistics_ecom_express",
1474
+ "easypost_globegistics_ecom_express",
1475
+ ),
1476
+ (
1477
+ "easypost_globegistics_ecom_extra",
1478
+ "easypost_globegistics_ecom_extra",
1479
+ ),
1480
+ (
1481
+ "easypost_globegistics_ecom_ipa",
1482
+ "easypost_globegistics_ecom_ipa",
1483
+ ),
1484
+ (
1485
+ "easypost_globegistics_ecom_isal",
1486
+ "easypost_globegistics_ecom_isal",
1487
+ ),
1488
+ (
1489
+ "easypost_globegistics_ecom_pmei_duty_paid",
1490
+ "easypost_globegistics_ecom_pmei_duty_paid",
1491
+ ),
1492
+ (
1493
+ "easypost_globegistics_ecom_pmi_duty_paid",
1494
+ "easypost_globegistics_ecom_pmi_duty_paid",
1495
+ ),
1496
+ (
1497
+ "easypost_globegistics_ecom_packet",
1498
+ "easypost_globegistics_ecom_packet",
1499
+ ),
1500
+ (
1501
+ "easypost_globegistics_ecom_packet_ddp",
1502
+ "easypost_globegistics_ecom_packet_ddp",
1503
+ ),
1504
+ (
1505
+ "easypost_globegistics_ecom_priority",
1506
+ "easypost_globegistics_ecom_priority",
1507
+ ),
1508
+ (
1509
+ "easypost_globegistics_ecom_standard",
1510
+ "easypost_globegistics_ecom_standard",
1511
+ ),
1512
+ (
1513
+ "easypost_globegistics_ecom_tracked_ddp",
1514
+ "easypost_globegistics_ecom_tracked_ddp",
1515
+ ),
1516
+ (
1517
+ "easypost_globegistics_ecom_tracked_ddu",
1518
+ "easypost_globegistics_ecom_tracked_ddu",
1519
+ ),
1520
+ (
1521
+ "easypost_gso_early_priority_overnight",
1522
+ "easypost_gso_early_priority_overnight",
1523
+ ),
1524
+ (
1525
+ "easypost_gso_priority_overnight",
1526
+ "easypost_gso_priority_overnight",
1527
+ ),
1528
+ (
1529
+ "easypost_gso_california_parcel_service",
1530
+ "easypost_gso_california_parcel_service",
1531
+ ),
1532
+ (
1533
+ "easypost_gso_saturday_delivery_service",
1534
+ "easypost_gso_saturday_delivery_service",
1535
+ ),
1536
+ (
1537
+ "easypost_gso_early_saturday_service",
1538
+ "easypost_gso_early_saturday_service",
1539
+ ),
1540
+ (
1541
+ "easypost_hermes_domestic_delivery",
1542
+ "easypost_hermes_domestic_delivery",
1543
+ ),
1544
+ (
1545
+ "easypost_hermes_domestic_delivery_signed",
1546
+ "easypost_hermes_domestic_delivery_signed",
1547
+ ),
1548
+ (
1549
+ "easypost_hermes_international_delivery",
1550
+ "easypost_hermes_international_delivery",
1551
+ ),
1552
+ (
1553
+ "easypost_hermes_international_delivery_signed",
1554
+ "easypost_hermes_international_delivery_signed",
1555
+ ),
1556
+ (
1557
+ "easypost_interlink_air_classic_international_air",
1558
+ "easypost_interlink_air_classic_international_air",
1559
+ ),
1560
+ (
1561
+ "easypost_interlink_air_express_international_air",
1562
+ "easypost_interlink_air_express_international_air",
1563
+ ),
1564
+ (
1565
+ "easypost_interlink_expresspak1_by10_30",
1566
+ "easypost_interlink_expresspak1_by10_30",
1567
+ ),
1568
+ (
1569
+ "easypost_interlink_expresspak1_by12",
1570
+ "easypost_interlink_expresspak1_by12",
1571
+ ),
1572
+ (
1573
+ "easypost_interlink_expresspak1_next_day",
1574
+ "easypost_interlink_expresspak1_next_day",
1575
+ ),
1576
+ (
1577
+ "easypost_interlink_expresspak1_saturday",
1578
+ "easypost_interlink_expresspak1_saturday",
1579
+ ),
1580
+ (
1581
+ "easypost_interlink_expresspak1_saturday_by10_30",
1582
+ "easypost_interlink_expresspak1_saturday_by10_30",
1583
+ ),
1584
+ (
1585
+ "easypost_interlink_expresspak1_saturday_by12",
1586
+ "easypost_interlink_expresspak1_saturday_by12",
1587
+ ),
1588
+ (
1589
+ "easypost_interlink_expresspak1_sunday",
1590
+ "easypost_interlink_expresspak1_sunday",
1591
+ ),
1592
+ (
1593
+ "easypost_interlink_expresspak1_sunday_by12",
1594
+ "easypost_interlink_expresspak1_sunday_by12",
1595
+ ),
1596
+ (
1597
+ "easypost_interlink_expresspak5_by10",
1598
+ "easypost_interlink_expresspak5_by10",
1599
+ ),
1600
+ (
1601
+ "easypost_interlink_expresspak5_by10_30",
1602
+ "easypost_interlink_expresspak5_by10_30",
1603
+ ),
1604
+ (
1605
+ "easypost_interlink_expresspak5_by12",
1606
+ "easypost_interlink_expresspak5_by12",
1607
+ ),
1608
+ (
1609
+ "easypost_interlink_expresspak5_next_day",
1610
+ "easypost_interlink_expresspak5_next_day",
1611
+ ),
1612
+ (
1613
+ "easypost_interlink_expresspak5_saturday",
1614
+ "easypost_interlink_expresspak5_saturday",
1615
+ ),
1616
+ (
1617
+ "easypost_interlink_expresspak5_saturday_by10",
1618
+ "easypost_interlink_expresspak5_saturday_by10",
1619
+ ),
1620
+ (
1621
+ "easypost_interlink_expresspak5_saturday_by10_30",
1622
+ "easypost_interlink_expresspak5_saturday_by10_30",
1623
+ ),
1624
+ (
1625
+ "easypost_interlink_expresspak5_saturday_by12",
1626
+ "easypost_interlink_expresspak5_saturday_by12",
1627
+ ),
1628
+ (
1629
+ "easypost_interlink_expresspak5_sunday",
1630
+ "easypost_interlink_expresspak5_sunday",
1631
+ ),
1632
+ (
1633
+ "easypost_interlink_expresspak5_sunday_by12",
1634
+ "easypost_interlink_expresspak5_sunday_by12",
1635
+ ),
1636
+ (
1637
+ "easypost_interlink_freight_by10",
1638
+ "easypost_interlink_freight_by10",
1639
+ ),
1640
+ (
1641
+ "easypost_interlink_freight_by12",
1642
+ "easypost_interlink_freight_by12",
1643
+ ),
1644
+ (
1645
+ "easypost_interlink_freight_next_day",
1646
+ "easypost_interlink_freight_next_day",
1647
+ ),
1648
+ (
1649
+ "easypost_interlink_freight_saturday",
1650
+ "easypost_interlink_freight_saturday",
1651
+ ),
1652
+ (
1653
+ "easypost_interlink_freight_saturday_by10",
1654
+ "easypost_interlink_freight_saturday_by10",
1655
+ ),
1656
+ (
1657
+ "easypost_interlink_freight_saturday_by12",
1658
+ "easypost_interlink_freight_saturday_by12",
1659
+ ),
1660
+ (
1661
+ "easypost_interlink_freight_sunday",
1662
+ "easypost_interlink_freight_sunday",
1663
+ ),
1664
+ (
1665
+ "easypost_interlink_freight_sunday_by12",
1666
+ "easypost_interlink_freight_sunday_by12",
1667
+ ),
1668
+ (
1669
+ "easypost_interlink_parcel_by10",
1670
+ "easypost_interlink_parcel_by10",
1671
+ ),
1672
+ (
1673
+ "easypost_interlink_parcel_by10_30",
1674
+ "easypost_interlink_parcel_by10_30",
1675
+ ),
1676
+ (
1677
+ "easypost_interlink_parcel_by12",
1678
+ "easypost_interlink_parcel_by12",
1679
+ ),
1680
+ (
1681
+ "easypost_interlink_parcel_dpd_europe_by_road",
1682
+ "easypost_interlink_parcel_dpd_europe_by_road",
1683
+ ),
1684
+ (
1685
+ "easypost_interlink_parcel_next_day",
1686
+ "easypost_interlink_parcel_next_day",
1687
+ ),
1688
+ (
1689
+ "easypost_interlink_parcel_return",
1690
+ "easypost_interlink_parcel_return",
1691
+ ),
1692
+ (
1693
+ "easypost_interlink_parcel_return_to_shop",
1694
+ "easypost_interlink_parcel_return_to_shop",
1695
+ ),
1696
+ (
1697
+ "easypost_interlink_parcel_saturday",
1698
+ "easypost_interlink_parcel_saturday",
1699
+ ),
1700
+ (
1701
+ "easypost_interlink_parcel_saturday_by10",
1702
+ "easypost_interlink_parcel_saturday_by10",
1703
+ ),
1704
+ (
1705
+ "easypost_interlink_parcel_saturday_by10_30",
1706
+ "easypost_interlink_parcel_saturday_by10_30",
1707
+ ),
1708
+ (
1709
+ "easypost_interlink_parcel_saturday_by12",
1710
+ "easypost_interlink_parcel_saturday_by12",
1711
+ ),
1712
+ (
1713
+ "easypost_interlink_parcel_ship_to_shop",
1714
+ "easypost_interlink_parcel_ship_to_shop",
1715
+ ),
1716
+ (
1717
+ "easypost_interlink_parcel_sunday",
1718
+ "easypost_interlink_parcel_sunday",
1719
+ ),
1720
+ (
1721
+ "easypost_interlink_parcel_sunday_by12",
1722
+ "easypost_interlink_parcel_sunday_by12",
1723
+ ),
1724
+ (
1725
+ "easypost_interlink_parcel_two_day",
1726
+ "easypost_interlink_parcel_two_day",
1727
+ ),
1728
+ (
1729
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1730
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1731
+ ),
1732
+ ("easypost_lasership_weekend", "easypost_lasership_weekend"),
1733
+ ("easypost_loomis_ground", "easypost_loomis_ground"),
1734
+ ("easypost_loomis_express1800", "easypost_loomis_express1800"),
1735
+ ("easypost_loomis_express1200", "easypost_loomis_express1200"),
1736
+ ("easypost_loomis_express900", "easypost_loomis_express900"),
1737
+ ("easypost_lso_ground_early", "easypost_lso_ground_early"),
1738
+ ("easypost_lso_ground_basic", "easypost_lso_ground_basic"),
1739
+ ("easypost_lso_priority_basic", "easypost_lso_priority_basic"),
1740
+ ("easypost_lso_priority_early", "easypost_lso_priority_early"),
1741
+ (
1742
+ "easypost_lso_priority_saturday",
1743
+ "easypost_lso_priority_saturday",
1744
+ ),
1745
+ ("easypost_lso_priority2nd_day", "easypost_lso_priority2nd_day"),
1746
+ (
1747
+ "easypost_newgistics_parcel_select",
1748
+ "easypost_newgistics_parcel_select",
1749
+ ),
1750
+ (
1751
+ "easypost_newgistics_parcel_select_lightweight",
1752
+ "easypost_newgistics_parcel_select_lightweight",
1753
+ ),
1754
+ ("easypost_newgistics_express", "easypost_newgistics_express"),
1755
+ (
1756
+ "easypost_newgistics_first_class_mail",
1757
+ "easypost_newgistics_first_class_mail",
1758
+ ),
1759
+ (
1760
+ "easypost_newgistics_priority_mail",
1761
+ "easypost_newgistics_priority_mail",
1762
+ ),
1763
+ (
1764
+ "easypost_newgistics_bound_printed_matter",
1765
+ "easypost_newgistics_bound_printed_matter",
1766
+ ),
1767
+ ("easypost_ontrac_sunrise", "easypost_ontrac_sunrise"),
1768
+ ("easypost_ontrac_gold", "easypost_ontrac_gold"),
1769
+ (
1770
+ "easypost_ontrac_on_trac_ground",
1771
+ "easypost_ontrac_on_trac_ground",
1772
+ ),
1773
+ (
1774
+ "easypost_ontrac_palletized_freight",
1775
+ "easypost_ontrac_palletized_freight",
1776
+ ),
1777
+ ("easypost_osm_first", "easypost_osm_first"),
1778
+ ("easypost_osm_expedited", "easypost_osm_expedited"),
1779
+ ("easypost_osm_bpm", "easypost_osm_bpm"),
1780
+ ("easypost_osm_media_mail", "easypost_osm_media_mail"),
1781
+ ("easypost_osm_marketing_parcel", "easypost_osm_marketing_parcel"),
1782
+ (
1783
+ "easypost_osm_marketing_parcel_tracked",
1784
+ "easypost_osm_marketing_parcel_tracked",
1785
+ ),
1786
+ ("easypost_parcll_economy_west", "easypost_parcll_economy_west"),
1787
+ ("easypost_parcll_economy_east", "easypost_parcll_economy_east"),
1788
+ (
1789
+ "easypost_parcll_economy_central",
1790
+ "easypost_parcll_economy_central",
1791
+ ),
1792
+ (
1793
+ "easypost_parcll_economy_northeast",
1794
+ "easypost_parcll_economy_northeast",
1795
+ ),
1796
+ ("easypost_parcll_economy_south", "easypost_parcll_economy_south"),
1797
+ (
1798
+ "easypost_parcll_expedited_west",
1799
+ "easypost_parcll_expedited_west",
1800
+ ),
1801
+ (
1802
+ "easypost_parcll_expedited_northeast",
1803
+ "easypost_parcll_expedited_northeast",
1804
+ ),
1805
+ ("easypost_parcll_regional_west", "easypost_parcll_regional_west"),
1806
+ ("easypost_parcll_regional_east", "easypost_parcll_regional_east"),
1807
+ (
1808
+ "easypost_parcll_regional_central",
1809
+ "easypost_parcll_regional_central",
1810
+ ),
1811
+ (
1812
+ "easypost_parcll_regional_northeast",
1813
+ "easypost_parcll_regional_northeast",
1814
+ ),
1815
+ (
1816
+ "easypost_parcll_regional_south",
1817
+ "easypost_parcll_regional_south",
1818
+ ),
1819
+ (
1820
+ "easypost_parcll_us_to_canada_economy_west",
1821
+ "easypost_parcll_us_to_canada_economy_west",
1822
+ ),
1823
+ (
1824
+ "easypost_parcll_us_to_canada_economy_central",
1825
+ "easypost_parcll_us_to_canada_economy_central",
1826
+ ),
1827
+ (
1828
+ "easypost_parcll_us_to_canada_economy_northeast",
1829
+ "easypost_parcll_us_to_canada_economy_northeast",
1830
+ ),
1831
+ (
1832
+ "easypost_parcll_us_to_europe_economy_west",
1833
+ "easypost_parcll_us_to_europe_economy_west",
1834
+ ),
1835
+ (
1836
+ "easypost_parcll_us_to_europe_economy_northeast",
1837
+ "easypost_parcll_us_to_europe_economy_northeast",
1838
+ ),
1839
+ ("easypost_purolator_express", "easypost_purolator_express"),
1840
+ (
1841
+ "easypost_purolator_express12_pm",
1842
+ "easypost_purolator_express12_pm",
1843
+ ),
1844
+ (
1845
+ "easypost_purolator_express_pack12_pm",
1846
+ "easypost_purolator_express_pack12_pm",
1847
+ ),
1848
+ (
1849
+ "easypost_purolator_express_box12_pm",
1850
+ "easypost_purolator_express_box12_pm",
1851
+ ),
1852
+ (
1853
+ "easypost_purolator_express_envelope12_pm",
1854
+ "easypost_purolator_express_envelope12_pm",
1855
+ ),
1856
+ (
1857
+ "easypost_purolator_express1030_am",
1858
+ "easypost_purolator_express1030_am",
1859
+ ),
1860
+ (
1861
+ "easypost_purolator_express9_am",
1862
+ "easypost_purolator_express9_am",
1863
+ ),
1864
+ (
1865
+ "easypost_purolator_express_box",
1866
+ "easypost_purolator_express_box",
1867
+ ),
1868
+ (
1869
+ "easypost_purolator_express_box1030_am",
1870
+ "easypost_purolator_express_box1030_am",
1871
+ ),
1872
+ (
1873
+ "easypost_purolator_express_box9_am",
1874
+ "easypost_purolator_express_box9_am",
1875
+ ),
1876
+ (
1877
+ "easypost_purolator_express_box_evening",
1878
+ "easypost_purolator_express_box_evening",
1879
+ ),
1880
+ (
1881
+ "easypost_purolator_express_box_international",
1882
+ "easypost_purolator_express_box_international",
1883
+ ),
1884
+ (
1885
+ "easypost_purolator_express_box_international1030_am",
1886
+ "easypost_purolator_express_box_international1030_am",
1887
+ ),
1888
+ (
1889
+ "easypost_purolator_express_box_international1200",
1890
+ "easypost_purolator_express_box_international1200",
1891
+ ),
1892
+ (
1893
+ "easypost_purolator_express_box_international9_am",
1894
+ "easypost_purolator_express_box_international9_am",
1895
+ ),
1896
+ (
1897
+ "easypost_purolator_express_box_us",
1898
+ "easypost_purolator_express_box_us",
1899
+ ),
1900
+ (
1901
+ "easypost_purolator_express_box_us1030_am",
1902
+ "easypost_purolator_express_box_us1030_am",
1903
+ ),
1904
+ (
1905
+ "easypost_purolator_express_box_us1200",
1906
+ "easypost_purolator_express_box_us1200",
1907
+ ),
1908
+ (
1909
+ "easypost_purolator_express_box_us9_am",
1910
+ "easypost_purolator_express_box_us9_am",
1911
+ ),
1912
+ (
1913
+ "easypost_purolator_express_envelope",
1914
+ "easypost_purolator_express_envelope",
1915
+ ),
1916
+ (
1917
+ "easypost_purolator_express_envelope1030_am",
1918
+ "easypost_purolator_express_envelope1030_am",
1919
+ ),
1920
+ (
1921
+ "easypost_purolator_express_envelope9_am",
1922
+ "easypost_purolator_express_envelope9_am",
1923
+ ),
1924
+ (
1925
+ "easypost_purolator_express_envelope_evening",
1926
+ "easypost_purolator_express_envelope_evening",
1927
+ ),
1928
+ (
1929
+ "easypost_purolator_express_envelope_international",
1930
+ "easypost_purolator_express_envelope_international",
1931
+ ),
1932
+ (
1933
+ "easypost_purolator_express_envelope_international1030_am",
1934
+ "easypost_purolator_express_envelope_international1030_am",
1935
+ ),
1936
+ (
1937
+ "easypost_purolator_express_envelope_international1200",
1938
+ "easypost_purolator_express_envelope_international1200",
1939
+ ),
1940
+ (
1941
+ "easypost_purolator_express_envelope_international9_am",
1942
+ "easypost_purolator_express_envelope_international9_am",
1943
+ ),
1944
+ (
1945
+ "easypost_purolator_express_envelope_us",
1946
+ "easypost_purolator_express_envelope_us",
1947
+ ),
1948
+ (
1949
+ "easypost_purolator_express_envelope_us1030_am",
1950
+ "easypost_purolator_express_envelope_us1030_am",
1951
+ ),
1952
+ (
1953
+ "easypost_purolator_express_envelope_us1200",
1954
+ "easypost_purolator_express_envelope_us1200",
1955
+ ),
1956
+ (
1957
+ "easypost_purolator_express_envelope_us9_am",
1958
+ "easypost_purolator_express_envelope_us9_am",
1959
+ ),
1960
+ (
1961
+ "easypost_purolator_express_evening",
1962
+ "easypost_purolator_express_evening",
1963
+ ),
1964
+ (
1965
+ "easypost_purolator_express_international",
1966
+ "easypost_purolator_express_international",
1967
+ ),
1968
+ (
1969
+ "easypost_purolator_express_international1030_am",
1970
+ "easypost_purolator_express_international1030_am",
1971
+ ),
1972
+ (
1973
+ "easypost_purolator_express_international1200",
1974
+ "easypost_purolator_express_international1200",
1975
+ ),
1976
+ (
1977
+ "easypost_purolator_express_international9_am",
1978
+ "easypost_purolator_express_international9_am",
1979
+ ),
1980
+ (
1981
+ "easypost_purolator_express_pack",
1982
+ "easypost_purolator_express_pack",
1983
+ ),
1984
+ (
1985
+ "easypost_purolator_express_pack1030_am",
1986
+ "easypost_purolator_express_pack1030_am",
1987
+ ),
1988
+ (
1989
+ "easypost_purolator_express_pack9_am",
1990
+ "easypost_purolator_express_pack9_am",
1991
+ ),
1992
+ (
1993
+ "easypost_purolator_express_pack_evening",
1994
+ "easypost_purolator_express_pack_evening",
1995
+ ),
1996
+ (
1997
+ "easypost_purolator_express_pack_international",
1998
+ "easypost_purolator_express_pack_international",
1999
+ ),
2000
+ (
2001
+ "easypost_purolator_express_pack_international1030_am",
2002
+ "easypost_purolator_express_pack_international1030_am",
2003
+ ),
2004
+ (
2005
+ "easypost_purolator_express_pack_international1200",
2006
+ "easypost_purolator_express_pack_international1200",
2007
+ ),
2008
+ (
2009
+ "easypost_purolator_express_pack_international9_am",
2010
+ "easypost_purolator_express_pack_international9_am",
2011
+ ),
2012
+ (
2013
+ "easypost_purolator_express_pack_us",
2014
+ "easypost_purolator_express_pack_us",
2015
+ ),
2016
+ (
2017
+ "easypost_purolator_express_pack_us1030_am",
2018
+ "easypost_purolator_express_pack_us1030_am",
2019
+ ),
2020
+ (
2021
+ "easypost_purolator_express_pack_us1200",
2022
+ "easypost_purolator_express_pack_us1200",
2023
+ ),
2024
+ (
2025
+ "easypost_purolator_express_pack_us9_am",
2026
+ "easypost_purolator_express_pack_us9_am",
2027
+ ),
2028
+ ("easypost_purolator_express_us", "easypost_purolator_express_us"),
2029
+ (
2030
+ "easypost_purolator_express_us1030_am",
2031
+ "easypost_purolator_express_us1030_am",
2032
+ ),
2033
+ (
2034
+ "easypost_purolator_express_us1200",
2035
+ "easypost_purolator_express_us1200",
2036
+ ),
2037
+ (
2038
+ "easypost_purolator_express_us9_am",
2039
+ "easypost_purolator_express_us9_am",
2040
+ ),
2041
+ ("easypost_purolator_ground", "easypost_purolator_ground"),
2042
+ (
2043
+ "easypost_purolator_ground1030_am",
2044
+ "easypost_purolator_ground1030_am",
2045
+ ),
2046
+ ("easypost_purolator_ground9_am", "easypost_purolator_ground9_am"),
2047
+ (
2048
+ "easypost_purolator_ground_distribution",
2049
+ "easypost_purolator_ground_distribution",
2050
+ ),
2051
+ (
2052
+ "easypost_purolator_ground_evening",
2053
+ "easypost_purolator_ground_evening",
2054
+ ),
2055
+ (
2056
+ "easypost_purolator_ground_regional",
2057
+ "easypost_purolator_ground_regional",
2058
+ ),
2059
+ ("easypost_purolator_ground_us", "easypost_purolator_ground_us"),
2060
+ (
2061
+ "easypost_royalmail_international_signed",
2062
+ "easypost_royalmail_international_signed",
2063
+ ),
2064
+ (
2065
+ "easypost_royalmail_international_tracked",
2066
+ "easypost_royalmail_international_tracked",
2067
+ ),
2068
+ (
2069
+ "easypost_royalmail_international_tracked_and_signed",
2070
+ "easypost_royalmail_international_tracked_and_signed",
2071
+ ),
2072
+ ("easypost_royalmail_1st_class", "easypost_royalmail_1st_class"),
2073
+ (
2074
+ "easypost_royalmail_1st_class_signed_for",
2075
+ "easypost_royalmail_1st_class_signed_for",
2076
+ ),
2077
+ ("easypost_royalmail_2nd_class", "easypost_royalmail_2nd_class"),
2078
+ (
2079
+ "easypost_royalmail_2nd_class_signed_for",
2080
+ "easypost_royalmail_2nd_class_signed_for",
2081
+ ),
2082
+ (
2083
+ "easypost_royalmail_royal_mail24",
2084
+ "easypost_royalmail_royal_mail24",
2085
+ ),
2086
+ (
2087
+ "easypost_royalmail_royal_mail24_signed_for",
2088
+ "easypost_royalmail_royal_mail24_signed_for",
2089
+ ),
2090
+ (
2091
+ "easypost_royalmail_royal_mail48",
2092
+ "easypost_royalmail_royal_mail48",
2093
+ ),
2094
+ (
2095
+ "easypost_royalmail_royal_mail48_signed_for",
2096
+ "easypost_royalmail_royal_mail48_signed_for",
2097
+ ),
2098
+ (
2099
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2100
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2101
+ ),
2102
+ (
2103
+ "easypost_royalmail_special_delivery_guaranteed9am",
2104
+ "easypost_royalmail_special_delivery_guaranteed9am",
2105
+ ),
2106
+ (
2107
+ "easypost_royalmail_standard_letter1st_class",
2108
+ "easypost_royalmail_standard_letter1st_class",
2109
+ ),
2110
+ (
2111
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2112
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2113
+ ),
2114
+ (
2115
+ "easypost_royalmail_standard_letter2nd_class",
2116
+ "easypost_royalmail_standard_letter2nd_class",
2117
+ ),
2118
+ (
2119
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2120
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2121
+ ),
2122
+ ("easypost_royalmail_tracked24", "easypost_royalmail_tracked24"),
2123
+ (
2124
+ "easypost_royalmail_tracked24_high_volume",
2125
+ "easypost_royalmail_tracked24_high_volume",
2126
+ ),
2127
+ (
2128
+ "easypost_royalmail_tracked24_high_volume_signature",
2129
+ "easypost_royalmail_tracked24_high_volume_signature",
2130
+ ),
2131
+ (
2132
+ "easypost_royalmail_tracked24_signature",
2133
+ "easypost_royalmail_tracked24_signature",
2134
+ ),
2135
+ ("easypost_royalmail_tracked48", "easypost_royalmail_tracked48"),
2136
+ (
2137
+ "easypost_royalmail_tracked48_high_volume",
2138
+ "easypost_royalmail_tracked48_high_volume",
2139
+ ),
2140
+ (
2141
+ "easypost_royalmail_tracked48_high_volume_signature",
2142
+ "easypost_royalmail_tracked48_high_volume_signature",
2143
+ ),
2144
+ (
2145
+ "easypost_royalmail_tracked48_signature",
2146
+ "easypost_royalmail_tracked48_signature",
2147
+ ),
2148
+ (
2149
+ "easypost_seko_ecommerce_standard_tracked",
2150
+ "easypost_seko_ecommerce_standard_tracked",
2151
+ ),
2152
+ (
2153
+ "easypost_seko_ecommerce_express_tracked",
2154
+ "easypost_seko_ecommerce_express_tracked",
2155
+ ),
2156
+ (
2157
+ "easypost_seko_domestic_express",
2158
+ "easypost_seko_domestic_express",
2159
+ ),
2160
+ (
2161
+ "easypost_seko_domestic_standard",
2162
+ "easypost_seko_domestic_standard",
2163
+ ),
2164
+ ("easypost_sendle_easy", "easypost_sendle_easy"),
2165
+ ("easypost_sendle_pro", "easypost_sendle_pro"),
2166
+ ("easypost_sendle_plus", "easypost_sendle_plus"),
2167
+ (
2168
+ "easypost_sfexpress_international_standard_express_doc",
2169
+ "easypost_sfexpress_international_standard_express_doc",
2170
+ ),
2171
+ (
2172
+ "easypost_sfexpress_international_standard_express_parcel",
2173
+ "easypost_sfexpress_international_standard_express_parcel",
2174
+ ),
2175
+ (
2176
+ "easypost_sfexpress_international_economy_express_pilot",
2177
+ "easypost_sfexpress_international_economy_express_pilot",
2178
+ ),
2179
+ (
2180
+ "easypost_sfexpress_international_economy_express_doc",
2181
+ "easypost_sfexpress_international_economy_express_doc",
2182
+ ),
2183
+ ("easypost_speedee_delivery", "easypost_speedee_delivery"),
2184
+ ("easypost_startrack_express", "easypost_startrack_express"),
2185
+ ("easypost_startrack_premium", "easypost_startrack_premium"),
2186
+ (
2187
+ "easypost_startrack_fixed_price_premium",
2188
+ "easypost_startrack_fixed_price_premium",
2189
+ ),
2190
+ (
2191
+ "easypost_tforce_same_day_white_glove",
2192
+ "easypost_tforce_same_day_white_glove",
2193
+ ),
2194
+ (
2195
+ "easypost_tforce_next_day_white_glove",
2196
+ "easypost_tforce_next_day_white_glove",
2197
+ ),
2198
+ ("easypost_uds_delivery_service", "easypost_uds_delivery_service"),
2199
+ ("easypost_ups_standard", "easypost_ups_standard"),
2200
+ ("easypost_ups_saver", "easypost_ups_saver"),
2201
+ ("easypost_ups_express_plus", "easypost_ups_express_plus"),
2202
+ ("easypost_ups_next_day_air", "easypost_ups_next_day_air"),
2203
+ (
2204
+ "easypost_ups_next_day_air_saver",
2205
+ "easypost_ups_next_day_air_saver",
2206
+ ),
2207
+ (
2208
+ "easypost_ups_next_day_air_early_am",
2209
+ "easypost_ups_next_day_air_early_am",
2210
+ ),
2211
+ ("easypost_ups_2nd_day_air", "easypost_ups_2nd_day_air"),
2212
+ ("easypost_ups_2nd_day_air_am", "easypost_ups_2nd_day_air_am"),
2213
+ ("easypost_ups_3_day_select", "easypost_ups_3_day_select"),
2214
+ (
2215
+ "easypost_ups_mail_expedited_mail_innovations",
2216
+ "easypost_ups_mail_expedited_mail_innovations",
2217
+ ),
2218
+ (
2219
+ "easypost_ups_mail_priority_mail_innovations",
2220
+ "easypost_ups_mail_priority_mail_innovations",
2221
+ ),
2222
+ (
2223
+ "easypost_ups_mail_economy_mail_innovations",
2224
+ "easypost_ups_mail_economy_mail_innovations",
2225
+ ),
2226
+ ("easypost_usps_library_mail", "easypost_usps_library_mail"),
2227
+ (
2228
+ "easypost_usps_first_class_mail_international",
2229
+ "easypost_usps_first_class_mail_international",
2230
+ ),
2231
+ (
2232
+ "easypost_usps_first_class_package_international_service",
2233
+ "easypost_usps_first_class_package_international_service",
2234
+ ),
2235
+ (
2236
+ "easypost_usps_priority_mail_international",
2237
+ "easypost_usps_priority_mail_international",
2238
+ ),
2239
+ (
2240
+ "easypost_usps_express_mail_international",
2241
+ "easypost_usps_express_mail_international",
2242
+ ),
2243
+ ("easypost_veho_next_day", "easypost_veho_next_day"),
2244
+ ("easypost_veho_same_day", "easypost_veho_same_day"),
2245
+ (
2246
+ "eshipper_aramex_economy_document_express",
2247
+ "eshipper_aramex_economy_document_express",
2248
+ ),
2249
+ (
2250
+ "eshipper_aramex_economy_parcel_express",
2251
+ "eshipper_aramex_economy_parcel_express",
2252
+ ),
2253
+ (
2254
+ "eshipper_aramex_priority_letter_express",
2255
+ "eshipper_aramex_priority_letter_express",
2256
+ ),
2257
+ (
2258
+ "eshipper_aramex_priority_parcel_express",
2259
+ "eshipper_aramex_priority_parcel_express",
2260
+ ),
2261
+ (
2262
+ "eshipper_canada_post_air_parcel_intl",
2263
+ "eshipper_canada_post_air_parcel_intl",
2264
+ ),
2265
+ (
2266
+ "eshipper_canada_post_expedited",
2267
+ "eshipper_canada_post_expedited",
2268
+ ),
2269
+ (
2270
+ "eshipper_canada_post_expedited_parcel_usa",
2271
+ "eshipper_canada_post_expedited_parcel_usa",
2272
+ ),
2273
+ (
2274
+ "eshipper_canada_post_priority_courier",
2275
+ "eshipper_canada_post_priority_courier",
2276
+ ),
2277
+ ("eshipper_canada_post_regular", "eshipper_canada_post_regular"),
2278
+ (
2279
+ "eshipper_canada_post_small_packet",
2280
+ "eshipper_canada_post_small_packet",
2281
+ ),
2282
+ (
2283
+ "eshipper_canada_post_small_packet_international_air",
2284
+ "eshipper_canada_post_small_packet_international_air",
2285
+ ),
2286
+ (
2287
+ "eshipper_canada_post_small_packet_international_surface",
2288
+ "eshipper_canada_post_small_packet_international_surface",
2289
+ ),
2290
+ (
2291
+ "eshipper_canada_post_surface_parcel_intl",
2292
+ "eshipper_canada_post_surface_parcel_intl",
2293
+ ),
2294
+ (
2295
+ "eshipper_canada_post_xpress_post",
2296
+ "eshipper_canada_post_xpress_post",
2297
+ ),
2298
+ (
2299
+ "eshipper_canada_post_xpress_post_intl",
2300
+ "eshipper_canada_post_xpress_post_intl",
2301
+ ),
2302
+ (
2303
+ "eshipper_canada_post_xpress_post_usa",
2304
+ "eshipper_canada_post_xpress_post_usa",
2305
+ ),
2306
+ (
2307
+ "eshipper_canada_post_xpresspost",
2308
+ "eshipper_canada_post_xpresspost",
2309
+ ),
2310
+ (
2311
+ "eshipper_canpar_express_letter",
2312
+ "eshipper_canpar_express_letter",
2313
+ ),
2314
+ ("eshipper_canpar_express_pak", "eshipper_canpar_express_pak"),
2315
+ (
2316
+ "eshipper_canpar_express_parcel",
2317
+ "eshipper_canpar_express_parcel",
2318
+ ),
2319
+ ("eshipper_canpar_ground", "eshipper_canpar_ground"),
2320
+ ("eshipper_canpar_international", "eshipper_canpar_international"),
2321
+ ("eshipper_canpar_select_letter", "eshipper_canpar_select_letter"),
2322
+ ("eshipper_canpar_select_pak", "eshipper_canpar_select_pak"),
2323
+ ("eshipper_canpar_select_parcel", "eshipper_canpar_select_parcel"),
2324
+ ("eshipper_canpar_usa", "eshipper_canpar_usa"),
2325
+ (
2326
+ "eshipper_canpar_usa_select_letter",
2327
+ "eshipper_canpar_usa_select_letter",
2328
+ ),
2329
+ (
2330
+ "eshipper_canpar_usa_select_pak",
2331
+ "eshipper_canpar_usa_select_pak",
2332
+ ),
2333
+ (
2334
+ "eshipper_canpar_usa_select_parcel",
2335
+ "eshipper_canpar_usa_select_parcel",
2336
+ ),
2337
+ ("eshipper_cpx_canada_post", "eshipper_cpx_canada_post"),
2338
+ ("eshipper_day_ross_ltl", "eshipper_day_ross_ltl"),
2339
+ ("eshipper_dhl_dhl_ground", "eshipper_dhl_dhl_ground"),
2340
+ ("eshipper_dhl_economy_select", "eshipper_dhl_economy_select"),
2341
+ ("eshipper_dhl_esi_export", "eshipper_dhl_esi_export"),
2342
+ ("eshipper_dhl_express_1030am", "eshipper_dhl_express_1030am"),
2343
+ ("eshipper_dhl_express_12pm", "eshipper_dhl_express_12pm"),
2344
+ ("eshipper_dhl_express_900", "eshipper_dhl_express_900"),
2345
+ ("eshipper_dhl_express_9am", "eshipper_dhl_express_9am"),
2346
+ ("eshipper_dhl_express_envelope", "eshipper_dhl_express_envelope"),
2347
+ (
2348
+ "eshipper_dhl_express_worldwide",
2349
+ "eshipper_dhl_express_worldwide",
2350
+ ),
2351
+ ("eshipper_dhl_import_express", "eshipper_dhl_import_express"),
2352
+ (
2353
+ "eshipper_dhl_import_express_12pm",
2354
+ "eshipper_dhl_import_express_12pm",
2355
+ ),
2356
+ (
2357
+ "eshipper_dhl_import_express_9am",
2358
+ "eshipper_dhl_import_express_9am",
2359
+ ),
2360
+ ("eshipper_ltl_apex_v", "eshipper_ltl_apex_v"),
2361
+ ("eshipper_ltl_apex_trucking", "eshipper_ltl_apex_trucking"),
2362
+ ("eshipper_ltl_apex_trucking_v", "eshipper_ltl_apex_trucking_v"),
2363
+ ("eshipper_ltl_fastfrate_rail", "eshipper_ltl_fastfrate_rail"),
2364
+ (
2365
+ "eshipper_ltl_kindersley_expedited",
2366
+ "eshipper_ltl_kindersley_expedited",
2367
+ ),
2368
+ ("eshipper_ltl_kindersley_rail", "eshipper_ltl_kindersley_rail"),
2369
+ (
2370
+ "eshipper_ltl_kindersley_regular",
2371
+ "eshipper_ltl_kindersley_regular",
2372
+ ),
2373
+ ("eshipper_ltl_kindersley_road", "eshipper_ltl_kindersley_road"),
2374
+ ("eshipper_ltl_kingsway_road", "eshipper_ltl_kingsway_road"),
2375
+ ("eshipper_ltl_m_o_eastbound", "eshipper_ltl_m_o_eastbound"),
2376
+ ("eshipper_ltl_mo_rail", "eshipper_ltl_mo_rail"),
2377
+ (
2378
+ "eshipper_ltl_national_fastfreight_rail",
2379
+ "eshipper_ltl_national_fastfreight_rail",
2380
+ ),
2381
+ (
2382
+ "eshipper_ltl_national_fastfreight_road",
2383
+ "eshipper_ltl_national_fastfreight_road",
2384
+ ),
2385
+ ("eshipper_ltl_vitran_rail", "eshipper_ltl_vitran_rail"),
2386
+ ("eshipper_ltl_vitran_road", "eshipper_ltl_vitran_road"),
2387
+ (
2388
+ "eshipper_ltl_western_canada_rail",
2389
+ "eshipper_ltl_western_canada_rail",
2390
+ ),
2391
+ (
2392
+ "eshipper_federal_express_2day_freight",
2393
+ "eshipper_federal_express_2day_freight",
2394
+ ),
2395
+ (
2396
+ "eshipper_federal_express_3day_freight",
2397
+ "eshipper_federal_express_3day_freight",
2398
+ ),
2399
+ (
2400
+ "eshipper_federal_express_fedex_2nd_day",
2401
+ "eshipper_federal_express_fedex_2nd_day",
2402
+ ),
2403
+ (
2404
+ "eshipper_federal_express_fedex_economy",
2405
+ "eshipper_federal_express_fedex_economy",
2406
+ ),
2407
+ (
2408
+ "eshipper_federal_express_fedex_first_overnight",
2409
+ "eshipper_federal_express_fedex_first_overnight",
2410
+ ),
2411
+ (
2412
+ "eshipper_federal_express_fedex_ground",
2413
+ "eshipper_federal_express_fedex_ground",
2414
+ ),
2415
+ (
2416
+ "eshipper_federal_express_fedex_ground_us",
2417
+ "eshipper_federal_express_fedex_ground_us",
2418
+ ),
2419
+ (
2420
+ "eshipper_federal_express_fedex_international_priority",
2421
+ "eshipper_federal_express_fedex_international_priority",
2422
+ ),
2423
+ (
2424
+ "eshipper_federal_express_fedex_international_priority_express",
2425
+ "eshipper_federal_express_fedex_international_priority_express",
2426
+ ),
2427
+ (
2428
+ "eshipper_federal_express_fedex_intl_economy",
2429
+ "eshipper_federal_express_fedex_intl_economy",
2430
+ ),
2431
+ (
2432
+ "eshipper_federal_express_fedex_intl_economy_freight",
2433
+ "eshipper_federal_express_fedex_intl_economy_freight",
2434
+ ),
2435
+ (
2436
+ "eshipper_federal_express_fedex_intl_priority",
2437
+ "eshipper_federal_express_fedex_intl_priority",
2438
+ ),
2439
+ (
2440
+ "eshipper_federal_express_fedex_intl_priority_express",
2441
+ "eshipper_federal_express_fedex_intl_priority_express",
2442
+ ),
2443
+ (
2444
+ "eshipper_federal_express_fedex_intl_priority_freight",
2445
+ "eshipper_federal_express_fedex_intl_priority_freight",
2446
+ ),
2447
+ (
2448
+ "eshipper_federal_express_fedex_priority",
2449
+ "eshipper_federal_express_fedex_priority",
2450
+ ),
2451
+ (
2452
+ "eshipper_federal_express_fedex_standard_overnight",
2453
+ "eshipper_federal_express_fedex_standard_overnight",
2454
+ ),
2455
+ ("eshipper_flashbird_ground", "eshipper_flashbird_ground"),
2456
+ ("eshipper_fleet_optics_ground", "eshipper_fleet_optics_ground"),
2457
+ (
2458
+ "eshipper_project44_a_duie_pyle",
2459
+ "eshipper_project44_a_duie_pyle",
2460
+ ),
2461
+ (
2462
+ "eshipper_project44_aaa_cooper_transportation",
2463
+ "eshipper_project44_aaa_cooper_transportation",
2464
+ ),
2465
+ (
2466
+ "eshipper_project44_aberdeen_express",
2467
+ "eshipper_project44_aberdeen_express",
2468
+ ),
2469
+ ("eshipper_project44_abfs", "eshipper_project44_abfs"),
2470
+ (
2471
+ "eshipper_project44_averitt_express",
2472
+ "eshipper_project44_averitt_express",
2473
+ ),
2474
+ (
2475
+ "eshipper_project44_brown_transfer_company",
2476
+ "eshipper_project44_brown_transfer_company",
2477
+ ),
2478
+ (
2479
+ "eshipper_project44_central_freight_lines",
2480
+ "eshipper_project44_central_freight_lines",
2481
+ ),
2482
+ (
2483
+ "eshipper_project44_central_transport",
2484
+ "eshipper_project44_central_transport",
2485
+ ),
2486
+ (
2487
+ "eshipper_project44_chicago_suburban_express",
2488
+ "eshipper_project44_chicago_suburban_express",
2489
+ ),
2490
+ (
2491
+ "eshipper_project44_clear_lane_freight",
2492
+ "eshipper_project44_clear_lane_freight",
2493
+ ),
2494
+ (
2495
+ "eshipper_project44_con_way_freight",
2496
+ "eshipper_project44_con_way_freight",
2497
+ ),
2498
+ (
2499
+ "eshipper_project44_crosscountry_courier",
2500
+ "eshipper_project44_crosscountry_courier",
2501
+ ),
2502
+ ("eshipper_project44_day_ross", "eshipper_project44_day_ross"),
2503
+ ("eshipper_project44_day_ross_v", "eshipper_project44_day_ross_v"),
2504
+ (
2505
+ "eshipper_project44_dayton_freight_lines",
2506
+ "eshipper_project44_dayton_freight_lines",
2507
+ ),
2508
+ (
2509
+ "eshipper_project44_dependable_highway_express",
2510
+ "eshipper_project44_dependable_highway_express",
2511
+ ),
2512
+ (
2513
+ "eshipper_project44_dohrn_transfer_company",
2514
+ "eshipper_project44_dohrn_transfer_company",
2515
+ ),
2516
+ (
2517
+ "eshipper_project44_dugan_truck_line",
2518
+ "eshipper_project44_dugan_truck_line",
2519
+ ),
2520
+ (
2521
+ "eshipper_project44_estes_express_lines",
2522
+ "eshipper_project44_estes_express_lines",
2523
+ ),
2524
+ (
2525
+ "eshipper_project44_expedited_freight_systems",
2526
+ "eshipper_project44_expedited_freight_systems",
2527
+ ),
2528
+ (
2529
+ "eshipper_project44_fedex_freight_canada",
2530
+ "eshipper_project44_fedex_freight_canada",
2531
+ ),
2532
+ (
2533
+ "eshipper_project44_fedex_freight_east",
2534
+ "eshipper_project44_fedex_freight_east",
2535
+ ),
2536
+ (
2537
+ "eshipper_project44_fedex_freight_national_canada",
2538
+ "eshipper_project44_fedex_freight_national_canada",
2539
+ ),
2540
+ (
2541
+ "eshipper_project44_fedex_freight_national_usa",
2542
+ "eshipper_project44_fedex_freight_national_usa",
2543
+ ),
2544
+ (
2545
+ "eshipper_project44_fedex_freight_usa",
2546
+ "eshipper_project44_fedex_freight_usa",
2547
+ ),
2548
+ (
2549
+ "eshipper_project44_fedex_national",
2550
+ "eshipper_project44_fedex_national",
2551
+ ),
2552
+ ("eshipper_project44_forwardair", "eshipper_project44_forwardair"),
2553
+ (
2554
+ "eshipper_project44_frontline_freight",
2555
+ "eshipper_project44_frontline_freight",
2556
+ ),
2557
+ (
2558
+ "eshipper_project44_holland_motor_express",
2559
+ "eshipper_project44_holland_motor_express",
2560
+ ),
2561
+ (
2562
+ "eshipper_project44_lakeville_motor_express",
2563
+ "eshipper_project44_lakeville_motor_express",
2564
+ ),
2565
+ (
2566
+ "eshipper_project44_manitoulin_tlx_inc",
2567
+ "eshipper_project44_manitoulin_tlx_inc",
2568
+ ),
2569
+ (
2570
+ "eshipper_project44_midwest_motor_express",
2571
+ "eshipper_project44_midwest_motor_express",
2572
+ ),
2573
+ (
2574
+ "eshipper_project44_monroe_transportation_services",
2575
+ "eshipper_project44_monroe_transportation_services",
2576
+ ),
2577
+ (
2578
+ "eshipper_project44_n_m_transfer",
2579
+ "eshipper_project44_n_m_transfer",
2580
+ ),
2581
+ (
2582
+ "eshipper_project44_new_england_motor_freight",
2583
+ "eshipper_project44_new_england_motor_freight",
2584
+ ),
2585
+ (
2586
+ "eshipper_project44_new_penn_motor_express",
2587
+ "eshipper_project44_new_penn_motor_express",
2588
+ ),
2589
+ ("eshipper_project44_pitt_ohio", "eshipper_project44_pitt_ohio"),
2590
+ ("eshipper_project44_polaris", "eshipper_project44_polaris"),
2591
+ (
2592
+ "eshipper_project44_purolator_freight",
2593
+ "eshipper_project44_purolator_freight",
2594
+ ),
2595
+ (
2596
+ "eshipper_project44_rl_carriers",
2597
+ "eshipper_project44_rl_carriers",
2598
+ ),
2599
+ (
2600
+ "eshipper_project44_roadrunner_transportation_services",
2601
+ "eshipper_project44_roadrunner_transportation_services",
2602
+ ),
2603
+ (
2604
+ "eshipper_project44_saia_motor_freight",
2605
+ "eshipper_project44_saia_motor_freight",
2606
+ ),
2607
+ (
2608
+ "eshipper_project44_southeastern_freight_lines",
2609
+ "eshipper_project44_southeastern_freight_lines",
2610
+ ),
2611
+ (
2612
+ "eshipper_project44_southwestern_motor_transport",
2613
+ "eshipper_project44_southwestern_motor_transport",
2614
+ ),
2615
+ (
2616
+ "eshipper_project44_standard_forwarding",
2617
+ "eshipper_project44_standard_forwarding",
2618
+ ),
2619
+ (
2620
+ "eshipper_project44_total_transportation_distribution",
2621
+ "eshipper_project44_total_transportation_distribution",
2622
+ ),
2623
+ (
2624
+ "eshipper_project44_tst_overland_express",
2625
+ "eshipper_project44_tst_overland_express",
2626
+ ),
2627
+ ("eshipper_project44_ups", "eshipper_project44_ups"),
2628
+ (
2629
+ "eshipper_project44_usf_reddaway",
2630
+ "eshipper_project44_usf_reddaway",
2631
+ ),
2632
+ (
2633
+ "eshipper_project44_valley_cartage",
2634
+ "eshipper_project44_valley_cartage",
2635
+ ),
2636
+ (
2637
+ "eshipper_project44_vision_express_ltl",
2638
+ "eshipper_project44_vision_express_ltl",
2639
+ ),
2640
+ (
2641
+ "eshipper_project44_ward_trucking",
2642
+ "eshipper_project44_ward_trucking",
2643
+ ),
2644
+ (
2645
+ "eshipper_project44_xpo_logistics",
2646
+ "eshipper_project44_xpo_logistics",
2647
+ ),
2648
+ (
2649
+ "eshipper_project44_xpress_global_systems",
2650
+ "eshipper_project44_xpress_global_systems",
2651
+ ),
2652
+ ("eshipper_project44_yrc", "eshipper_project44_yrc"),
2653
+ (
2654
+ "eshipper_purolator_purolator_express",
2655
+ "eshipper_purolator_purolator_express",
2656
+ ),
2657
+ (
2658
+ "eshipper_purolator_purolator_express_1030",
2659
+ "eshipper_purolator_purolator_express_1030",
2660
+ ),
2661
+ (
2662
+ "eshipper_purolator_purolator_express_9am",
2663
+ "eshipper_purolator_purolator_express_9am",
2664
+ ),
2665
+ (
2666
+ "eshipper_purolator_purolator_expresscheque",
2667
+ "eshipper_purolator_purolator_expresscheque",
2668
+ ),
2669
+ (
2670
+ "eshipper_purolator_purolator_ground",
2671
+ "eshipper_purolator_purolator_ground",
2672
+ ),
2673
+ (
2674
+ "eshipper_purolator_purolator_ground_1030",
2675
+ "eshipper_purolator_purolator_ground_1030",
2676
+ ),
2677
+ (
2678
+ "eshipper_purolator_purolator_ground_9am",
2679
+ "eshipper_purolator_purolator_ground_9am",
2680
+ ),
2681
+ ("eshipper_purolator_puroletter", "eshipper_purolator_puroletter"),
2682
+ (
2683
+ "eshipper_purolator_puroletter_1030",
2684
+ "eshipper_purolator_puroletter_1030",
2685
+ ),
2686
+ (
2687
+ "eshipper_purolator_puroletter_9am",
2688
+ "eshipper_purolator_puroletter_9am",
2689
+ ),
2690
+ ("eshipper_purolator_puropak", "eshipper_purolator_puropak"),
2691
+ (
2692
+ "eshipper_purolator_puropak_1030",
2693
+ "eshipper_purolator_puropak_1030",
2694
+ ),
2695
+ (
2696
+ "eshipper_purolator_puropak_9am",
2697
+ "eshipper_purolator_puropak_9am",
2698
+ ),
2699
+ ("eshipper_pyk_ground_advantage", "eshipper_pyk_ground_advantage"),
2700
+ ("eshipper_pyk_priority_mail", "eshipper_pyk_priority_mail"),
2701
+ (
2702
+ "eshipper_sameday_9am_guaranteed",
2703
+ "eshipper_sameday_9am_guaranteed",
2704
+ ),
2705
+ ("eshipper_sameday_am_service", "eshipper_sameday_am_service"),
2706
+ (
2707
+ "eshipper_sameday_ground_service",
2708
+ "eshipper_sameday_ground_service",
2709
+ ),
2710
+ (
2711
+ "eshipper_sameday_h1_deliver_to_curbside",
2712
+ "eshipper_sameday_h1_deliver_to_curbside",
2713
+ ),
2714
+ (
2715
+ "eshipper_sameday_h2_delivery_to_room_of_choice",
2716
+ "eshipper_sameday_h2_delivery_to_room_of_choice",
2717
+ ),
2718
+ (
2719
+ "eshipper_sameday_h3_delivery_packaging_removal",
2720
+ "eshipper_sameday_h3_delivery_packaging_removal",
2721
+ ),
2722
+ (
2723
+ "eshipper_sameday_h4_delivery_to_curbside",
2724
+ "eshipper_sameday_h4_delivery_to_curbside",
2725
+ ),
2726
+ (
2727
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
2728
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
2729
+ ),
2730
+ (
2731
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
2732
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
2733
+ ),
2734
+ ("eshipper_sameday_ltl_service", "eshipper_sameday_ltl_service"),
2735
+ ("eshipper_sameday_pm_service", "eshipper_sameday_pm_service"),
2736
+ (
2737
+ "eshipper_sameday_urgent_letter",
2738
+ "eshipper_sameday_urgent_letter",
2739
+ ),
2740
+ ("eshipper_sameday_urgent_pac", "eshipper_sameday_urgent_pac"),
2741
+ ("eshipper_skip", "eshipper_skip"),
2742
+ (
2743
+ "eshipper_smartepost_intl_dhl_parcel_international_direct_ngr",
2744
+ "eshipper_smartepost_intl_dhl_parcel_international_direct_ngr",
2745
+ ),
2746
+ (
2747
+ "eshipper_smartepost_intl_global_mail_business_priority",
2748
+ "eshipper_smartepost_intl_global_mail_business_priority",
2749
+ ),
2750
+ (
2751
+ "eshipper_smartepost_intl_global_mail_business_standard",
2752
+ "eshipper_smartepost_intl_global_mail_business_standard",
2753
+ ),
2754
+ (
2755
+ "eshipper_smartepost_intl_global_mail_packet_plus_priority",
2756
+ "eshipper_smartepost_intl_global_mail_packet_plus_priority",
2757
+ ),
2758
+ (
2759
+ "eshipper_smartepost_intl_global_mail_packet_priority",
2760
+ "eshipper_smartepost_intl_global_mail_packet_priority",
2761
+ ),
2762
+ (
2763
+ "eshipper_smartepost_intl_global_mail_packet_standard",
2764
+ "eshipper_smartepost_intl_global_mail_packet_standard",
2765
+ ),
2766
+ (
2767
+ "eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz",
2768
+ "eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz",
2769
+ ),
2770
+ (
2771
+ "eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz",
2772
+ "eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz",
2773
+ ),
2774
+ (
2775
+ "eshipper_smartepost_intl_global_mail_parcel_priority",
2776
+ "eshipper_smartepost_intl_global_mail_parcel_priority",
2777
+ ),
2778
+ (
2779
+ "eshipper_smartepost_intl_global_mail_parcel_standard",
2780
+ "eshipper_smartepost_intl_global_mail_parcel_standard",
2781
+ ),
2782
+ ("eshipper_ups_expedited", "eshipper_ups_expedited"),
2783
+ ("eshipper_ups_express", "eshipper_ups_express"),
2784
+ ("eshipper_ups_express_early_am", "eshipper_ups_express_early_am"),
2785
+ ("eshipper_ups_ground", "eshipper_ups_ground"),
2786
+ (
2787
+ "eshipper_ups_second_day_air_am",
2788
+ "eshipper_ups_second_day_air_am",
2789
+ ),
2790
+ ("eshipper_ups_standard", "eshipper_ups_standard"),
2791
+ ("eshipper_ups_three_day_select", "eshipper_ups_three_day_select"),
2792
+ ("eshipper_ups_ups_saver", "eshipper_ups_ups_saver"),
2793
+ (
2794
+ "eshipper_ups_worldwide_expedited",
2795
+ "eshipper_ups_worldwide_expedited",
2796
+ ),
2797
+ (
2798
+ "eshipper_ups_worldwide_express",
2799
+ "eshipper_ups_worldwide_express",
2800
+ ),
2801
+ (
2802
+ "eshipper_ups_worldwide_express_plus",
2803
+ "eshipper_ups_worldwide_express_plus",
2804
+ ),
2805
+ (
2806
+ "eshipper_usps_first_class_mail",
2807
+ "eshipper_usps_first_class_mail",
2808
+ ),
2809
+ (
2810
+ "eshipper_usps_first_class_package_return_service",
2811
+ "eshipper_usps_first_class_package_return_service",
2812
+ ),
2813
+ ("eshipper_usps_library_mail", "eshipper_usps_library_mail"),
2814
+ ("eshipper_usps_media_mail", "eshipper_usps_media_mail"),
2815
+ ("eshipper_usps_parcel_select", "eshipper_usps_parcel_select"),
2816
+ ("eshipper_usps_pbx", "eshipper_usps_pbx"),
2817
+ ("eshipper_usps_pbx_lightweight", "eshipper_usps_pbx_lightweight"),
2818
+ ("eshipper_usps_priority_mail", "eshipper_usps_priority_mail"),
2819
+ (
2820
+ "eshipper_usps_priority_mail_express",
2821
+ "eshipper_usps_priority_mail_express",
2822
+ ),
2823
+ (
2824
+ "eshipper_usps_priority_mail_open_and_distribute",
2825
+ "eshipper_usps_priority_mail_open_and_distribute",
2826
+ ),
2827
+ (
2828
+ "eshipper_usps_priority_mail_return_service",
2829
+ "eshipper_usps_priority_mail_return_service",
2830
+ ),
2831
+ (
2832
+ "eshipper_usps_retail_ground_formerly_standard_post",
2833
+ "eshipper_usps_retail_ground_formerly_standard_post",
2834
+ ),
2835
+ (
2836
+ "fedex_international_priority_express",
2837
+ "fedex_international_priority_express",
2838
+ ),
2839
+ ("fedex_international_first", "fedex_international_first"),
2840
+ ("fedex_international_priority", "fedex_international_priority"),
2841
+ ("fedex_international_economy", "fedex_international_economy"),
2842
+ ("fedex_ground", "fedex_ground"),
2843
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
2844
+ (
2845
+ "fedex_cargo_international_premium",
2846
+ "fedex_cargo_international_premium",
2847
+ ),
2848
+ ("fedex_first_overnight", "fedex_first_overnight"),
2849
+ ("fedex_first_overnight_freight", "fedex_first_overnight_freight"),
2850
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
2851
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
2852
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
2853
+ (
2854
+ "fedex_international_priority_freight",
2855
+ "fedex_international_priority_freight",
2856
+ ),
2857
+ (
2858
+ "fedex_international_economy_freight",
2859
+ "fedex_international_economy_freight",
2860
+ ),
2861
+ (
2862
+ "fedex_cargo_airport_to_airport",
2863
+ "fedex_cargo_airport_to_airport",
2864
+ ),
2865
+ (
2866
+ "fedex_international_priority_distribution",
2867
+ "fedex_international_priority_distribution",
2868
+ ),
2869
+ (
2870
+ "fedex_ip_direct_distribution_freight",
2871
+ "fedex_ip_direct_distribution_freight",
2872
+ ),
2873
+ (
2874
+ "fedex_intl_ground_distribution",
2875
+ "fedex_intl_ground_distribution",
2876
+ ),
2877
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
2878
+ ("fedex_smart_post", "fedex_smart_post"),
2879
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
2880
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
2881
+ ("fedex_2_day", "fedex_2_day"),
2882
+ ("fedex_2_day_am", "fedex_2_day_am"),
2883
+ ("fedex_express_saver", "fedex_express_saver"),
2884
+ ("fedex_same_day", "fedex_same_day"),
2885
+ ("fedex_same_day_city", "fedex_same_day_city"),
2886
+ ("fedex_one_day_freight", "fedex_one_day_freight"),
2887
+ (
2888
+ "fedex_international_economy_distribution",
2889
+ "fedex_international_economy_distribution",
2890
+ ),
2891
+ (
2892
+ "fedex_international_connect_plus",
2893
+ "fedex_international_connect_plus",
2894
+ ),
2895
+ (
2896
+ "fedex_international_distribution_freight",
2897
+ "fedex_international_distribution_freight",
2898
+ ),
2899
+ ("fedex_regional_economy", "fedex_regional_economy"),
2900
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
2901
+ ("fedex_next_day", "fedex_next_day"),
2902
+ ("fedex_next_day_10am", "fedex_next_day_10am"),
2903
+ ("fedex_next_day_12pm", "fedex_next_day_12pm"),
2904
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
2905
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
2906
+ (
2907
+ "fedex_europe_first_international_priority",
2908
+ "fedex_europe_first_international_priority",
2909
+ ),
2910
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
2911
+ ("fedex_2_day", "fedex_2_day"),
2912
+ ("fedex_2_day_am", "fedex_2_day_am"),
2913
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
2914
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
2915
+ (
2916
+ "fedex_cargo_airport_to_airport",
2917
+ "fedex_cargo_airport_to_airport",
2918
+ ),
2919
+ (
2920
+ "fedex_cargo_freight_forwarding",
2921
+ "fedex_cargo_freight_forwarding",
2922
+ ),
2923
+ (
2924
+ "fedex_cargo_international_express_freight",
2925
+ "fedex_cargo_international_express_freight",
2926
+ ),
2927
+ (
2928
+ "fedex_cargo_international_premium",
2929
+ "fedex_cargo_international_premium",
2930
+ ),
2931
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
2932
+ ("fedex_cargo_registered_mail", "fedex_cargo_registered_mail"),
2933
+ ("fedex_cargo_surface_mail", "fedex_cargo_surface_mail"),
2934
+ (
2935
+ "fedex_custom_critical_air_expedite",
2936
+ "fedex_custom_critical_air_expedite",
2937
+ ),
2938
+ (
2939
+ "fedex_custom_critical_air_expedite_exclusive_use",
2940
+ "fedex_custom_critical_air_expedite_exclusive_use",
2941
+ ),
2942
+ (
2943
+ "fedex_custom_critical_air_expedite_network",
2944
+ "fedex_custom_critical_air_expedite_network",
2945
+ ),
2946
+ (
2947
+ "fedex_custom_critical_charter_air",
2948
+ "fedex_custom_critical_charter_air",
2949
+ ),
2950
+ (
2951
+ "fedex_custom_critical_point_to_point",
2952
+ "fedex_custom_critical_point_to_point",
2953
+ ),
2954
+ (
2955
+ "fedex_custom_critical_surface_expedite",
2956
+ "fedex_custom_critical_surface_expedite",
2957
+ ),
2958
+ (
2959
+ "fedex_custom_critical_surface_expedite_exclusive_use",
2960
+ "fedex_custom_critical_surface_expedite_exclusive_use",
2961
+ ),
2962
+ (
2963
+ "fedex_custom_critical_temp_assure_air",
2964
+ "fedex_custom_critical_temp_assure_air",
2965
+ ),
2966
+ (
2967
+ "fedex_custom_critical_temp_assure_validated_air",
2968
+ "fedex_custom_critical_temp_assure_validated_air",
2969
+ ),
2970
+ (
2971
+ "fedex_custom_critical_white_glove_services",
2972
+ "fedex_custom_critical_white_glove_services",
2973
+ ),
2974
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
2975
+ ("fedex_express_saver", "fedex_express_saver"),
2976
+ ("fedex_first_freight", "fedex_first_freight"),
2977
+ ("fedex_freight_economy", "fedex_freight_economy"),
2978
+ ("fedex_freight_priority", "fedex_freight_priority"),
2979
+ ("fedex_ground", "fedex_ground"),
2980
+ (
2981
+ "fedex_international_priority_plus",
2982
+ "fedex_international_priority_plus",
2983
+ ),
2984
+ ("fedex_next_day_afternoon", "fedex_next_day_afternoon"),
2985
+ ("fedex_next_day_early_morning", "fedex_next_day_early_morning"),
2986
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
2987
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
2988
+ ("fedex_next_day_mid_morning", "fedex_next_day_mid_morning"),
2989
+ ("fedex_first_overnight", "fedex_first_overnight"),
2990
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
2991
+ (
2992
+ "fedex_international_distribution_freight",
2993
+ "fedex_international_distribution_freight",
2994
+ ),
2995
+ ("fedex_international_economy", "fedex_international_economy"),
2996
+ (
2997
+ "fedex_international_economy_distribution",
2998
+ "fedex_international_economy_distribution",
2999
+ ),
3000
+ (
3001
+ "fedex_international_economy_freight",
3002
+ "fedex_international_economy_freight",
3003
+ ),
3004
+ ("fedex_international_first", "fedex_international_first"),
3005
+ ("fedex_international_ground", "fedex_international_ground"),
3006
+ ("fedex_international_priority", "fedex_international_priority"),
3007
+ (
3008
+ "fedex_international_priority_distribution",
3009
+ "fedex_international_priority_distribution",
3010
+ ),
3011
+ (
3012
+ "fedex_international_priority_express",
3013
+ "fedex_international_priority_express",
3014
+ ),
3015
+ (
3016
+ "fedex_international_priority_freight",
3017
+ "fedex_international_priority_freight",
3018
+ ),
3019
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
3020
+ ("fedex_same_day", "fedex_same_day"),
3021
+ ("fedex_same_day_city", "fedex_same_day_city"),
3022
+ (
3023
+ "fedex_same_day_metro_afternoon",
3024
+ "fedex_same_day_metro_afternoon",
3025
+ ),
3026
+ ("fedex_same_day_metro_morning", "fedex_same_day_metro_morning"),
3027
+ ("fedex_same_day_metro_rush", "fedex_same_day_metro_rush"),
3028
+ ("fedex_smart_post", "fedex_smart_post"),
3029
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
3030
+ (
3031
+ "fedex_transborder_distribution_consolidation",
3032
+ "fedex_transborder_distribution_consolidation",
3033
+ ),
3034
+ ("freightcom_all", "freightcom_all"),
3035
+ ("freightcom_usf_holland", "freightcom_usf_holland"),
3036
+ ("freightcom_central_transport", "freightcom_central_transport"),
3037
+ ("freightcom_estes", "freightcom_estes"),
3038
+ ("freightcom_canpar_ground", "freightcom_canpar_ground"),
3039
+ ("freightcom_canpar_select", "freightcom_canpar_select"),
3040
+ ("freightcom_canpar_overnight", "freightcom_canpar_overnight"),
3041
+ ("freightcom_dicom_ground", "freightcom_dicom_ground"),
3042
+ ("freightcom_purolator_ground", "freightcom_purolator_ground"),
3043
+ ("freightcom_purolator_express", "freightcom_purolator_express"),
3044
+ (
3045
+ "freightcom_purolator_express_9_am",
3046
+ "freightcom_purolator_express_9_am",
3047
+ ),
3048
+ (
3049
+ "freightcom_purolator_express_10_30_am",
3050
+ "freightcom_purolator_express_10_30_am",
3051
+ ),
3052
+ (
3053
+ "freightcom_purolator_ground_us",
3054
+ "freightcom_purolator_ground_us",
3055
+ ),
3056
+ (
3057
+ "freightcom_purolator_express_us",
3058
+ "freightcom_purolator_express_us",
3059
+ ),
3060
+ (
3061
+ "freightcom_purolator_express_us_9_am",
3062
+ "freightcom_purolator_express_us_9_am",
3063
+ ),
3064
+ (
3065
+ "freightcom_purolator_express_us_10_30_am",
3066
+ "freightcom_purolator_express_us_10_30_am",
3067
+ ),
3068
+ (
3069
+ "freightcom_fedex_express_saver",
3070
+ "freightcom_fedex_express_saver",
3071
+ ),
3072
+ ("freightcom_fedex_ground", "freightcom_fedex_ground"),
3073
+ ("freightcom_fedex_2day", "freightcom_fedex_2day"),
3074
+ (
3075
+ "freightcom_fedex_priority_overnight",
3076
+ "freightcom_fedex_priority_overnight",
3077
+ ),
3078
+ (
3079
+ "freightcom_fedex_standard_overnight",
3080
+ "freightcom_fedex_standard_overnight",
3081
+ ),
3082
+ (
3083
+ "freightcom_fedex_first_overnight",
3084
+ "freightcom_fedex_first_overnight",
3085
+ ),
3086
+ (
3087
+ "freightcom_fedex_international_priority",
3088
+ "freightcom_fedex_international_priority",
3089
+ ),
3090
+ (
3091
+ "freightcom_fedex_international_economy",
3092
+ "freightcom_fedex_international_economy",
3093
+ ),
3094
+ ("freightcom_ups_standard", "freightcom_ups_standard"),
3095
+ ("freightcom_ups_expedited", "freightcom_ups_expedited"),
3096
+ ("freightcom_ups_express_saver", "freightcom_ups_express_saver"),
3097
+ ("freightcom_ups_express", "freightcom_ups_express"),
3098
+ ("freightcom_ups_express_early", "freightcom_ups_express_early"),
3099
+ ("freightcom_ups_3day_select", "freightcom_ups_3day_select"),
3100
+ (
3101
+ "freightcom_ups_worldwide_expedited",
3102
+ "freightcom_ups_worldwide_expedited",
3103
+ ),
3104
+ (
3105
+ "freightcom_ups_worldwide_express",
3106
+ "freightcom_ups_worldwide_express",
3107
+ ),
3108
+ (
3109
+ "freightcom_ups_worldwide_express_plus",
3110
+ "freightcom_ups_worldwide_express_plus",
3111
+ ),
3112
+ (
3113
+ "freightcom_ups_worldwide_express_saver",
3114
+ "freightcom_ups_worldwide_express_saver",
3115
+ ),
3116
+ ("freightcom_dhl_express_easy", "freightcom_dhl_express_easy"),
3117
+ ("freightcom_dhl_express_10_30", "freightcom_dhl_express_10_30"),
3118
+ (
3119
+ "freightcom_dhl_express_worldwide",
3120
+ "freightcom_dhl_express_worldwide",
3121
+ ),
3122
+ ("freightcom_dhl_express_12_00", "freightcom_dhl_express_12_00"),
3123
+ ("freightcom_dhl_economy_select", "freightcom_dhl_economy_select"),
3124
+ (
3125
+ "freightcom_dhl_ecommerce_am_service",
3126
+ "freightcom_dhl_ecommerce_am_service",
3127
+ ),
3128
+ (
3129
+ "freightcom_dhl_ecommerce_ground_service",
3130
+ "freightcom_dhl_ecommerce_ground_service",
3131
+ ),
3132
+ (
3133
+ "freightcom_canadapost_regular_parcel",
3134
+ "freightcom_canadapost_regular_parcel",
3135
+ ),
3136
+ (
3137
+ "freightcom_canadapost_expedited_parcel",
3138
+ "freightcom_canadapost_expedited_parcel",
3139
+ ),
3140
+ (
3141
+ "freightcom_canadapost_xpresspost",
3142
+ "freightcom_canadapost_xpresspost",
3143
+ ),
3144
+ (
3145
+ "freightcom_canadapost_priority",
3146
+ "freightcom_canadapost_priority",
3147
+ ),
3148
+ ("standard_service", "standard_service"),
3149
+ ("geodis_EXP", "geodis_EXP"),
3150
+ ("geodis_MES", "geodis_MES"),
3151
+ ("geodis_express_france", "geodis_express_france"),
3152
+ (
3153
+ "geodis_retour_trans_fr_messagerie_plus",
3154
+ "geodis_retour_trans_fr_messagerie_plus",
3155
+ ),
3156
+ ("letter_ordered", "letter_ordered"),
3157
+ ("letter_simple", "letter_simple"),
3158
+ ("letter_valued", "letter_valued"),
3159
+ ("package_ordered", "package_ordered"),
3160
+ ("package_simple", "package_simple"),
3161
+ ("package_valued", "package_valued"),
3162
+ ("parcel_simple", "parcel_simple"),
3163
+ ("parcel_valued", "parcel_valued"),
3164
+ ("postcard_ordered", "postcard_ordered"),
3165
+ ("postcard_simple", "postcard_simple"),
3166
+ ("sekogram_simple", "sekogram_simple"),
3167
+ ("sprint_simple", "sprint_simple"),
3168
+ ("yes_ordered_value", "yes_ordered_value"),
3169
+ ("locate2u_local_delivery", "locate2u_local_delivery"),
3170
+ ("purolator_express_9_am", "purolator_express_9_am"),
3171
+ ("purolator_express_us", "purolator_express_us"),
3172
+ ("purolator_express_10_30_am", "purolator_express_10_30_am"),
3173
+ ("purolator_express_us_9_am", "purolator_express_us_9_am"),
3174
+ ("purolator_express_12_pm", "purolator_express_12_pm"),
3175
+ ("purolator_express_us_10_30_am", "purolator_express_us_10_30_am"),
3176
+ ("purolator_express", "purolator_express"),
3177
+ ("purolator_express_us_12_00", "purolator_express_us_12_00"),
3178
+ ("purolator_express_evening", "purolator_express_evening"),
3179
+ ("purolator_express_envelope_us", "purolator_express_envelope_us"),
3180
+ (
3181
+ "purolator_express_envelope_9_am",
3182
+ "purolator_express_envelope_9_am",
3183
+ ),
3184
+ (
3185
+ "purolator_express_us_envelope_9_am",
3186
+ "purolator_express_us_envelope_9_am",
3187
+ ),
3188
+ (
3189
+ "purolator_express_envelope_10_30_am",
3190
+ "purolator_express_envelope_10_30_am",
3191
+ ),
3192
+ (
3193
+ "purolator_express_us_envelope_10_30_am",
3194
+ "purolator_express_us_envelope_10_30_am",
3195
+ ),
3196
+ (
3197
+ "purolator_express_envelope_12_pm",
3198
+ "purolator_express_envelope_12_pm",
3199
+ ),
3200
+ (
3201
+ "purolator_express_us_envelope_12_00",
3202
+ "purolator_express_us_envelope_12_00",
3203
+ ),
3204
+ ("purolator_express_envelope", "purolator_express_envelope"),
3205
+ ("purolator_express_pack_us", "purolator_express_pack_us"),
3206
+ (
3207
+ "purolator_express_envelope_evening",
3208
+ "purolator_express_envelope_evening",
3209
+ ),
3210
+ (
3211
+ "purolator_express_us_pack_9_am",
3212
+ "purolator_express_us_pack_9_am",
3213
+ ),
3214
+ ("purolator_express_pack_9_am", "purolator_express_pack_9_am"),
3215
+ (
3216
+ "purolator_express_us_pack_10_30_am",
3217
+ "purolator_express_us_pack_10_30_am",
3218
+ ),
3219
+ (
3220
+ "purolator_express_pack10_30_am",
3221
+ "purolator_express_pack10_30_am",
3222
+ ),
3223
+ (
3224
+ "purolator_express_us_pack_12_00",
3225
+ "purolator_express_us_pack_12_00",
3226
+ ),
3227
+ ("purolator_express_pack_12_pm", "purolator_express_pack_12_pm"),
3228
+ ("purolator_express_box_us", "purolator_express_box_us"),
3229
+ ("purolator_express_pack", "purolator_express_pack"),
3230
+ ("purolator_express_us_box_9_am", "purolator_express_us_box_9_am"),
3231
+ (
3232
+ "purolator_express_pack_evening",
3233
+ "purolator_express_pack_evening",
3234
+ ),
3235
+ (
3236
+ "purolator_express_us_box_10_30_am",
3237
+ "purolator_express_us_box_10_30_am",
3238
+ ),
3239
+ ("purolator_express_box_9_am", "purolator_express_box_9_am"),
3240
+ (
3241
+ "purolator_express_us_box_12_00",
3242
+ "purolator_express_us_box_12_00",
3243
+ ),
3244
+ (
3245
+ "purolator_express_box_10_30_am",
3246
+ "purolator_express_box_10_30_am",
3247
+ ),
3248
+ ("purolator_ground_us", "purolator_ground_us"),
3249
+ ("purolator_express_box_12_pm", "purolator_express_box_12_pm"),
3250
+ (
3251
+ "purolator_express_international",
3252
+ "purolator_express_international",
3253
+ ),
3254
+ ("purolator_express_box", "purolator_express_box"),
3255
+ (
3256
+ "purolator_express_international_9_am",
3257
+ "purolator_express_international_9_am",
3258
+ ),
3259
+ ("purolator_express_box_evening", "purolator_express_box_evening"),
3260
+ (
3261
+ "purolator_express_international_10_30_am",
3262
+ "purolator_express_international_10_30_am",
3263
+ ),
3264
+ ("purolator_ground", "purolator_ground"),
3265
+ (
3266
+ "purolator_express_international_12_00",
3267
+ "purolator_express_international_12_00",
3268
+ ),
3269
+ ("purolator_ground_9_am", "purolator_ground_9_am"),
3270
+ (
3271
+ "purolator_express_envelope_international",
3272
+ "purolator_express_envelope_international",
3273
+ ),
3274
+ ("purolator_ground_10_30_am", "purolator_ground_10_30_am"),
3275
+ (
3276
+ "purolator_express_international_envelope_9_am",
3277
+ "purolator_express_international_envelope_9_am",
3278
+ ),
3279
+ ("purolator_ground_evening", "purolator_ground_evening"),
3280
+ (
3281
+ "purolator_express_international_envelope_10_30_am",
3282
+ "purolator_express_international_envelope_10_30_am",
3283
+ ),
3284
+ ("purolator_quick_ship", "purolator_quick_ship"),
3285
+ (
3286
+ "purolator_express_international_envelope_12_00",
3287
+ "purolator_express_international_envelope_12_00",
3288
+ ),
3289
+ ("purolator_quick_ship_envelope", "purolator_quick_ship_envelope"),
3290
+ (
3291
+ "purolator_express_pack_international",
3292
+ "purolator_express_pack_international",
3293
+ ),
3294
+ ("purolator_quick_ship_pack", "purolator_quick_ship_pack"),
3295
+ (
3296
+ "purolator_express_international_pack_9_am",
3297
+ "purolator_express_international_pack_9_am",
3298
+ ),
3299
+ ("purolator_quick_ship_box", "purolator_quick_ship_box"),
3300
+ (
3301
+ "purolator_express_international_pack_10_30_am",
3302
+ "purolator_express_international_pack_10_30_am",
3303
+ ),
3304
+ (
3305
+ "purolator_express_international_pack_12_00",
3306
+ "purolator_express_international_pack_12_00",
3307
+ ),
3308
+ (
3309
+ "purolator_express_box_international",
3310
+ "purolator_express_box_international",
3311
+ ),
3312
+ (
3313
+ "purolator_express_international_box_9_am",
3314
+ "purolator_express_international_box_9_am",
3315
+ ),
3316
+ (
3317
+ "purolator_express_international_box_10_30_am",
3318
+ "purolator_express_international_box_10_30_am",
3319
+ ),
3320
+ (
3321
+ "purolator_express_international_box_12_00",
3322
+ "purolator_express_international_box_12_00",
3323
+ ),
3324
+ ("roadie_local_delivery", "roadie_local_delivery"),
3325
+ ("sendle_standard_pickup", "sendle_standard_pickup"),
3326
+ ("sendle_standard_dropoff", "sendle_standard_dropoff"),
3327
+ ("sendle_express_pickup", "sendle_express_pickup"),
3328
+ ("tge_freight_service", "tge_freight_service"),
3329
+ ("tnt_special_express", "tnt_special_express"),
3330
+ ("tnt_9_00_express", "tnt_9_00_express"),
3331
+ ("tnt_10_00_express", "tnt_10_00_express"),
3332
+ ("tnt_12_00_express", "tnt_12_00_express"),
3333
+ ("tnt_express", "tnt_express"),
3334
+ ("tnt_economy_express", "tnt_economy_express"),
3335
+ ("tnt_global_express", "tnt_global_express"),
3336
+ ("ups_standard", "ups_standard"),
3337
+ ("ups_worldwide_express", "ups_worldwide_express"),
3338
+ ("ups_worldwide_expedited", "ups_worldwide_expedited"),
3339
+ ("ups_worldwide_express_plus", "ups_worldwide_express_plus"),
3340
+ ("ups_worldwide_saver", "ups_worldwide_saver"),
3341
+ ("ups_2nd_day_air", "ups_2nd_day_air"),
3342
+ ("ups_2nd_day_air_am", "ups_2nd_day_air_am"),
3343
+ ("ups_3_day_select", "ups_3_day_select"),
3344
+ ("ups_ground", "ups_ground"),
3345
+ ("ups_next_day_air", "ups_next_day_air"),
3346
+ ("ups_next_day_air_early", "ups_next_day_air_early"),
3347
+ ("ups_next_day_air_saver", "ups_next_day_air_saver"),
3348
+ ("ups_expedited_ca", "ups_expedited_ca"),
3349
+ ("ups_express_saver_ca", "ups_express_saver_ca"),
3350
+ ("ups_3_day_select_ca_us", "ups_3_day_select_ca_us"),
3351
+ ("ups_access_point_economy_ca", "ups_access_point_economy_ca"),
3352
+ ("ups_express_ca", "ups_express_ca"),
3353
+ ("ups_express_early_ca", "ups_express_early_ca"),
3354
+ ("ups_express_saver_intl_ca", "ups_express_saver_intl_ca"),
3355
+ ("ups_standard_ca", "ups_standard_ca"),
3356
+ ("ups_worldwide_expedited_ca", "ups_worldwide_expedited_ca"),
3357
+ ("ups_worldwide_express_ca", "ups_worldwide_express_ca"),
3358
+ ("ups_worldwide_express_plus_ca", "ups_worldwide_express_plus_ca"),
3359
+ ("ups_express_early_ca_us", "ups_express_early_ca_us"),
3360
+ ("ups_access_point_economy_eu", "ups_access_point_economy_eu"),
3361
+ ("ups_expedited_eu", "ups_expedited_eu"),
3362
+ ("ups_express_eu", "ups_express_eu"),
3363
+ ("ups_standard_eu", "ups_standard_eu"),
3364
+ ("ups_worldwide_express_plus_eu", "ups_worldwide_express_plus_eu"),
3365
+ ("ups_worldwide_saver_eu", "ups_worldwide_saver_eu"),
3366
+ ("ups_access_point_economy_mx", "ups_access_point_economy_mx"),
3367
+ ("ups_expedited_mx", "ups_expedited_mx"),
3368
+ ("ups_express_mx", "ups_express_mx"),
3369
+ ("ups_standard_mx", "ups_standard_mx"),
3370
+ ("ups_worldwide_express_plus_mx", "ups_worldwide_express_plus_mx"),
3371
+ ("ups_worldwide_saver_mx", "ups_worldwide_saver_mx"),
3372
+ ("ups_access_point_economy_pl", "ups_access_point_economy_pl"),
3373
+ (
3374
+ "ups_today_dedicated_courrier_pl",
3375
+ "ups_today_dedicated_courrier_pl",
3376
+ ),
3377
+ ("ups_today_express_pl", "ups_today_express_pl"),
3378
+ ("ups_today_express_saver_pl", "ups_today_express_saver_pl"),
3379
+ ("ups_today_standard_pl", "ups_today_standard_pl"),
3380
+ ("ups_expedited_pl", "ups_expedited_pl"),
3381
+ ("ups_express_pl", "ups_express_pl"),
3382
+ ("ups_express_plus_pl", "ups_express_plus_pl"),
3383
+ ("ups_express_saver_pl", "ups_express_saver_pl"),
3384
+ ("ups_standard_pl", "ups_standard_pl"),
3385
+ ("ups_2nd_day_air_pr", "ups_2nd_day_air_pr"),
3386
+ ("ups_ground_pr", "ups_ground_pr"),
3387
+ ("ups_next_day_air_pr", "ups_next_day_air_pr"),
3388
+ ("ups_next_day_air_early_pr", "ups_next_day_air_early_pr"),
3389
+ ("ups_worldwide_expedited_pr", "ups_worldwide_expedited_pr"),
3390
+ ("ups_worldwide_express_pr", "ups_worldwide_express_pr"),
3391
+ ("ups_worldwide_express_plus_pr", "ups_worldwide_express_plus_pr"),
3392
+ ("ups_worldwide_saver_pr", "ups_worldwide_saver_pr"),
3393
+ ("ups_express_12_00_de", "ups_express_12_00_de"),
3394
+ ("ups_worldwide_express_freight", "ups_worldwide_express_freight"),
3395
+ (
3396
+ "ups_worldwide_express_freight_midday",
3397
+ "ups_worldwide_express_freight_midday",
3398
+ ),
3399
+ ("ups_worldwide_economy_ddu", "ups_worldwide_economy_ddu"),
3400
+ ("ups_worldwide_economy_ddp", "ups_worldwide_economy_ddp"),
3401
+ ("usps_standard_service", "usps_standard_service"),
3402
+ ("usps_parcel_select", "usps_parcel_select"),
3403
+ (
3404
+ "usps_parcel_select_lightweight",
3405
+ "usps_parcel_select_lightweight",
3406
+ ),
3407
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
3408
+ ("usps_priority_mail", "usps_priority_mail"),
3409
+ (
3410
+ "usps_first_class_package_service",
3411
+ "usps_first_class_package_service",
3412
+ ),
3413
+ ("usps_library_mail", "usps_library_mail"),
3414
+ ("usps_media_mail", "usps_media_mail"),
3415
+ ("usps_bound_printed_matter", "usps_bound_printed_matter"),
3416
+ ("usps_connect_local", "usps_connect_local"),
3417
+ ("usps_connect_mail", "usps_connect_mail"),
3418
+ ("usps_connect_next_day", "usps_connect_next_day"),
3419
+ ("usps_connect_regional", "usps_connect_regional"),
3420
+ ("usps_connect_same_day", "usps_connect_same_day"),
3421
+ ("usps_ground_advantage", "usps_ground_advantage"),
3422
+ ("usps_retail_ground", "usps_retail_ground"),
3423
+ ("usps_all", "usps_all"),
3424
+ ("usps_standard_service", "usps_standard_service"),
3425
+ ("usps_parcel_select", "usps_parcel_select"),
3426
+ (
3427
+ "usps_parcel_select_lightweight",
3428
+ "usps_parcel_select_lightweight",
3429
+ ),
3430
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
3431
+ ("usps_priority_mail", "usps_priority_mail"),
3432
+ (
3433
+ "usps_first_class_package_service",
3434
+ "usps_first_class_package_service",
3435
+ ),
3436
+ ("usps_library_mail", "usps_library_mail"),
3437
+ ("usps_media_mail", "usps_media_mail"),
3438
+ ("usps_bound_printed_matter", "usps_bound_printed_matter"),
3439
+ ("usps_connect_local", "usps_connect_local"),
3440
+ ("usps_connect_mail", "usps_connect_mail"),
3441
+ ("usps_connect_next_day", "usps_connect_next_day"),
3442
+ ("usps_connect_regional", "usps_connect_regional"),
3443
+ ("usps_connect_same_day", "usps_connect_same_day"),
3444
+ ("usps_ground_advantage", "usps_ground_advantage"),
3445
+ ("usps_retail_ground", "usps_retail_ground"),
3446
+ ("usps_all", "usps_all"),
3447
+ ("zoom2u_VIP", "zoom2u_VIP"),
3448
+ ("zoom2u_3_hour", "zoom2u_3_hour"),
3449
+ ("zoom2u_same_day", "zoom2u_same_day"),
3450
+ ],
3451
+ help_text="\n The list of services you want to apply the surcharge to.\n <br/>\n Note that by default, the surcharge is applied to all services\n ",
3452
+ null=True,
3453
+ ),
3454
+ ),
3455
+ ]