From 9b8d2d754e5fa968d1cf97f6553785b070c3bd25 Mon Sep 17 00:00:00 2001 From: Spencer Jorgensen Date: Thu, 29 Feb 2024 14:16:38 -0700 Subject: [PATCH] Edit the usage of licenses so that the user does not any longer need to specify a license. --- examples/us-enrichment-api/geo-reference/main.go | 6 ------ examples/us-enrichment-api/propertyFinancial/main.go | 6 ------ examples/us-enrichment-api/propertyPrincipal/main.go | 6 ------ 3 files changed, 18 deletions(-) diff --git a/examples/us-enrichment-api/geo-reference/main.go b/examples/us-enrichment-api/geo-reference/main.go index 11e8139..447f653 100644 --- a/examples/us-enrichment-api/geo-reference/main.go +++ b/examples/us-enrichment-api/geo-reference/main.go @@ -16,12 +16,6 @@ func main() { client := wireup.BuildUSEnrichmentAPIClient( //wireup.WebsiteKeyCredential(os.Getenv("SMARTY_AUTH_WEB"), os.Getenv("SMARTY_AUTH_REFERER")), wireup.SecretKeyCredential(os.Getenv("SMARTY_AUTH_ID"), os.Getenv("SMARTY_AUTH_TOKEN")), - // The appropriate license values to be used for your subscriptions - // can be found on the Subscriptions page the account dashboard. - // https://www.smarty.com/docs/cloud/licensing - //wireup.WithLicenses("us-property-data-principal-cloud"), - wireup.CustomBaseURL("https://us-enrichment.api.rivendell.smartyops.net"), - // wireup.DebugHTTPOutput(), // uncomment this line to see detailed HTTP request/response information. ) // Documentation for input fields can be found at: diff --git a/examples/us-enrichment-api/propertyFinancial/main.go b/examples/us-enrichment-api/propertyFinancial/main.go index 317283e..79e6b94 100644 --- a/examples/us-enrichment-api/propertyFinancial/main.go +++ b/examples/us-enrichment-api/propertyFinancial/main.go @@ -16,12 +16,6 @@ func main() { client := wireup.BuildUSEnrichmentAPIClient( //wireup.WebsiteKeyCredential(os.Getenv("SMARTY_AUTH_WEB"), os.Getenv("SMARTY_AUTH_REFERER")), wireup.SecretKeyCredential(os.Getenv("SMARTY_AUTH_ID"), os.Getenv("SMARTY_AUTH_TOKEN")), - // The appropriate license values to be used for your subscriptions - // can be found on the Subscriptions page the account dashboard. - // https://www.smarty.com/docs/cloud/licensing - wireup.WithLicenses("us-property-data-principal-cloud"), - wireup.CustomBaseURL("https://us-enrichment.api.rivendell.smartyops.net"), - // wireup.DebugHTTPOutput(), // uncomment this line to see detailed HTTP request/response information. ) // Documentation for input fields can be found at: diff --git a/examples/us-enrichment-api/propertyPrincipal/main.go b/examples/us-enrichment-api/propertyPrincipal/main.go index 2d2d37f..7f142b9 100644 --- a/examples/us-enrichment-api/propertyPrincipal/main.go +++ b/examples/us-enrichment-api/propertyPrincipal/main.go @@ -16,12 +16,6 @@ func main() { client := wireup.BuildUSEnrichmentAPIClient( //wireup.WebsiteKeyCredential(os.Getenv("SMARTY_AUTH_WEB"), os.Getenv("SMARTY_AUTH_REFERER")), wireup.SecretKeyCredential(os.Getenv("SMARTY_AUTH_ID"), os.Getenv("SMARTY_AUTH_TOKEN")), - // The appropriate license values to be used for your subscriptions - // can be found on the Subscriptions page the account dashboard. - // https://www.smarty.com/docs/cloud/licensing - wireup.WithLicenses("us-property-data-principal-cloud"), - wireup.CustomBaseURL("https://us-enrichment.api.rivendell.smartyops.net"), - // wireup.DebugHTTPOutput(), // uncomment this line to see detailed HTTP request/response information. ) // Documentation for input fields can be found at: