@powerhousedao/analytics-engine-pg 6.0.0-dev.65 → 6.0.0-dev.68
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/dist/src/index.js +116 -159
- package/package.json +3 -3
package/dist/src/index.js
CHANGED
|
@@ -16927,12 +16927,11 @@ var require_postgres_interval = __commonJS((exports, module) => {
|
|
|
16927
16927
|
}
|
|
16928
16928
|
});
|
|
16929
16929
|
|
|
16930
|
-
// ../../../node_modules/.pnpm/postgres-bytea@1.0.
|
|
16930
|
+
// ../../../node_modules/.pnpm/postgres-bytea@1.0.0/node_modules/postgres-bytea/index.js
|
|
16931
16931
|
var require_postgres_bytea = __commonJS((exports, module) => {
|
|
16932
|
-
var bufferFrom = Buffer.from || Buffer;
|
|
16933
16932
|
module.exports = function parseBytea(input) {
|
|
16934
16933
|
if (/^\\x/.test(input)) {
|
|
16935
|
-
return
|
|
16934
|
+
return new Buffer(input.substr(2), "hex");
|
|
16936
16935
|
}
|
|
16937
16936
|
var output = "";
|
|
16938
16937
|
var i = 0;
|
|
@@ -16956,7 +16955,7 @@ var require_postgres_bytea = __commonJS((exports, module) => {
|
|
|
16956
16955
|
}
|
|
16957
16956
|
}
|
|
16958
16957
|
}
|
|
16959
|
-
return
|
|
16958
|
+
return new Buffer(output, "binary");
|
|
16960
16959
|
};
|
|
16961
16960
|
});
|
|
16962
16961
|
|
|
@@ -18736,7 +18735,7 @@ var require_query = __commonJS((exports, module) => {
|
|
|
18736
18735
|
module.exports = Query;
|
|
18737
18736
|
});
|
|
18738
18737
|
|
|
18739
|
-
// ../../../node_modules/.pnpm/pg-protocol@1.
|
|
18738
|
+
// ../../../node_modules/.pnpm/pg-protocol@1.11.0/node_modules/pg-protocol/dist/messages.js
|
|
18740
18739
|
var require_messages = __commonJS((exports) => {
|
|
18741
18740
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18742
18741
|
exports.NoticeMessage = exports.DataRowMessage = exports.CommandCompleteMessage = exports.ReadyForQueryMessage = exports.NotificationResponseMessage = exports.BackendKeyDataMessage = exports.AuthenticationMD5Password = exports.ParameterStatusMessage = exports.ParameterDescriptionMessage = exports.RowDescriptionMessage = exports.Field = exports.CopyResponse = exports.CopyDataMessage = exports.DatabaseError = exports.copyDone = exports.emptyQuery = exports.replicationStart = exports.portalSuspended = exports.noData = exports.closeComplete = exports.bindComplete = exports.parseComplete = undefined;
|
|
@@ -18912,7 +18911,7 @@ var require_messages = __commonJS((exports) => {
|
|
|
18912
18911
|
exports.NoticeMessage = NoticeMessage;
|
|
18913
18912
|
});
|
|
18914
18913
|
|
|
18915
|
-
// ../../../node_modules/.pnpm/pg-protocol@1.
|
|
18914
|
+
// ../../../node_modules/.pnpm/pg-protocol@1.11.0/node_modules/pg-protocol/dist/buffer-writer.js
|
|
18916
18915
|
var require_buffer_writer = __commonJS((exports) => {
|
|
18917
18916
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18918
18917
|
exports.Writer = undefined;
|
|
@@ -18991,7 +18990,7 @@ var require_buffer_writer = __commonJS((exports) => {
|
|
|
18991
18990
|
exports.Writer = Writer;
|
|
18992
18991
|
});
|
|
18993
18992
|
|
|
18994
|
-
// ../../../node_modules/.pnpm/pg-protocol@1.
|
|
18993
|
+
// ../../../node_modules/.pnpm/pg-protocol@1.11.0/node_modules/pg-protocol/dist/serializer.js
|
|
18995
18994
|
var require_serializer = __commonJS((exports) => {
|
|
18996
18995
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18997
18996
|
exports.serialize = undefined;
|
|
@@ -19154,15 +19153,16 @@ var require_serializer = __commonJS((exports) => {
|
|
|
19154
19153
|
exports.serialize = serialize;
|
|
19155
19154
|
});
|
|
19156
19155
|
|
|
19157
|
-
// ../../../node_modules/.pnpm/pg-protocol@1.
|
|
19156
|
+
// ../../../node_modules/.pnpm/pg-protocol@1.11.0/node_modules/pg-protocol/dist/buffer-reader.js
|
|
19158
19157
|
var require_buffer_reader = __commonJS((exports) => {
|
|
19159
19158
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19160
19159
|
exports.BufferReader = undefined;
|
|
19160
|
+
var emptyBuffer = Buffer.allocUnsafe(0);
|
|
19161
19161
|
|
|
19162
19162
|
class BufferReader {
|
|
19163
19163
|
constructor(offset3 = 0) {
|
|
19164
19164
|
this.offset = offset3;
|
|
19165
|
-
this.buffer =
|
|
19165
|
+
this.buffer = emptyBuffer;
|
|
19166
19166
|
this.encoding = "utf-8";
|
|
19167
19167
|
}
|
|
19168
19168
|
setBuffer(offset3, buffer) {
|
|
@@ -19210,7 +19210,7 @@ var require_buffer_reader = __commonJS((exports) => {
|
|
|
19210
19210
|
exports.BufferReader = BufferReader;
|
|
19211
19211
|
});
|
|
19212
19212
|
|
|
19213
|
-
// ../../../node_modules/.pnpm/pg-protocol@1.
|
|
19213
|
+
// ../../../node_modules/.pnpm/pg-protocol@1.11.0/node_modules/pg-protocol/dist/parser.js
|
|
19214
19214
|
var require_parser2 = __commonJS((exports) => {
|
|
19215
19215
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19216
19216
|
exports.Parser = undefined;
|
|
@@ -19515,7 +19515,7 @@ var require_parser2 = __commonJS((exports) => {
|
|
|
19515
19515
|
};
|
|
19516
19516
|
});
|
|
19517
19517
|
|
|
19518
|
-
// ../../../node_modules/.pnpm/pg-protocol@1.
|
|
19518
|
+
// ../../../node_modules/.pnpm/pg-protocol@1.11.0/node_modules/pg-protocol/dist/index.js
|
|
19519
19519
|
var require_dist = __commonJS((exports) => {
|
|
19520
19520
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19521
19521
|
exports.DatabaseError = exports.serialize = exports.parse = undefined;
|
|
@@ -20629,7 +20629,7 @@ var require_client2 = __commonJS((exports, module) => {
|
|
|
20629
20629
|
module.exports = Client;
|
|
20630
20630
|
});
|
|
20631
20631
|
|
|
20632
|
-
// ../../../node_modules/.pnpm/pg-pool@3.
|
|
20632
|
+
// ../../../node_modules/.pnpm/pg-pool@3.11.0_pg@8.18.0/node_modules/pg-pool/index.js
|
|
20633
20633
|
var require_pg_pool = __commonJS((exports, module) => {
|
|
20634
20634
|
var EventEmitter = __require("events").EventEmitter;
|
|
20635
20635
|
var NOOP = function() {};
|
|
@@ -20823,15 +20823,9 @@ var require_pg_pool = __commonJS((exports, module) => {
|
|
|
20823
20823
|
let timeoutHit = false;
|
|
20824
20824
|
if (this.options.connectionTimeoutMillis) {
|
|
20825
20825
|
tid = setTimeout(() => {
|
|
20826
|
-
|
|
20827
|
-
|
|
20828
|
-
|
|
20829
|
-
client.connection.stream.destroy();
|
|
20830
|
-
} else if (!client.isConnected()) {
|
|
20831
|
-
this.log("ending client due to timeout");
|
|
20832
|
-
timeoutHit = true;
|
|
20833
|
-
client.end();
|
|
20834
|
-
}
|
|
20826
|
+
this.log("ending client due to timeout");
|
|
20827
|
+
timeoutHit = true;
|
|
20828
|
+
client.connection ? client.connection.stream.destroy() : client.end();
|
|
20835
20829
|
}, this.options.connectionTimeoutMillis);
|
|
20836
20830
|
}
|
|
20837
20831
|
this.log("connecting new client");
|
|
@@ -21452,7 +21446,7 @@ var require_lib3 = __commonJS((exports, module) => {
|
|
|
21452
21446
|
});
|
|
21453
21447
|
});
|
|
21454
21448
|
|
|
21455
|
-
// ../../../node_modules/.pnpm/pg-cursor@2.
|
|
21449
|
+
// ../../../node_modules/.pnpm/pg-cursor@2.17.0_pg@8.18.0/node_modules/pg-cursor/index.js
|
|
21456
21450
|
var require_pg_cursor = __commonJS((exports, module) => {
|
|
21457
21451
|
var Result = require_result();
|
|
21458
21452
|
var prepare = require_utils3().prepareValue;
|
|
@@ -25930,9 +25924,9 @@ var require_dist3 = __commonJS((exports) => {
|
|
|
25930
25924
|
}
|
|
25931
25925
|
});
|
|
25932
25926
|
|
|
25933
|
-
// ../../../node_modules/.pnpm/@azure+msal-common@15.
|
|
25934
|
-
var
|
|
25935
|
-
/*! @azure/msal-common v15.
|
|
25927
|
+
// ../../../node_modules/.pnpm/@azure+msal-common@15.14.2/node_modules/@azure/msal-common/lib/index-node-CYiBwGSg.js
|
|
25928
|
+
var require_index_node_CYiBwGSg = __commonJS((exports) => {
|
|
25929
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
25936
25930
|
var Constants = {
|
|
25937
25931
|
LIBRARY_NAME: "MSAL.JS",
|
|
25938
25932
|
SKU: "msal.js.common",
|
|
@@ -27258,8 +27252,7 @@ var require_index_node_BtzY9XyU = __commonJS((exports) => {
|
|
|
27258
27252
|
LoadAccount: "loadAccount",
|
|
27259
27253
|
LoadIdToken: "loadIdToken",
|
|
27260
27254
|
LoadAccessToken: "loadAccessToken",
|
|
27261
|
-
LoadRefreshToken: "loadRefreshToken"
|
|
27262
|
-
SsoCapable: "ssoCapable"
|
|
27255
|
+
LoadRefreshToken: "loadRefreshToken"
|
|
27263
27256
|
};
|
|
27264
27257
|
var PerformanceEventAbbreviations = new Map([
|
|
27265
27258
|
[PerformanceEvents.AcquireTokenByCode, "ATByCode"],
|
|
@@ -27486,8 +27479,7 @@ var require_index_node_BtzY9XyU = __commonJS((exports) => {
|
|
|
27486
27479
|
[PerformanceEvents.Encrypt, "encrypt"],
|
|
27487
27480
|
[PerformanceEvents.Decrypt, "decrypt"],
|
|
27488
27481
|
[PerformanceEvents.GenerateEarKey, "genEarKey"],
|
|
27489
|
-
[PerformanceEvents.DecryptEarResponse, "decryptEarResp"]
|
|
27490
|
-
[PerformanceEvents.SsoCapable, "SsoCapable"]
|
|
27482
|
+
[PerformanceEvents.DecryptEarResponse, "decryptEarResp"]
|
|
27491
27483
|
]);
|
|
27492
27484
|
var PerformanceEventStatus = {
|
|
27493
27485
|
NotStarted: 0,
|
|
@@ -28691,7 +28683,7 @@ Error Description: ${typedError.message}`);
|
|
|
28691
28683
|
}
|
|
28692
28684
|
}
|
|
28693
28685
|
var name = "@azure/msal-common";
|
|
28694
|
-
var version = "15.
|
|
28686
|
+
var version = "15.14.2";
|
|
28695
28687
|
|
|
28696
28688
|
class ScopeSet {
|
|
28697
28689
|
constructor(inputScopes) {
|
|
@@ -30379,13 +30371,11 @@ Error Description: ${typedError.message}`);
|
|
|
30379
30371
|
var consentRequired = "consent_required";
|
|
30380
30372
|
var loginRequired = "login_required";
|
|
30381
30373
|
var badToken = "bad_token";
|
|
30382
|
-
var interruptedUser = "interrupted_user";
|
|
30383
30374
|
var InteractionRequiredAuthErrorCodes = /* @__PURE__ */ Object.freeze({
|
|
30384
30375
|
__proto__: null,
|
|
30385
30376
|
badToken,
|
|
30386
30377
|
consentRequired,
|
|
30387
30378
|
interactionRequired,
|
|
30388
|
-
interruptedUser,
|
|
30389
30379
|
loginRequired,
|
|
30390
30380
|
nativeAccountUnavailable,
|
|
30391
30381
|
noTokensFound,
|
|
@@ -30397,8 +30387,7 @@ Error Description: ${typedError.message}`);
|
|
|
30397
30387
|
consentRequired,
|
|
30398
30388
|
loginRequired,
|
|
30399
30389
|
badToken,
|
|
30400
|
-
uxNotAllowed
|
|
30401
|
-
interruptedUser
|
|
30390
|
+
uxNotAllowed
|
|
30402
30391
|
];
|
|
30403
30392
|
var InteractionRequiredAuthSubErrorMessage = [
|
|
30404
30393
|
"message_only",
|
|
@@ -30406,16 +30395,14 @@ Error Description: ${typedError.message}`);
|
|
|
30406
30395
|
"basic_action",
|
|
30407
30396
|
"user_password_expired",
|
|
30408
30397
|
"consent_required",
|
|
30409
|
-
"bad_token"
|
|
30410
|
-
"interrupted_user"
|
|
30398
|
+
"bad_token"
|
|
30411
30399
|
];
|
|
30412
30400
|
var InteractionRequiredAuthErrorMessages = {
|
|
30413
30401
|
[noTokensFound]: "No refresh token found in the cache. Please sign-in.",
|
|
30414
30402
|
[nativeAccountUnavailable]: "The requested account is not available in the native broker. It may have been deleted or logged out. Please sign-in again using an interactive API.",
|
|
30415
30403
|
[refreshTokenExpired]: "Refresh token has expired.",
|
|
30416
30404
|
[badToken]: "Identity provider returned bad_token due to an expired or invalid refresh token. Please invoke an interactive API to resolve.",
|
|
30417
|
-
[uxNotAllowed]: "`canShowUI` flag in Edge was set to false. User interaction required on web page. Please invoke an interactive API to resolve."
|
|
30418
|
-
[interruptedUser]: "The user could not be authenticated due to an interrupted state. Please invoke an interactive API to resolve."
|
|
30405
|
+
[uxNotAllowed]: "`canShowUI` flag in Edge was set to false. User interaction required on web page. Please invoke an interactive API to resolve."
|
|
30419
30406
|
};
|
|
30420
30407
|
var InteractionRequiredAuthErrorMessage = {
|
|
30421
30408
|
noTokensFoundError: {
|
|
@@ -30429,10 +30416,6 @@ Error Description: ${typedError.message}`);
|
|
|
30429
30416
|
bad_token: {
|
|
30430
30417
|
code: badToken,
|
|
30431
30418
|
desc: InteractionRequiredAuthErrorMessages[badToken]
|
|
30432
|
-
},
|
|
30433
|
-
interrupted_user: {
|
|
30434
|
-
code: interruptedUser,
|
|
30435
|
-
desc: InteractionRequiredAuthErrorMessages[interruptedUser]
|
|
30436
30419
|
}
|
|
30437
30420
|
};
|
|
30438
30421
|
|
|
@@ -31709,10 +31692,10 @@ ${serverError}`);
|
|
|
31709
31692
|
exports.version = version;
|
|
31710
31693
|
});
|
|
31711
31694
|
|
|
31712
|
-
// ../../../node_modules/.pnpm/@azure+msal-common@15.
|
|
31695
|
+
// ../../../node_modules/.pnpm/@azure+msal-common@15.14.2/node_modules/@azure/msal-common/lib/index-browser.cjs
|
|
31713
31696
|
var require_index_browser = __commonJS((exports) => {
|
|
31714
|
-
/*! @azure/msal-common v15.
|
|
31715
|
-
var indexNode =
|
|
31697
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
31698
|
+
var indexNode = require_index_node_CYiBwGSg();
|
|
31716
31699
|
var missingKidError = "missing_kid_error";
|
|
31717
31700
|
var missingAlgError = "missing_alg_error";
|
|
31718
31701
|
var JoseHeaderErrorMessages = {
|
|
@@ -32282,10 +32265,10 @@ var require_index_browser = __commonJS((exports) => {
|
|
|
32282
32265
|
exports.PerformanceClient = PerformanceClient;
|
|
32283
32266
|
});
|
|
32284
32267
|
|
|
32285
|
-
// ../../../node_modules/.pnpm/@azure+msal-common@15.
|
|
32268
|
+
// ../../../node_modules/.pnpm/@azure+msal-common@15.14.2/node_modules/@azure/msal-common/lib/index.cjs
|
|
32286
32269
|
var require_lib4 = __commonJS((exports) => {
|
|
32287
|
-
/*! @azure/msal-common v15.
|
|
32288
|
-
var indexNode =
|
|
32270
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
32271
|
+
var indexNode = require_index_node_CYiBwGSg();
|
|
32289
32272
|
var indexBrowser = require_index_browser();
|
|
32290
32273
|
exports.AADAuthorityConstants = indexNode.AADAuthorityConstants;
|
|
32291
32274
|
exports.AADServerParamKeys = indexNode.AADServerParamKeys;
|
|
@@ -36055,9 +36038,9 @@ var require_jsonwebtoken = __commonJS((exports, module) => {
|
|
|
36055
36038
|
};
|
|
36056
36039
|
});
|
|
36057
36040
|
|
|
36058
|
-
// ../../../node_modules/.pnpm/@azure+msal-node@3.8.
|
|
36041
|
+
// ../../../node_modules/.pnpm/@azure+msal-node@3.8.7/node_modules/@azure/msal-node/lib/msal-node.cjs
|
|
36059
36042
|
var require_msal_node = __commonJS((exports) => {
|
|
36060
|
-
/*! @azure/msal-node v3.8.
|
|
36043
|
+
/*! @azure/msal-node v3.8.7 2026-02-10 */
|
|
36061
36044
|
var http = __require("http");
|
|
36062
36045
|
var https = __require("https");
|
|
36063
36046
|
var uuid = require_dist3();
|
|
@@ -36172,7 +36155,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36172
36155
|
};
|
|
36173
36156
|
}
|
|
36174
36157
|
}
|
|
36175
|
-
/*! @azure/msal-common v15.
|
|
36158
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36176
36159
|
var Constants$1 = {
|
|
36177
36160
|
LIBRARY_NAME: "MSAL.JS",
|
|
36178
36161
|
SKU: "msal.js.common",
|
|
@@ -36373,7 +36356,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36373
36356
|
HEX: "hex",
|
|
36374
36357
|
UTF8: "utf-8"
|
|
36375
36358
|
};
|
|
36376
|
-
/*! @azure/msal-common v15.
|
|
36359
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36377
36360
|
var unexpectedError = "unexpected_error";
|
|
36378
36361
|
var postRequestFailed = "post_request_failed";
|
|
36379
36362
|
var AuthErrorCodes = /* @__PURE__ */ Object.freeze({
|
|
@@ -36381,7 +36364,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36381
36364
|
postRequestFailed,
|
|
36382
36365
|
unexpectedError
|
|
36383
36366
|
});
|
|
36384
|
-
/*! @azure/msal-common v15.
|
|
36367
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36385
36368
|
var AuthErrorMessages = {
|
|
36386
36369
|
[unexpectedError]: "Unexpected error in authentication.",
|
|
36387
36370
|
[postRequestFailed]: "Post request failed from the network, could be a 4xx/5xx or a network unavailability. Please check the exact error code for details."
|
|
@@ -36414,7 +36397,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36414
36397
|
function createAuthError(code, additionalMessage) {
|
|
36415
36398
|
return new AuthError(code, additionalMessage ? `${AuthErrorMessages[code]} ${additionalMessage}` : AuthErrorMessages[code]);
|
|
36416
36399
|
}
|
|
36417
|
-
/*! @azure/msal-common v15.
|
|
36400
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36418
36401
|
var clientInfoDecodingError = "client_info_decoding_error";
|
|
36419
36402
|
var clientInfoEmptyError = "client_info_empty_error";
|
|
36420
36403
|
var tokenParsingError = "token_parsing_error";
|
|
@@ -36508,7 +36491,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36508
36491
|
userCanceled,
|
|
36509
36492
|
userTimeoutReached
|
|
36510
36493
|
});
|
|
36511
|
-
/*! @azure/msal-common v15.
|
|
36494
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36512
36495
|
var ClientAuthErrorMessages = {
|
|
36513
36496
|
[clientInfoDecodingError]: "The client info could not be parsed/decoded correctly",
|
|
36514
36497
|
[clientInfoEmptyError]: "The client info was empty",
|
|
@@ -36745,7 +36728,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36745
36728
|
function createClientAuthError(errorCode, additionalMessage) {
|
|
36746
36729
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
36747
36730
|
}
|
|
36748
|
-
/*! @azure/msal-common v15.
|
|
36731
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36749
36732
|
var DEFAULT_CRYPTO_IMPLEMENTATION = {
|
|
36750
36733
|
createNewGuid: () => {
|
|
36751
36734
|
throw createClientAuthError(methodNotImplemented);
|
|
@@ -36778,7 +36761,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36778
36761
|
throw createClientAuthError(methodNotImplemented);
|
|
36779
36762
|
}
|
|
36780
36763
|
};
|
|
36781
|
-
/*! @azure/msal-common v15.
|
|
36764
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36782
36765
|
exports.LogLevel = undefined;
|
|
36783
36766
|
(function(LogLevel) {
|
|
36784
36767
|
LogLevel[LogLevel["Error"] = 0] = "Error";
|
|
@@ -36905,10 +36888,10 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36905
36888
|
return this.piiLoggingEnabled || false;
|
|
36906
36889
|
}
|
|
36907
36890
|
}
|
|
36908
|
-
/*! @azure/msal-common v15.
|
|
36891
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36909
36892
|
var name$1 = "@azure/msal-common";
|
|
36910
|
-
var version$1 = "15.
|
|
36911
|
-
/*! @azure/msal-common v15.
|
|
36893
|
+
var version$1 = "15.14.2";
|
|
36894
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36912
36895
|
var AzureCloudInstance = {
|
|
36913
36896
|
None: "none",
|
|
36914
36897
|
AzurePublic: "https://login.microsoftonline.com",
|
|
@@ -36917,7 +36900,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36917
36900
|
AzureGermany: "https://login.microsoftonline.de",
|
|
36918
36901
|
AzureUsGovernment: "https://login.microsoftonline.us"
|
|
36919
36902
|
};
|
|
36920
|
-
/*! @azure/msal-common v15.
|
|
36903
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36921
36904
|
var redirectUriEmpty = "redirect_uri_empty";
|
|
36922
36905
|
var claimsRequestParsingError = "claims_request_parsing_error";
|
|
36923
36906
|
var authorityUriInsecure = "authority_uri_insecure";
|
|
@@ -36969,7 +36952,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
36969
36952
|
urlEmptyError,
|
|
36970
36953
|
urlParseError
|
|
36971
36954
|
});
|
|
36972
|
-
/*! @azure/msal-common v15.
|
|
36955
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
36973
36956
|
var ClientConfigurationErrorMessages = {
|
|
36974
36957
|
[redirectUriEmpty]: "A redirect URI is required for all calls, and none has been set.",
|
|
36975
36958
|
[claimsRequestParsingError]: "Could not parse the given claims request object.",
|
|
@@ -37105,7 +37088,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37105
37088
|
function createClientConfigurationError(errorCode) {
|
|
37106
37089
|
return new ClientConfigurationError(errorCode);
|
|
37107
37090
|
}
|
|
37108
|
-
/*! @azure/msal-common v15.
|
|
37091
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37109
37092
|
|
|
37110
37093
|
class StringUtils {
|
|
37111
37094
|
static isEmptyObj(strObj) {
|
|
@@ -37157,7 +37140,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37157
37140
|
return regex.test(input);
|
|
37158
37141
|
}
|
|
37159
37142
|
}
|
|
37160
|
-
/*! @azure/msal-common v15.
|
|
37143
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37161
37144
|
|
|
37162
37145
|
class ScopeSet {
|
|
37163
37146
|
constructor(inputScopes) {
|
|
@@ -37268,7 +37251,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37268
37251
|
return this.printScopes().toLowerCase();
|
|
37269
37252
|
}
|
|
37270
37253
|
}
|
|
37271
|
-
/*! @azure/msal-common v15.
|
|
37254
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37272
37255
|
function buildClientInfo(rawClientInfo, base64Decode) {
|
|
37273
37256
|
if (!rawClientInfo) {
|
|
37274
37257
|
throw createClientAuthError(clientInfoEmptyError);
|
|
@@ -37290,7 +37273,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37290
37273
|
utid: clientInfoParts.length < 2 ? Constants$1.EMPTY_STRING : clientInfoParts[1]
|
|
37291
37274
|
};
|
|
37292
37275
|
}
|
|
37293
|
-
/*! @azure/msal-common v15.
|
|
37276
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37294
37277
|
function tenantIdMatchesHomeTenant(tenantId, homeAccountId) {
|
|
37295
37278
|
return !!tenantId && !!homeAccountId && tenantId === homeAccountId.split(".")[1];
|
|
37296
37279
|
}
|
|
@@ -37333,14 +37316,14 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37333
37316
|
}
|
|
37334
37317
|
return updatedAccountInfo;
|
|
37335
37318
|
}
|
|
37336
|
-
/*! @azure/msal-common v15.
|
|
37319
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37337
37320
|
var AuthorityType = {
|
|
37338
37321
|
Default: 0,
|
|
37339
37322
|
Adfs: 1,
|
|
37340
37323
|
Dsts: 2,
|
|
37341
37324
|
Ciam: 3
|
|
37342
37325
|
};
|
|
37343
|
-
/*! @azure/msal-common v15.
|
|
37326
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37344
37327
|
function getTenantIdFromIdTokenClaims(idTokenClaims) {
|
|
37345
37328
|
if (idTokenClaims) {
|
|
37346
37329
|
const tenantId = idTokenClaims.tid || idTokenClaims.tfp || idTokenClaims.acr;
|
|
@@ -37348,13 +37331,13 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37348
37331
|
}
|
|
37349
37332
|
return null;
|
|
37350
37333
|
}
|
|
37351
|
-
/*! @azure/msal-common v15.
|
|
37334
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37352
37335
|
var ProtocolMode = {
|
|
37353
37336
|
AAD: "AAD",
|
|
37354
37337
|
OIDC: "OIDC",
|
|
37355
37338
|
EAR: "EAR"
|
|
37356
37339
|
};
|
|
37357
|
-
/*! @azure/msal-common v15.
|
|
37340
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37358
37341
|
|
|
37359
37342
|
class AccountEntity {
|
|
37360
37343
|
static getAccountInfo(accountEntity) {
|
|
@@ -37476,7 +37459,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37476
37459
|
return accountA.homeAccountId === accountB.homeAccountId && accountA.localAccountId === accountB.localAccountId && accountA.username === accountB.username && accountA.tenantId === accountB.tenantId && accountA.loginHint === accountB.loginHint && accountA.environment === accountB.environment && accountA.nativeAccountId === accountB.nativeAccountId && claimsMatch;
|
|
37477
37460
|
}
|
|
37478
37461
|
}
|
|
37479
|
-
/*! @azure/msal-common v15.
|
|
37462
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37480
37463
|
function extractTokenClaims(encodedToken, base64Decode) {
|
|
37481
37464
|
const jswPayload = getJWSPayload(encodedToken);
|
|
37482
37465
|
try {
|
|
@@ -37511,7 +37494,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37511
37494
|
throw createClientAuthError(maxAgeTranspired);
|
|
37512
37495
|
}
|
|
37513
37496
|
}
|
|
37514
|
-
/*! @azure/msal-common v15.
|
|
37497
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37515
37498
|
function stripLeadingHashOrQuery(responseString) {
|
|
37516
37499
|
if (responseString.startsWith("#/")) {
|
|
37517
37500
|
return responseString.substring(2);
|
|
@@ -37546,7 +37529,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37546
37529
|
});
|
|
37547
37530
|
return queryParameterArray.join("&");
|
|
37548
37531
|
}
|
|
37549
|
-
/*! @azure/msal-common v15.
|
|
37532
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37550
37533
|
|
|
37551
37534
|
class UrlString {
|
|
37552
37535
|
get urlString() {
|
|
@@ -37650,7 +37633,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37650
37633
|
return !!getDeserializedResponse(response);
|
|
37651
37634
|
}
|
|
37652
37635
|
}
|
|
37653
|
-
/*! @azure/msal-common v15.
|
|
37636
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37654
37637
|
var rawMetdataJSON = {
|
|
37655
37638
|
endpointMetadata: {
|
|
37656
37639
|
"login.microsoftonline.com": {
|
|
@@ -37795,10 +37778,10 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37795
37778
|
}
|
|
37796
37779
|
return null;
|
|
37797
37780
|
}
|
|
37798
|
-
/*! @azure/msal-common v15.
|
|
37781
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37799
37782
|
var cacheQuotaExceeded = "cache_quota_exceeded";
|
|
37800
37783
|
var cacheErrorUnknown = "cache_error_unknown";
|
|
37801
|
-
/*! @azure/msal-common v15.
|
|
37784
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37802
37785
|
var CacheErrorMessages = {
|
|
37803
37786
|
[cacheQuotaExceeded]: "Exceeded cache storage capacity.",
|
|
37804
37787
|
[cacheErrorUnknown]: "Unexpected error occurred when using cache storage."
|
|
@@ -37824,7 +37807,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
37824
37807
|
return new CacheError(e.name, e.message);
|
|
37825
37808
|
}
|
|
37826
37809
|
}
|
|
37827
|
-
/*! @azure/msal-common v15.
|
|
37810
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
37828
37811
|
|
|
37829
37812
|
class CacheManager {
|
|
37830
37813
|
constructor(clientId, cryptoImpl, logger, performanceClient, staticAuthorityOptions) {
|
|
@@ -38563,7 +38546,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
38563
38546
|
throw createClientAuthError(methodNotImplemented);
|
|
38564
38547
|
}
|
|
38565
38548
|
}
|
|
38566
|
-
/*! @azure/msal-common v15.
|
|
38549
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
38567
38550
|
var PerformanceEvents = {
|
|
38568
38551
|
AcquireTokenByCode: "acquireTokenByCode",
|
|
38569
38552
|
AcquireTokenByRefreshToken: "acquireTokenByRefreshToken",
|
|
@@ -38668,13 +38651,12 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
38668
38651
|
LoadAccount: "loadAccount",
|
|
38669
38652
|
LoadIdToken: "loadIdToken",
|
|
38670
38653
|
LoadAccessToken: "loadAccessToken",
|
|
38671
|
-
LoadRefreshToken: "loadRefreshToken"
|
|
38672
|
-
SsoCapable: "ssoCapable"
|
|
38654
|
+
LoadRefreshToken: "loadRefreshToken"
|
|
38673
38655
|
};
|
|
38674
38656
|
var PerformanceEventStatus = {
|
|
38675
38657
|
InProgress: 1
|
|
38676
38658
|
};
|
|
38677
|
-
/*! @azure/msal-common v15.
|
|
38659
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
38678
38660
|
|
|
38679
38661
|
class StubPerformanceMeasurement {
|
|
38680
38662
|
startMeasurement() {
|
|
@@ -38749,7 +38731,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
38749
38731
|
return;
|
|
38750
38732
|
}
|
|
38751
38733
|
}
|
|
38752
|
-
/*! @azure/msal-common v15.
|
|
38734
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
38753
38735
|
var DEFAULT_SYSTEM_OPTIONS$1 = {
|
|
38754
38736
|
tokenRenewalOffsetSeconds: DEFAULT_TOKEN_RENEWAL_OFFSET_SEC,
|
|
38755
38737
|
preventCorsPreflight: false
|
|
@@ -38825,12 +38807,12 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
38825
38807
|
function isOidcProtocolMode(config) {
|
|
38826
38808
|
return config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC;
|
|
38827
38809
|
}
|
|
38828
|
-
/*! @azure/msal-common v15.
|
|
38810
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
38829
38811
|
var CcsCredentialType = {
|
|
38830
38812
|
HOME_ACCOUNT_ID: "home_account_id",
|
|
38831
38813
|
UPN: "UPN"
|
|
38832
38814
|
};
|
|
38833
|
-
/*! @azure/msal-common v15.
|
|
38815
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
38834
38816
|
var CLIENT_ID = "client_id";
|
|
38835
38817
|
var REDIRECT_URI = "redirect_uri";
|
|
38836
38818
|
var RESPONSE_TYPE = "response_type";
|
|
@@ -38876,7 +38858,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
38876
38858
|
var BROKER_CLIENT_ID = "brk_client_id";
|
|
38877
38859
|
var BROKER_REDIRECT_URI = "brk_redirect_uri";
|
|
38878
38860
|
var INSTANCE_AWARE = "instance_aware";
|
|
38879
|
-
/*! @azure/msal-common v15.
|
|
38861
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
38880
38862
|
function instrumentBrokerParams(parameters, correlationId, performanceClient) {
|
|
38881
38863
|
if (!correlationId) {
|
|
38882
38864
|
return;
|
|
@@ -39085,19 +39067,19 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
39085
39067
|
parameters.set(BROKER_REDIRECT_URI, brokerRedirectUri);
|
|
39086
39068
|
}
|
|
39087
39069
|
}
|
|
39088
|
-
/*! @azure/msal-common v15.
|
|
39070
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39089
39071
|
function isOpenIdConfigResponse(response) {
|
|
39090
39072
|
return response.hasOwnProperty("authorization_endpoint") && response.hasOwnProperty("token_endpoint") && response.hasOwnProperty("issuer") && response.hasOwnProperty("jwks_uri");
|
|
39091
39073
|
}
|
|
39092
|
-
/*! @azure/msal-common v15.
|
|
39074
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39093
39075
|
function isCloudInstanceDiscoveryResponse(response) {
|
|
39094
39076
|
return response.hasOwnProperty("tenant_discovery_endpoint") && response.hasOwnProperty("metadata");
|
|
39095
39077
|
}
|
|
39096
|
-
/*! @azure/msal-common v15.
|
|
39078
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39097
39079
|
function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
39098
39080
|
return response.hasOwnProperty("error") && response.hasOwnProperty("error_description");
|
|
39099
39081
|
}
|
|
39100
|
-
/*! @azure/msal-common v15.
|
|
39082
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39101
39083
|
var invoke = (callback, eventName, logger, telemetryClient, correlationId) => {
|
|
39102
39084
|
return (...args) => {
|
|
39103
39085
|
logger.trace(`Executing function ${eventName}`);
|
|
@@ -39156,7 +39138,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
39156
39138
|
});
|
|
39157
39139
|
};
|
|
39158
39140
|
};
|
|
39159
|
-
/*! @azure/msal-common v15.
|
|
39141
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39160
39142
|
|
|
39161
39143
|
class RegionDiscovery {
|
|
39162
39144
|
constructor(networkInterface, logger, performanceClient, correlationId) {
|
|
@@ -39222,7 +39204,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
39222
39204
|
Metadata: "true"
|
|
39223
39205
|
}
|
|
39224
39206
|
};
|
|
39225
|
-
/*! @azure/msal-common v15.
|
|
39207
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39226
39208
|
function nowSeconds() {
|
|
39227
39209
|
return Math.round(new Date().getTime() / 1000);
|
|
39228
39210
|
}
|
|
@@ -39244,7 +39226,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
39244
39226
|
function delay(t, value) {
|
|
39245
39227
|
return new Promise((resolve) => setTimeout(() => resolve(value), t));
|
|
39246
39228
|
}
|
|
39247
|
-
/*! @azure/msal-common v15.
|
|
39229
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39248
39230
|
function createIdTokenEntity(homeAccountId, environment, idToken, clientId, tenantId) {
|
|
39249
39231
|
const idTokenEntity = {
|
|
39250
39232
|
credentialType: CredentialType.ID_TOKEN,
|
|
@@ -39398,7 +39380,7 @@ var require_msal_node = __commonJS((exports) => {
|
|
|
39398
39380
|
function isAuthorityMetadataExpired(metadata) {
|
|
39399
39381
|
return metadata.expiresAt <= nowSeconds();
|
|
39400
39382
|
}
|
|
39401
|
-
/*! @azure/msal-common v15.
|
|
39383
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39402
39384
|
|
|
39403
39385
|
class Authority {
|
|
39404
39386
|
constructor(authority, networkInterface, cacheManager, authorityOptions, logger, correlationId, performanceClient, managedIdentity) {
|
|
@@ -39944,7 +39926,7 @@ Error Description: ${typedError.message}`);
|
|
|
39944
39926
|
cloudDiscoveryMetadata
|
|
39945
39927
|
};
|
|
39946
39928
|
}
|
|
39947
|
-
/*! @azure/msal-common v15.
|
|
39929
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39948
39930
|
async function createDiscoveredInstance(authorityUri, networkClient, cacheManager, authorityOptions, logger, correlationId, performanceClient) {
|
|
39949
39931
|
performanceClient?.addQueueMeasurement(PerformanceEvents.AuthorityFactoryCreateDiscoveredInstance, correlationId);
|
|
39950
39932
|
const authorityUriFinal = Authority.transformCIAMAuthority(formatAuthorityUri(authorityUri));
|
|
@@ -39956,7 +39938,7 @@ Error Description: ${typedError.message}`);
|
|
|
39956
39938
|
throw createClientAuthError(endpointResolutionError);
|
|
39957
39939
|
}
|
|
39958
39940
|
}
|
|
39959
|
-
/*! @azure/msal-common v15.
|
|
39941
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39960
39942
|
|
|
39961
39943
|
class ServerError extends AuthError {
|
|
39962
39944
|
constructor(errorCode, errorMessage, subError, errorNo, status) {
|
|
@@ -39967,7 +39949,7 @@ Error Description: ${typedError.message}`);
|
|
|
39967
39949
|
Object.setPrototypeOf(this, ServerError.prototype);
|
|
39968
39950
|
}
|
|
39969
39951
|
}
|
|
39970
|
-
/*! @azure/msal-common v15.
|
|
39952
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39971
39953
|
function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
39972
39954
|
return {
|
|
39973
39955
|
clientId,
|
|
@@ -39983,7 +39965,7 @@ Error Description: ${typedError.message}`);
|
|
|
39983
39965
|
embeddedClientId: request.embeddedClientId || request.tokenBodyParameters?.clientId
|
|
39984
39966
|
};
|
|
39985
39967
|
}
|
|
39986
|
-
/*! @azure/msal-common v15.
|
|
39968
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
39987
39969
|
|
|
39988
39970
|
class ThrottlingUtils {
|
|
39989
39971
|
static generateThrottlingStorageKey(thumbprint) {
|
|
@@ -40032,7 +40014,7 @@ Error Description: ${typedError.message}`);
|
|
|
40032
40014
|
cacheManager.removeItem(key, request.correlationId);
|
|
40033
40015
|
}
|
|
40034
40016
|
}
|
|
40035
|
-
/*! @azure/msal-common v15.
|
|
40017
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40036
40018
|
|
|
40037
40019
|
class NetworkError extends AuthError {
|
|
40038
40020
|
constructor(error, httpStatus, responseHeaders) {
|
|
@@ -40044,7 +40026,7 @@ Error Description: ${typedError.message}`);
|
|
|
40044
40026
|
this.responseHeaders = responseHeaders;
|
|
40045
40027
|
}
|
|
40046
40028
|
}
|
|
40047
|
-
/*! @azure/msal-common v15.
|
|
40029
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40048
40030
|
|
|
40049
40031
|
class BaseClient {
|
|
40050
40032
|
constructor(configuration, performanceClient) {
|
|
@@ -40140,7 +40122,7 @@ Error Description: ${typedError.message}`);
|
|
|
40140
40122
|
return mapToQueryString(parameters);
|
|
40141
40123
|
}
|
|
40142
40124
|
}
|
|
40143
|
-
/*! @azure/msal-common v15.
|
|
40125
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40144
40126
|
var noTokensFound = "no_tokens_found";
|
|
40145
40127
|
var nativeAccountUnavailable = "native_account_unavailable";
|
|
40146
40128
|
var refreshTokenExpired = "refresh_token_expired";
|
|
@@ -40149,27 +40131,24 @@ Error Description: ${typedError.message}`);
|
|
|
40149
40131
|
var consentRequired = "consent_required";
|
|
40150
40132
|
var loginRequired = "login_required";
|
|
40151
40133
|
var badToken = "bad_token";
|
|
40152
|
-
var interruptedUser = "interrupted_user";
|
|
40153
40134
|
var InteractionRequiredAuthErrorCodes = /* @__PURE__ */ Object.freeze({
|
|
40154
40135
|
__proto__: null,
|
|
40155
40136
|
badToken,
|
|
40156
40137
|
consentRequired,
|
|
40157
40138
|
interactionRequired,
|
|
40158
|
-
interruptedUser,
|
|
40159
40139
|
loginRequired,
|
|
40160
40140
|
nativeAccountUnavailable,
|
|
40161
40141
|
noTokensFound,
|
|
40162
40142
|
refreshTokenExpired,
|
|
40163
40143
|
uxNotAllowed
|
|
40164
40144
|
});
|
|
40165
|
-
/*! @azure/msal-common v15.
|
|
40145
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40166
40146
|
var InteractionRequiredServerErrorMessage = [
|
|
40167
40147
|
interactionRequired,
|
|
40168
40148
|
consentRequired,
|
|
40169
40149
|
loginRequired,
|
|
40170
40150
|
badToken,
|
|
40171
|
-
uxNotAllowed
|
|
40172
|
-
interruptedUser
|
|
40151
|
+
uxNotAllowed
|
|
40173
40152
|
];
|
|
40174
40153
|
var InteractionRequiredAuthSubErrorMessage = [
|
|
40175
40154
|
"message_only",
|
|
@@ -40177,16 +40156,14 @@ Error Description: ${typedError.message}`);
|
|
|
40177
40156
|
"basic_action",
|
|
40178
40157
|
"user_password_expired",
|
|
40179
40158
|
"consent_required",
|
|
40180
|
-
"bad_token"
|
|
40181
|
-
"interrupted_user"
|
|
40159
|
+
"bad_token"
|
|
40182
40160
|
];
|
|
40183
40161
|
var InteractionRequiredAuthErrorMessages = {
|
|
40184
40162
|
[noTokensFound]: "No refresh token found in the cache. Please sign-in.",
|
|
40185
40163
|
[nativeAccountUnavailable]: "The requested account is not available in the native broker. It may have been deleted or logged out. Please sign-in again using an interactive API.",
|
|
40186
40164
|
[refreshTokenExpired]: "Refresh token has expired.",
|
|
40187
40165
|
[badToken]: "Identity provider returned bad_token due to an expired or invalid refresh token. Please invoke an interactive API to resolve.",
|
|
40188
|
-
[uxNotAllowed]: "`canShowUI` flag in Edge was set to false. User interaction required on web page. Please invoke an interactive API to resolve."
|
|
40189
|
-
[interruptedUser]: "The user could not be authenticated due to an interrupted state. Please invoke an interactive API to resolve."
|
|
40166
|
+
[uxNotAllowed]: "`canShowUI` flag in Edge was set to false. User interaction required on web page. Please invoke an interactive API to resolve."
|
|
40190
40167
|
};
|
|
40191
40168
|
var InteractionRequiredAuthErrorMessage = {
|
|
40192
40169
|
noTokensFoundError: {
|
|
@@ -40200,10 +40177,6 @@ Error Description: ${typedError.message}`);
|
|
|
40200
40177
|
bad_token: {
|
|
40201
40178
|
code: badToken,
|
|
40202
40179
|
desc: InteractionRequiredAuthErrorMessages[badToken]
|
|
40203
|
-
},
|
|
40204
|
-
interrupted_user: {
|
|
40205
|
-
code: interruptedUser,
|
|
40206
|
-
desc: InteractionRequiredAuthErrorMessages[interruptedUser]
|
|
40207
40180
|
}
|
|
40208
40181
|
};
|
|
40209
40182
|
|
|
@@ -40230,7 +40203,7 @@ Error Description: ${typedError.message}`);
|
|
|
40230
40203
|
function createInteractionRequiredAuthError(errorCode) {
|
|
40231
40204
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
40232
40205
|
}
|
|
40233
|
-
/*! @azure/msal-common v15.
|
|
40206
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40234
40207
|
|
|
40235
40208
|
class ProtocolUtils {
|
|
40236
40209
|
static setRequestState(cryptoObj, userState, meta) {
|
|
@@ -40272,7 +40245,7 @@ Error Description: ${typedError.message}`);
|
|
|
40272
40245
|
}
|
|
40273
40246
|
}
|
|
40274
40247
|
}
|
|
40275
|
-
/*! @azure/msal-common v15.
|
|
40248
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40276
40249
|
var KeyLocation = {
|
|
40277
40250
|
SW: "sw"
|
|
40278
40251
|
};
|
|
@@ -40319,7 +40292,7 @@ Error Description: ${typedError.message}`);
|
|
|
40319
40292
|
}, keyId, shrOptions, request.correlationId);
|
|
40320
40293
|
}
|
|
40321
40294
|
}
|
|
40322
|
-
/*! @azure/msal-common v15.
|
|
40295
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40323
40296
|
|
|
40324
40297
|
class TokenCacheContext {
|
|
40325
40298
|
constructor(tokenCache, hasChanged) {
|
|
@@ -40333,7 +40306,7 @@ Error Description: ${typedError.message}`);
|
|
|
40333
40306
|
return this.cache;
|
|
40334
40307
|
}
|
|
40335
40308
|
}
|
|
40336
|
-
/*! @azure/msal-common v15.
|
|
40309
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40337
40310
|
|
|
40338
40311
|
class ResponseHandler {
|
|
40339
40312
|
constructor(clientId, cacheStorage, cryptoObj, logger, serializableCache, persistencePlugin, performanceClient) {
|
|
@@ -40559,7 +40532,7 @@ ${serverError}`);
|
|
|
40559
40532
|
baseAccount.tenantProfiles = tenantProfiles;
|
|
40560
40533
|
return baseAccount;
|
|
40561
40534
|
}
|
|
40562
|
-
/*! @azure/msal-common v15.
|
|
40535
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40563
40536
|
async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
|
|
40564
40537
|
if (typeof clientAssertion === "string") {
|
|
40565
40538
|
return clientAssertion;
|
|
@@ -40571,7 +40544,7 @@ ${serverError}`);
|
|
|
40571
40544
|
return clientAssertion(config);
|
|
40572
40545
|
}
|
|
40573
40546
|
}
|
|
40574
|
-
/*! @azure/msal-common v15.
|
|
40547
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40575
40548
|
|
|
40576
40549
|
class AuthorizationCodeClient extends BaseClient {
|
|
40577
40550
|
constructor(configuration, performanceClient) {
|
|
@@ -40740,7 +40713,7 @@ ${serverError}`);
|
|
|
40740
40713
|
return mapToQueryString(parameters, this.config.authOptions.encodeExtraQueryParams, request.extraQueryParameters);
|
|
40741
40714
|
}
|
|
40742
40715
|
}
|
|
40743
|
-
/*! @azure/msal-common v15.
|
|
40716
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40744
40717
|
var DEFAULT_REFRESH_TOKEN_EXPIRATION_OFFSET_SECONDS = 300;
|
|
40745
40718
|
|
|
40746
40719
|
class RefreshTokenClient extends BaseClient {
|
|
@@ -40897,7 +40870,7 @@ ${serverError}`);
|
|
|
40897
40870
|
return mapToQueryString(parameters);
|
|
40898
40871
|
}
|
|
40899
40872
|
}
|
|
40900
|
-
/*! @azure/msal-common v15.
|
|
40873
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40901
40874
|
|
|
40902
40875
|
class SilentFlowClient extends BaseClient {
|
|
40903
40876
|
constructor(configuration, performanceClient) {
|
|
@@ -40967,7 +40940,7 @@ ${serverError}`);
|
|
|
40967
40940
|
return ResponseHandler.generateAuthenticationResult(this.cryptoUtils, this.authority, cacheRecord, true, request, idTokenClaims);
|
|
40968
40941
|
}
|
|
40969
40942
|
}
|
|
40970
|
-
/*! @azure/msal-common v15.
|
|
40943
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
40971
40944
|
function getStandardAuthorizeRequestParameters(authOptions, request, logger, performanceClient) {
|
|
40972
40945
|
const correlationId = request.correlationId;
|
|
40973
40946
|
const parameters = new Map;
|
|
@@ -41065,7 +41038,7 @@ ${serverError}`);
|
|
|
41065
41038
|
function extractLoginHint(account) {
|
|
41066
41039
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
41067
41040
|
}
|
|
41068
|
-
/*! @azure/msal-common v15.
|
|
41041
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
41069
41042
|
var skuGroupSeparator = ",";
|
|
41070
41043
|
var skuValueSeparator = "|";
|
|
41071
41044
|
function makeExtraSkuString(params) {
|
|
@@ -41511,7 +41484,7 @@ ${serverError}`);
|
|
|
41511
41484
|
}
|
|
41512
41485
|
}
|
|
41513
41486
|
var name = "@azure/msal-node";
|
|
41514
|
-
var version = "3.8.
|
|
41487
|
+
var version = "3.8.7";
|
|
41515
41488
|
|
|
41516
41489
|
class HttpClient {
|
|
41517
41490
|
constructor(proxyUrl, customAgentOptions, loggerOptions) {
|
|
@@ -52449,7 +52422,7 @@ var init_is_inside_container = __esm(() => {
|
|
|
52449
52422
|
init_is_docker();
|
|
52450
52423
|
});
|
|
52451
52424
|
|
|
52452
|
-
// ../../../node_modules/.pnpm/is-wsl@3.1.
|
|
52425
|
+
// ../../../node_modules/.pnpm/is-wsl@3.1.0/node_modules/is-wsl/index.js
|
|
52453
52426
|
import process2 from "node:process";
|
|
52454
52427
|
import os from "node:os";
|
|
52455
52428
|
import fs3 from "node:fs";
|
|
@@ -52464,14 +52437,10 @@ var isWsl = () => {
|
|
|
52464
52437
|
return true;
|
|
52465
52438
|
}
|
|
52466
52439
|
try {
|
|
52467
|
-
|
|
52468
|
-
|
|
52469
|
-
|
|
52470
|
-
} catch {}
|
|
52471
|
-
if (fs3.existsSync("/proc/sys/fs/binfmt_misc/WSLInterop") || fs3.existsSync("/run/WSL")) {
|
|
52472
|
-
return !isInsideContainer();
|
|
52440
|
+
return fs3.readFileSync("/proc/version", "utf8").toLowerCase().includes("microsoft") ? !isInsideContainer() : false;
|
|
52441
|
+
} catch {
|
|
52442
|
+
return false;
|
|
52473
52443
|
}
|
|
52474
|
-
return false;
|
|
52475
52444
|
}, is_wsl_default;
|
|
52476
52445
|
var init_is_wsl = __esm(() => {
|
|
52477
52446
|
init_is_inside_container();
|
|
@@ -52539,7 +52508,7 @@ function defineLazyProperty(object, propertyName, valueGetter) {
|
|
|
52539
52508
|
return object;
|
|
52540
52509
|
}
|
|
52541
52510
|
|
|
52542
|
-
// ../../../node_modules/.pnpm/default-browser-id@5.0.
|
|
52511
|
+
// ../../../node_modules/.pnpm/default-browser-id@5.0.0/node_modules/default-browser-id/index.js
|
|
52543
52512
|
import { promisify } from "node:util";
|
|
52544
52513
|
import process4 from "node:process";
|
|
52545
52514
|
import { execFile } from "node:child_process";
|
|
@@ -52549,11 +52518,7 @@ async function defaultBrowserId() {
|
|
|
52549
52518
|
}
|
|
52550
52519
|
const { stdout } = await execFileAsync("defaults", ["read", "com.apple.LaunchServices/com.apple.launchservices.secure", "LSHandlers"]);
|
|
52551
52520
|
const match3 = /LSHandlerRoleAll = "(?!-)(?<id>[^"]+?)";\s+?LSHandlerURLScheme = (?:http|https);/.exec(stdout);
|
|
52552
|
-
|
|
52553
|
-
if (browserId === "com.apple.safari") {
|
|
52554
|
-
return "com.apple.Safari";
|
|
52555
|
-
}
|
|
52556
|
-
return browserId;
|
|
52521
|
+
return match3?.groups.id ?? "com.apple.Safari";
|
|
52557
52522
|
}
|
|
52558
52523
|
var execFileAsync;
|
|
52559
52524
|
var init_default_browser_id = __esm(() => {
|
|
@@ -52590,7 +52555,7 @@ var init_bundle_name = __esm(() => {
|
|
|
52590
52555
|
init_run_applescript();
|
|
52591
52556
|
});
|
|
52592
52557
|
|
|
52593
|
-
// ../../../node_modules/.pnpm/default-browser@5.
|
|
52558
|
+
// ../../../node_modules/.pnpm/default-browser@5.2.1/node_modules/default-browser/windows.js
|
|
52594
52559
|
import { promisify as promisify3 } from "node:util";
|
|
52595
52560
|
import { execFile as execFile3 } from "node:child_process";
|
|
52596
52561
|
async function defaultBrowser(_execFileAsync = execFileAsync3) {
|
|
@@ -52605,39 +52570,31 @@ async function defaultBrowser(_execFileAsync = execFileAsync3) {
|
|
|
52605
52570
|
throw new UnknownBrowserError(`Cannot find Windows browser in stdout: ${JSON.stringify(stdout)}`);
|
|
52606
52571
|
}
|
|
52607
52572
|
const { id } = match3.groups;
|
|
52608
|
-
const
|
|
52609
|
-
|
|
52610
|
-
|
|
52611
|
-
|
|
52612
|
-
return
|
|
52573
|
+
const browser = windowsBrowserProgIds[id];
|
|
52574
|
+
if (!browser) {
|
|
52575
|
+
throw new UnknownBrowserError(`Unknown browser ID: ${id}`);
|
|
52576
|
+
}
|
|
52577
|
+
return browser;
|
|
52613
52578
|
}
|
|
52614
|
-
var execFileAsync3, windowsBrowserProgIds,
|
|
52579
|
+
var execFileAsync3, windowsBrowserProgIds, UnknownBrowserError;
|
|
52615
52580
|
var init_windows = __esm(() => {
|
|
52616
52581
|
execFileAsync3 = promisify3(execFile3);
|
|
52617
52582
|
windowsBrowserProgIds = {
|
|
52618
|
-
MSEdgeHTM: { name: "Edge", id: "com.microsoft.edge" },
|
|
52619
|
-
MSEdgeBHTML: { name: "Edge Beta", id: "com.microsoft.edge.beta" },
|
|
52620
|
-
MSEdgeDHTML: { name: "Edge Dev", id: "com.microsoft.edge.dev" },
|
|
52621
52583
|
AppXq0fevzme2pys62n3e0fbqa7peapykr8v: { name: "Edge", id: "com.microsoft.edge.old" },
|
|
52584
|
+
MSEdgeDHTML: { name: "Edge", id: "com.microsoft.edge" },
|
|
52585
|
+
MSEdgeHTM: { name: "Edge", id: "com.microsoft.edge" },
|
|
52586
|
+
"IE.HTTP": { name: "Internet Explorer", id: "com.microsoft.ie" },
|
|
52587
|
+
FirefoxURL: { name: "Firefox", id: "org.mozilla.firefox" },
|
|
52622
52588
|
ChromeHTML: { name: "Chrome", id: "com.google.chrome" },
|
|
52623
|
-
ChromeBHTML: { name: "Chrome Beta", id: "com.google.chrome.beta" },
|
|
52624
|
-
ChromeDHTML: { name: "Chrome Dev", id: "com.google.chrome.dev" },
|
|
52625
|
-
ChromiumHTM: { name: "Chromium", id: "org.chromium.Chromium" },
|
|
52626
52589
|
BraveHTML: { name: "Brave", id: "com.brave.Browser" },
|
|
52627
52590
|
BraveBHTML: { name: "Brave Beta", id: "com.brave.Browser.beta" },
|
|
52628
|
-
|
|
52629
|
-
BraveSSHTM: { name: "Brave Nightly", id: "com.brave.Browser.nightly" },
|
|
52630
|
-
FirefoxURL: { name: "Firefox", id: "org.mozilla.firefox" },
|
|
52631
|
-
OperaStable: { name: "Opera", id: "com.operasoftware.Opera" },
|
|
52632
|
-
VivaldiHTM: { name: "Vivaldi", id: "com.vivaldi.Vivaldi" },
|
|
52633
|
-
"IE.HTTP": { name: "Internet Explorer", id: "com.microsoft.ie" }
|
|
52591
|
+
BraveSSHTM: { name: "Brave Nightly", id: "com.brave.Browser.nightly" }
|
|
52634
52592
|
};
|
|
52635
|
-
_windowsBrowserProgIdMap = new Map(Object.entries(windowsBrowserProgIds));
|
|
52636
52593
|
UnknownBrowserError = class UnknownBrowserError extends Error {
|
|
52637
52594
|
};
|
|
52638
52595
|
});
|
|
52639
52596
|
|
|
52640
|
-
// ../../../node_modules/.pnpm/default-browser@5.
|
|
52597
|
+
// ../../../node_modules/.pnpm/default-browser@5.2.1/node_modules/default-browser/index.js
|
|
52641
52598
|
import { promisify as promisify4 } from "node:util";
|
|
52642
52599
|
import process6 from "node:process";
|
|
52643
52600
|
import { execFile as execFile4 } from "node:child_process";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/analytics-engine-pg",
|
|
3
|
-
"version": "6.0.0-dev.
|
|
3
|
+
"version": "6.0.0-dev.68",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"pg-query-stream": "4.12.0",
|
|
36
36
|
"oracledb": "6.10.0",
|
|
37
37
|
"vitest": "3.2.4",
|
|
38
|
-
"@powerhousedao/analytics-engine-core": "6.0.0-dev.
|
|
39
|
-
"@powerhousedao/analytics-engine-knex": "6.0.0-dev.
|
|
38
|
+
"@powerhousedao/analytics-engine-core": "6.0.0-dev.68",
|
|
39
|
+
"@powerhousedao/analytics-engine-knex": "6.0.0-dev.68"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"test:pg": "PG_CONNECTION_STRING=postgresql://postgres:password@localhost:5555/analytics vitest --run ./**/*.test.ts",
|