replicas-engine 0.1.141 → 0.1.143
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/chunk-5V5ZNFZK.js +178 -0
- package/dist/src/chunk-7RS3TOFT.js +5862 -0
- package/dist/src/chunk-ERL3EC7G.js +44 -0
- package/dist/src/chunk-J3WZZOOL.js +1316 -0
- package/dist/src/chunk-JFXVYYQY.js +242 -0
- package/dist/src/chunk-MCYTXPBZ.js +29 -0
- package/dist/src/chunk-N2BGF5AZ.js +14 -0
- package/dist/src/chunk-NPXMDMPW.js +175 -0
- package/dist/src/chunk-TY2FR253.js +590 -0
- package/dist/src/chunk-WCAERHFE.js +62 -0
- package/dist/src/chunk-XCFRYWEV.js +164 -0
- package/dist/src/chunk-YDW6RZI2.js +39 -0
- package/dist/src/chunk-ZDZBYCXV.js +52 -0
- package/dist/src/dist-es-3LYC7DO3.js +169 -0
- package/dist/src/dist-es-7DTYZ3KD.js +489 -0
- package/dist/src/dist-es-BNJQGHZR.js +88 -0
- package/dist/src/dist-es-EVINFDC2.js +46 -0
- package/dist/src/dist-es-KHBICPEM.js +380 -0
- package/dist/src/dist-es-UV765YRF.js +324 -0
- package/dist/src/dist-es-YWO2URNL.js +70 -0
- package/dist/src/event-streams-IFAW3KBX.js +244 -0
- package/dist/src/event-streams-XS4D2DFO.js +252 -0
- package/dist/src/index.js +12 -4
- package/dist/src/loadSso-ZRFAKENS.js +590 -0
- package/dist/src/signin-PNR24U2H.js +702 -0
- package/dist/src/sso-oidc-O55BGCVQ.js +827 -0
- package/dist/src/sts-MRC7OH6Z.js +3876 -0
- package/package.json +1 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// ../node_modules/.bun/@smithy+is-array-buffer@4.2.2/node_modules/@smithy/is-array-buffer/dist-es/index.js
|
|
4
|
+
var isArrayBuffer = (arg) => typeof ArrayBuffer === "function" && arg instanceof ArrayBuffer || Object.prototype.toString.call(arg) === "[object ArrayBuffer]";
|
|
5
|
+
|
|
6
|
+
// ../node_modules/.bun/@smithy+util-buffer-from@4.2.2/node_modules/@smithy/util-buffer-from/dist-es/index.js
|
|
7
|
+
import { Buffer } from "buffer";
|
|
8
|
+
var fromArrayBuffer = (input, offset = 0, length = input.byteLength - offset) => {
|
|
9
|
+
if (!isArrayBuffer(input)) {
|
|
10
|
+
throw new TypeError(`The "input" argument must be ArrayBuffer. Received type ${typeof input} (${input})`);
|
|
11
|
+
}
|
|
12
|
+
return Buffer.from(input, offset, length);
|
|
13
|
+
};
|
|
14
|
+
var fromString = (input, encoding) => {
|
|
15
|
+
if (typeof input !== "string") {
|
|
16
|
+
throw new TypeError(`The "input" argument must be of type string. Received type ${typeof input} (${input})`);
|
|
17
|
+
}
|
|
18
|
+
return encoding ? Buffer.from(input, encoding) : Buffer.from(input);
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// ../node_modules/.bun/@smithy+util-utf8@4.2.2/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js
|
|
22
|
+
var fromUtf8 = (input) => {
|
|
23
|
+
const buf = fromString(input, "utf8");
|
|
24
|
+
return new Uint8Array(buf.buffer, buf.byteOffset, buf.byteLength / Uint8Array.BYTES_PER_ELEMENT);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
// ../node_modules/.bun/@smithy+util-utf8@4.2.2/node_modules/@smithy/util-utf8/dist-es/toUtf8.js
|
|
28
|
+
var toUtf8 = (input) => {
|
|
29
|
+
if (typeof input === "string") {
|
|
30
|
+
return input;
|
|
31
|
+
}
|
|
32
|
+
if (typeof input !== "object" || typeof input.byteOffset !== "number" || typeof input.byteLength !== "number") {
|
|
33
|
+
throw new Error("@smithy/util-utf8: toUtf8 encoder function only accepts string | Uint8Array.");
|
|
34
|
+
}
|
|
35
|
+
return fromArrayBuffer(input.buffer, input.byteOffset, input.byteLength).toString("utf8");
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export {
|
|
39
|
+
isArrayBuffer,
|
|
40
|
+
fromArrayBuffer,
|
|
41
|
+
fromString,
|
|
42
|
+
fromUtf8,
|
|
43
|
+
toUtf8
|
|
44
|
+
};
|