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