Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/sdk/client-side-sdks/android/android-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ DevCycleEvent event = DevCycleEvent.builder()
devcycleClient.track(event);
```

The SDK will flush events every 10s or `flushEventsMS` specified in the options.
The SDK will flush events every 10s or `flushEventsIntervalMs` specified in the options.

**Manually Flushing Events**

Expand Down
7 changes: 4 additions & 3 deletions docs/sdk/client-side-sdks/angular/angular-gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const devCycleProvider = new DevCycleAngularProvider(
{ /* DevCycle Options */ }
);

// A `targetingKey` or `user_id` is required to initialize the DevCycle Provider.
// Provide a `targetingKey` or `user_id` to avoid an anonymous user.
OpenFeature.setContext({
targetingKey: "user123"
});
Expand All @@ -52,9 +52,10 @@ It's best to initialize DevCycle in your root module, so that it can be initiali

:::

### Required TargetingKey
### TargetingKey or user_id

For DevCycle SDK to work we require either a `targetingKey` or `user_id` to be set on the OpenFeature context. This is used to identify the user as the user_id for a DevCycleUser in DevCycle.
DevCycle recommends setting a `targetingKey` or `user_id` on the OpenFeature context to identify the user.
If neither is set, the provider initializes an anonymous user and evaluates flags for that anonymous user.


### Context properties to DevCycleUser
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/client-side-sdks/flutter/flutter-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ DevCycleEvent event = DevCycleEventBuilder()
_devcycleClient.track(event);
```

The SDK will flush events every 10s or `flushEventsMS` specified in the options. To manually flush events, call:
The SDK will flush events every 10s or `flushEventsIntervalMs` specified in the options. To manually flush events, call:

```dart
_devcycleClient.flushEvents();
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/client-side-sdks/ios/ios-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ if (err) {

### Manually Flush Events

The SDK will flush events every 10s or `flushEventsMS` specified in the options. To manually flush events, call:
The SDK will flush events every 10s or `eventFlushIntervalMS` specified in the options. To manually flush events, call:

**Swift**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ const devcycleProvider = new DevCycleProvider('<DEVCYCLE_CLIENT_SDK_KEY>', optio
await OpenFeature.setProviderAndWait(devcycleProvider)
```

### Required TargetingKey
### TargetingKey or user_id

For DevCycle SDK to work we require either a `targetingKey` or `user_id` to be set on the OpenFeature context.
This is used to identify the user as the `user_id` for a `DevCycleUser` in DevCycle.
DevCycle recommends setting a `targetingKey` or `user_id` on the OpenFeature context to identify the user.
If neither is set, the provider initializes an anonymous user and evaluates flags for that anonymous user.

### Context properties to DevCycleUser

Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/client-side-sdks/javascript/javascript-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const event = {
devcycleClient.track(event)
```

The SDK will flush events every 10s or `flushEventsMS` specified in the options. To manually flush events, call:
The SDK will flush events every 10s or `eventFlushIntervalMS` specified in the options. To manually flush events, call:

```javascript
await devcycleClient.flushEvents()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const event = {
devcycleClient.track(event)
```

The SDK will flush events every 10s or `flushEventsMS` specified in the Provider options. To manually flush events, call:
The SDK will flush events every 10s or `eventFlushIntervalMS` specified in the Provider options. To manually flush events, call:

```js
await devcycleClient.flushEvents()
Expand Down
6 changes: 3 additions & 3 deletions docs/sdk/client-side-sdks/react/react-openfeature.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ const devcycleProvider = new DevCycleReactProvider(
await OpenFeature.setProviderAndWait(devcycleProvider)
```

### Required TargetingKey
### TargetingKey or user_id

For DevCycle SDK to work we require either a `targetingKey` or `user_id` to be set on the OpenFeature context.
This is used to identify the user as the `user_id` for a `DevCycleUser` in DevCycle.
DevCycle recommends setting a `targetingKey` or `user_id` on the OpenFeature context to identify the user.
If neither is set, the provider initializes an anonymous user and evaluates flags for that anonymous user.

### Context properties to DevCycleUser

Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/client-side-sdks/react/react-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const event = {
devcycleClient.track(event)
```

The SDK will flush events every 10s or `flushEventsMS` specified in the Provider options. To manually flush events, call:
The SDK will flush events every 10s or `eventFlushIntervalMS` specified in the Provider options. To manually flush events, call:

```js
await devcycleClient.flushEvents()
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/client-side-sdks/roku/roku-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import PromptContent from '!!raw-loader!@site/static/ai-prompts/roku.md'

This version of the DevCycle Client SDK supports the following platforms:

- **Roku OS 9.4+**
- **Roku OS 9.1+**

## Installation

Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/client-side-sdks/roku/roku-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ event = {
m.devcycleClient.track(event)
```

The SDK will flush events every 10s or `flushEventsMS` specified in the options. To manually flush events, call:
The SDK will flush events every 10s or `flushEventsIntervalMs` specified in the options. To manually flush events, call:

```javascript
m.devcycleClient.flushEvents()
Expand Down