@mindline/sync 1.0.95 → 1.0.97
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/.vs/VSWorkspaceState.json +0 -2
- package/.vs/slnx.sqlite +0 -0
- package/.vs/sync/CopilotIndices/17.14.260.54502/CodeChunks.db +0 -0
- package/.vs/sync/CopilotIndices/17.14.260.54502/SemanticSymbols.db +0 -0
- package/.vs/sync/FileContentIndex/1568ea4f-e17c-464e-9652-8180b94a8985.vsidx +0 -0
- package/.vs/sync/FileContentIndex/{49e6f471-0ac6-4a06-8312-e820e7fac4c6.vsidx → 9cfb8b9e-8254-4742-9121-4b00fb88dbf4.vsidx} +0 -0
- package/.vs/sync/FileContentIndex/d310b128-1448-4e48-acb7-256391814eb4.vsidx +0 -0
- package/.vs/sync/FileContentIndex/e854a196-ac45-425c-b7d2-2b4efe56dbb3.vsidx +0 -0
- package/.vs/sync/v17/.wsuo +0 -0
- package/.vs/sync/v17/DocumentLayout.backup.json +38 -24
- package/.vs/sync/v17/DocumentLayout.json +34 -21
- package/dist/sync.es.js +28 -30
- package/dist/sync.es.js.map +1 -1
- package/dist/sync.umd.js +2 -2
- package/dist/sync.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -1
- package/.vs/sync/FileContentIndex/2ba49e62-100e-498d-ab09-f417d49a9725.vsidx +0 -0
- package/.vs/sync/FileContentIndex/e0a3e09d-eab1-4de8-a273-cbf145b692b7.vsidx +0 -0
- package/.vs/sync/FileContentIndex/fbdc1c8b-cd95-4f09-8525-d6d1db68192f.vsidx +0 -0
- /package/.vs/sync/FileContentIndex/{29a49992-9853-4bc2-be0a-3c72e0dd42f6.vsidx → 7094dc00-a469-471c-9797-27207e48cda8.vsidx} +0 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -2351,7 +2351,6 @@ async function workspaceInfoGet(instance: IPublicClientApplication, user: User,
|
|
|
2351
2351
|
// set id and name based on returned data
|
|
2352
2352
|
workspace!.id = o.id;
|
|
2353
2353
|
workspace!.name = o.name;
|
|
2354
|
-
debugger;
|
|
2355
2354
|
workspace!.ownerid = o.workspaceOwnerUserId;
|
|
2356
2355
|
// parallel GET admins, tenants, configs associated with this workspace
|
|
2357
2356
|
let adminsPromise: Promise<APIResult> = adminsGet(instance, user, workspace!.id, debug);
|
|
@@ -2386,6 +2385,7 @@ export async function getPowerBIAccessToken(
|
|
|
2386
2385
|
user: User
|
|
2387
2386
|
): Promise<string> {
|
|
2388
2387
|
let accesstoken: string = "";
|
|
2388
|
+
let syncversion: string = getSyncVersion();
|
|
2389
2389
|
// retrieve access token silently
|
|
2390
2390
|
try {
|
|
2391
2391
|
let accounts: AccountInfo[] = instance.getAllAccounts();
|
|
@@ -2410,6 +2410,7 @@ export async function getPowerBIAccessToken(
|
|
|
2410
2410
|
catch (error: any) {
|
|
2411
2411
|
console.log("PowerBI token failed to be acquired silently");
|
|
2412
2412
|
}
|
|
2413
|
+
console.log(syncversion);
|
|
2413
2414
|
return accesstoken;
|
|
2414
2415
|
}
|
|
2415
2416
|
// ======================= Azure REST API ===============================
|
|
Binary file
|
|
Binary file
|
|
Binary file
|