@meshmakers/octo-services 3.3.1200 → 3.4.50
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/package.json
CHANGED
|
@@ -356,6 +356,22 @@ interface AdminPanelConfigurationDto {
|
|
|
356
356
|
}
|
|
357
357
|
|
|
358
358
|
interface ConfigurationDto {
|
|
359
|
+
/**
|
|
360
|
+
* URL of the platform-services backend (Phase 1+ of the platform-services
|
|
361
|
+
* initiative). Preferred over {@link adminUri} — loaders should read this
|
|
362
|
+
* field first and fall back to {@link adminUri} when it is absent (legacy
|
|
363
|
+
* configs baked into older Office add-ins or PowerBI connectors).
|
|
364
|
+
*/
|
|
365
|
+
platformUri?: string;
|
|
366
|
+
/**
|
|
367
|
+
* Legacy field name from when the configuration discovery endpoint was
|
|
368
|
+
* hosted by `octo-frontend-admin-panel`. Kept for backward compatibility
|
|
369
|
+
* with deployed clients (Office, PowerBI) until those are rebuilt against
|
|
370
|
+
* the new `platformUri` field. New code MUST prefer `platformUri` over
|
|
371
|
+
* `adminUri` and only fall back when `platformUri` is undefined.
|
|
372
|
+
*
|
|
373
|
+
* Will be removed in Phase 4 of the platform-services initiative.
|
|
374
|
+
*/
|
|
359
375
|
adminUri: string;
|
|
360
376
|
clientId: string;
|
|
361
377
|
redirectUri: string;
|