zuora_api 1.7.61 → 1.7.62
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.
- checksums.yaml +4 -4
- data/lib/zuora_api/login.rb +3 -2
- data/lib/zuora_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 479359d9433123fd29f78c6cc18729f9d8f8b38a8b0244a1fc8638de31637230
|
|
4
|
+
data.tar.gz: f20964d5e9f3c061192ff5c31025b6091d02490acece169ebd403ca8081b05a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f4bfed42527bdd4eb02a6de2f834d651d37eeec31ca21db3c3140427594d719a2257abefc3041926cd91c02791808644b3e408bf0dd5387349181ac1ca834bd
|
|
7
|
+
data.tar.gz: 486183dba5fc177f11a5201376b980233a4e511a833488062557d2d74428f3ec916e76399eab7b859b85f7d4f18f2777a4d4e7bb1e551c9bb8f70cbf2d59d7bb
|
data/lib/zuora_api/login.rb
CHANGED
|
@@ -268,7 +268,8 @@ module ZuoraAPI
|
|
|
268
268
|
"EU" => {"Sandbox" => "https://sandbox.eu.zuora.com/apps/services/a/",
|
|
269
269
|
"Production" => "https://eu.zuora.com/apps/services/a/",
|
|
270
270
|
"Performance" => "https://pt1.eu.zuora.com/apps/services/a/",
|
|
271
|
-
"Services" => "https://services347.eu.zuora.com/apps/services/a/"
|
|
271
|
+
"Services" => "https://services347.eu.zuora.com/apps/services/a/",
|
|
272
|
+
"Test" => "https://test.eu.zuora.com/apps/services/a/"},
|
|
272
273
|
"NA" => {"Sandbox" => "https://sandbox.na.zuora.com/apps/services/a/",
|
|
273
274
|
"Production" => "https://na.zuora.com/apps/services/a/",
|
|
274
275
|
"Performance" => "https://pt1.na.zuora.com/apps/services/a/",
|
|
@@ -331,7 +332,7 @@ module ZuoraAPI
|
|
|
331
332
|
environment = update_environment
|
|
332
333
|
mappings = {"US" => {"Sandbox" => "ZConnectSbx", "Services" => "ZConnectSvcUS", "Production" => "ZConnectProd", "Performance" => "ZConnectPT1", "Test" => "ZConnectTest", "Staging" => "ZConnectQA", "KubeSTG" => "ZConnectDev", "KubeDEV" => "ZConnectDev", "KubePROD" => "ZConnectDev"},
|
|
333
334
|
"NA" => {"Sandbox" => "ZConnectSbxNA", "Services" => "ZConnectSvcNA", "Production" => "ZConnectProdNA", "Performance" => "ZConnectPT1NA"},
|
|
334
|
-
"EU" => {"Sandbox" => "ZConnectSbxEU", "Services" => "ZConnectSvcEU", "Production" => "ZConnectProdEU", "Performance" => "ZConnectPT1EU"},
|
|
335
|
+
"EU" => {"Sandbox" => "ZConnectSbxEU", "Services" => "ZConnectSvcEU", "Production" => "ZConnectProdEU", "Performance" => "ZConnectPT1EU", "Test" => "ZConnectTest"},
|
|
335
336
|
"Unknown" => {"Unknown" => "Unknown"}}
|
|
336
337
|
self.zconnect_provider = mappings[region][environment]
|
|
337
338
|
end
|
data/lib/zuora_api/version.rb
CHANGED