Skip to content

Commit ad28007

Browse files
feat(deps-dev): bump @seamapi/types from 1.352.0 to 1.353.1 in the seam group (#107)
* feat(deps-dev): bump @seamapi/types in the seam group Bumps the seam group with 1 update: [@seamapi/types](https://github.com/seamapi/types). Updates `@seamapi/types` from 1.352.0 to 1.353.1 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.352.0...v1.353.1) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: seam ... Signed-off-by: dependabot[bot] <[email protected]> * ci: Generate code --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Seam Bot <[email protected]>
1 parent ad26e84 commit ad28007

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

output/csharp/src/Seam/Api/Events.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ public ListRequest(
150150
string? connectedAccountId = default,
151151
string? deviceId = default,
152152
List<string>? deviceIds = default,
153+
List<string>? eventIds = default,
153154
ListRequest.EventTypeEnum? eventType = default,
154155
List<ListRequest.EventTypesEnum>? eventTypes = default,
155156
float? limit = default,
@@ -166,6 +167,7 @@ public ListRequest(
166167
ConnectedAccountId = connectedAccountId;
167168
DeviceId = deviceId;
168169
DeviceIds = deviceIds;
170+
EventIds = eventIds;
169171
EventType = eventType;
170172
EventTypes = eventTypes;
171173
Limit = limit;
@@ -668,6 +670,9 @@ public enum EventTypesEnum
668670
[DataMember(Name = "device_ids", IsRequired = false, EmitDefaultValue = false)]
669671
public List<string>? DeviceIds { get; set; }
670672

673+
[DataMember(Name = "event_ids", IsRequired = false, EmitDefaultValue = false)]
674+
public List<string>? EventIds { get; set; }
675+
671676
[DataMember(Name = "event_type", IsRequired = false, EmitDefaultValue = false)]
672677
public ListRequest.EventTypeEnum? EventType { get; set; }
673678

@@ -754,6 +759,7 @@ public List<Event> List(
754759
string? connectedAccountId = default,
755760
string? deviceId = default,
756761
List<string>? deviceIds = default,
762+
List<string>? eventIds = default,
757763
ListRequest.EventTypeEnum? eventType = default,
758764
List<ListRequest.EventTypesEnum>? eventTypes = default,
759765
float? limit = default,
@@ -772,6 +778,7 @@ public List<Event> List(
772778
connectedAccountId: connectedAccountId,
773779
deviceId: deviceId,
774780
deviceIds: deviceIds,
781+
eventIds: eventIds,
775782
eventType: eventType,
776783
eventTypes: eventTypes,
777784
limit: limit,
@@ -800,6 +807,7 @@ public async Task<List<Event>> ListAsync(
800807
string? connectedAccountId = default,
801808
string? deviceId = default,
802809
List<string>? deviceIds = default,
810+
List<string>? eventIds = default,
803811
ListRequest.EventTypeEnum? eventType = default,
804812
List<ListRequest.EventTypesEnum>? eventTypes = default,
805813
float? limit = default,
@@ -819,6 +827,7 @@ await ListAsync(
819827
connectedAccountId: connectedAccountId,
820828
deviceId: deviceId,
821829
deviceIds: deviceIds,
830+
eventIds: eventIds,
822831
eventType: eventType,
823832
eventTypes: eventTypes,
824833
limit: limit,

output/csharp/src/Seam/Api/UsersAcs.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ protected ListRequest() { }
472472
public ListRequest(
473473
string? acsSystemId = default,
474474
string? createdBefore = default,
475-
float? limit = default,
475+
int? limit = default,
476476
string? pageCursor = default,
477477
string? userIdentityEmailAddress = default,
478478
string? userIdentityId = default,
@@ -495,7 +495,7 @@ public ListRequest(
495495
public string? CreatedBefore { get; set; }
496496

497497
[DataMember(Name = "limit", IsRequired = false, EmitDefaultValue = false)]
498-
public float? Limit { get; set; }
498+
public int? Limit { get; set; }
499499

500500
[DataMember(Name = "page_cursor", IsRequired = false, EmitDefaultValue = false)]
501501
public string? PageCursor { get; set; }
@@ -581,7 +581,7 @@ public List<AcsUser> List(ListRequest request)
581581
public List<AcsUser> List(
582582
string? acsSystemId = default,
583583
string? createdBefore = default,
584-
float? limit = default,
584+
int? limit = default,
585585
string? pageCursor = default,
586586
string? userIdentityEmailAddress = default,
587587
string? userIdentityId = default,
@@ -613,7 +613,7 @@ public async Task<List<AcsUser>> ListAsync(ListRequest request)
613613
public async Task<List<AcsUser>> ListAsync(
614614
string? acsSystemId = default,
615615
string? createdBefore = default,
616-
float? limit = default,
616+
int? limit = default,
617617
string? pageCursor = default,
618618
string? userIdentityEmailAddress = default,
619619
string? userIdentityId = default,

output/csharp/src/Seam/Seam.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<PackageId>Seam</PackageId>
99

10-
<PackageVersion>0.27.0</PackageVersion>
10+
<PackageVersion>0.28.0</PackageVersion>
1111

1212
<Authors>Seam</Authors>
1313

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
},
6060
"devDependencies": {
6161
"@seamapi/nextlove-sdk-generator": "^1.15.8",
62-
"@seamapi/types": "^1.352.0",
62+
"@seamapi/types": "^1.353.1",
6363
"@types/node": "^18.19.11",
6464
"ava": "^5.0.1",
6565
"axios": "^1.5.0",

0 commit comments

Comments
 (0)