obi-sdk 0.19.100 → 0.19.101

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -135,6 +135,23 @@ sdk.updateConfig({ showMenu: true, isActive: true })
135
135
 
136
136
  **Note**: For comprehensive documentation, usage examples, and best practices, refer to the [obi-loader package documentation](https://www.npmjs.com/package/obi-loader).
137
137
 
138
+ ## Temporary V3 Rollout Gate
139
+
140
+ The SDK currently routes `update({ showMenu: true })` to Widget V3 (side panel) by default.
141
+
142
+ Temporary exception:
143
+
144
+ - Hostname `app.canibuild.com` remains on Widget V2 for `showMenu` calls.
145
+ - Hostname `app.rechargly.com` remains on Widget V2 for `showMenu` calls.
146
+
147
+ Override behavior:
148
+
149
+ - Passing `showSidePanel` explicitly still wins:
150
+ - `update({ showMenu: true, showSidePanel: true })` forces V3.
151
+ - `update({ showMenu: true, showSidePanel: false })` forces V2.
152
+
153
+ This gate is temporary and should be removed once these customers are migrated to V3.
154
+
138
155
  ## Event API
139
156
 
140
157
  The Obi SDK extends `EventEmitter` and provides events for monitoring SDK state and responding to changes. Access the SDK instance via `window.obi` to subscribe to events.