Skip to content

Commit 03dcb31

Browse files
feat(api): api update
1 parent 3e1be2f commit 03dcb31

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 139
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb/orb-5192a1b7cab269d33dbc3c9eb75994d41880eff1694900232b99f4cc30ae5710.yml
3-
openapi_spec_hash: 1bcfe26f0efab1f1287195a45074fae5
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb/orb-0b931ef1842e244faf237ea9dd3f8be2cadf24410a1cbb0bdae6f1f03fd1067d.yml
3+
openapi_spec_hash: b704b2673cb93856fd500e61301c661c
44
config_hash: c01c1191b1cd696c7ca855ff6d28a8df

src/Orb/Models/Events/EventIngestParams.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ namespace Orb.Models.Events;
103103
/// is billed for in the corresponding billing period.</para>
104104
///
105105
/// <para>In general, Orb does not expect events with future dated timestamps. In
106-
/// cases where the timestamp is at least 24 hours ahead of the current time, the
107-
/// event will not be accepted as a valid event, and will throw validation errors.</para>
106+
/// cases where the timestamp is 5 minutes ahead of the current time, the event will
107+
/// not be accepted as a valid event, and will throw validation errors.</para>
108108
///
109109
/// <para>## Event validation</para>
110110
///
@@ -118,8 +118,8 @@ namespace Orb.Models.Events;
118118
/// `external_customer_id` is specified, the customer in Orb does not need to exist.
119119
/// Events will be attributed to any future customers with the `external_customer_id`
120120
/// on subscription creation. - `timestamp` must conform to ISO 8601 and represent
121-
/// a timestamp at most 1 hour in the future. This timestamp should be sent in UTC
122-
/// timezone (no timezone offset).</para>
121+
/// a timestamp at most 5 minutes in the future. This timestamp should be sent in
122+
/// UTC timezone (no timezone offset).</para>
123123
///
124124
/// <para>## Idempotency and retry semantics</para>
125125
///

src/Orb/Services/IEventService.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,8 @@ Task<EventDeprecateResponse> Deprecate(
238238
/// billed for in the corresponding billing period.</para>
239239
///
240240
/// <para>In general, Orb does not expect events with future dated timestamps. In
241-
/// cases where the timestamp is at least 24 hours ahead of the current time, the
242-
/// event will not be accepted as a valid event, and will throw validation errors.</para>
241+
/// cases where the timestamp is 5 minutes ahead of the current time, the event will
242+
/// not be accepted as a valid event, and will throw validation errors.</para>
243243
///
244244
/// <para>## Event validation</para>
245245
///
@@ -254,8 +254,8 @@ Task<EventDeprecateResponse> Deprecate(
254254
/// - If the `external_customer_id` is specified, the customer in Orb does not need
255255
/// to exist. Events will be attributed to any future customers with the
256256
/// `external_customer_id` on subscription creation. - `timestamp` must conform to
257-
/// ISO 8601 and represent a timestamp at most 1 hour in the future. This timestamp
258-
/// should be sent in UTC timezone (no timezone offset).</para>
257+
/// ISO 8601 and represent a timestamp at most 5 minutes in the future. This
258+
/// timestamp should be sent in UTC timezone (no timezone offset).</para>
259259
///
260260
/// <para>## Idempotency and retry semantics</para>
261261
///

0 commit comments

Comments
 (0)