Skip to content

Commit ac13a4b

Browse files
feat(api): api update
1 parent 945da4b commit ac13a4b

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 232
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8746787e90b2f68dce823f8a9de7d73df21a9a57fbb2b9169b32704eeba38794.yml
3-
openapi_spec_hash: caca59ae4602cbbcbda07baf1a0165b4
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a72ddcd1864b9ba3aecab707aaaa5a3269d034eb70222d6909e4fe768da46dc2.yml
3+
openapi_spec_hash: 99aa469f8a1c21a5418f1fcf41f9475b
44
config_hash: d15ecbf4dc8a7a0ef99397d11b557444

increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7644,6 +7644,9 @@ private constructor(
76447644
/** Persona. See https://withpersona.com for more information. */
76457645
val PERSONA = of("persona")
76467646

7647+
/** Taktile. See https://taktile.com for more information. */
7648+
val TAKTILE = of("taktile")
7649+
76477650
fun of(value: String) = Vendor(JsonField.of(value))
76487651
}
76497652

@@ -7657,6 +7660,8 @@ private constructor(
76577660
OSCILAR,
76587661
/** Persona. See https://withpersona.com for more information. */
76597662
PERSONA,
7663+
/** Taktile. See https://taktile.com for more information. */
7664+
TAKTILE,
76607665
}
76617666

76627667
/**
@@ -7677,6 +7682,8 @@ private constructor(
76777682
OSCILAR,
76787683
/** Persona. See https://withpersona.com for more information. */
76797684
PERSONA,
7685+
/** Taktile. See https://taktile.com for more information. */
7686+
TAKTILE,
76807687
/**
76817688
* An enum member indicating that [Vendor] was instantiated with an unknown value.
76827689
*/
@@ -7696,6 +7703,7 @@ private constructor(
76967703
MIDDESK -> Value.MIDDESK
76977704
OSCILAR -> Value.OSCILAR
76987705
PERSONA -> Value.PERSONA
7706+
TAKTILE -> Value.TAKTILE
76997707
else -> Value._UNKNOWN
77007708
}
77017709

@@ -7714,6 +7722,7 @@ private constructor(
77147722
MIDDESK -> Known.MIDDESK
77157723
OSCILAR -> Known.OSCILAR
77167724
PERSONA -> Known.PERSONA
7725+
TAKTILE -> Known.TAKTILE
77177726
else -> throw IncreaseInvalidDataException("Unknown Vendor: $value")
77187727
}
77197728

increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11591,6 +11591,9 @@ private constructor(
1159111591
/** Persona. See https://withpersona.com for more information. */
1159211592
val PERSONA = of("persona")
1159311593

11594+
/** Taktile. See https://taktile.com for more information. */
11595+
val TAKTILE = of("taktile")
11596+
1159411597
fun of(value: String) = Vendor(JsonField.of(value))
1159511598
}
1159611599

@@ -11604,6 +11607,8 @@ private constructor(
1160411607
OSCILAR,
1160511608
/** Persona. See https://withpersona.com for more information. */
1160611609
PERSONA,
11610+
/** Taktile. See https://taktile.com for more information. */
11611+
TAKTILE,
1160711612
}
1160811613

1160911614
/**
@@ -11624,6 +11629,8 @@ private constructor(
1162411629
OSCILAR,
1162511630
/** Persona. See https://withpersona.com for more information. */
1162611631
PERSONA,
11632+
/** Taktile. See https://taktile.com for more information. */
11633+
TAKTILE,
1162711634
/**
1162811635
* An enum member indicating that [Vendor] was instantiated with an unknown value.
1162911636
*/
@@ -11643,6 +11650,7 @@ private constructor(
1164311650
MIDDESK -> Value.MIDDESK
1164411651
OSCILAR -> Value.OSCILAR
1164511652
PERSONA -> Value.PERSONA
11653+
TAKTILE -> Value.TAKTILE
1164611654
else -> Value._UNKNOWN
1164711655
}
1164811656

@@ -11661,6 +11669,7 @@ private constructor(
1166111669
MIDDESK -> Known.MIDDESK
1166211670
OSCILAR -> Known.OSCILAR
1166311671
PERSONA -> Known.PERSONA
11672+
TAKTILE -> Known.TAKTILE
1166411673
else -> throw IncreaseInvalidDataException("Unknown Vendor: $value")
1166511674
}
1166611675

increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3191,6 +3191,9 @@ private constructor(
31913191
/** Persona. See https://withpersona.com for more information. */
31923192
val PERSONA = of("persona")
31933193

3194+
/** Taktile. See https://taktile.com for more information. */
3195+
val TAKTILE = of("taktile")
3196+
31943197
fun of(value: String) = Vendor(JsonField.of(value))
31953198
}
31963199

@@ -3204,6 +3207,8 @@ private constructor(
32043207
OSCILAR,
32053208
/** Persona. See https://withpersona.com for more information. */
32063209
PERSONA,
3210+
/** Taktile. See https://taktile.com for more information. */
3211+
TAKTILE,
32073212
}
32083213

32093214
/**
@@ -3224,6 +3229,8 @@ private constructor(
32243229
OSCILAR,
32253230
/** Persona. See https://withpersona.com for more information. */
32263231
PERSONA,
3232+
/** Taktile. See https://taktile.com for more information. */
3233+
TAKTILE,
32273234
/**
32283235
* An enum member indicating that [Vendor] was instantiated with an unknown value.
32293236
*/
@@ -3243,6 +3250,7 @@ private constructor(
32433250
MIDDESK -> Value.MIDDESK
32443251
OSCILAR -> Value.OSCILAR
32453252
PERSONA -> Value.PERSONA
3253+
TAKTILE -> Value.TAKTILE
32463254
else -> Value._UNKNOWN
32473255
}
32483256

@@ -3261,6 +3269,7 @@ private constructor(
32613269
MIDDESK -> Known.MIDDESK
32623270
OSCILAR -> Known.OSCILAR
32633271
PERSONA -> Known.PERSONA
3272+
TAKTILE -> Known.TAKTILE
32643273
else -> throw IncreaseInvalidDataException("Unknown Vendor: $value")
32653274
}
32663275

0 commit comments

Comments
 (0)