Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
speakeasyVersion: 1.770.0
speakeasyVersion: 1.790.3
sources:
bank-feeds-source:
sourceNamespace: bank-feeds-source
Expand All @@ -16,8 +16,8 @@ sources:
- 3.0.0
platform-source:
sourceNamespace: platform-source
sourceRevisionDigest: sha256:e176a344718f8e9b036c29d8cc197e5e384ee61b1fdc4894ca4e4b8ddaf643c1
sourceBlobDigest: sha256:dbc37e7b61a982a8097e6bfaaba3b147d363cc0bd352179022b2db432b7e5c15
sourceRevisionDigest: sha256:e8ec4f71a97b6ec2ac2f74acde6b7391999129f59ff269a16efc023d2c8951a1
sourceBlobDigest: sha256:7933accbbdac16ddc1fe5a895b1b7130143aca77a578aa8aadfd3d17e1c5ba30
tags:
- latest
- 3.0.0
Expand Down Expand Up @@ -75,10 +75,10 @@ targets:
platform-library:
source: platform-source
sourceNamespace: platform-source
sourceRevisionDigest: sha256:e176a344718f8e9b036c29d8cc197e5e384ee61b1fdc4894ca4e4b8ddaf643c1
sourceBlobDigest: sha256:dbc37e7b61a982a8097e6bfaaba3b147d363cc0bd352179022b2db432b7e5c15
sourceRevisionDigest: sha256:e8ec4f71a97b6ec2ac2f74acde6b7391999129f59ff269a16efc023d2c8951a1
sourceBlobDigest: sha256:7933accbbdac16ddc1fe5a895b1b7130143aca77a578aa8aadfd3d17e1c5ba30
codeSamplesNamespace: platform-source-csharp-code-samples
codeSamplesRevisionDigest: sha256:61ce9191a547babffc452e1c45a55b0549a7fdaa69b308fd1305e011fc01bb23
codeSamplesRevisionDigest: sha256:125d0bd182b23d9144e612be8a57066d2b5765cb7e9c8a1d6a42a59476248aac
sync-for-commerce-library:
source: sync-for-commerce-source
sourceNamespace: sync-for-commerce-source
Expand Down
339 changes: 47 additions & 292 deletions platform/.speakeasy/gen.lock

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion platform/.speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
csharp:
version: 6.2.1
version: 6.3.0
additionalDependencies: []
author: Codat
baseErrorName: CodatPlatformException
Expand Down Expand Up @@ -61,7 +61,10 @@ csharp:
outputModelSuffix: output
packageName: Codat.Platform
packageTags: ""
presenceAwareJsonSerialization: false
respectTitlesForPrimitiveUnionMembers: false
responseFormat: envelope
sourceDirectory: ""
targetFramework: dotnetVersion
unionStrategy: left-to-right
useNodatime: true
2 changes: 1 addition & 1 deletion platform/Codat/Platform/Codat.Platform.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Codat.Platform</PackageId>
<Version>6.2.1</Version>
<Version>6.3.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Authors>Codat</Authors>
<Copyright>Copyright (c) Codat 2026</Copyright>
Expand Down
1 change: 0 additions & 1 deletion platform/Codat/Platform/Hooks/SDKHooks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public SDKHooks()
this.beforeRequestHooks = new List<IBeforeRequestHook>();
this.afterSuccessHooks = new List<IAfterSuccessHook>();
this.afterErrorHooks = new List<IAfterErrorHook>();
HookRegistration.InitHooks(this);
}

/// <summary>
Expand Down

This file was deleted.

This file was deleted.

6 changes: 6 additions & 0 deletions platform/Codat/Platform/Models/Components/Company.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,12 @@ public class Company
[JsonProperty("tags")]
public Dictionary<string, string>? Tags { get; set; }

/// <summary>
/// The IDs of the users assigned as owners of the company in the Codat Portal. Empty if the company has no owners assigned. Owners are managed in the Codat Portal and can't be set via the API.
/// </summary>
[JsonProperty("ownerUserIds")]
public List<string>? OwnerUserIds { get; set; }

[JsonProperty("referenceParentCompany")]
public CompanyReference? ReferenceParentCompany { get; set; }

Expand Down
118 changes: 0 additions & 118 deletions platform/Codat/Platform/Models/Components/CompanyDetails.cs

This file was deleted.

57 changes: 0 additions & 57 deletions platform/Codat/Platform/Models/Components/CompanyWebhook.cs

This file was deleted.

Loading