Skip to content

Commit

Permalink
chore(internal): add some missing newlines between methods (#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Jan 9, 2025
1 parent da5b86b commit aab8f6b
Show file tree
Hide file tree
Showing 10 changed files with 74 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1264,8 +1264,10 @@ constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1277,8 +1279,10 @@ constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -2385,8 +2389,10 @@ constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -2398,8 +2404,10 @@ constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -3531,8 +3539,10 @@ constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -3544,8 +3554,10 @@ constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1050,8 +1050,10 @@ constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1063,8 +1065,10 @@ constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1176,8 +1178,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -2173,8 +2177,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -2186,8 +2192,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1176,8 +1178,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -2173,8 +2177,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -2186,8 +2192,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1176,8 +1178,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -2173,8 +2177,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -2186,8 +2192,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1176,8 +1178,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -2173,8 +2177,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -2186,8 +2192,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1176,8 +1178,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -2173,8 +2177,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -2186,8 +2192,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1176,8 +1178,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -2173,8 +2177,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -2186,8 +2192,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -1176,8 +1178,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down Expand Up @@ -2173,8 +2177,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun string(): String? = string

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun long(): Long? = long

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun strings(): List<String>? = strings

Expand All @@ -2186,8 +2192,10 @@ private constructor(

/** A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` */
fun asString(): String = string.getOrThrow("string")

/** A number, to be used with `IS_GREATER_THAN` or `IS_LESS_THAN` */
fun asLong(): Long = long.getOrThrow("long")

/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
fun asStrings(): List<String> = strings.getOrThrow("strings")

Expand Down
Loading

0 comments on commit aab8f6b

Please sign in to comment.