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