replicas-cli 0.2.235 → 0.2.238
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/bowser-LNTEZM7F.mjs +2822 -0
- package/dist/chunk-GFYYBNVD.mjs +1058 -0
- package/dist/chunk-JD4YWBM3.mjs +581 -0
- package/dist/chunk-MNYGWPEL.mjs +2883 -0
- package/dist/chunk-NSGUCXRX.mjs +2101 -0
- package/dist/chunk-Q4H42355.mjs +439 -0
- package/dist/chunk-YXYUVLIU.mjs +1498 -0
- package/dist/{dist-es-FTV27CJE.mjs → dist-es-5WXCQCPW.mjs} +4 -3
- package/dist/{dist-es-76ZS5ZGX.mjs → dist-es-JEMIHEYU.mjs} +47 -51
- package/dist/{dist-es-MVWFIO2N.mjs → dist-es-KEPB4XGD.mjs} +9 -10
- package/dist/{dist-es-DRC4RUDF.mjs → dist-es-Q57UUSDX.mjs} +22 -34
- package/dist/{dist-es-TKQAVPOM.mjs → dist-es-RN7CGM2B.mjs} +25 -23
- package/dist/{dist-es-PGBT2GSM.mjs → dist-es-SCGGKOX2.mjs} +27 -32
- package/dist/{dist-es-X7XEFTLU.mjs → dist-es-ZDCSDOKR.mjs} +10 -11
- package/dist/event-streams-UPDOZQOC.mjs +1274 -0
- package/dist/index.mjs +190 -171
- package/dist/{loadSso-PADWQIUG.mjs → loadSso-ABHII4GO.mjs} +84 -61
- package/dist/{signin-4DZRTUJH.mjs → signin-PHZQKMQ4.mjs} +94 -82
- package/dist/{sso-oidc-VICR4TNH.mjs → sso-oidc-YWYT5VLS.mjs} +102 -63
- package/dist/{sts-WJPOT3CH.mjs → sts-LQIL7WOF.mjs} +4964 -5055
- package/package.json +1 -1
- package/dist/chunk-4KZFIKR3.mjs +0 -5730
- package/dist/chunk-6E4PAXC5.mjs +0 -65
- package/dist/chunk-75QHZ6FC.mjs +0 -52
- package/dist/chunk-AEKGTTWT.mjs +0 -42
- package/dist/chunk-CEE3Y7RM.mjs +0 -14
- package/dist/chunk-H57WOA7R.mjs +0 -883
- package/dist/chunk-HMKFI7SL.mjs +0 -242
- package/dist/chunk-K7B6G3FP.mjs +0 -175
- package/dist/chunk-KHHYAMUK.mjs +0 -164
- package/dist/chunk-S6VA5TIO.mjs +0 -44
- package/dist/chunk-W27BU2E4.mjs +0 -1038
- package/dist/chunk-YZ62XZX5.mjs +0 -29
- package/dist/event-streams-S7HDVT33.mjs +0 -255
package/dist/chunk-6E4PAXC5.mjs
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bun
|
|
2
|
-
import {
|
|
3
|
-
__publicField
|
|
4
|
-
} from "./chunk-FFDYI4OH.mjs";
|
|
5
|
-
|
|
6
|
-
// ../node_modules/.bun/@smithy+protocol-http@5.3.14/node_modules/@smithy/protocol-http/dist-es/httpRequest.js
|
|
7
|
-
var HttpRequest = class _HttpRequest {
|
|
8
|
-
constructor(options) {
|
|
9
|
-
__publicField(this, "method");
|
|
10
|
-
__publicField(this, "protocol");
|
|
11
|
-
__publicField(this, "hostname");
|
|
12
|
-
__publicField(this, "port");
|
|
13
|
-
__publicField(this, "path");
|
|
14
|
-
__publicField(this, "query");
|
|
15
|
-
__publicField(this, "headers");
|
|
16
|
-
__publicField(this, "username");
|
|
17
|
-
__publicField(this, "password");
|
|
18
|
-
__publicField(this, "fragment");
|
|
19
|
-
__publicField(this, "body");
|
|
20
|
-
this.method = options.method || "GET";
|
|
21
|
-
this.hostname = options.hostname || "localhost";
|
|
22
|
-
this.port = options.port;
|
|
23
|
-
this.query = options.query || {};
|
|
24
|
-
this.headers = options.headers || {};
|
|
25
|
-
this.body = options.body;
|
|
26
|
-
this.protocol = options.protocol ? options.protocol.slice(-1) !== ":" ? `${options.protocol}:` : options.protocol : "https:";
|
|
27
|
-
this.path = options.path ? options.path.charAt(0) !== "/" ? `/${options.path}` : options.path : "/";
|
|
28
|
-
this.username = options.username;
|
|
29
|
-
this.password = options.password;
|
|
30
|
-
this.fragment = options.fragment;
|
|
31
|
-
}
|
|
32
|
-
static clone(request) {
|
|
33
|
-
const cloned = new _HttpRequest({
|
|
34
|
-
...request,
|
|
35
|
-
headers: { ...request.headers }
|
|
36
|
-
});
|
|
37
|
-
if (cloned.query) {
|
|
38
|
-
cloned.query = cloneQuery(cloned.query);
|
|
39
|
-
}
|
|
40
|
-
return cloned;
|
|
41
|
-
}
|
|
42
|
-
static isInstance(request) {
|
|
43
|
-
if (!request) {
|
|
44
|
-
return false;
|
|
45
|
-
}
|
|
46
|
-
const req = request;
|
|
47
|
-
return "method" in req && "protocol" in req && "hostname" in req && "path" in req && typeof req["query"] === "object" && typeof req["headers"] === "object";
|
|
48
|
-
}
|
|
49
|
-
clone() {
|
|
50
|
-
return _HttpRequest.clone(this);
|
|
51
|
-
}
|
|
52
|
-
};
|
|
53
|
-
function cloneQuery(query) {
|
|
54
|
-
return Object.keys(query).reduce((carry, paramName) => {
|
|
55
|
-
const param = query[paramName];
|
|
56
|
-
return {
|
|
57
|
-
...carry,
|
|
58
|
-
[paramName]: Array.isArray(param) ? [...param] : param
|
|
59
|
-
};
|
|
60
|
-
}, {});
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export {
|
|
64
|
-
HttpRequest
|
|
65
|
-
};
|
package/dist/chunk-75QHZ6FC.mjs
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bun
|
|
2
|
-
|
|
3
|
-
// ../node_modules/.bun/@smithy+smithy-client@4.12.13/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js
|
|
4
|
-
var createAggregatedClient = (commands, Client, options) => {
|
|
5
|
-
for (const [command, CommandCtor] of Object.entries(commands)) {
|
|
6
|
-
const methodImpl = async function(args, optionsOrCb, cb) {
|
|
7
|
-
const command2 = new CommandCtor(args);
|
|
8
|
-
if (typeof optionsOrCb === "function") {
|
|
9
|
-
this.send(command2, optionsOrCb);
|
|
10
|
-
} else if (typeof cb === "function") {
|
|
11
|
-
if (typeof optionsOrCb !== "object")
|
|
12
|
-
throw new Error(`Expected http options but got ${typeof optionsOrCb}`);
|
|
13
|
-
this.send(command2, optionsOrCb || {}, cb);
|
|
14
|
-
} else {
|
|
15
|
-
return this.send(command2, optionsOrCb);
|
|
16
|
-
}
|
|
17
|
-
};
|
|
18
|
-
const methodName = (command[0].toLowerCase() + command.slice(1)).replace(/Command$/, "");
|
|
19
|
-
Client.prototype[methodName] = methodImpl;
|
|
20
|
-
}
|
|
21
|
-
const { paginators = {}, waiters = {} } = options ?? {};
|
|
22
|
-
for (const [paginatorName, paginatorFn] of Object.entries(paginators)) {
|
|
23
|
-
if (Client.prototype[paginatorName] === void 0) {
|
|
24
|
-
Client.prototype[paginatorName] = function(commandInput = {}, paginationConfiguration, ...rest) {
|
|
25
|
-
return paginatorFn({
|
|
26
|
-
...paginationConfiguration,
|
|
27
|
-
client: this
|
|
28
|
-
}, commandInput, ...rest);
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
for (const [waiterName, waiterFn] of Object.entries(waiters)) {
|
|
33
|
-
if (Client.prototype[waiterName] === void 0) {
|
|
34
|
-
Client.prototype[waiterName] = async function(commandInput = {}, waiterConfiguration, ...rest) {
|
|
35
|
-
let config = waiterConfiguration;
|
|
36
|
-
if (typeof waiterConfiguration === "number") {
|
|
37
|
-
config = {
|
|
38
|
-
maxWaitTime: waiterConfiguration
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
return waiterFn({
|
|
42
|
-
...config,
|
|
43
|
-
client: this
|
|
44
|
-
}, commandInput, ...rest);
|
|
45
|
-
};
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
export {
|
|
51
|
-
createAggregatedClient
|
|
52
|
-
};
|
package/dist/chunk-AEKGTTWT.mjs
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bun
|
|
2
|
-
import {
|
|
3
|
-
__publicField
|
|
4
|
-
} from "./chunk-FFDYI4OH.mjs";
|
|
5
|
-
|
|
6
|
-
// ../node_modules/.bun/@smithy+property-provider@4.2.14/node_modules/@smithy/property-provider/dist-es/ProviderError.js
|
|
7
|
-
var ProviderError = class _ProviderError extends Error {
|
|
8
|
-
constructor(message, options = true) {
|
|
9
|
-
let logger;
|
|
10
|
-
let tryNextLink = true;
|
|
11
|
-
if (typeof options === "boolean") {
|
|
12
|
-
logger = void 0;
|
|
13
|
-
tryNextLink = options;
|
|
14
|
-
} else if (options != null && typeof options === "object") {
|
|
15
|
-
logger = options.logger;
|
|
16
|
-
tryNextLink = options.tryNextLink ?? true;
|
|
17
|
-
}
|
|
18
|
-
super(message);
|
|
19
|
-
__publicField(this, "name", "ProviderError");
|
|
20
|
-
__publicField(this, "tryNextLink");
|
|
21
|
-
this.tryNextLink = tryNextLink;
|
|
22
|
-
Object.setPrototypeOf(this, _ProviderError.prototype);
|
|
23
|
-
logger?.debug?.(`@smithy/property-provider ${tryNextLink ? "->" : "(!)"} ${message}`);
|
|
24
|
-
}
|
|
25
|
-
static from(error, options = true) {
|
|
26
|
-
return Object.assign(new this(error.message, options), error);
|
|
27
|
-
}
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
// ../node_modules/.bun/@smithy+property-provider@4.2.14/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js
|
|
31
|
-
var CredentialsProviderError = class _CredentialsProviderError extends ProviderError {
|
|
32
|
-
constructor(message, options = true) {
|
|
33
|
-
super(message, options);
|
|
34
|
-
__publicField(this, "name", "CredentialsProviderError");
|
|
35
|
-
Object.setPrototypeOf(this, _CredentialsProviderError.prototype);
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
export {
|
|
40
|
-
ProviderError,
|
|
41
|
-
CredentialsProviderError
|
|
42
|
-
};
|
package/dist/chunk-CEE3Y7RM.mjs
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bun
|
|
2
|
-
|
|
3
|
-
// ../node_modules/.bun/@aws-sdk+core@3.974.8/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js
|
|
4
|
-
function setCredentialFeature(credentials, feature, value) {
|
|
5
|
-
if (!credentials.$source) {
|
|
6
|
-
credentials.$source = {};
|
|
7
|
-
}
|
|
8
|
-
credentials.$source[feature] = value;
|
|
9
|
-
return credentials;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export {
|
|
13
|
-
setCredentialFeature
|
|
14
|
-
};
|