Skip to content

Commit e9758bd

Browse files
chore: generated code for commit cefa667. [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent cefa667 commit e9758bd

File tree

426 files changed

+2272
-1533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

426 files changed

+2272
-1533
lines changed

clients/algoliasearch-client-csharp/algoliasearch/Models/Search/SecuredAPIKeyRestrictions.cs renamed to clients/algoliasearch-client-csharp/algoliasearch/Models/Search/SecuredApiKeyRestrictions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
namespace Algolia.Search.Models.Search;
1313

1414
/// <summary>
15-
/// SecuredAPIKeyRestrictions
15+
/// SecuredApiKeyRestrictions
1616
/// </summary>
17-
public partial class SecuredAPIKeyRestrictions
17+
public partial class SecuredApiKeyRestrictions
1818
{
1919
/// <summary>
20-
/// Initializes a new instance of the SecuredAPIKeyRestrictions class.
20+
/// Initializes a new instance of the SecuredApiKeyRestrictions class.
2121
/// </summary>
22-
public SecuredAPIKeyRestrictions()
22+
public SecuredApiKeyRestrictions()
2323
{
2424
}
2525

@@ -71,7 +71,7 @@ public SecuredAPIKeyRestrictions()
7171
public override string ToString()
7272
{
7373
StringBuilder sb = new StringBuilder();
74-
sb.Append("class SecuredAPIKeyRestrictions {\n");
74+
sb.Append("class SecuredApiKeyRestrictions {\n");
7575
sb.Append(" SearchParams: ").Append(SearchParams).Append("\n");
7676
sb.Append(" Filters: ").Append(Filters).Append("\n");
7777
sb.Append(" ValidUntil: ").Append(ValidUntil).Append("\n");
@@ -98,7 +98,7 @@ public virtual string ToJson()
9898
/// <returns>Boolean</returns>
9999
public override bool Equals(object obj)
100100
{
101-
if (obj is not SecuredAPIKeyRestrictions input)
101+
if (obj is not SecuredApiKeyRestrictions input)
102102
{
103103
return false;
104104
}

clients/algoliasearch-client-dart/packages/client_search/lib/src/deserialize.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,8 @@ ReturnType deserialize<ReturnType, BaseType>(dynamic value, String targetType,
493493
case 'SearchUserIdsResponse':
494494
return SearchUserIdsResponse.fromJson(value as Map<String, dynamic>)
495495
as ReturnType;
496-
case 'SecuredAPIKeyRestrictions':
497-
return SecuredAPIKeyRestrictions.fromJson(value as Map<String, dynamic>)
496+
case 'SecuredApiKeyRestrictions':
497+
return SecuredApiKeyRestrictions.fromJson(value as Map<String, dynamic>)
498498
as ReturnType;
499499
case 'SemanticSearch':
500500
return SemanticSearch.fromJson(value as Map<String, dynamic>)

clients/algoliasearch-client-dart/packages/client_search/lib/src/model/secured_api_key_restrictions.dart

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import 'package:json_annotation/json_annotation.dart';
77
part 'secured_api_key_restrictions.g.dart';
88

99
@JsonSerializable()
10-
final class SecuredAPIKeyRestrictions {
11-
/// Returns a new [SecuredAPIKeyRestrictions] instance.
12-
const SecuredAPIKeyRestrictions({
10+
final class SecuredApiKeyRestrictions {
11+
/// Returns a new [SecuredApiKeyRestrictions] instance.
12+
const SecuredApiKeyRestrictions({
1313
this.searchParams,
1414
this.filters,
1515
this.validUntil,
@@ -44,7 +44,7 @@ final class SecuredAPIKeyRestrictions {
4444
@override
4545
bool operator ==(Object other) =>
4646
identical(this, other) ||
47-
other is SecuredAPIKeyRestrictions &&
47+
other is SecuredApiKeyRestrictions &&
4848
other.searchParams == searchParams &&
4949
other.filters == filters &&
5050
other.validUntil == validUntil &&
@@ -61,10 +61,10 @@ final class SecuredAPIKeyRestrictions {
6161
restrictSources.hashCode +
6262
userToken.hashCode;
6363

64-
factory SecuredAPIKeyRestrictions.fromJson(Map<String, dynamic> json) =>
65-
_$SecuredAPIKeyRestrictionsFromJson(json);
64+
factory SecuredApiKeyRestrictions.fromJson(Map<String, dynamic> json) =>
65+
_$SecuredApiKeyRestrictionsFromJson(json);
6666

67-
Map<String, dynamic> toJson() => _$SecuredAPIKeyRestrictionsToJson(this);
67+
Map<String, dynamic> toJson() => _$SecuredApiKeyRestrictionsToJson(this);
6868

6969
@override
7070
String toString() {

clients/algoliasearch-client-dart/packages/client_search/lib/src/model/secured_api_key_restrictions.g.dart

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

clients/algoliasearch-client-go/algolia/search/api_search.go

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

0 commit comments

Comments
 (0)