You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(node-sdk): update markdown documentation with GitHub-style blockquotes
- Convert documentation hints to GitHub-style blockquotes
- Update README with new blockquote styles for NOTE, TIP, IMPORTANT, WARNING, and CAUTION
- Improve documentation readability and consistency with markdown formatting
Once the client is initialized, you can obtain features along with the `isEnabled`
55
52
status to indicate whether the feature is targeted for this user/company:
56
53
57
-
> [!NOTE]
54
+
> [!IMPORTANT]
58
55
> If `user.id` or `company.id` is not given, the whole `user` or `company` object is ignored.
59
56
60
57
```typescript
@@ -134,7 +131,7 @@ You can manually flush the batch buffer at any time:
134
131
awaitclient.flush();
135
132
```
136
133
137
-
> [!NOTE]
134
+
> [!TIP]
138
135
> It's recommended to call `flush()` before your application shuts down to ensure all events are sent.
139
136
140
137
### Rate Limiting
@@ -271,8 +268,7 @@ current working directory.
271
268
|`featureOverrides`| Record<string, boolean> | An object specifying feature overrides for testing or local development. See [example/app.test.ts](https://github.com/bucketco/bucket-javascript-sdk/tree/main/packages/browser-sdk/example/app.test.ts) for how to use `featureOverrides` in tests. | BUCKET_FEATURES_ENABLED, BUCKET_FEATURES_DISABLED |
272
269
|`configFile`| string | Load this config file from disk. Default: `bucketConfig.json`| BUCKET_CONFIG_FILE |
273
270
274
-
> [!NOTE]
275
-
> `BUCKET_FEATURES_ENABLED` and `BUCKET_FEATURES_DISABLED` are comma separated lists of features which will be enabled or disabled respectively.
271
+
> [!NOTE] > `BUCKET_FEATURES_ENABLED` and `BUCKET_FEATURES_DISABLED` are comma separated lists of features which will be enabled or disabled respectively.
0 commit comments