@@ -128,12 +128,13 @@ public static class CarrierAccounts
128128 /// </summary>
129129 private static List < string > CarrierTypesWithCustomCreateWorkflows => new ( )
130130 {
131+ CarrierAccountType . AmazonShippingAccount . Name ,
131132 CarrierAccountType . FedEx . Name ,
132133 CarrierAccountType . FedExSmartPost . Name ,
133134 CarrierAccountType . Ups . Name ,
134135 CarrierAccountType . UpsMailInnovations . Name ,
135136 CarrierAccountType . UpsSurePost . Name ,
136- CarrierAccountType . AmazonShippingAccount . Name ,
137+ CarrierAccountType . UspsShipAccount . Name ,
137138 } ;
138139
139140 internal static string DeriveCreateEndpoint ( string carrierType )
@@ -143,7 +144,7 @@ internal static string DeriveCreateEndpoint(string carrierType)
143144 var @switch = new SwitchCase
144145 {
145146 { new List < string > { CarrierAccountType . FedEx . Name , CarrierAccountType . FedExSmartPost . Name } . Contains ( carrierType ) , ( ) => endpoint = CustomCreateEndpoint } ,
146- { new List < string > { CarrierAccountType . AmazonShippingAccount . Name , CarrierAccountType . Ups . Name , CarrierAccountType . UpsMailInnovations . Name , CarrierAccountType . UpsSurePost . Name , } . Contains ( carrierType ) , ( ) => endpoint = OauthCreateEndpoint } ,
147+ { new List < string > { CarrierAccountType . AmazonShippingAccount . Name , CarrierAccountType . Ups . Name , CarrierAccountType . UpsMailInnovations . Name , CarrierAccountType . UpsSurePost . Name , CarrierAccountType . UspsShipAccount . Name , } . Contains ( carrierType ) , ( ) => endpoint = OauthCreateEndpoint } ,
147148 { SwitchCaseScenario . Default , ( ) => endpoint = StandardCreateEndpoint } ,
148149 } ;
149150
0 commit comments