replicas-engine 0.1.279 → 0.1.281

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.
Files changed (34) hide show
  1. package/dist/src/bowser-UXBOYYAJ.js +2821 -0
  2. package/dist/src/chunk-3YYBZ6D5.js +576 -0
  3. package/dist/src/chunk-ATF5CAZW.js +2094 -0
  4. package/dist/src/chunk-B5KEKENG.js +436 -0
  5. package/dist/src/chunk-C6IOMGXW.js +1052 -0
  6. package/dist/src/chunk-MHJJJ2VP.js +2865 -0
  7. package/dist/src/chunk-YY2DS5UJ.js +1490 -0
  8. package/dist/src/{dist-es-GGHPJZ3K.js → dist-es-37YNNMWK.js} +47 -51
  9. package/dist/src/{dist-es-F6RG3S4O.js → dist-es-7IBRAXHQ.js} +25 -23
  10. package/dist/src/{dist-es-JIV2SPEM.js → dist-es-AYVDCHRQ.js} +9 -10
  11. package/dist/src/{dist-es-BUG4C6LP.js → dist-es-JSZE2H6Y.js} +21 -31
  12. package/dist/src/{dist-es-Q3YZVSCP.js → dist-es-M4ZCYBRD.js} +10 -11
  13. package/dist/src/{dist-es-YKS4LXBO.js → dist-es-MNGVDEEO.js} +4 -3
  14. package/dist/src/{dist-es-GZBSW2H3.js → dist-es-YA3RZ3J2.js} +27 -32
  15. package/dist/src/event-streams-7ZLUNSFX.js +1376 -0
  16. package/dist/src/index.js +71 -2
  17. package/dist/src/{loadSso-3WFGTQV7.js → loadSso-2A75N7C3.js} +84 -61
  18. package/dist/src/{signin-RSKKVVIS.js → signin-FXO7O6JB.js} +94 -82
  19. package/dist/src/{sso-oidc-LBVW2ORP.js → sso-oidc-4IFMUO6A.js} +102 -63
  20. package/dist/src/{sts-DKGAU6YE.js → sts-IAUEUXEW.js} +4964 -5055
  21. package/package.json +2 -2
  22. package/dist/src/chunk-2Y7PD56W.js +0 -164
  23. package/dist/src/chunk-5VUQ55WW.js +0 -242
  24. package/dist/src/chunk-AAVVX4U5.js +0 -175
  25. package/dist/src/chunk-BUG7ZAQW.js +0 -1033
  26. package/dist/src/chunk-ERL3EC7G.js +0 -44
  27. package/dist/src/chunk-SGITM26Q.js +0 -877
  28. package/dist/src/chunk-ST5JVROM.js +0 -39
  29. package/dist/src/chunk-SWX24AGM.js +0 -62
  30. package/dist/src/chunk-TU2SAX7Z.js +0 -5706
  31. package/dist/src/chunk-WPAL27HA.js +0 -29
  32. package/dist/src/chunk-ZDZBYCXV.js +0 -52
  33. package/dist/src/chunk-ZNARSMJG.js +0 -14
  34. package/dist/src/event-streams-XS4D2DFO.js +0 -252
@@ -1,39 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- // ../node_modules/.bun/@smithy+property-provider@4.2.14/node_modules/@smithy/property-provider/dist-es/ProviderError.js
4
- var ProviderError = class _ProviderError extends Error {
5
- name = "ProviderError";
6
- tryNextLink;
7
- constructor(message, options = true) {
8
- let logger;
9
- let tryNextLink = true;
10
- if (typeof options === "boolean") {
11
- logger = void 0;
12
- tryNextLink = options;
13
- } else if (options != null && typeof options === "object") {
14
- logger = options.logger;
15
- tryNextLink = options.tryNextLink ?? true;
16
- }
17
- super(message);
18
- this.tryNextLink = tryNextLink;
19
- Object.setPrototypeOf(this, _ProviderError.prototype);
20
- logger?.debug?.(`@smithy/property-provider ${tryNextLink ? "->" : "(!)"} ${message}`);
21
- }
22
- static from(error, options = true) {
23
- return Object.assign(new this(error.message, options), error);
24
- }
25
- };
26
-
27
- // ../node_modules/.bun/@smithy+property-provider@4.2.14/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js
28
- var CredentialsProviderError = class _CredentialsProviderError extends ProviderError {
29
- name = "CredentialsProviderError";
30
- constructor(message, options = true) {
31
- super(message, options);
32
- Object.setPrototypeOf(this, _CredentialsProviderError.prototype);
33
- }
34
- };
35
-
36
- export {
37
- ProviderError,
38
- CredentialsProviderError
39
- };
@@ -1,62 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- // ../node_modules/.bun/@smithy+protocol-http@5.3.14/node_modules/@smithy/protocol-http/dist-es/httpRequest.js
4
- var HttpRequest = class _HttpRequest {
5
- method;
6
- protocol;
7
- hostname;
8
- port;
9
- path;
10
- query;
11
- headers;
12
- username;
13
- password;
14
- fragment;
15
- body;
16
- constructor(options) {
17
- this.method = options.method || "GET";
18
- this.hostname = options.hostname || "localhost";
19
- this.port = options.port;
20
- this.query = options.query || {};
21
- this.headers = options.headers || {};
22
- this.body = options.body;
23
- this.protocol = options.protocol ? options.protocol.slice(-1) !== ":" ? `${options.protocol}:` : options.protocol : "https:";
24
- this.path = options.path ? options.path.charAt(0) !== "/" ? `/${options.path}` : options.path : "/";
25
- this.username = options.username;
26
- this.password = options.password;
27
- this.fragment = options.fragment;
28
- }
29
- static clone(request) {
30
- const cloned = new _HttpRequest({
31
- ...request,
32
- headers: { ...request.headers }
33
- });
34
- if (cloned.query) {
35
- cloned.query = cloneQuery(cloned.query);
36
- }
37
- return cloned;
38
- }
39
- static isInstance(request) {
40
- if (!request) {
41
- return false;
42
- }
43
- const req = request;
44
- return "method" in req && "protocol" in req && "hostname" in req && "path" in req && typeof req["query"] === "object" && typeof req["headers"] === "object";
45
- }
46
- clone() {
47
- return _HttpRequest.clone(this);
48
- }
49
- };
50
- function cloneQuery(query) {
51
- return Object.keys(query).reduce((carry, paramName) => {
52
- const param = query[paramName];
53
- return {
54
- ...carry,
55
- [paramName]: Array.isArray(param) ? [...param] : param
56
- };
57
- }, {});
58
- }
59
-
60
- export {
61
- HttpRequest
62
- };