Skip to content

Commit

Permalink
Merge pull request #132 from square/release/38.1.0
Browse files Browse the repository at this point in the history
Generated PR for Release: 38.1.0
  • Loading branch information
ddrocco committed Sep 18, 2024
2 parents 47e6b57 + d931ff5 commit f22e66e
Show file tree
Hide file tree
Showing 1,084 changed files with 14,669 additions and 14,535 deletions.
27 changes: 13 additions & 14 deletions Square.Tests/ApiTestBase.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NUnit.Framework;
using Square;
using Square.Authentication;
using Square.Http.Client;
using Square.Models;

namespace Square
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using APIMatic.Core.Types;
using NUnit.Framework;
using Square;
using Square.Authentication;
using Square.Http.Client;
using Square.Models;

/// <summary>
/// ControllerTestBase Class.
/// </summary>
Expand All @@ -26,7 +25,7 @@ public class ApiTestBase
/// <summary>
/// Gets HttpCallBackHandler.
/// </summary>
internal HttpCallBack HttpCallBack { get; private set; } = new HttpCallBack();
internal HttpCallback HttpCallBack { get; private set; } = new HttpCallback();

/// <summary>
/// Gets SquareClient Client.
Expand All @@ -41,7 +40,7 @@ public void SetUp()
{
SquareClient config = SquareClient.CreateFromEnvironment();
this.Client = config.ToBuilder()
.HttpCallBack(HttpCallBack)
.HttpCallback(HttpCallBack)
.Build();
}
}
Expand Down
30 changes: 15 additions & 15 deletions Square.Tests/LocationsApiTest.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Threading.Tasks;
using APIMatic.Core.Utilities;
using Newtonsoft.Json.Converters;
using NUnit.Framework;
using Square;
using Square.Apis;
using Square.Exceptions;
using Square.Http.Client;
using Square.Http.Response;
using Square.Utilities;

namespace Square
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Threading.Tasks;
using APIMatic.Core.Utilities;
using Newtonsoft.Json.Converters;
using NUnit.Framework;
using Square;
using Square.Apis;
using Square.Exceptions;
using Square.Http.Client;
using Square.Http.Response;
using Square.Utilities;

/// <summary>
/// LocationsApiTest.
/// </summary>
Expand Down
20 changes: 10 additions & 10 deletions Square.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26430.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Square", "Square/Square.csproj", "{6730d256-edd1-492a-bb9d-66797499d8e4}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Square", "Square/Square.csproj", "{c39be2e6-d740-4d77-ac72-72a520e5d22c}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Square.Tests", "Square.Tests/Square.Tests.csproj", "{83c01d2f-ede8-4e26-b797-aaf72b2e4d70}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Square.Tests", "Square.Tests/Square.Tests.csproj", "{b99edfd0-825e-455e-8da4-7c1ea286b08c}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6730d256-edd1-492a-bb9d-66797499d8e4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6730d256-edd1-492a-bb9d-66797499d8e4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6730d256-edd1-492a-bb9d-66797499d8e4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6730d256-edd1-492a-bb9d-66797499d8e4}.Release|Any CPU.Build.0 = Release|Any CPU
{83c01d2f-ede8-4e26-b797-aaf72b2e4d70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{83c01d2f-ede8-4e26-b797-aaf72b2e4d70}.Debug|Any CPU.Build.0 = Debug|Any CPU
{83c01d2f-ede8-4e26-b797-aaf72b2e4d70}.Release|Any CPU.ActiveCfg = Release|Any CPU
{83c01d2f-ede8-4e26-b797-aaf72b2e4d70}.Release|Any CPU.Build.0 = Release|Any CPU
{c39be2e6-d740-4d77-ac72-72a520e5d22c}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{c39be2e6-d740-4d77-ac72-72a520e5d22c}.Debug|Any CPU.Build.0 = Debug|Any CPU
{c39be2e6-d740-4d77-ac72-72a520e5d22c}.Release|Any CPU.ActiveCfg = Release|Any CPU
{c39be2e6-d740-4d77-ac72-72a520e5d22c}.Release|Any CPU.Build.0 = Release|Any CPU
{b99edfd0-825e-455e-8da4-7c1ea286b08c}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{b99edfd0-825e-455e-8da4-7c1ea286b08c}.Debug|Any CPU.Build.0 = Debug|Any CPU
{b99edfd0-825e-455e-8da4-7c1ea286b08c}.Release|Any CPU.ActiveCfg = Release|Any CPU
{b99edfd0-825e-455e-8da4-7c1ea286b08c}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
40 changes: 20 additions & 20 deletions Square/Apis/ApplePayApi.cs
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
namespace Square.Apis
{
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;

namespace Square.Apis
{
/// <summary>
/// ApplePayApi.
/// </summary>
Expand Down
40 changes: 20 additions & 20 deletions Square/Apis/BankAccountsApi.cs
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
namespace Square.Apis
{
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;

namespace Square.Apis
{
/// <summary>
/// BankAccountsApi.
/// </summary>
Expand Down
20 changes: 10 additions & 10 deletions Square/Apis/BaseApi.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
using APIMatic.Core;
using APIMatic.Core.Http.Configuration;
using APIMatic.Core.Response;
using Square.Exceptions;
using Square.Http.Client;
using Square.Http.Request;
using Square.Http.Response;
using Square.Utilities;
using System;

namespace Square.Apis
{
using APIMatic.Core;
using APIMatic.Core.Http.Configuration;
using APIMatic.Core.Response;
using Square.Exceptions;
using Square.Http.Client;
using Square.Http.Request;
using Square.Http.Response;
using Square.Utilities;
using System;

/// <summary>
/// The base class for all controller classes.
/// </summary>
Expand Down
40 changes: 20 additions & 20 deletions Square/Apis/BookingCustomAttributesApi.cs
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
namespace Square.Apis
{
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;

namespace Square.Apis
{
/// <summary>
/// BookingCustomAttributesApi.
/// </summary>
Expand Down
40 changes: 20 additions & 20 deletions Square/Apis/BookingsApi.cs
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
namespace Square.Apis
{
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;

namespace Square.Apis
{
/// <summary>
/// BookingsApi.
/// </summary>
Expand Down
40 changes: 20 additions & 20 deletions Square/Apis/CardsApi.cs
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
namespace Square.Apis
{
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using APIMatic.Core;
using APIMatic.Core.Types;
using APIMatic.Core.Utilities;
using APIMatic.Core.Utilities.Date.Xml;
using Newtonsoft.Json.Converters;
using Square;
using Square.Http.Client;
using Square.Utilities;
using System.Net.Http;

namespace Square.Apis
{
/// <summary>
/// CardsApi.
/// </summary>
Expand Down
Loading

0 comments on commit f22e66e

Please sign in to comment.