@hasna/domains 0.0.44 → 0.0.46
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/cli/index.js +690 -322
- package/dist/generated/storage-kit/index.d.ts +1 -1
- package/dist/generated/storage-kit/migrations.d.ts +21 -0
- package/dist/generated/storage-kit/migrations.d.ts.map +1 -1
- package/dist/index.js +207 -206
- package/dist/mcp/index.js +215 -214
- package/dist/sdk/index.js +1 -1
- package/dist/server/index.js +1 -1
- package/dist/server/migrations.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/cli/index.js
CHANGED
|
@@ -47,7 +47,7 @@ var __export = (target, all) => {
|
|
|
47
47
|
var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
48
48
|
var __require = import.meta.require;
|
|
49
49
|
|
|
50
|
-
// node_modules/commander/lib/error.js
|
|
50
|
+
// ../../node_modules/.bun/commander@13.1.0/node_modules/commander/lib/error.js
|
|
51
51
|
var require_error = __commonJS((exports) => {
|
|
52
52
|
class CommanderError extends Error {
|
|
53
53
|
constructor(exitCode, code, message) {
|
|
@@ -71,7 +71,7 @@ var require_error = __commonJS((exports) => {
|
|
|
71
71
|
exports.InvalidArgumentError = InvalidArgumentError;
|
|
72
72
|
});
|
|
73
73
|
|
|
74
|
-
// node_modules/commander/lib/argument.js
|
|
74
|
+
// ../../node_modules/.bun/commander@13.1.0/node_modules/commander/lib/argument.js
|
|
75
75
|
var require_argument = __commonJS((exports) => {
|
|
76
76
|
var { InvalidArgumentError } = require_error();
|
|
77
77
|
|
|
@@ -150,7 +150,7 @@ var require_argument = __commonJS((exports) => {
|
|
|
150
150
|
exports.humanReadableArgName = humanReadableArgName;
|
|
151
151
|
});
|
|
152
152
|
|
|
153
|
-
// node_modules/commander/lib/help.js
|
|
153
|
+
// ../../node_modules/.bun/commander@13.1.0/node_modules/commander/lib/help.js
|
|
154
154
|
var require_help = __commonJS((exports) => {
|
|
155
155
|
var { humanReadableArgName } = require_argument();
|
|
156
156
|
|
|
@@ -500,7 +500,7 @@ ${itemIndentStr}`);
|
|
|
500
500
|
exports.stripColor = stripColor;
|
|
501
501
|
});
|
|
502
502
|
|
|
503
|
-
// node_modules/commander/lib/option.js
|
|
503
|
+
// ../../node_modules/.bun/commander@13.1.0/node_modules/commander/lib/option.js
|
|
504
504
|
var require_option = __commonJS((exports) => {
|
|
505
505
|
var { InvalidArgumentError } = require_error();
|
|
506
506
|
|
|
@@ -678,7 +678,7 @@ var require_option = __commonJS((exports) => {
|
|
|
678
678
|
exports.DualOptions = DualOptions;
|
|
679
679
|
});
|
|
680
680
|
|
|
681
|
-
// node_modules/commander/lib/suggestSimilar.js
|
|
681
|
+
// ../../node_modules/.bun/commander@13.1.0/node_modules/commander/lib/suggestSimilar.js
|
|
682
682
|
var require_suggestSimilar = __commonJS((exports) => {
|
|
683
683
|
var maxDistance = 3;
|
|
684
684
|
function editDistance(a, b) {
|
|
@@ -751,7 +751,7 @@ var require_suggestSimilar = __commonJS((exports) => {
|
|
|
751
751
|
exports.suggestSimilar = suggestSimilar;
|
|
752
752
|
});
|
|
753
753
|
|
|
754
|
-
// node_modules/commander/lib/command.js
|
|
754
|
+
// ../../node_modules/.bun/commander@13.1.0/node_modules/commander/lib/command.js
|
|
755
755
|
var require_command = __commonJS((exports) => {
|
|
756
756
|
var EventEmitter = __require("events").EventEmitter;
|
|
757
757
|
var childProcess = __require("child_process");
|
|
@@ -2061,7 +2061,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
2061
2061
|
exports.useColor = useColor;
|
|
2062
2062
|
});
|
|
2063
2063
|
|
|
2064
|
-
// node_modules/commander/index.js
|
|
2064
|
+
// ../../node_modules/.bun/commander@13.1.0/node_modules/commander/index.js
|
|
2065
2065
|
var require_commander = __commonJS((exports) => {
|
|
2066
2066
|
var { Argument } = require_argument();
|
|
2067
2067
|
var { Command } = require_command();
|
|
@@ -2081,7 +2081,7 @@ var require_commander = __commonJS((exports) => {
|
|
|
2081
2081
|
exports.InvalidOptionArgumentError = InvalidArgumentError;
|
|
2082
2082
|
});
|
|
2083
2083
|
|
|
2084
|
-
//
|
|
2084
|
+
// ../contracts/dist/client/storage.js
|
|
2085
2085
|
import { isIP } from "net";
|
|
2086
2086
|
import { readFileSync, statSync } from "fs";
|
|
2087
2087
|
import { join } from "path";
|
|
@@ -2966,7 +2966,7 @@ var init_storage = __esm(() => {
|
|
|
2966
2966
|
]);
|
|
2967
2967
|
});
|
|
2968
2968
|
|
|
2969
|
-
//
|
|
2969
|
+
// ../contracts/dist/client/transport.js
|
|
2970
2970
|
function envToken2(name) {
|
|
2971
2971
|
return name.toUpperCase().replace(/-/g, "_");
|
|
2972
2972
|
}
|
|
@@ -5973,7 +5973,7 @@ var init_godaddy = __esm(() => {
|
|
|
5973
5973
|
};
|
|
5974
5974
|
});
|
|
5975
5975
|
|
|
5976
|
-
// node_modules/@smithy/types/dist-cjs/index.js
|
|
5976
|
+
// ../../node_modules/.bun/@smithy+types@4.17.2/node_modules/@smithy/types/dist-cjs/index.js
|
|
5977
5977
|
var require_dist_cjs = __commonJS((exports) => {
|
|
5978
5978
|
var HttpAuthLocation;
|
|
5979
5979
|
(function(HttpAuthLocation2) {
|
|
@@ -6064,7 +6064,7 @@ var require_dist_cjs = __commonJS((exports) => {
|
|
|
6064
6064
|
exports.resolveDefaultRuntimeConfig = resolveDefaultRuntimeConfig;
|
|
6065
6065
|
});
|
|
6066
6066
|
|
|
6067
|
-
// node_modules/@smithy/core/dist-cjs/submodules/transport/index.js
|
|
6067
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js
|
|
6068
6068
|
var require_transport = __commonJS((exports) => {
|
|
6069
6069
|
var { SMITHY_CONTEXT_KEY } = require_dist_cjs();
|
|
6070
6070
|
var getSmithyContext = (context) => context[SMITHY_CONTEXT_KEY] || (context[SMITHY_CONTEXT_KEY] = {});
|
|
@@ -6231,7 +6231,7 @@ var require_transport = __commonJS((exports) => {
|
|
|
6231
6231
|
exports.toEndpointV1 = toEndpointV1;
|
|
6232
6232
|
});
|
|
6233
6233
|
|
|
6234
|
-
// node_modules/@smithy/core/dist-cjs/submodules/schema/index.js
|
|
6234
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js
|
|
6235
6235
|
var require_schema = __commonJS((exports) => {
|
|
6236
6236
|
var { getSmithyContext, HttpResponse, toEndpointV1 } = require_transport();
|
|
6237
6237
|
var deref = (schemaRef) => {
|
|
@@ -6900,7 +6900,7 @@ var require_schema = __commonJS((exports) => {
|
|
|
6900
6900
|
exports.translateTraits = translateTraits;
|
|
6901
6901
|
});
|
|
6902
6902
|
|
|
6903
|
-
// node_modules/@smithy/core/dist-cjs/submodules/client/index.js
|
|
6903
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/client/index.js
|
|
6904
6904
|
var require_client = __commonJS((exports) => {
|
|
6905
6905
|
var { getSmithyContext, normalizeProvider } = require_transport();
|
|
6906
6906
|
exports.getSmithyContext = getSmithyContext;
|
|
@@ -7969,7 +7969,7 @@ var require_client = __commonJS((exports) => {
|
|
|
7969
7969
|
exports.withBaseException = withBaseException;
|
|
7970
7970
|
});
|
|
7971
7971
|
|
|
7972
|
-
// node_modules/@smithy/core/dist-cjs/submodules/config/index.js
|
|
7972
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/config/index.js
|
|
7973
7973
|
var require_config = __commonJS((exports) => {
|
|
7974
7974
|
var { homedir: homedir2 } = __require("os");
|
|
7975
7975
|
var { sep, join: join3 } = __require("path");
|
|
@@ -8664,7 +8664,7 @@ var require_config = __commonJS((exports) => {
|
|
|
8664
8664
|
exports.resolveRegionConfig = resolveRegionConfig;
|
|
8665
8665
|
});
|
|
8666
8666
|
|
|
8667
|
-
// node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js
|
|
8667
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js
|
|
8668
8668
|
var require_endpoints = __commonJS((exports) => {
|
|
8669
8669
|
var { CONFIG_PREFIX_SEPARATOR, booleanSelector, SelectorType, loadConfig } = require_config();
|
|
8670
8670
|
var { toEndpointV1, getSmithyContext, normalizeProvider, isValidHostLabel } = require_transport();
|
|
@@ -9476,7 +9476,7 @@ var require_endpoints = __commonJS((exports) => {
|
|
|
9476
9476
|
exports.resolveParams = resolveParams;
|
|
9477
9477
|
});
|
|
9478
9478
|
|
|
9479
|
-
// node_modules/@smithy/core/dist-cjs/submodules/serde/index.js
|
|
9479
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js
|
|
9480
9480
|
var require_serde = __commonJS((exports) => {
|
|
9481
9481
|
var { createHmac, createHash: createHash2, getRandomValues } = __require("crypto");
|
|
9482
9482
|
var { ReadStream, lstatSync, fstatSync } = __require("fs");
|
|
@@ -11114,7 +11114,7 @@ ${value}\r
|
|
|
11114
11114
|
exports.v4 = v4;
|
|
11115
11115
|
});
|
|
11116
11116
|
|
|
11117
|
-
// node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js
|
|
11117
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js
|
|
11118
11118
|
var require_checksum = __commonJS((exports) => {
|
|
11119
11119
|
var { createReadStream } = __require("fs");
|
|
11120
11120
|
var { Writable } = __require("stream");
|
|
@@ -11730,7 +11730,7 @@ var require_checksum = __commonJS((exports) => {
|
|
|
11730
11730
|
exports.readableStreamHasher = readableStreamHasher;
|
|
11731
11731
|
});
|
|
11732
11732
|
|
|
11733
|
-
// node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js
|
|
11733
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js
|
|
11734
11734
|
var require_event_streams = __commonJS((exports) => {
|
|
11735
11735
|
var { Crc32 } = require_checksum();
|
|
11736
11736
|
var { toHex, fromHex, toUtf8, fromUtf8 } = require_serde();
|
|
@@ -11805,27 +11805,27 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
11805
11805
|
formatHeaderValue(header) {
|
|
11806
11806
|
switch (header.type) {
|
|
11807
11807
|
case "boolean":
|
|
11808
|
-
return Uint8Array.from([header.value ?
|
|
11808
|
+
return Uint8Array.from([header.value ? 0 : 1]);
|
|
11809
11809
|
case "byte":
|
|
11810
|
-
return Uint8Array.from([
|
|
11810
|
+
return Uint8Array.from([2, header.value]);
|
|
11811
11811
|
case "short":
|
|
11812
11812
|
const shortView = new DataView(new ArrayBuffer(3));
|
|
11813
|
-
shortView.setUint8(0,
|
|
11813
|
+
shortView.setUint8(0, 3);
|
|
11814
11814
|
shortView.setInt16(1, header.value, false);
|
|
11815
11815
|
return new Uint8Array(shortView.buffer);
|
|
11816
11816
|
case "integer":
|
|
11817
11817
|
const intView = new DataView(new ArrayBuffer(5));
|
|
11818
|
-
intView.setUint8(0,
|
|
11818
|
+
intView.setUint8(0, 4);
|
|
11819
11819
|
intView.setInt32(1, header.value, false);
|
|
11820
11820
|
return new Uint8Array(intView.buffer);
|
|
11821
11821
|
case "long":
|
|
11822
11822
|
const longBytes = new Uint8Array(9);
|
|
11823
|
-
longBytes[0] =
|
|
11823
|
+
longBytes[0] = 5;
|
|
11824
11824
|
longBytes.set(header.value.bytes, 1);
|
|
11825
11825
|
return longBytes;
|
|
11826
11826
|
case "binary":
|
|
11827
11827
|
const binView = new DataView(new ArrayBuffer(3 + header.value.byteLength));
|
|
11828
|
-
binView.setUint8(0,
|
|
11828
|
+
binView.setUint8(0, 6);
|
|
11829
11829
|
binView.setUint16(1, header.value.byteLength, false);
|
|
11830
11830
|
const binBytes = new Uint8Array(binView.buffer);
|
|
11831
11831
|
binBytes.set(header.value, 3);
|
|
@@ -11833,14 +11833,14 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
11833
11833
|
case "string":
|
|
11834
11834
|
const utf8Bytes = this.fromUtf8(header.value);
|
|
11835
11835
|
const strView = new DataView(new ArrayBuffer(3 + utf8Bytes.byteLength));
|
|
11836
|
-
strView.setUint8(0,
|
|
11836
|
+
strView.setUint8(0, 7);
|
|
11837
11837
|
strView.setUint16(1, utf8Bytes.byteLength, false);
|
|
11838
11838
|
const strBytes = new Uint8Array(strView.buffer);
|
|
11839
11839
|
strBytes.set(utf8Bytes, 3);
|
|
11840
11840
|
return strBytes;
|
|
11841
11841
|
case "timestamp":
|
|
11842
11842
|
const tsBytes = new Uint8Array(9);
|
|
11843
|
-
tsBytes[0] =
|
|
11843
|
+
tsBytes[0] = 8;
|
|
11844
11844
|
tsBytes.set(Int64.fromNumber(header.value.valueOf()).bytes, 1);
|
|
11845
11845
|
return tsBytes;
|
|
11846
11846
|
case "uuid":
|
|
@@ -11848,7 +11848,7 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
11848
11848
|
throw new Error(`Invalid UUID received: ${header.value}`);
|
|
11849
11849
|
}
|
|
11850
11850
|
const uuidBytes = new Uint8Array(17);
|
|
11851
|
-
uuidBytes[0] =
|
|
11851
|
+
uuidBytes[0] = 9;
|
|
11852
11852
|
uuidBytes.set(fromHex(header.value.replace(/-/g, "")), 1);
|
|
11853
11853
|
return uuidBytes;
|
|
11854
11854
|
}
|
|
@@ -11861,46 +11861,46 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
11861
11861
|
const name = this.toUtf8(new Uint8Array(headers.buffer, headers.byteOffset + position, nameLength));
|
|
11862
11862
|
position += nameLength;
|
|
11863
11863
|
switch (headers.getUint8(position++)) {
|
|
11864
|
-
case
|
|
11864
|
+
case 0:
|
|
11865
11865
|
out[name] = {
|
|
11866
11866
|
type: BOOLEAN_TAG,
|
|
11867
11867
|
value: true
|
|
11868
11868
|
};
|
|
11869
11869
|
break;
|
|
11870
|
-
case
|
|
11870
|
+
case 1:
|
|
11871
11871
|
out[name] = {
|
|
11872
11872
|
type: BOOLEAN_TAG,
|
|
11873
11873
|
value: false
|
|
11874
11874
|
};
|
|
11875
11875
|
break;
|
|
11876
|
-
case
|
|
11876
|
+
case 2:
|
|
11877
11877
|
out[name] = {
|
|
11878
11878
|
type: BYTE_TAG,
|
|
11879
11879
|
value: headers.getInt8(position++)
|
|
11880
11880
|
};
|
|
11881
11881
|
break;
|
|
11882
|
-
case
|
|
11882
|
+
case 3:
|
|
11883
11883
|
out[name] = {
|
|
11884
11884
|
type: SHORT_TAG,
|
|
11885
11885
|
value: headers.getInt16(position, false)
|
|
11886
11886
|
};
|
|
11887
11887
|
position += 2;
|
|
11888
11888
|
break;
|
|
11889
|
-
case
|
|
11889
|
+
case 4:
|
|
11890
11890
|
out[name] = {
|
|
11891
11891
|
type: INT_TAG,
|
|
11892
11892
|
value: headers.getInt32(position, false)
|
|
11893
11893
|
};
|
|
11894
11894
|
position += 4;
|
|
11895
11895
|
break;
|
|
11896
|
-
case
|
|
11896
|
+
case 5:
|
|
11897
11897
|
out[name] = {
|
|
11898
11898
|
type: LONG_TAG,
|
|
11899
11899
|
value: new Int64(new Uint8Array(headers.buffer, headers.byteOffset + position, 8))
|
|
11900
11900
|
};
|
|
11901
11901
|
position += 8;
|
|
11902
11902
|
break;
|
|
11903
|
-
case
|
|
11903
|
+
case 6:
|
|
11904
11904
|
const binaryLength = headers.getUint16(position, false);
|
|
11905
11905
|
position += 2;
|
|
11906
11906
|
out[name] = {
|
|
@@ -11909,7 +11909,7 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
11909
11909
|
};
|
|
11910
11910
|
position += binaryLength;
|
|
11911
11911
|
break;
|
|
11912
|
-
case
|
|
11912
|
+
case 7:
|
|
11913
11913
|
const stringLength = headers.getUint16(position, false);
|
|
11914
11914
|
position += 2;
|
|
11915
11915
|
out[name] = {
|
|
@@ -11918,14 +11918,14 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
11918
11918
|
};
|
|
11919
11919
|
position += stringLength;
|
|
11920
11920
|
break;
|
|
11921
|
-
case
|
|
11921
|
+
case 8:
|
|
11922
11922
|
out[name] = {
|
|
11923
11923
|
type: TIMESTAMP_TAG,
|
|
11924
11924
|
value: new Date(new Int64(new Uint8Array(headers.buffer, headers.byteOffset + position, 8)).valueOf())
|
|
11925
11925
|
};
|
|
11926
11926
|
position += 8;
|
|
11927
11927
|
break;
|
|
11928
|
-
case
|
|
11928
|
+
case 9:
|
|
11929
11929
|
const uuidBytes = new Uint8Array(headers.buffer, headers.byteOffset + position, 16);
|
|
11930
11930
|
position += 16;
|
|
11931
11931
|
out[name] = {
|
|
@@ -12348,7 +12348,7 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
12348
12348
|
this.defaultContentType = defaultContentType;
|
|
12349
12349
|
this.compositeErrorRegistry = compositeErrorRegistry;
|
|
12350
12350
|
}
|
|
12351
|
-
async serializeEventStream({ eventStream, requestSchema, initialRequest }) {
|
|
12351
|
+
async serializeEventStream({ eventStream, requestSchema, initialRequest, initialMessageType }) {
|
|
12352
12352
|
const marshaller = this.marshaller;
|
|
12353
12353
|
const eventStreamMember = requestSchema.getEventStreamMember();
|
|
12354
12354
|
const unionSchema = requestSchema.getMemberSchema(eventStreamMember);
|
|
@@ -12359,7 +12359,7 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
12359
12359
|
async* [Symbol.asyncIterator]() {
|
|
12360
12360
|
if (initialRequest) {
|
|
12361
12361
|
const headers = {
|
|
12362
|
-
":event-type": { type: "string", value: "initial-request" },
|
|
12362
|
+
":event-type": { type: "string", value: initialMessageType ?? "initial-request" },
|
|
12363
12363
|
":message-type": { type: "string", value: "event" },
|
|
12364
12364
|
":content-type": { type: "string", value: defaultContentType }
|
|
12365
12365
|
};
|
|
@@ -12403,7 +12403,7 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
12403
12403
|
};
|
|
12404
12404
|
});
|
|
12405
12405
|
}
|
|
12406
|
-
async deserializeEventStream({ response, responseSchema, initialResponseContainer }) {
|
|
12406
|
+
async deserializeEventStream({ response, responseSchema, initialResponseContainer, initialMessageType }) {
|
|
12407
12407
|
const marshaller = this.marshaller;
|
|
12408
12408
|
const eventStreamMember = responseSchema.getEventStreamMember();
|
|
12409
12409
|
const unionSchema = responseSchema.getMemberSchema(eventStreamMember);
|
|
@@ -12418,7 +12418,7 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
12418
12418
|
}
|
|
12419
12419
|
}
|
|
12420
12420
|
const body = event[unionMember].body;
|
|
12421
|
-
if (unionMember === "initial-response") {
|
|
12421
|
+
if (unionMember === (initialMessageType ?? "initial-response")) {
|
|
12422
12422
|
const dataObject = await this.deserializer.read(responseSchema, body);
|
|
12423
12423
|
delete dataObject[eventStreamMember];
|
|
12424
12424
|
return {
|
|
@@ -12613,7 +12613,7 @@ var require_event_streams = __commonJS((exports) => {
|
|
|
12613
12613
|
exports.universalEventStreamSerdeProvider = eventStreamSerdeProvider$1;
|
|
12614
12614
|
});
|
|
12615
12615
|
|
|
12616
|
-
// node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js
|
|
12616
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js
|
|
12617
12617
|
var require_protocols = __commonJS((exports) => {
|
|
12618
12618
|
var { Uint8ArrayBlobAdapter, sdkStreamMixin, splitEvery, splitHeader, fromBase64, _parseEpochTimestamp, _parseRfc7231DateTime, _parseRfc3339DateTimeWithOffset, LazyJsonString, NumericValue, toUtf8, fromUtf8, generateIdempotencyToken, toBase64, dateToUtcString, quoteHeader } = require_serde();
|
|
12619
12619
|
var { TypeRegistry, NormalizedSchema, translateTraits } = require_schema();
|
|
@@ -13086,10 +13086,9 @@ var require_protocols = __commonJS((exports) => {
|
|
|
13086
13086
|
if (eventStreamMember) {
|
|
13087
13087
|
if (input[eventStreamMember]) {
|
|
13088
13088
|
const initialRequest = {};
|
|
13089
|
-
for (const [memberName
|
|
13090
|
-
if (memberName !== eventStreamMember && input[memberName]) {
|
|
13091
|
-
|
|
13092
|
-
initialRequest[memberName] = serializer.flush();
|
|
13089
|
+
for (const [memberName] of ns.structIterator()) {
|
|
13090
|
+
if (memberName !== eventStreamMember && input[memberName] != null) {
|
|
13091
|
+
initialRequest[memberName] = input[memberName];
|
|
13093
13092
|
}
|
|
13094
13093
|
}
|
|
13095
13094
|
payload = await this.serializeEventStream({
|
|
@@ -13530,10 +13529,12 @@ var require_protocols = __commonJS((exports) => {
|
|
|
13530
13529
|
if (body && Object.keys(headers).map((str) => str.toLowerCase()).indexOf(CONTENT_LENGTH_HEADER) === -1) {
|
|
13531
13530
|
try {
|
|
13532
13531
|
const length = bodyLengthChecker(body);
|
|
13533
|
-
|
|
13534
|
-
|
|
13535
|
-
|
|
13536
|
-
|
|
13532
|
+
if (length != null) {
|
|
13533
|
+
request.headers = {
|
|
13534
|
+
...request.headers,
|
|
13535
|
+
[CONTENT_LENGTH_HEADER]: String(length)
|
|
13536
|
+
};
|
|
13537
|
+
}
|
|
13537
13538
|
} catch (ignored) {}
|
|
13538
13539
|
}
|
|
13539
13540
|
}
|
|
@@ -13602,7 +13603,7 @@ var require_protocols = __commonJS((exports) => {
|
|
|
13602
13603
|
exports.resolvedPath = resolvedPath;
|
|
13603
13604
|
});
|
|
13604
13605
|
|
|
13605
|
-
// node_modules/@smithy/core/dist-cjs/submodules/retry/index.js
|
|
13606
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js
|
|
13606
13607
|
var require_retry = __commonJS((exports) => {
|
|
13607
13608
|
var { Readable } = __require("stream");
|
|
13608
13609
|
var { NoOpLogger, normalizeProvider } = require_client();
|
|
@@ -14399,7 +14400,7 @@ var require_retry = __commonJS((exports) => {
|
|
|
14399
14400
|
exports.retryMiddlewareOptions = retryMiddlewareOptions;
|
|
14400
14401
|
});
|
|
14401
14402
|
|
|
14402
|
-
// node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js
|
|
14403
|
+
// ../../node_modules/.bun/@aws+lambda-invoke-store@0.3.0/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js
|
|
14403
14404
|
var require_invoke_store = __commonJS((exports) => {
|
|
14404
14405
|
var PROTECTED_KEYS = {
|
|
14405
14406
|
REQUEST_ID: Symbol.for("_AWS_LAMBDA_REQUEST_ID"),
|
|
@@ -14528,7 +14529,7 @@ var require_invoke_store = __commonJS((exports) => {
|
|
|
14528
14529
|
exports.InvokeStoreBase = InvokeStoreBase;
|
|
14529
14530
|
});
|
|
14530
14531
|
|
|
14531
|
-
// node_modules/@smithy/core/dist-cjs/index.js
|
|
14532
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/index.js
|
|
14532
14533
|
var require_dist_cjs2 = __commonJS((exports) => {
|
|
14533
14534
|
var { getSmithyContext } = require_transport();
|
|
14534
14535
|
exports.getSmithyContext = getSmithyContext;
|
|
@@ -14854,7 +14855,7 @@ var require_dist_cjs2 = __commonJS((exports) => {
|
|
|
14854
14855
|
exports.setFeature = setFeature;
|
|
14855
14856
|
});
|
|
14856
14857
|
|
|
14857
|
-
// node_modules/bowser/es5.js
|
|
14858
|
+
// ../../node_modules/.bun/bowser@2.14.1/node_modules/bowser/es5.js
|
|
14858
14859
|
var require_es5 = __commonJS((exports, module) => {
|
|
14859
14860
|
(function(e, t) {
|
|
14860
14861
|
typeof exports == "object" && typeof module == "object" ? module.exports = t() : typeof define == "function" && define.amd ? define([], t) : typeof exports == "object" ? exports.bowser = t() : e.bowser = t();
|
|
@@ -15694,7 +15695,7 @@ var require_es5 = __commonJS((exports, module) => {
|
|
|
15694
15695
|
});
|
|
15695
15696
|
});
|
|
15696
15697
|
|
|
15697
|
-
// node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js
|
|
15698
|
+
// ../../node_modules/.bun/@aws-sdk+core@3.977.8/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js
|
|
15698
15699
|
var require_client2 = __commonJS((exports) => {
|
|
15699
15700
|
var { Retry, RETRY_MODES } = require_retry();
|
|
15700
15701
|
var { HttpRequest, parseUrl } = require_protocols();
|
|
@@ -16632,7 +16633,7 @@ More information can be found at: https://a.co/c895JFp`);
|
|
|
16632
16633
|
exports.userAgentMiddleware = userAgentMiddleware;
|
|
16633
16634
|
});
|
|
16634
16635
|
|
|
16635
|
-
// node_modules/@smithy/signature-v4/dist-cjs/index.js
|
|
16636
|
+
// ../../node_modules/.bun/@smithy+signature-v4@5.7.2/node_modules/@smithy/signature-v4/dist-cjs/index.js
|
|
16636
16637
|
var require_dist_cjs3 = __commonJS((exports) => {
|
|
16637
16638
|
var { fromUtf8, fromHex, toHex, toUint8Array, isArrayBuffer } = require_serde();
|
|
16638
16639
|
var { normalizeProvider } = require_client();
|
|
@@ -16656,27 +16657,27 @@ var require_dist_cjs3 = __commonJS((exports) => {
|
|
|
16656
16657
|
formatHeaderValue(header) {
|
|
16657
16658
|
switch (header.type) {
|
|
16658
16659
|
case "boolean":
|
|
16659
|
-
return Uint8Array.from([header.value ?
|
|
16660
|
+
return Uint8Array.from([header.value ? 0 : 1]);
|
|
16660
16661
|
case "byte":
|
|
16661
|
-
return Uint8Array.from([
|
|
16662
|
+
return Uint8Array.from([2, header.value]);
|
|
16662
16663
|
case "short":
|
|
16663
16664
|
const shortView = new DataView(new ArrayBuffer(3));
|
|
16664
|
-
shortView.setUint8(0,
|
|
16665
|
+
shortView.setUint8(0, 3);
|
|
16665
16666
|
shortView.setInt16(1, header.value, false);
|
|
16666
16667
|
return new Uint8Array(shortView.buffer);
|
|
16667
16668
|
case "integer":
|
|
16668
16669
|
const intView = new DataView(new ArrayBuffer(5));
|
|
16669
|
-
intView.setUint8(0,
|
|
16670
|
+
intView.setUint8(0, 4);
|
|
16670
16671
|
intView.setInt32(1, header.value, false);
|
|
16671
16672
|
return new Uint8Array(intView.buffer);
|
|
16672
16673
|
case "long":
|
|
16673
16674
|
const longBytes = new Uint8Array(9);
|
|
16674
|
-
longBytes[0] =
|
|
16675
|
+
longBytes[0] = 5;
|
|
16675
16676
|
longBytes.set(header.value.bytes, 1);
|
|
16676
16677
|
return longBytes;
|
|
16677
16678
|
case "binary":
|
|
16678
16679
|
const binView = new DataView(new ArrayBuffer(3 + header.value.byteLength));
|
|
16679
|
-
binView.setUint8(0,
|
|
16680
|
+
binView.setUint8(0, 6);
|
|
16680
16681
|
binView.setUint16(1, header.value.byteLength, false);
|
|
16681
16682
|
const binBytes = new Uint8Array(binView.buffer);
|
|
16682
16683
|
binBytes.set(header.value, 3);
|
|
@@ -16684,14 +16685,14 @@ var require_dist_cjs3 = __commonJS((exports) => {
|
|
|
16684
16685
|
case "string":
|
|
16685
16686
|
const utf8Bytes = fromUtf8(header.value);
|
|
16686
16687
|
const strView = new DataView(new ArrayBuffer(3 + utf8Bytes.byteLength));
|
|
16687
|
-
strView.setUint8(0,
|
|
16688
|
+
strView.setUint8(0, 7);
|
|
16688
16689
|
strView.setUint16(1, utf8Bytes.byteLength, false);
|
|
16689
16690
|
const strBytes = new Uint8Array(strView.buffer);
|
|
16690
16691
|
strBytes.set(utf8Bytes, 3);
|
|
16691
16692
|
return strBytes;
|
|
16692
16693
|
case "timestamp":
|
|
16693
16694
|
const tsBytes = new Uint8Array(9);
|
|
16694
|
-
tsBytes[0] =
|
|
16695
|
+
tsBytes[0] = 8;
|
|
16695
16696
|
tsBytes.set(Int64.fromNumber(header.value.valueOf()).bytes, 1);
|
|
16696
16697
|
return tsBytes;
|
|
16697
16698
|
case "uuid":
|
|
@@ -16699,7 +16700,7 @@ var require_dist_cjs3 = __commonJS((exports) => {
|
|
|
16699
16700
|
throw new Error(`Invalid UUID received: ${header.value}`);
|
|
16700
16701
|
}
|
|
16701
16702
|
const uuidBytes = new Uint8Array(17);
|
|
16702
|
-
uuidBytes[0] =
|
|
16703
|
+
uuidBytes[0] = 9;
|
|
16703
16704
|
uuidBytes.set(fromHex(header.value.replace(/-/g, "")), 1);
|
|
16704
16705
|
return uuidBytes;
|
|
16705
16706
|
}
|
|
@@ -17172,7 +17173,7 @@ ${toHex(hashedRequest)}`;
|
|
|
17172
17173
|
exports.signatureV4aContainer = signatureV4aContainer;
|
|
17173
17174
|
});
|
|
17174
17175
|
|
|
17175
|
-
// node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js
|
|
17176
|
+
// ../../node_modules/.bun/@aws-sdk+core@3.977.8/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js
|
|
17176
17177
|
var require_httpAuthSchemes = __commonJS((exports) => {
|
|
17177
17178
|
var { ProviderError, booleanSelector, SelectorType, loadConfig } = require_config();
|
|
17178
17179
|
var { setCredentialFeature } = require_client2();
|
|
@@ -17502,7 +17503,7 @@ var require_httpAuthSchemes = __commonJS((exports) => {
|
|
|
17502
17503
|
exports.validateSigningProperties = validateSigningProperties;
|
|
17503
17504
|
});
|
|
17504
17505
|
|
|
17505
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthSchemeProvider.js
|
|
17506
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthSchemeProvider.js
|
|
17506
17507
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
17507
17508
|
return {
|
|
17508
17509
|
schemeId: "aws.auth#sigv4",
|
|
@@ -17544,7 +17545,7 @@ var init_httpAuthSchemeProvider = __esm(() => {
|
|
|
17544
17545
|
import_client2 = __toESM(require_client(), 1);
|
|
17545
17546
|
});
|
|
17546
17547
|
|
|
17547
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/endpoint/EndpointParameters.js
|
|
17548
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/EndpointParameters.js
|
|
17548
17549
|
var resolveClientEndpointParameters = (options) => {
|
|
17549
17550
|
return Object.assign(options, {
|
|
17550
17551
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
@@ -17561,12 +17562,12 @@ var init_EndpointParameters = __esm(() => {
|
|
|
17561
17562
|
};
|
|
17562
17563
|
});
|
|
17563
17564
|
|
|
17564
|
-
// node_modules/@aws-sdk/client-route-53/package.json
|
|
17565
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/package.json
|
|
17565
17566
|
var package_default;
|
|
17566
17567
|
var init_package = __esm(() => {
|
|
17567
17568
|
package_default = {
|
|
17568
17569
|
name: "@aws-sdk/client-route-53",
|
|
17569
|
-
version: "3.
|
|
17570
|
+
version: "3.1112.0",
|
|
17570
17571
|
description: "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
|
|
17571
17572
|
homepage: "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-route-53",
|
|
17572
17573
|
license: "Apache-2.0",
|
|
@@ -17644,7 +17645,7 @@ var init_package = __esm(() => {
|
|
|
17644
17645
|
};
|
|
17645
17646
|
});
|
|
17646
17647
|
|
|
17647
|
-
// node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js
|
|
17648
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-env@3.972.69/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js
|
|
17648
17649
|
var import_client3, import_config, ENV_KEY = "AWS_ACCESS_KEY_ID", ENV_SECRET = "AWS_SECRET_ACCESS_KEY", ENV_SESSION = "AWS_SESSION_TOKEN", ENV_EXPIRATION = "AWS_CREDENTIAL_EXPIRATION", ENV_CREDENTIAL_SCOPE = "AWS_CREDENTIAL_SCOPE", ENV_ACCOUNT_ID = "AWS_ACCOUNT_ID", fromEnv = (init) => async () => {
|
|
17649
17650
|
init?.logger?.debug("@aws-sdk/credential-provider-env - fromEnv");
|
|
17650
17651
|
const accessKeyId = process.env[ENV_KEY];
|
|
@@ -17672,7 +17673,7 @@ var init_fromEnv = __esm(() => {
|
|
|
17672
17673
|
import_config = __toESM(require_config(), 1);
|
|
17673
17674
|
});
|
|
17674
17675
|
|
|
17675
|
-
// node_modules/@aws-sdk/credential-provider-env/dist-es/index.js
|
|
17676
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-env@3.972.69/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js
|
|
17676
17677
|
var exports_dist_es = {};
|
|
17677
17678
|
__export(exports_dist_es, {
|
|
17678
17679
|
fromEnv: () => fromEnv,
|
|
@@ -17687,7 +17688,7 @@ var init_dist_es = __esm(() => {
|
|
|
17687
17688
|
init_fromEnv();
|
|
17688
17689
|
});
|
|
17689
17690
|
|
|
17690
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js
|
|
17691
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js
|
|
17691
17692
|
var isImdsCredentials = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.AccessKeyId === "string" && typeof arg.SecretAccessKey === "string" && typeof arg.Token === "string" && typeof arg.Expiration === "string", fromImdsCredentials = (creds) => ({
|
|
17692
17693
|
accessKeyId: creds.AccessKeyId,
|
|
17693
17694
|
secretAccessKey: creds.SecretAccessKey,
|
|
@@ -17696,14 +17697,14 @@ var isImdsCredentials = (arg) => Boolean(arg) && typeof arg === "object" && type
|
|
|
17696
17697
|
...creds.AccountId && { accountId: creds.AccountId }
|
|
17697
17698
|
});
|
|
17698
17699
|
|
|
17699
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js
|
|
17700
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js
|
|
17700
17701
|
var DEFAULT_TIMEOUT = 1000, DEFAULT_MAX_RETRIES = 0, providerConfigFromInit = ({ maxRetries = DEFAULT_MAX_RETRIES, timeout = DEFAULT_TIMEOUT }) => ({ maxRetries, timeout });
|
|
17701
17702
|
|
|
17702
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js
|
|
17703
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js
|
|
17703
17704
|
import node_http from "http";
|
|
17704
17705
|
var init_node_http = () => {};
|
|
17705
17706
|
|
|
17706
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js
|
|
17707
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js
|
|
17707
17708
|
function httpRequest(options) {
|
|
17708
17709
|
return new Promise((resolve3, reject) => {
|
|
17709
17710
|
const req = node_http.request({
|
|
@@ -17743,7 +17744,7 @@ var init_httpRequest = __esm(() => {
|
|
|
17743
17744
|
import_config2 = __toESM(require_config(), 1);
|
|
17744
17745
|
});
|
|
17745
17746
|
|
|
17746
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js
|
|
17747
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js
|
|
17747
17748
|
var retry = (toRetry, maxRetries) => {
|
|
17748
17749
|
let promise = toRetry();
|
|
17749
17750
|
for (let i = 0;i < maxRetries; i++) {
|
|
@@ -17752,7 +17753,7 @@ var retry = (toRetry, maxRetries) => {
|
|
|
17752
17753
|
return promise;
|
|
17753
17754
|
};
|
|
17754
17755
|
|
|
17755
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js
|
|
17756
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js
|
|
17756
17757
|
var import_config3, ENV_CMDS_FULL_URI = "AWS_CONTAINER_CREDENTIALS_FULL_URI", ENV_CMDS_RELATIVE_URI = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI", ENV_CMDS_AUTH_TOKEN = "AWS_CONTAINER_AUTHORIZATION_TOKEN", fromContainerMetadata = (init = {}) => {
|
|
17757
17758
|
const { timeout, maxRetries } = providerConfigFromInit(init);
|
|
17758
17759
|
return () => retry(async () => {
|
|
@@ -17822,7 +17823,7 @@ var init_fromContainerMetadata = __esm(() => {
|
|
|
17822
17823
|
GREENGRASS_PROTOCOLS = new Set(["http:", "https:"]);
|
|
17823
17824
|
});
|
|
17824
17825
|
|
|
17825
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js
|
|
17826
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js
|
|
17826
17827
|
var import_config4, InstanceMetadataV1FallbackError;
|
|
17827
17828
|
var init_InstanceMetadataV1FallbackError = __esm(() => {
|
|
17828
17829
|
import_config4 = __toESM(require_config(), 1);
|
|
@@ -17837,7 +17838,7 @@ var init_InstanceMetadataV1FallbackError = __esm(() => {
|
|
|
17837
17838
|
};
|
|
17838
17839
|
});
|
|
17839
17840
|
|
|
17840
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js
|
|
17841
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js
|
|
17841
17842
|
var Endpoint;
|
|
17842
17843
|
var init_Endpoint = __esm(() => {
|
|
17843
17844
|
(function(Endpoint2) {
|
|
@@ -17846,7 +17847,7 @@ var init_Endpoint = __esm(() => {
|
|
|
17846
17847
|
})(Endpoint || (Endpoint = {}));
|
|
17847
17848
|
});
|
|
17848
17849
|
|
|
17849
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js
|
|
17850
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js
|
|
17850
17851
|
var ENV_ENDPOINT_NAME = "AWS_EC2_METADATA_SERVICE_ENDPOINT", CONFIG_ENDPOINT_NAME = "ec2_metadata_service_endpoint", ENDPOINT_CONFIG_OPTIONS;
|
|
17851
17852
|
var init_EndpointConfigOptions = __esm(() => {
|
|
17852
17853
|
ENDPOINT_CONFIG_OPTIONS = {
|
|
@@ -17856,7 +17857,7 @@ var init_EndpointConfigOptions = __esm(() => {
|
|
|
17856
17857
|
};
|
|
17857
17858
|
});
|
|
17858
17859
|
|
|
17859
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js
|
|
17860
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js
|
|
17860
17861
|
var EndpointMode;
|
|
17861
17862
|
var init_EndpointMode = __esm(() => {
|
|
17862
17863
|
(function(EndpointMode2) {
|
|
@@ -17865,7 +17866,7 @@ var init_EndpointMode = __esm(() => {
|
|
|
17865
17866
|
})(EndpointMode || (EndpointMode = {}));
|
|
17866
17867
|
});
|
|
17867
17868
|
|
|
17868
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js
|
|
17869
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js
|
|
17869
17870
|
var ENV_ENDPOINT_MODE_NAME = "AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE", CONFIG_ENDPOINT_MODE_NAME = "ec2_metadata_service_endpoint_mode", ENDPOINT_MODE_CONFIG_OPTIONS;
|
|
17870
17871
|
var init_EndpointModeConfigOptions = __esm(() => {
|
|
17871
17872
|
init_EndpointMode();
|
|
@@ -17876,7 +17877,7 @@ var init_EndpointModeConfigOptions = __esm(() => {
|
|
|
17876
17877
|
};
|
|
17877
17878
|
});
|
|
17878
17879
|
|
|
17879
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js
|
|
17880
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js
|
|
17880
17881
|
var import_config5, import_protocols, getInstanceMetadataEndpoint = async () => import_protocols.parseUrl(await getFromEndpointConfig() || await getFromEndpointModeConfig()), getFromEndpointConfig = async () => import_config5.loadConfig(ENDPOINT_CONFIG_OPTIONS)(), getFromEndpointModeConfig = async () => {
|
|
17881
17882
|
const endpointMode = await import_config5.loadConfig(ENDPOINT_MODE_CONFIG_OPTIONS)();
|
|
17882
17883
|
switch (endpointMode) {
|
|
@@ -17897,7 +17898,7 @@ var init_getInstanceMetadataEndpoint = __esm(() => {
|
|
|
17897
17898
|
import_protocols = __toESM(require_protocols(), 1);
|
|
17898
17899
|
});
|
|
17899
17900
|
|
|
17900
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js
|
|
17901
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js
|
|
17901
17902
|
var STATIC_STABILITY_REFRESH_INTERVAL_SECONDS, STATIC_STABILITY_REFRESH_INTERVAL_JITTER_WINDOW_SECONDS, STATIC_STABILITY_DOC_URL = "https://docs.aws.amazon.com/sdkref/latest/guide/feature-static-credentials.html", getExtendedInstanceMetadataCredentials = (credentials, logger) => {
|
|
17902
17903
|
const refreshInterval = STATIC_STABILITY_REFRESH_INTERVAL_SECONDS + Math.floor(Math.random() * STATIC_STABILITY_REFRESH_INTERVAL_JITTER_WINDOW_SECONDS);
|
|
17903
17904
|
const newExpiration = new Date(Date.now() + refreshInterval * 1000);
|
|
@@ -17915,7 +17916,7 @@ var init_getExtendedInstanceMetadataCredentials = __esm(() => {
|
|
|
17915
17916
|
STATIC_STABILITY_REFRESH_INTERVAL_JITTER_WINDOW_SECONDS = 5 * 60;
|
|
17916
17917
|
});
|
|
17917
17918
|
|
|
17918
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js
|
|
17919
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js
|
|
17919
17920
|
var staticStabilityProvider = (provider, options = {}) => {
|
|
17920
17921
|
const logger = options?.logger || console;
|
|
17921
17922
|
let pastCredentials;
|
|
@@ -17942,7 +17943,7 @@ var init_staticStabilityProvider = __esm(() => {
|
|
|
17942
17943
|
init_getExtendedInstanceMetadataCredentials();
|
|
17943
17944
|
});
|
|
17944
17945
|
|
|
17945
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js
|
|
17946
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js
|
|
17946
17947
|
var import_config6, IMDS_PATH = "/latest/meta-data/iam/security-credentials/", IMDS_TOKEN_PATH = "/latest/api/token", AWS_EC2_METADATA_V1_DISABLED = "AWS_EC2_METADATA_V1_DISABLED", PROFILE_AWS_EC2_METADATA_V1_DISABLED = "ec2_metadata_v1_disabled", X_AWS_EC2_METADATA_TOKEN = "x-aws-ec2-metadata-token", fromInstanceMetadata = (init = {}) => staticStabilityProvider(getInstanceMetadataProvider(init), { logger: init.logger }), getInstanceMetadataProvider = (init = {}) => {
|
|
17947
17948
|
let disableFetchToken = false;
|
|
17948
17949
|
const { logger, profile } = init;
|
|
@@ -18062,7 +18063,7 @@ var init_fromInstanceMetadata = __esm(() => {
|
|
|
18062
18063
|
import_config6 = __toESM(require_config(), 1);
|
|
18063
18064
|
});
|
|
18064
18065
|
|
|
18065
|
-
// node_modules/@smithy/credential-provider-imds/dist-es/index.js
|
|
18066
|
+
// ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/index.js
|
|
18066
18067
|
var exports_dist_es2 = {};
|
|
18067
18068
|
__export(exports_dist_es2, {
|
|
18068
18069
|
providerConfigFromInit: () => providerConfigFromInit,
|
|
@@ -18085,7 +18086,7 @@ var init_dist_es2 = __esm(() => {
|
|
|
18085
18086
|
init_Endpoint();
|
|
18086
18087
|
});
|
|
18087
18088
|
|
|
18088
|
-
// node_modules/@smithy/node-http-handler/dist-cjs/index.js
|
|
18089
|
+
// ../../node_modules/.bun/@smithy+node-http-handler@4.11.2/node_modules/@smithy/node-http-handler/dist-cjs/index.js
|
|
18089
18090
|
var require_dist_cjs4 = __commonJS((exports) => {
|
|
18090
18091
|
var { buildQueryString, HttpResponse } = require_protocols();
|
|
18091
18092
|
var node_https = __require("https");
|
|
@@ -18899,7 +18900,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
|
|
|
18899
18900
|
exports.NodeHttpHandler = NodeHttpHandler;
|
|
18900
18901
|
});
|
|
18901
18902
|
|
|
18902
|
-
// node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js
|
|
18903
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js
|
|
18903
18904
|
var import_config7, ECS_CONTAINER_HOST = "169.254.170.2", EKS_CONTAINER_HOST_IPv4 = "169.254.170.23", EKS_CONTAINER_HOST_IPv6 = "[fd00:ec2::23]", checkUrl = (url, logger) => {
|
|
18904
18905
|
if (url.protocol === "https:") {
|
|
18905
18906
|
return;
|
|
@@ -18933,7 +18934,7 @@ var init_checkUrl = __esm(() => {
|
|
|
18933
18934
|
import_config7 = __toESM(require_config(), 1);
|
|
18934
18935
|
});
|
|
18935
18936
|
|
|
18936
|
-
// node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js
|
|
18937
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js
|
|
18937
18938
|
function createGetRequest(url) {
|
|
18938
18939
|
return new import_protocols2.HttpRequest({
|
|
18939
18940
|
protocol: url.protocol,
|
|
@@ -18982,7 +18983,7 @@ var init_requestHelpers = __esm(() => {
|
|
|
18982
18983
|
import_serde2 = __toESM(require_serde(), 1);
|
|
18983
18984
|
});
|
|
18984
18985
|
|
|
18985
|
-
// node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js
|
|
18986
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js
|
|
18986
18987
|
var retryWrapper = (toRetry, maxRetries, delayMs) => {
|
|
18987
18988
|
return async () => {
|
|
18988
18989
|
for (let i = 0;i < maxRetries; ++i) {
|
|
@@ -18996,7 +18997,7 @@ var retryWrapper = (toRetry, maxRetries, delayMs) => {
|
|
|
18996
18997
|
};
|
|
18997
18998
|
};
|
|
18998
18999
|
|
|
18999
|
-
// node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js
|
|
19000
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js
|
|
19000
19001
|
import fs from "fs/promises";
|
|
19001
19002
|
var import_client4, import_config9, import_node_http_handler, AWS_CONTAINER_CREDENTIALS_RELATIVE_URI = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI", DEFAULT_LINK_LOCAL_HOST = "http://169.254.170.2", AWS_CONTAINER_CREDENTIALS_FULL_URI = "AWS_CONTAINER_CREDENTIALS_FULL_URI", AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE = "AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE", AWS_CONTAINER_AUTHORIZATION_TOKEN = "AWS_CONTAINER_AUTHORIZATION_TOKEN", fromHttp = (options = {}) => {
|
|
19002
19003
|
options.logger?.debug("@aws-sdk/credential-provider-http - fromHttp");
|
|
@@ -19062,7 +19063,7 @@ var init_fromHttp = __esm(() => {
|
|
|
19062
19063
|
import_node_http_handler = __toESM(require_dist_cjs4(), 1);
|
|
19063
19064
|
});
|
|
19064
19065
|
|
|
19065
|
-
// node_modules/@aws-sdk/credential-provider-http/dist-es/index.js
|
|
19066
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js
|
|
19066
19067
|
var exports_dist_es3 = {};
|
|
19067
19068
|
__export(exports_dist_es3, {
|
|
19068
19069
|
fromHttp: () => fromHttp
|
|
@@ -19071,7 +19072,7 @@ var init_dist_es3 = __esm(() => {
|
|
|
19071
19072
|
init_fromHttp();
|
|
19072
19073
|
});
|
|
19073
19074
|
|
|
19074
|
-
// node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js
|
|
19075
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.80/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js
|
|
19075
19076
|
var import_config10, ENV_IMDS_DISABLED = "AWS_EC2_METADATA_DISABLED", remoteProvider = async (init) => {
|
|
19076
19077
|
const { ENV_CMDS_FULL_URI: ENV_CMDS_FULL_URI2, ENV_CMDS_RELATIVE_URI: ENV_CMDS_RELATIVE_URI2, fromContainerMetadata: fromContainerMetadata2, fromInstanceMetadata: fromInstanceMetadata2 } = await Promise.resolve().then(() => (init_dist_es2(), exports_dist_es2));
|
|
19077
19078
|
if (process.env[ENV_CMDS_RELATIVE_URI2] || process.env[ENV_CMDS_FULL_URI2]) {
|
|
@@ -19091,7 +19092,7 @@ var init_remoteProvider = __esm(() => {
|
|
|
19091
19092
|
import_config10 = __toESM(require_config(), 1);
|
|
19092
19093
|
});
|
|
19093
19094
|
|
|
19094
|
-
// node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js
|
|
19095
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.80/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js
|
|
19095
19096
|
function memoizeChain(providers, treatAsExpired) {
|
|
19096
19097
|
const chain2 = internalCreateChain(providers);
|
|
19097
19098
|
let activeLock;
|
|
@@ -19155,16 +19156,16 @@ var internalCreateChain = (providers) => async (awsIdentityProperties) => {
|
|
|
19155
19156
|
throw lastProviderError;
|
|
19156
19157
|
};
|
|
19157
19158
|
|
|
19158
|
-
// node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js
|
|
19159
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js
|
|
19159
19160
|
var isSsoProfile = (arg) => arg && (typeof arg.sso_start_url === "string" || typeof arg.sso_account_id === "string" || typeof arg.sso_session === "string" || typeof arg.sso_region === "string" || typeof arg.sso_role_name === "string");
|
|
19160
19161
|
|
|
19161
|
-
// node_modules/@aws-sdk/token-providers/dist-es/constants.js
|
|
19162
|
+
// ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/constants.js
|
|
19162
19163
|
var EXPIRE_WINDOW_MS, REFRESH_MESSAGE = `To refresh this SSO session run 'aws sso login' with the corresponding profile.`;
|
|
19163
19164
|
var init_constants = __esm(() => {
|
|
19164
19165
|
EXPIRE_WINDOW_MS = 5 * 60 * 1000;
|
|
19165
19166
|
});
|
|
19166
19167
|
|
|
19167
|
-
// node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js
|
|
19168
|
+
// ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js
|
|
19168
19169
|
var require_cbor = __commonJS((exports) => {
|
|
19169
19170
|
var { nv, NumericValue, calculateBodyLength, generateIdempotencyToken, fromBase64, _parseEpochTimestamp } = require_serde();
|
|
19170
19171
|
var { HttpRequest: HttpRequest2, collectBody, SerdeContext, RpcProtocol } = require_protocols();
|
|
@@ -21258,9 +21259,9 @@ var require_cbor = __commonJS((exports) => {
|
|
|
21258
21259
|
this.serializer.write(15, {});
|
|
21259
21260
|
request.body = this.serializer.flush();
|
|
21260
21261
|
}
|
|
21261
|
-
|
|
21262
|
+
if (request.body instanceof Uint8Array) {
|
|
21262
21263
|
request.headers["content-length"] = String(request.body.byteLength);
|
|
21263
|
-
}
|
|
21264
|
+
}
|
|
21264
21265
|
}
|
|
21265
21266
|
const { service, operation } = getSmithyContext2(context);
|
|
21266
21267
|
const path = `/service/${service}/operation/${operation}`;
|
|
@@ -21532,7 +21533,7 @@ var require_cbor = __commonJS((exports) => {
|
|
|
21532
21533
|
exports.tagSymbol = tagSymbol;
|
|
21533
21534
|
});
|
|
21534
21535
|
|
|
21535
|
-
// node_modules/@aws-sdk/xml-builder/dist-cjs/index.js
|
|
21536
|
+
// ../../node_modules/.bun/@aws-sdk+xml-builder@3.972.39/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js
|
|
21536
21537
|
var require_dist_cjs5 = __commonJS((exports) => {
|
|
21537
21538
|
var ATTR_ESCAPE_RE = /[&<>"]/g;
|
|
21538
21539
|
var ATTR_ESCAPE_MAP = {
|
|
@@ -21900,7 +21901,7 @@ var require_dist_cjs5 = __commonJS((exports) => {
|
|
|
21900
21901
|
exports.parseXML = parseXML;
|
|
21901
21902
|
});
|
|
21902
21903
|
|
|
21903
|
-
// node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js
|
|
21904
|
+
// ../../node_modules/.bun/@aws-sdk+core@3.977.8/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js
|
|
21904
21905
|
var require_protocols2 = __commonJS((exports) => {
|
|
21905
21906
|
var { SmithyRpcV2CborProtocol, loadSmithyRpcV2CborErrorCode } = require_cbor();
|
|
21906
21907
|
var { TypeRegistry, NormalizedSchema, deref } = require_schema();
|
|
@@ -24741,7 +24742,7 @@ var require_protocols2 = __commonJS((exports) => {
|
|
|
24741
24742
|
exports.parseXmlErrorBody = parseXmlErrorBody;
|
|
24742
24743
|
});
|
|
24743
24744
|
|
|
24744
|
-
// node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js
|
|
24745
|
+
// ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.43/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js
|
|
24745
24746
|
var require_sso_oidc = __commonJS((exports) => {
|
|
24746
24747
|
var { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require_client2();
|
|
24747
24748
|
var { NoAuthSigner, getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require_dist_cjs2();
|
|
@@ -25496,7 +25497,7 @@ var require_sso_oidc = __commonJS((exports) => {
|
|
|
25496
25497
|
exports.errorTypeRegistries = errorTypeRegistries;
|
|
25497
25498
|
});
|
|
25498
25499
|
|
|
25499
|
-
// node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js
|
|
25500
|
+
// ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js
|
|
25500
25501
|
var getSsoOidcClient = async (ssoRegion, init = {}, callerClientConfig) => {
|
|
25501
25502
|
const { SSOOIDCClient } = await Promise.resolve().then(() => __toESM(require_sso_oidc(), 1));
|
|
25502
25503
|
const coalesce = (prop) => init.clientConfig?.[prop] ?? init.parentClientConfig?.[prop] ?? callerClientConfig?.[prop];
|
|
@@ -25508,7 +25509,7 @@ var getSsoOidcClient = async (ssoRegion, init = {}, callerClientConfig) => {
|
|
|
25508
25509
|
return ssoOidcClient;
|
|
25509
25510
|
};
|
|
25510
25511
|
|
|
25511
|
-
// node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js
|
|
25512
|
+
// ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js
|
|
25512
25513
|
var getNewSsoOidcToken = async (ssoToken, ssoRegion, init = {}, callerClientConfig) => {
|
|
25513
25514
|
const { CreateTokenCommand } = await Promise.resolve().then(() => __toESM(require_sso_oidc(), 1));
|
|
25514
25515
|
const ssoOidcClient = await getSsoOidcClient(ssoRegion, init, callerClientConfig);
|
|
@@ -25521,7 +25522,7 @@ var getNewSsoOidcToken = async (ssoToken, ssoRegion, init = {}, callerClientConf
|
|
|
25521
25522
|
};
|
|
25522
25523
|
var init_getNewSsoOidcToken = () => {};
|
|
25523
25524
|
|
|
25524
|
-
// node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js
|
|
25525
|
+
// ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js
|
|
25525
25526
|
var import_config11, validateTokenExpiry = (token) => {
|
|
25526
25527
|
if (token.expiration && token.expiration.getTime() < Date.now()) {
|
|
25527
25528
|
throw new import_config11.TokenProviderError(`Token is expired. ${REFRESH_MESSAGE}`, false);
|
|
@@ -25532,7 +25533,7 @@ var init_validateTokenExpiry = __esm(() => {
|
|
|
25532
25533
|
import_config11 = __toESM(require_config(), 1);
|
|
25533
25534
|
});
|
|
25534
25535
|
|
|
25535
|
-
// node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js
|
|
25536
|
+
// ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js
|
|
25536
25537
|
var import_config12, validateTokenKey = (key, value, forRefresh = false) => {
|
|
25537
25538
|
if (typeof value === "undefined") {
|
|
25538
25539
|
throw new import_config12.TokenProviderError(`Value not present for '${key}' in SSO Token${forRefresh ? ". Cannot refresh" : ""}. ${REFRESH_MESSAGE}`, false);
|
|
@@ -25543,7 +25544,7 @@ var init_validateTokenKey = __esm(() => {
|
|
|
25543
25544
|
import_config12 = __toESM(require_config(), 1);
|
|
25544
25545
|
});
|
|
25545
25546
|
|
|
25546
|
-
// node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js
|
|
25547
|
+
// ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js
|
|
25547
25548
|
import { promises as fsPromises } from "fs";
|
|
25548
25549
|
var import_config13, writeFile, writeSSOTokenToFile = (id, ssoToken) => {
|
|
25549
25550
|
const tokenFilepath = import_config13.getSSOTokenFilepath(id);
|
|
@@ -25555,7 +25556,7 @@ var init_writeSSOTokenToFile = __esm(() => {
|
|
|
25555
25556
|
({ writeFile } = fsPromises);
|
|
25556
25557
|
});
|
|
25557
25558
|
|
|
25558
|
-
// node_modules/@aws-sdk/token-providers/dist-es/fromSso.js
|
|
25559
|
+
// ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js
|
|
25559
25560
|
var import_config14, lastRefreshAttemptTime, fromSso = (init = {}) => async ({ callerClientConfig } = {}) => {
|
|
25560
25561
|
init.logger?.debug("@aws-sdk/token-providers - fromSso");
|
|
25561
25562
|
const profiles = await import_config14.parseKnownFiles(init);
|
|
@@ -25634,12 +25635,12 @@ var init_fromSso = __esm(() => {
|
|
|
25634
25635
|
lastRefreshAttemptTime = new Date(0);
|
|
25635
25636
|
});
|
|
25636
25637
|
|
|
25637
|
-
// node_modules/@aws-sdk/token-providers/dist-es/index.js
|
|
25638
|
+
// ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/index.js
|
|
25638
25639
|
var init_dist_es4 = __esm(() => {
|
|
25639
25640
|
init_fromSso();
|
|
25640
25641
|
});
|
|
25641
25642
|
|
|
25642
|
-
// node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js
|
|
25643
|
+
// ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.43/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js
|
|
25643
25644
|
function createAwsAuthSigv4HttpAuthOption2(authParameters) {
|
|
25644
25645
|
return {
|
|
25645
25646
|
schemeId: "aws.auth#sigv4",
|
|
@@ -26087,7 +26088,7 @@ var init_sso = __esm(() => {
|
|
|
26087
26088
|
$SSOClient = SSOClient;
|
|
26088
26089
|
});
|
|
26089
26090
|
|
|
26090
|
-
// node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js
|
|
26091
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js
|
|
26091
26092
|
var exports_loadSso = {};
|
|
26092
26093
|
__export(exports_loadSso, {
|
|
26093
26094
|
SSOClient: () => $SSOClient,
|
|
@@ -26097,7 +26098,7 @@ var init_loadSso = __esm(() => {
|
|
|
26097
26098
|
init_sso();
|
|
26098
26099
|
});
|
|
26099
26100
|
|
|
26100
|
-
// node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js
|
|
26101
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js
|
|
26101
26102
|
var import_client5, import_config15, SHOULD_FAIL_CREDENTIAL_CHAIN = false, resolveSSOCredentials = async ({ ssoStartUrl, ssoSession, ssoAccountId, ssoRegion, ssoRoleName, ssoClient, clientConfig, parentClientConfig, callerClientConfig, profile, filepath, configFilepath, ignoreCache, logger }) => {
|
|
26102
26103
|
let token;
|
|
26103
26104
|
const refreshMessage = `To refresh this SSO session run aws sso login with the corresponding profile.`;
|
|
@@ -26186,7 +26187,7 @@ var init_resolveSSOCredentials = __esm(() => {
|
|
|
26186
26187
|
import_config15 = __toESM(require_config(), 1);
|
|
26187
26188
|
});
|
|
26188
26189
|
|
|
26189
|
-
// node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js
|
|
26190
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js
|
|
26190
26191
|
var import_config16, validateSsoProfile = (profile, logger) => {
|
|
26191
26192
|
const { sso_start_url, sso_account_id, sso_region, sso_role_name } = profile;
|
|
26192
26193
|
if (!sso_start_url || !sso_account_id || !sso_region || !sso_role_name) {
|
|
@@ -26199,7 +26200,7 @@ var init_validateSsoProfile = __esm(() => {
|
|
|
26199
26200
|
import_config16 = __toESM(require_config(), 1);
|
|
26200
26201
|
});
|
|
26201
26202
|
|
|
26202
|
-
// node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js
|
|
26203
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js
|
|
26203
26204
|
var import_config17, fromSSO = (init = {}) => async ({ callerClientConfig } = {}) => {
|
|
26204
26205
|
init.logger?.debug("@aws-sdk/credential-provider-sso - fromSSO");
|
|
26205
26206
|
const { ssoStartUrl, ssoAccountId, ssoRegion, ssoRoleName, ssoSession } = init;
|
|
@@ -26281,7 +26282,7 @@ var init_fromSSO = __esm(() => {
|
|
|
26281
26282
|
import_config17 = __toESM(require_config(), 1);
|
|
26282
26283
|
});
|
|
26283
26284
|
|
|
26284
|
-
// node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js
|
|
26285
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js
|
|
26285
26286
|
var exports_dist_es4 = {};
|
|
26286
26287
|
__export(exports_dist_es4, {
|
|
26287
26288
|
validateSsoProfile: () => validateSsoProfile,
|
|
@@ -26293,7 +26294,7 @@ var init_dist_es5 = __esm(() => {
|
|
|
26293
26294
|
init_validateSsoProfile();
|
|
26294
26295
|
});
|
|
26295
26296
|
|
|
26296
|
-
// node_modules/@aws-sdk
|
|
26297
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js
|
|
26297
26298
|
var import_client6, import_config18, resolveCredentialSource = (credentialSource, profileName, logger) => {
|
|
26298
26299
|
const sourceProvidersMap = {
|
|
26299
26300
|
EcsContainer: async (options) => {
|
|
@@ -26324,7 +26325,7 @@ var init_resolveCredentialSource = __esm(() => {
|
|
|
26324
26325
|
import_config18 = __toESM(require_config(), 1);
|
|
26325
26326
|
});
|
|
26326
26327
|
|
|
26327
|
-
// node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js
|
|
26328
|
+
// ../../node_modules/.bun/@aws-sdk+signature-v4-multi-region@3.996.45/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js
|
|
26328
26329
|
var require_dist_cjs6 = __commonJS((exports) => {
|
|
26329
26330
|
var { SignatureV4, signatureV4aContainer } = require_dist_cjs3();
|
|
26330
26331
|
var signatureV4CrtContainer = {
|
|
@@ -26456,7 +26457,7 @@ var require_dist_cjs6 = __commonJS((exports) => {
|
|
|
26456
26457
|
exports.signatureV4CrtContainer = signatureV4CrtContainer;
|
|
26457
26458
|
});
|
|
26458
26459
|
|
|
26459
|
-
// node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js
|
|
26460
|
+
// ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.43/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js
|
|
26460
26461
|
var require_sts = __commonJS((exports) => {
|
|
26461
26462
|
var { awsEndpointFunctions: awsEndpointFunctions2, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$12, createDefaultUserAgentProvider: createDefaultUserAgentProvider2, NODE_APP_ID_CONFIG_OPTIONS: NODE_APP_ID_CONFIG_OPTIONS2, getAwsRegionExtensionConfiguration: getAwsRegionExtensionConfiguration2, resolveAwsRegionExtensionConfiguration: resolveAwsRegionExtensionConfiguration2, resolveUserAgentConfig: resolveUserAgentConfig2, resolveHostHeaderConfig: resolveHostHeaderConfig2, getUserAgentPlugin: getUserAgentPlugin2, getHostHeaderPlugin: getHostHeaderPlugin2, getLoggerPlugin: getLoggerPlugin2, getRecursionDetectionPlugin: getRecursionDetectionPlugin2, setCredentialFeature: setCredentialFeature5, stsRegionDefaultResolver } = require_client2();
|
|
26462
26463
|
var { NoAuthSigner: NoAuthSigner2, getHttpAuthSchemeEndpointRuleSetPlugin: getHttpAuthSchemeEndpointRuleSetPlugin2, DefaultIdentityProviderConfig: DefaultIdentityProviderConfig2, getHttpSigningPlugin: getHttpSigningPlugin2 } = require_dist_cjs2();
|
|
@@ -27478,7 +27479,7 @@ var require_sts = __commonJS((exports) => {
|
|
|
27478
27479
|
exports.getDefaultRoleAssumerWithWebIdentity = getDefaultRoleAssumerWithWebIdentity;
|
|
27479
27480
|
});
|
|
27480
27481
|
|
|
27481
|
-
// node_modules/@aws-sdk
|
|
27482
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js
|
|
27482
27483
|
var import_client7, import_config19, isAssumeRoleProfile = (arg, { profile = "default", logger } = {}) => {
|
|
27483
27484
|
return Boolean(arg) && typeof arg === "object" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1 && ["undefined", "string"].indexOf(typeof arg.external_id) > -1 && ["undefined", "string"].indexOf(typeof arg.mfa_serial) > -1 && (isAssumeRoleWithSourceProfile(arg, { profile, logger }) || isCredentialSourceProfile(arg, { profile, logger }));
|
|
27484
27485
|
}, isAssumeRoleWithSourceProfile = (arg, { profile, logger }) => {
|
|
@@ -27546,7 +27547,7 @@ var init_resolveAssumeRoleCredentials = __esm(() => {
|
|
|
27546
27547
|
import_config19 = __toESM(require_config(), 1);
|
|
27547
27548
|
});
|
|
27548
27549
|
|
|
27549
|
-
// node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js
|
|
27550
|
+
// ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.43/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js
|
|
27550
27551
|
var require_signin = __commonJS((exports) => {
|
|
27551
27552
|
var { awsEndpointFunctions: awsEndpointFunctions2, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$12, createDefaultUserAgentProvider: createDefaultUserAgentProvider2, NODE_APP_ID_CONFIG_OPTIONS: NODE_APP_ID_CONFIG_OPTIONS2, getAwsRegionExtensionConfiguration: getAwsRegionExtensionConfiguration2, resolveAwsRegionExtensionConfiguration: resolveAwsRegionExtensionConfiguration2, resolveUserAgentConfig: resolveUserAgentConfig2, resolveHostHeaderConfig: resolveHostHeaderConfig2, getUserAgentPlugin: getUserAgentPlugin2, getHostHeaderPlugin: getHostHeaderPlugin2, getLoggerPlugin: getLoggerPlugin2, getRecursionDetectionPlugin: getRecursionDetectionPlugin2 } = require_client2();
|
|
27552
27553
|
var { NoAuthSigner: NoAuthSigner2, getHttpAuthSchemeEndpointRuleSetPlugin: getHttpAuthSchemeEndpointRuleSetPlugin2, DefaultIdentityProviderConfig: DefaultIdentityProviderConfig2, getHttpSigningPlugin: getHttpSigningPlugin2 } = require_dist_cjs2();
|
|
@@ -28278,7 +28279,7 @@ var require_signin = __commonJS((exports) => {
|
|
|
28278
28279
|
exports.errorTypeRegistries = errorTypeRegistries2;
|
|
28279
28280
|
});
|
|
28280
28281
|
|
|
28281
|
-
// node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js
|
|
28282
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.76/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js
|
|
28282
28283
|
import { createHash as createHash2, createPrivateKey, createPublicKey, sign } from "crypto";
|
|
28283
28284
|
import { promises as fs2 } from "fs";
|
|
28284
28285
|
import { homedir as homedir2 } from "os";
|
|
@@ -28542,7 +28543,7 @@ var init_LoginCredentialsFetcher = __esm(() => {
|
|
|
28542
28543
|
};
|
|
28543
28544
|
});
|
|
28544
28545
|
|
|
28545
|
-
// node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js
|
|
28546
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.76/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js
|
|
28546
28547
|
var import_client8, import_config21, fromLoginCredentials = (init) => async ({ callerClientConfig } = {}) => {
|
|
28547
28548
|
init?.logger?.debug?.("@aws-sdk/credential-providers - fromLoginCredentials");
|
|
28548
28549
|
const profiles = await import_config21.parseKnownFiles(init || {});
|
|
@@ -28566,7 +28567,7 @@ var init_fromLoginCredentials = __esm(() => {
|
|
|
28566
28567
|
import_config21 = __toESM(require_config(), 1);
|
|
28567
28568
|
});
|
|
28568
28569
|
|
|
28569
|
-
// node_modules/@aws-sdk/credential-provider-login/dist-es/index.js
|
|
28570
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.76/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js
|
|
28570
28571
|
var exports_dist_es5 = {};
|
|
28571
28572
|
__export(exports_dist_es5, {
|
|
28572
28573
|
fromLoginCredentials: () => fromLoginCredentials
|
|
@@ -28575,7 +28576,7 @@ var init_dist_es6 = __esm(() => {
|
|
|
28575
28576
|
init_fromLoginCredentials();
|
|
28576
28577
|
});
|
|
28577
28578
|
|
|
28578
|
-
// node_modules/@aws-sdk
|
|
28579
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js
|
|
28579
28580
|
var import_client9, isLoginProfile = (data) => {
|
|
28580
28581
|
return Boolean(data && data.login_session);
|
|
28581
28582
|
}, resolveLoginCredentials = async (profileName, options, callerClientConfig) => {
|
|
@@ -28590,7 +28591,7 @@ var init_resolveLoginCredentials = __esm(() => {
|
|
|
28590
28591
|
import_client9 = __toESM(require_client2(), 1);
|
|
28591
28592
|
});
|
|
28592
28593
|
|
|
28593
|
-
// node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js
|
|
28594
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.69/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js
|
|
28594
28595
|
var import_client10, getValidatedProcessCredentials = (profileName, data, profiles) => {
|
|
28595
28596
|
if (data.Version !== 1) {
|
|
28596
28597
|
throw Error(`Profile ${profileName} credential_process did not return Version 1.`);
|
|
@@ -28624,7 +28625,7 @@ var init_getValidatedProcessCredentials = __esm(() => {
|
|
|
28624
28625
|
import_client10 = __toESM(require_client2(), 1);
|
|
28625
28626
|
});
|
|
28626
28627
|
|
|
28627
|
-
// node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js
|
|
28628
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.69/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js
|
|
28628
28629
|
import { exec } from "child_process";
|
|
28629
28630
|
import { promisify } from "util";
|
|
28630
28631
|
var import_config22, resolveProcessCredentials = async (profileName, profiles, logger) => {
|
|
@@ -28659,7 +28660,7 @@ var init_resolveProcessCredentials = __esm(() => {
|
|
|
28659
28660
|
import_config22 = __toESM(require_config(), 1);
|
|
28660
28661
|
});
|
|
28661
28662
|
|
|
28662
|
-
// node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js
|
|
28663
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.69/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js
|
|
28663
28664
|
var import_config23, fromProcess = (init = {}) => async ({ callerClientConfig } = {}) => {
|
|
28664
28665
|
init.logger?.debug("@aws-sdk/credential-provider-process - fromProcess");
|
|
28665
28666
|
const profiles = await import_config23.parseKnownFiles(init);
|
|
@@ -28672,7 +28673,7 @@ var init_fromProcess = __esm(() => {
|
|
|
28672
28673
|
import_config23 = __toESM(require_config(), 1);
|
|
28673
28674
|
});
|
|
28674
28675
|
|
|
28675
|
-
// node_modules/@aws-sdk/credential-provider-process/dist-es/index.js
|
|
28676
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.69/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js
|
|
28676
28677
|
var exports_dist_es6 = {};
|
|
28677
28678
|
__export(exports_dist_es6, {
|
|
28678
28679
|
fromProcess: () => fromProcess
|
|
@@ -28681,7 +28682,7 @@ var init_dist_es7 = __esm(() => {
|
|
|
28681
28682
|
init_fromProcess();
|
|
28682
28683
|
});
|
|
28683
28684
|
|
|
28684
|
-
// node_modules/@aws-sdk
|
|
28685
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js
|
|
28685
28686
|
var import_client11, isProcessProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.credential_process === "string", resolveProcessCredentials2 = async (options, profile) => {
|
|
28686
28687
|
const { fromProcess: fromProcess2 } = await Promise.resolve().then(() => (init_dist_es7(), exports_dist_es6));
|
|
28687
28688
|
const credentials = await fromProcess2({
|
|
@@ -28694,7 +28695,7 @@ var init_resolveProcessCredentials2 = __esm(() => {
|
|
|
28694
28695
|
import_client11 = __toESM(require_client2(), 1);
|
|
28695
28696
|
});
|
|
28696
28697
|
|
|
28697
|
-
// node_modules/@aws-sdk
|
|
28698
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js
|
|
28698
28699
|
var import_client12, resolveSsoCredentials = async (profile, profileData, options = {}, callerClientConfig) => {
|
|
28699
28700
|
const { fromSSO: fromSSO2 } = await Promise.resolve().then(() => (init_dist_es5(), exports_dist_es4));
|
|
28700
28701
|
return fromSSO2({
|
|
@@ -28716,7 +28717,7 @@ var init_resolveSsoCredentials = __esm(() => {
|
|
|
28716
28717
|
import_client12 = __toESM(require_client2(), 1);
|
|
28717
28718
|
});
|
|
28718
28719
|
|
|
28719
|
-
// node_modules/@aws-sdk
|
|
28720
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js
|
|
28720
28721
|
var import_client13, isStaticCredsProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.aws_access_key_id === "string" && typeof arg.aws_secret_access_key === "string" && ["undefined", "string"].indexOf(typeof arg.aws_session_token) > -1 && ["undefined", "string"].indexOf(typeof arg.aws_account_id) > -1, resolveStaticCredentials = async (profile, options) => {
|
|
28721
28722
|
options?.logger?.debug("@aws-sdk/credential-provider-ini - resolveStaticCredentials");
|
|
28722
28723
|
const credentials = {
|
|
@@ -28732,7 +28733,7 @@ var init_resolveStaticCredentials = __esm(() => {
|
|
|
28732
28733
|
import_client13 = __toESM(require_client2(), 1);
|
|
28733
28734
|
});
|
|
28734
28735
|
|
|
28735
|
-
// node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js
|
|
28736
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.75/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js
|
|
28736
28737
|
var fromWebToken = (init) => async (awsIdentityProperties) => {
|
|
28737
28738
|
init.logger?.debug("@aws-sdk/credential-provider-web-identity - fromWebToken");
|
|
28738
28739
|
const { roleArn, roleSessionName, webIdentityToken, providerId, policyArns, policy, durationSeconds } = init;
|
|
@@ -28759,7 +28760,7 @@ var fromWebToken = (init) => async (awsIdentityProperties) => {
|
|
|
28759
28760
|
});
|
|
28760
28761
|
};
|
|
28761
28762
|
|
|
28762
|
-
// node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js
|
|
28763
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.75/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js
|
|
28763
28764
|
import { readFileSync as readFileSync4 } from "fs";
|
|
28764
28765
|
var import_client14, import_config24, ENV_TOKEN_FILE = "AWS_WEB_IDENTITY_TOKEN_FILE", ENV_ROLE_ARN = "AWS_ROLE_ARN", ENV_ROLE_SESSION_NAME = "AWS_ROLE_SESSION_NAME", fromTokenFile = (init = {}) => async (awsIdentityProperties) => {
|
|
28765
28766
|
init.logger?.debug("@aws-sdk/credential-provider-web-identity - fromTokenFile");
|
|
@@ -28787,7 +28788,7 @@ var init_fromTokenFile = __esm(() => {
|
|
|
28787
28788
|
import_config24 = __toESM(require_config(), 1);
|
|
28788
28789
|
});
|
|
28789
28790
|
|
|
28790
|
-
// node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js
|
|
28791
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.75/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js
|
|
28791
28792
|
var exports_dist_es7 = {};
|
|
28792
28793
|
__export(exports_dist_es7, {
|
|
28793
28794
|
fromWebToken: () => fromWebToken,
|
|
@@ -28797,7 +28798,7 @@ var init_dist_es8 = __esm(() => {
|
|
|
28797
28798
|
init_fromTokenFile();
|
|
28798
28799
|
});
|
|
28799
28800
|
|
|
28800
|
-
// node_modules/@aws-sdk
|
|
28801
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js
|
|
28801
28802
|
var import_client15, isWebIdentityProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.web_identity_token_file === "string" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1, resolveWebIdentityCredentials = async (profile, options, callerClientConfig) => {
|
|
28802
28803
|
const { fromTokenFile: fromTokenFile2 } = await Promise.resolve().then(() => (init_dist_es8(), exports_dist_es7));
|
|
28803
28804
|
const credentials = await fromTokenFile2({
|
|
@@ -28816,7 +28817,7 @@ var init_resolveWebIdentityCredentials = __esm(() => {
|
|
|
28816
28817
|
import_client15 = __toESM(require_client2(), 1);
|
|
28817
28818
|
});
|
|
28818
28819
|
|
|
28819
|
-
// node_modules/@aws-sdk
|
|
28820
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js
|
|
28820
28821
|
var import_config25, resolveProfileData = async (profileName, profiles, options, callerClientConfig, visitedProfiles = {}, isAssumeRoleRecursiveCall = false) => {
|
|
28821
28822
|
const data = profiles[profileName];
|
|
28822
28823
|
if (Object.keys(visitedProfiles).length > 0 && isStaticCredsProfile(data)) {
|
|
@@ -28852,7 +28853,7 @@ var init_resolveProfileData = __esm(() => {
|
|
|
28852
28853
|
import_config25 = __toESM(require_config(), 1);
|
|
28853
28854
|
});
|
|
28854
28855
|
|
|
28855
|
-
// node_modules/@aws-sdk
|
|
28856
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js
|
|
28856
28857
|
var import_config26, fromIni = (init = {}) => async ({ callerClientConfig } = {}) => {
|
|
28857
28858
|
init.logger?.debug("@aws-sdk/credential-provider-ini - fromIni");
|
|
28858
28859
|
const profiles = await import_config26.parseKnownFiles(init);
|
|
@@ -28865,7 +28866,7 @@ var init_fromIni = __esm(() => {
|
|
|
28865
28866
|
import_config26 = __toESM(require_config(), 1);
|
|
28866
28867
|
});
|
|
28867
28868
|
|
|
28868
|
-
// node_modules/@aws-sdk
|
|
28869
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js
|
|
28869
28870
|
var exports_dist_es8 = {};
|
|
28870
28871
|
__export(exports_dist_es8, {
|
|
28871
28872
|
fromIni: () => fromIni
|
|
@@ -28874,7 +28875,7 @@ var init_dist_es9 = __esm(() => {
|
|
|
28874
28875
|
init_fromIni();
|
|
28875
28876
|
});
|
|
28876
28877
|
|
|
28877
|
-
// node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js
|
|
28878
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.80/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js
|
|
28878
28879
|
var import_config27, multipleCredentialSourceWarningEmitted = false, defaultProvider = (init = {}) => memoizeChain([
|
|
28879
28880
|
async () => {
|
|
28880
28881
|
const profile = init.profile ?? process.env[import_config27.ENV_PROFILE];
|
|
@@ -28944,12 +28945,12 @@ var init_defaultProvider = __esm(() => {
|
|
|
28944
28945
|
import_config27 = __toESM(require_config(), 1);
|
|
28945
28946
|
});
|
|
28946
28947
|
|
|
28947
|
-
// node_modules/@aws-sdk/credential-provider-node/dist-es/index.js
|
|
28948
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.80/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js
|
|
28948
28949
|
var init_dist_es10 = __esm(() => {
|
|
28949
28950
|
init_defaultProvider();
|
|
28950
28951
|
});
|
|
28951
28952
|
|
|
28952
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/endpoint/bdd.js
|
|
28953
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/bdd.js
|
|
28953
28954
|
var import_endpoints, s = "ref", t = "authSchemes", u = "name", v = "signingRegion", a2 = -1, b2 = true, c2 = "isSet", d2 = "PartitionResult", e2 = "booleanEquals", f2 = "stringEquals", g2 = "getAttr", h2 = "sigv4", i2, j2, k2, l, m, n, o, p, q2, _data2, root2 = 2, r2 = 1e8, nodes2, bdd2;
|
|
28954
28955
|
var init_bdd = __esm(() => {
|
|
28955
28956
|
import_endpoints = __toESM(require_endpoints(), 1);
|
|
@@ -29098,7 +29099,7 @@ var init_bdd = __esm(() => {
|
|
|
29098
29099
|
bdd2 = import_endpoints.BinaryDecisionDiagram.from(nodes2, root2, _data2.conditions, _data2.results);
|
|
29099
29100
|
});
|
|
29100
29101
|
|
|
29101
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/endpoint/endpointResolver.js
|
|
29102
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/endpointResolver.js
|
|
29102
29103
|
var import_client16, import_endpoints2, cache2, defaultEndpointResolver2 = (endpointParams, context = {}) => {
|
|
29103
29104
|
return cache2.get(endpointParams, () => import_endpoints2.decideEndpoint(bdd2, {
|
|
29104
29105
|
endpointParams,
|
|
@@ -29116,7 +29117,7 @@ var init_endpointResolver = __esm(() => {
|
|
|
29116
29117
|
import_endpoints2.customEndpointFunctions.aws = import_client16.awsEndpointFunctions;
|
|
29117
29118
|
});
|
|
29118
29119
|
|
|
29119
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/models/Route53ServiceException.js
|
|
29120
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/models/Route53ServiceException.js
|
|
29120
29121
|
var import_client17, Route53ServiceException;
|
|
29121
29122
|
var init_Route53ServiceException = __esm(() => {
|
|
29122
29123
|
import_client17 = __toESM(require_client(), 1);
|
|
@@ -29128,7 +29129,7 @@ var init_Route53ServiceException = __esm(() => {
|
|
|
29128
29129
|
};
|
|
29129
29130
|
});
|
|
29130
29131
|
|
|
29131
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/models/errors.js
|
|
29132
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/models/errors.js
|
|
29132
29133
|
var ConcurrentModification, InvalidInput, InvalidKeySigningKeyStatus, InvalidKMSArn, InvalidSigningStatus, NoSuchKeySigningKey, ConflictingDomainExists, InvalidVPCId, LimitsExceeded, NoSuchHostedZone, NotAuthorizedException, PriorRequestNotComplete, PublicZoneVPCAssociation, CidrBlockInUseException, CidrCollectionVersionMismatchException, NoSuchCidrCollectionException, InvalidChangeBatch, NoSuchHealthCheck, ThrottlingException, CidrCollectionAlreadyExistsException, HealthCheckAlreadyExists, TooManyHealthChecks, DelegationSetNotAvailable, DelegationSetNotReusable, HostedZoneAlreadyExists, InvalidDomainName, NoSuchDelegationSet, TooManyHostedZones, InvalidArgument, InvalidKeySigningKeyName, KeySigningKeyAlreadyExists, TooManyKeySigningKeys, InsufficientCloudWatchLogsResourcePolicy, NoSuchCloudWatchLogsLogGroup, QueryLoggingConfigAlreadyExists, DelegationSetAlreadyCreated, DelegationSetAlreadyReusable, HostedZoneNotFound, InvalidTrafficPolicyDocument, TooManyTrafficPolicies, TrafficPolicyAlreadyExists, NoSuchTrafficPolicy, TooManyTrafficPolicyInstances, TrafficPolicyInstanceAlreadyExists, TooManyTrafficPolicyVersionsForCurrentPolicy, TooManyVPCAssociationAuthorizations, KeySigningKeyInParentDSRecord, KeySigningKeyInUse, CidrCollectionInUseException, HealthCheckInUse, HostedZoneNotEmpty, NoSuchQueryLoggingConfig, DelegationSetInUse, TrafficPolicyInUse, NoSuchTrafficPolicyInstance, VPCAssociationAuthorizationNotFound, DNSSECNotFound, LastVPCAssociation, VPCAssociationNotFound, HostedZonePartiallyDelegated, KeySigningKeyWithActiveStatusNotFound, NoSuchChange, NoSuchGeoLocation, IncompatibleVersion, HostedZoneNotPrivate, NoSuchCidrLocationException, InvalidPaginationToken, HealthCheckVersionMismatch, ConflictingTypes;
|
|
29133
29134
|
var init_errors = __esm(() => {
|
|
29134
29135
|
init_Route53ServiceException();
|
|
@@ -29976,7 +29977,7 @@ var init_errors = __esm(() => {
|
|
|
29976
29977
|
};
|
|
29977
29978
|
});
|
|
29978
29979
|
|
|
29979
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/schemas/schemas_0.js
|
|
29980
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/schemas/schemas_0.js
|
|
29980
29981
|
var import_schema, _A = "Action", _AI = "AlarmIdentifier", _AKSK = "ActivateKeySigningKey", _AKSKR = "ActivateKeySigningKeyRequest", _AKSKRc = "ActivateKeySigningKeyResponse", _AL = "AccountLimit", _AR = "AcceleratedRecovery", _ARS = "AcceleratedRecoveryStatus", _AT = "AliasTarget", _ATd = "AddTags", _AVPCWHZ = "AssociateVPCWithHostedZone", _AVPCWHZR = "AssociateVPCWithHostedZoneRequest", _AVPCWHZRs = "AssociateVPCWithHostedZoneResponse", _AWSR = "AWSRegion", _Ar = "Arn", _B = "Bias", _C = "Comment", _CB = "ChangeBatch", _CBIUE = "CidrBlockInUseException", _CBS = "CidrBlockSummary", _CBSi = "CidrBlockSummaries", _CBi = "CidrBlock", _CBid = "CidrBlocks", _CC = "CidrCollection", _CCAEE = "CidrCollectionAlreadyExistsException", _CCC = "CidrCollectionChange", _CCCR = "ChangeCidrCollectionRequest", _CCCRh = "ChangeCidrCollectionResponse", _CCCRr = "CreateCidrCollectionRequest", _CCCRre = "CreateCidrCollectionResponse", _CCCh = "ChangeCidrCollection", _CCCi = "CidrCollectionChanges", _CCCr = "CreateCidrCollection", _CCIUE = "CidrCollectionInUseException", _CCVME = "CidrCollectionVersionMismatchException", _CCi = "CidrCollections", _CCo = "ContinentCode", _CCou = "CountryCode", _CD = "CreatedDate", _CDE = "ConflictingDomainExists", _CHC = "ChildHealthChecks", _CHCL = "ChildHealthCheckList", _CHCR = "CreateHealthCheckRequest", _CHCRr = "CreateHealthCheckResponse", _CHCh = "ChildHealthCheck", _CHCr = "CreateHealthCheck", _CHZ = "CreateHostedZone", _CHZR = "CreateHostedZoneRequest", _CHZRr = "CreateHostedZoneResponse", _CI = "ChangeInfo", _CIR = "CheckerIpRanges", _CIo = "CollectionId", _CKSK = "CreateKeySigningKey", _CKSKR = "CreateKeySigningKeyRequest", _CKSKRr = "CreateKeySigningKeyResponse", _CL = "CidrList", _CLi = "CidrLocations", _CM = "ConcurrentModification", _CN = "ContinentName", _CNo = "CountryName", _CO = "ComparisonOperator", _CQLC = "CreateQueryLoggingConfig", _CQLCR = "CreateQueryLoggingConfigRequest", _CQLCRr = "CreateQueryLoggingConfigResponse", _CR = "CallerReference", _CRC = "CidrRoutingConfig", _CRDS = "CreateReusableDelegationSet", _CRDSR = "CreateReusableDelegationSetRequest", _CRDSRr = "CreateReusableDelegationSetResponse", _CRRS = "ChangeResourceRecordSets", _CRRSR = "ChangeResourceRecordSetsRequest", _CRRSRh = "ChangeResourceRecordSetsResponse", _CS = "CollectionSummary", _CSo = "CollectionSummaries", _CT = "ConflictingTypes", _CTFR = "ChangeTagsForResource", _CTFRR = "ChangeTagsForResourceRequest", _CTFRRh = "ChangeTagsForResourceResponse", _CTP = "CreateTrafficPolicy", _CTPI = "CreateTrafficPolicyInstance", _CTPIR = "CreateTrafficPolicyInstanceRequest", _CTPIRr = "CreateTrafficPolicyInstanceResponse", _CTPR = "CreateTrafficPolicyRequest", _CTPRr = "CreateTrafficPolicyResponse", _CTPV = "CreateTrafficPolicyVersion", _CTPVR = "CreateTrafficPolicyVersionRequest", _CTPVRr = "CreateTrafficPolicyVersionResponse", _CTh = "CheckedTime", _CV = "CollectionVersion", _CVPCAA = "CreateVPCAssociationAuthorization", _CVPCAAR = "CreateVPCAssociationAuthorizationRequest", _CVPCAARr = "CreateVPCAssociationAuthorizationResponse", _CWAC = "CloudWatchAlarmConfiguration", _CWLLGA = "CloudWatchLogsLogGroupArn", _Ch = "Change", _Cha = "Changes", _Ci = "Cidr", _Co = "Coordinates", _Col = "Collection", _Con = "Config", _Cou = "Count", _D = "Dimensions", _DAM = "DigestAlgorithmMnemonic", _DAT = "DigestAlgorithmType", _DCC = "DeleteCidrCollection", _DCCR = "DeleteCidrCollectionRequest", _DCCRe = "DeleteCidrCollectionResponse", _DHC = "DeleteHealthCheck", _DHCR = "DeleteHealthCheckRequest", _DHCRe = "DeleteHealthCheckResponse", _DHZ = "DeleteHostedZone", _DHZDNSSEC = "DisableHostedZoneDNSSEC", _DHZDNSSECR = "DisableHostedZoneDNSSECRequest", _DHZDNSSECRi = "DisableHostedZoneDNSSECResponse", _DHZR = "DeleteHostedZoneRequest", _DHZRe = "DeleteHostedZoneResponse", _DKSK = "DeactivateKeySigningKey", _DKSKR = "DeactivateKeySigningKeyRequest", _DKSKRe = "DeactivateKeySigningKeyResponse", _DKSKRel = "DeleteKeySigningKeyRequest", _DKSKRele = "DeleteKeySigningKeyResponse", _DKSKe = "DeleteKeySigningKey", _DL = "DimensionList", _DNSKEYR = "DNSKEYRecord", _DNSN = "DNSName", _DNSSECNF = "DNSSECNotFound", _DNSSECS = "DNSSECStatus", _DQLC = "DeleteQueryLoggingConfig", _DQLCR = "DeleteQueryLoggingConfigRequest", _DQLCRe = "DeleteQueryLoggingConfigResponse", _DRDS = "DeleteReusableDelegationSet", _DRDSR = "DeleteReusableDelegationSetRequest", _DRDSRe = "DeleteReusableDelegationSetResponse", _DS = "DelegationSet", _DSAC = "DelegationSetAlreadyCreated", _DSAR = "DelegationSetAlreadyReusable", _DSI = "DelegationSetId", _DSIU = "DelegationSetInUse", _DSNA = "DelegationSetNotAvailable", _DSNR = "DelegationSetNotReusable", _DSNS = "DelegationSetNameServers", _DSR = "DSRecord", _DSe = "DelegationSets", _DTP = "DeleteTrafficPolicy", _DTPI = "DeleteTrafficPolicyInstance", _DTPIR = "DeleteTrafficPolicyInstanceRequest", _DTPIRe = "DeleteTrafficPolicyInstanceResponse", _DTPR = "DeleteTrafficPolicyRequest", _DTPRe = "DeleteTrafficPolicyResponse", _DV = "DigestValue", _DVPCAA = "DeleteVPCAssociationAuthorization", _DVPCAAR = "DeleteVPCAssociationAuthorizationRequest", _DVPCAARe = "DeleteVPCAssociationAuthorizationResponse", _DVPCFHZ = "DisassociateVPCFromHostedZone", _DVPCFHZR = "DisassociateVPCFromHostedZoneRequest", _DVPCFHZRi = "DisassociateVPCFromHostedZoneResponse", _De = "Description", _Di = "Dimension", _Dis = "Disabled", _Do = "Document", _EAR = "EnableAcceleratedRecovery", _EDNSCSIP = "EDNS0ClientSubnetIP", _EDNSCSM = "EDNS0ClientSubnetMask", _EHZDNSSEC = "EnableHostedZoneDNSSEC", _EHZDNSSECR = "EnableHostedZoneDNSSECRequest", _EHZDNSSECRn = "EnableHostedZoneDNSSECResponse", _EM = "ErrorMessages", _EP = "EvaluationPeriods", _ESNI = "EnableSNI", _ETH = "EvaluateTargetHealth", _F = "Features", _FQDN = "FullyQualifiedDomainName", _FR = "FailureReasons", _FT = "FailureThreshold", _Fa = "Failover", _Fl = "Flag", _GAL = "GetAccountLimit", _GALR = "GetAccountLimitRequest", _GALRe = "GetAccountLimitResponse", _GC = "GetChange", _GCIR = "GetCheckerIpRanges", _GCIRR = "GetCheckerIpRangesRequest", _GCIRRe = "GetCheckerIpRangesResponse", _GCR = "GetChangeRequest", _GCRe = "GetChangeResponse", _GDNSSEC = "GetDNSSEC", _GDNSSECR = "GetDNSSECRequest", _GDNSSECRe = "GetDNSSECResponse", _GGL = "GetGeoLocation", _GGLR = "GetGeoLocationRequest", _GGLRe = "GetGeoLocationResponse", _GHC = "GetHealthCheck", _GHCC = "GetHealthCheckCount", _GHCCR = "GetHealthCheckCountRequest", _GHCCRe = "GetHealthCheckCountResponse", _GHCLFR = "GetHealthCheckLastFailureReason", _GHCLFRR = "GetHealthCheckLastFailureReasonRequest", _GHCLFRRe = "GetHealthCheckLastFailureReasonResponse", _GHCR = "GetHealthCheckRequest", _GHCRe = "GetHealthCheckResponse", _GHCS = "GetHealthCheckStatus", _GHCSR = "GetHealthCheckStatusRequest", _GHCSRe = "GetHealthCheckStatusResponse", _GHZ = "GetHostedZone", _GHZC = "GetHostedZoneCount", _GHZCR = "GetHostedZoneCountRequest", _GHZCRe = "GetHostedZoneCountResponse", _GHZL = "GetHostedZoneLimit", _GHZLR = "GetHostedZoneLimitRequest", _GHZLRe = "GetHostedZoneLimitResponse", _GHZR = "GetHostedZoneRequest", _GHZRe = "GetHostedZoneResponse", _GL = "GeoLocation", _GLD = "GeoLocationDetails", _GLDL = "GeoLocationDetailsList", _GPL = "GeoProximityLocation", _GQLC = "GetQueryLoggingConfig", _GQLCR = "GetQueryLoggingConfigRequest", _GQLCRe = "GetQueryLoggingConfigResponse", _GRDS = "GetReusableDelegationSet", _GRDSL = "GetReusableDelegationSetLimit", _GRDSLR = "GetReusableDelegationSetLimitRequest", _GRDSLRe = "GetReusableDelegationSetLimitResponse", _GRDSR = "GetReusableDelegationSetRequest", _GRDSRe = "GetReusableDelegationSetResponse", _GTP = "GetTrafficPolicy", _GTPI = "GetTrafficPolicyInstance", _GTPIC = "GetTrafficPolicyInstanceCount", _GTPICR = "GetTrafficPolicyInstanceCountRequest", _GTPICRe = "GetTrafficPolicyInstanceCountResponse", _GTPIR = "GetTrafficPolicyInstanceRequest", _GTPIRe = "GetTrafficPolicyInstanceResponse", _GTPR = "GetTrafficPolicyRequest", _GTPRe = "GetTrafficPolicyResponse", _HC = "HealthCheck", _HCAE = "HealthCheckAlreadyExists", _HCC = "HealthCheckConfig", _HCCe = "HealthCheckCount", _HCI = "HealthCheckId", _HCIU = "HealthCheckInUse", _HCO = "HealthCheckObservations", _HCOe = "HealthCheckObservation", _HCRL = "HealthCheckRegionList", _HCV = "HealthCheckVersion", _HCVM = "HealthCheckVersionMismatch", _HCe = "HealthChecks", _HT = "HealthThreshold", _HZ = "HostedZone", _HZAE = "HostedZoneAlreadyExists", _HZC = "HostedZoneConfig", _HZCo = "HostedZoneCount", _HZF = "HostedZoneFeatures", _HZFR = "HostedZoneFailureReasons", _HZI = "HostedZoneId", _HZIM = "HostedZoneIdMarker", _HZL = "HostedZoneLimit", _HZNE = "HostedZoneNotEmpty", _HZNF = "HostedZoneNotFound", _HZNP = "HostedZoneNotPrivate", _HZO = "HostedZoneOwner", _HZPD = "HostedZonePartiallyDelegated", _HZS = "HostedZoneSummary", _HZSo = "HostedZoneSummaries", _HZT = "HostedZoneType", _HZo = "HostedZones", _I = "Id", _IA = "InvalidArgument", _ICB = "InvalidChangeBatch", _ICWLRP = "InsufficientCloudWatchLogsResourcePolicy", _IDHS = "InsufficientDataHealthStatus", _IDN = "InvalidDomainName", _II = "InvalidInput", _IKMSA = "InvalidKMSArn", _IKSKN = "InvalidKeySigningKeyName", _IKSKS = "InvalidKeySigningKeyStatus", _IPA = "IPAddress", _IPT = "InvalidPaginationToken", _ISS = "InvalidSigningStatus", _IT = "IsTruncated", _ITPD = "InvalidTrafficPolicyDocument", _IV = "IncompatibleVersion", _IVPCI = "InvalidVPCId", _In = "Inverted", _K = "Key", _KA = "KmsArn", _KMSA = "KeyManagementServiceArn", _KSK = "KeySigningKey", _KSKAE = "KeySigningKeyAlreadyExists", _KSKIPDSR = "KeySigningKeyInParentDSRecord", _KSKIU = "KeySigningKeyInUse", _KSKWASNF = "KeySigningKeyWithActiveStatusNotFound", _KSKe = "KeySigningKeys", _KT = "KeyTag", _L = "Latitude", _LCB = "ListCidrBlocks", _LCBR = "ListCidrBlocksRequest", _LCBRi = "ListCidrBlocksResponse", _LCC = "ListCidrCollections", _LCCR = "ListCidrCollectionsRequest", _LCCRi = "ListCidrCollectionsResponse", _LCL = "ListCidrLocations", _LCLR = "ListCidrLocationsRequest", _LCLRi = "ListCidrLocationsResponse", _LE = "LimitsExceeded", _LGL = "ListGeoLocations", _LGLR = "ListGeoLocationsRequest", _LGLRi = "ListGeoLocationsResponse", _LHC = "ListHealthChecks", _LHCR = "ListHealthChecksRequest", _LHCRi = "ListHealthChecksResponse", _LHZ = "ListHostedZones", _LHZBN = "ListHostedZonesByName", _LHZBNR = "ListHostedZonesByNameRequest", _LHZBNRi = "ListHostedZonesByNameResponse", _LHZBVPC = "ListHostedZonesByVPC", _LHZBVPCR = "ListHostedZonesByVPCRequest", _LHZBVPCRi = "ListHostedZonesByVPCResponse", _LHZR = "ListHostedZonesRequest", _LHZRi = "ListHostedZonesResponse", _LMD = "LastModifiedDate", _LN = "LocationName", _LQLC = "ListQueryLoggingConfigs", _LQLCR = "ListQueryLoggingConfigsRequest", _LQLCRi = "ListQueryLoggingConfigsResponse", _LRDS = "ListReusableDelegationSets", _LRDSR = "ListReusableDelegationSetsRequest", _LRDSRi = "ListReusableDelegationSetsResponse", _LRRS = "ListResourceRecordSets", _LRRSR = "ListResourceRecordSetsRequest", _LRRSRi = "ListResourceRecordSetsResponse", _LS = "LinkedService", _LSo = "LocationSummary", _LSoc = "LocationSummaries", _LTFR = "ListTagsForResource", _LTFRR = "ListTagsForResourceRequest", _LTFRRi = "ListTagsForResourceResponse", _LTFRRis = "ListTagsForResourcesRequest", _LTFRRist = "ListTagsForResourcesResponse", _LTFRi = "ListTagsForResources", _LTP = "ListTrafficPolicies", _LTPI = "ListTrafficPolicyInstances", _LTPIBHZ = "ListTrafficPolicyInstancesByHostedZone", _LTPIBHZR = "ListTrafficPolicyInstancesByHostedZoneRequest", _LTPIBHZRi = "ListTrafficPolicyInstancesByHostedZoneResponse", _LTPIBP = "ListTrafficPolicyInstancesByPolicy", _LTPIBPR = "ListTrafficPolicyInstancesByPolicyRequest", _LTPIBPRi = "ListTrafficPolicyInstancesByPolicyResponse", _LTPIR = "ListTrafficPolicyInstancesRequest", _LTPIRi = "ListTrafficPolicyInstancesResponse", _LTPR = "ListTrafficPoliciesRequest", _LTPRi = "ListTrafficPoliciesResponse", _LTPV = "ListTrafficPolicyVersions", _LTPVR = "ListTrafficPolicyVersionsRequest", _LTPVRi = "ListTrafficPolicyVersionsResponse", _LV = "LatestVersion", _LVPCA = "LastVPCAssociation", _LVPCAA = "ListVPCAssociationAuthorizations", _LVPCAAR = "ListVPCAssociationAuthorizationsRequest", _LVPCAARi = "ListVPCAssociationAuthorizationsResponse", _LZG = "LocalZoneGroup", _Li = "Limit", _Lo = "Longitude", _Loc = "Location", _M = "Message", _MI = "MaxItems", _ML = "MeasureLatency", _MN = "MetricName", _MR = "MaxResults", _MVA = "MultiValueAnswer", _Ma = "Marker", _N = "Name", _NAE = "NotAuthorizedException", _NCC = "NextContinentCode", _NCCe = "NextCountryCode", _NDNSN = "NextDNSName", _NHZI = "NextHostedZoneId", _NM = "NextMarker", _NRI = "NextRecordIdentifier", _NRN = "NextRecordName", _NRT = "NextRecordType", _NS = "NameServers", _NSC = "NoSuchChange", _NSCCE = "NoSuchCidrCollectionException", _NSCLE = "NoSuchCidrLocationException", _NSCWLLG = "NoSuchCloudWatchLogsLogGroup", _NSCe = "NextSubdivisionCode", _NSDS = "NoSuchDelegationSet", _NSGL = "NoSuchGeoLocation", _NSHC = "NoSuchHealthCheck", _NSHZ = "NoSuchHostedZone", _NSKSK = "NoSuchKeySigningKey", _NSQLC = "NoSuchQueryLoggingConfig", _NSTP = "NoSuchTrafficPolicy", _NSTPI = "NoSuchTrafficPolicyInstance", _NSa = "NameServer", _NT = "NextToken", _Na = "Namespace", _Nam = "Nameserver", _O = "Owner", _OA = "OwningAccount", _OS = "OwningService", _P = "Period", _PK = "PublicKey", _PRNC = "PriorRequestNotComplete", _PZ = "PrivateZone", _PZVPCA = "PublicZoneVPCAssociation", _Po = "Port", _Pr = "Protocol", _QLC = "QueryLoggingConfig", _QLCAE = "QueryLoggingConfigAlreadyExists", _QLCu = "QueryLoggingConfigs", _R = "Region", _RC2 = "ResponseCode", _RCA = "RoutingControlArn", _RD = "RecordData", _RDE = "RecordDataEntry", _RDSL = "ReusableDelegationSetLimit", _RE = "ResetElements", _REN = "ResettableElementName", _RENL = "ResettableElementNameList", _RI = "ResourceId", _RIP = "ResolverIP", _RIe = "RequestInterval", _RIes = "ResourceIds", _RN = "RecordName", _RP = "ResourcePath", _RR = "ResourceRecord", _RRS = "ResourceRecordSet", _RRSC = "ResourceRecordSetCount", _RRSe = "ResourceRecordSets", _RRe = "ResourceRecords", _RT = "ResourceType", _RTK = "RemoveTagKeys", _RTS = "ResourceTagSet", _RTSL = "ResourceTagSetList", _RTSe = "ResourceTagSets", _RTe = "RecordType", _Re = "Regions", _S = "Status", _SA = "SubmittedAt", _SAM = "SigningAlgorithmMnemonic", _SAT = "SigningAlgorithmType", _SC = "SubdivisionCode", _SCC = "StartContinentCode", _SCCt = "StartCountryCode", _SI = "SetIdentifier", _SM = "StatusMessage", _SN = "SubdivisionName", _SP = "ServicePrincipal", _SR = "StatusReport", _SRI = "StartRecordIdentifier", _SRN = "StartRecordName", _SRT = "StartRecordType", _SS = "ServeSignature", _SSC = "StartSubdivisionCode", _SSe = "SearchString", _St = "Statistic", _Sta = "State", _T = "Type", _TDNSA = "TestDNSAnswer", _TDNSAR = "TestDNSAnswerRequest", _TDNSARe = "TestDNSAnswerResponse", _TE = "ThrottlingException", _TKL = "TagKeyList", _TL = "TagList", _TMHC = "TooManyHealthChecks", _TMHZ = "TooManyHostedZones", _TMKSK = "TooManyKeySigningKeys", _TMTP = "TooManyTrafficPolicies", _TMTPI = "TooManyTrafficPolicyInstances", _TMTPVFCP = "TooManyTrafficPolicyVersionsForCurrentPolicy", _TMVPCAA = "TooManyVPCAssociationAuthorizations", _TP = "TrafficPolicy", _TPAE = "TrafficPolicyAlreadyExists", _TPC = "TrafficPolicyCount", _TPI = "TrafficPolicyId", _TPIAE = "TrafficPolicyInstanceAlreadyExists", _TPIC = "TrafficPolicyInstanceCount", _TPII = "TrafficPolicyInstanceId", _TPIM = "TrafficPolicyIdMarker", _TPINM = "TrafficPolicyInstanceNameMarker", _TPITM = "TrafficPolicyInstanceTypeMarker", _TPIU = "TrafficPolicyInUse", _TPIr = "TrafficPolicyInstance", _TPIra = "TrafficPolicyInstances", _TPS = "TrafficPolicySummaries", _TPSr = "TrafficPolicySummary", _TPT = "TrafficPolicyType", _TPV = "TrafficPolicyVersion", _TPVM = "TrafficPolicyVersionMarker", _TPr = "TrafficPolicies", _TRIL = "TagResourceIdList", _TTL = "TTL", _Ta = "Tags", _Tag = "Tag", _Th = "Threshold", _UHC = "UpdateHealthCheck", _UHCR = "UpdateHealthCheckRequest", _UHCRp = "UpdateHealthCheckResponse", _UHZC = "UpdateHostedZoneComment", _UHZCR = "UpdateHostedZoneCommentRequest", _UHZCRp = "UpdateHostedZoneCommentResponse", _UHZF = "UpdateHostedZoneFeatures", _UHZFR = "UpdateHostedZoneFeaturesRequest", _UHZFRp = "UpdateHostedZoneFeaturesResponse", _UTPC = "UpdateTrafficPolicyComment", _UTPCR = "UpdateTrafficPolicyCommentRequest", _UTPCRp = "UpdateTrafficPolicyCommentResponse", _UTPI = "UpdateTrafficPolicyInstance", _UTPIR = "UpdateTrafficPolicyInstanceRequest", _UTPIRp = "UpdateTrafficPolicyInstanceResponse", _V = "Value", _VPC = "VPC", _VPCAANF = "VPCAssociationAuthorizationNotFound", _VPCANF = "VPCAssociationNotFound", _VPCI = "VPCId", _VPCR = "VPCRegion", _VPCs = "VPCs", _Ve = "Version", _W = "Weight", _c2 = "client", _co = "continentcode", _cou = "countrycode", _d = "dnsname", _de = "delegationsetid", _e2 = "error", _ed = "edns0clientsubnetip", _edn = "edns0clientsubnetmask", _h2 = "hostedzoneid", _hE2 = "httpError", _hH2 = "httpHeader", _hQ2 = "httpQuery", _ho = "hostedzonetype", _ht = "http", _i = "identifier", _id = "id", _l = "location", _m2 = "message", _ma = "maxresults", _mar = "marker", _max = "maxitems", _me = "messages", _n = "nexttoken", _na = "name", _r = "recordname", _re = "recordtype", _res = "resolverip", _s2 = "smithy.ts.sdk.synthetic.com.amazonaws.route53", _st = "startcontinentcode", _sta = "startcountrycode", _star = "startsubdivisioncode", _su = "subdivisioncode", _t = "type", _tr = "trafficpolicyid", _tra = "trafficpolicyinstancename", _traf = "trafficpolicyinstancetype", _traff = "trafficpolicyversion", _v = "vpcid", _ve = "version", _vp = "vpcregion", _xN = "xmlName", n02 = "com.amazonaws.route53", _s_registry2, Route53ServiceException$, n0_registry2, CidrBlockInUseException$, CidrCollectionAlreadyExistsException$, CidrCollectionInUseException$, CidrCollectionVersionMismatchException$, ConcurrentModification$, ConflictingDomainExists$, ConflictingTypes$, DelegationSetAlreadyCreated$, DelegationSetAlreadyReusable$, DelegationSetInUse$, DelegationSetNotAvailable$, DelegationSetNotReusable$, DNSSECNotFound$, HealthCheckAlreadyExists$, HealthCheckInUse$, HealthCheckVersionMismatch$, HostedZoneAlreadyExists$, HostedZoneNotEmpty$, HostedZoneNotFound$, HostedZoneNotPrivate$, HostedZonePartiallyDelegated$, IncompatibleVersion$, InsufficientCloudWatchLogsResourcePolicy$, InvalidArgument$, InvalidChangeBatch$, InvalidDomainName$, InvalidInput$, InvalidKeySigningKeyName$, InvalidKeySigningKeyStatus$, InvalidKMSArn$, InvalidPaginationToken$, InvalidSigningStatus$, InvalidTrafficPolicyDocument$, InvalidVPCId$, KeySigningKeyAlreadyExists$, KeySigningKeyInParentDSRecord$, KeySigningKeyInUse$, KeySigningKeyWithActiveStatusNotFound$, LastVPCAssociation$, LimitsExceeded$, NoSuchChange$, NoSuchCidrCollectionException$, NoSuchCidrLocationException$, NoSuchCloudWatchLogsLogGroup$, NoSuchDelegationSet$, NoSuchGeoLocation$, NoSuchHealthCheck$, NoSuchHostedZone$, NoSuchKeySigningKey$, NoSuchQueryLoggingConfig$, NoSuchTrafficPolicy$, NoSuchTrafficPolicyInstance$, NotAuthorizedException$, PriorRequestNotComplete$, PublicZoneVPCAssociation$, QueryLoggingConfigAlreadyExists$, ThrottlingException$, TooManyHealthChecks$, TooManyHostedZones$, TooManyKeySigningKeys$, TooManyTrafficPolicies$, TooManyTrafficPolicyInstances$, TooManyTrafficPolicyVersionsForCurrentPolicy$, TooManyVPCAssociationAuthorizations$, TrafficPolicyAlreadyExists$, TrafficPolicyInstanceAlreadyExists$, TrafficPolicyInUse$, VPCAssociationAuthorizationNotFound$, VPCAssociationNotFound$, errorTypeRegistries2, AccountLimit$, ActivateKeySigningKeyRequest$, ActivateKeySigningKeyResponse$, AlarmIdentifier$, AliasTarget$, AssociateVPCWithHostedZoneRequest$, AssociateVPCWithHostedZoneResponse$, Change$, ChangeBatch$, ChangeCidrCollectionRequest$, ChangeCidrCollectionResponse$, ChangeInfo$, ChangeResourceRecordSetsRequest$, ChangeResourceRecordSetsResponse$, ChangeTagsForResourceRequest$, ChangeTagsForResourceResponse$, CidrBlockSummary$, CidrCollection$, CidrCollectionChange$, CidrRoutingConfig$, CloudWatchAlarmConfiguration$, CollectionSummary$, Coordinates$, CreateCidrCollectionRequest$, CreateCidrCollectionResponse$, CreateHealthCheckRequest$, CreateHealthCheckResponse$, CreateHostedZoneRequest$, CreateHostedZoneResponse$, CreateKeySigningKeyRequest$, CreateKeySigningKeyResponse$, CreateQueryLoggingConfigRequest$, CreateQueryLoggingConfigResponse$, CreateReusableDelegationSetRequest$, CreateReusableDelegationSetResponse$, CreateTrafficPolicyInstanceRequest$, CreateTrafficPolicyInstanceResponse$, CreateTrafficPolicyRequest$, CreateTrafficPolicyResponse$, CreateTrafficPolicyVersionRequest$, CreateTrafficPolicyVersionResponse$, CreateVPCAssociationAuthorizationRequest$, CreateVPCAssociationAuthorizationResponse$, DeactivateKeySigningKeyRequest$, DeactivateKeySigningKeyResponse$, DelegationSet$, DeleteCidrCollectionRequest$, DeleteCidrCollectionResponse$, DeleteHealthCheckRequest$, DeleteHealthCheckResponse$, DeleteHostedZoneRequest$, DeleteHostedZoneResponse$, DeleteKeySigningKeyRequest$, DeleteKeySigningKeyResponse$, DeleteQueryLoggingConfigRequest$, DeleteQueryLoggingConfigResponse$, DeleteReusableDelegationSetRequest$, DeleteReusableDelegationSetResponse$, DeleteTrafficPolicyInstanceRequest$, DeleteTrafficPolicyInstanceResponse$, DeleteTrafficPolicyRequest$, DeleteTrafficPolicyResponse$, DeleteVPCAssociationAuthorizationRequest$, DeleteVPCAssociationAuthorizationResponse$, Dimension$, DisableHostedZoneDNSSECRequest$, DisableHostedZoneDNSSECResponse$, DisassociateVPCFromHostedZoneRequest$, DisassociateVPCFromHostedZoneResponse$, DNSSECStatus$, EnableHostedZoneDNSSECRequest$, EnableHostedZoneDNSSECResponse$, GeoLocation$, GeoLocationDetails$, GeoProximityLocation$, GetAccountLimitRequest$, GetAccountLimitResponse$, GetChangeRequest$, GetChangeResponse$, GetCheckerIpRangesRequest$, GetCheckerIpRangesResponse$, GetDNSSECRequest$, GetDNSSECResponse$, GetGeoLocationRequest$, GetGeoLocationResponse$, GetHealthCheckCountRequest$, GetHealthCheckCountResponse$, GetHealthCheckLastFailureReasonRequest$, GetHealthCheckLastFailureReasonResponse$, GetHealthCheckRequest$, GetHealthCheckResponse$, GetHealthCheckStatusRequest$, GetHealthCheckStatusResponse$, GetHostedZoneCountRequest$, GetHostedZoneCountResponse$, GetHostedZoneLimitRequest$, GetHostedZoneLimitResponse$, GetHostedZoneRequest$, GetHostedZoneResponse$, GetQueryLoggingConfigRequest$, GetQueryLoggingConfigResponse$, GetReusableDelegationSetLimitRequest$, GetReusableDelegationSetLimitResponse$, GetReusableDelegationSetRequest$, GetReusableDelegationSetResponse$, GetTrafficPolicyInstanceCountRequest$, GetTrafficPolicyInstanceCountResponse$, GetTrafficPolicyInstanceRequest$, GetTrafficPolicyInstanceResponse$, GetTrafficPolicyRequest$, GetTrafficPolicyResponse$, HealthCheck$, HealthCheckConfig$, HealthCheckObservation$, HostedZone$, HostedZoneConfig$, HostedZoneFailureReasons$, HostedZoneFeatures$, HostedZoneLimit$, HostedZoneOwner$, HostedZoneSummary$, KeySigningKey$, LinkedService$, ListCidrBlocksRequest$, ListCidrBlocksResponse$, ListCidrCollectionsRequest$, ListCidrCollectionsResponse$, ListCidrLocationsRequest$, ListCidrLocationsResponse$, ListGeoLocationsRequest$, ListGeoLocationsResponse$, ListHealthChecksRequest$, ListHealthChecksResponse$, ListHostedZonesByNameRequest$, ListHostedZonesByNameResponse$, ListHostedZonesByVPCRequest$, ListHostedZonesByVPCResponse$, ListHostedZonesRequest$, ListHostedZonesResponse$, ListQueryLoggingConfigsRequest$, ListQueryLoggingConfigsResponse$, ListResourceRecordSetsRequest$, ListResourceRecordSetsResponse$, ListReusableDelegationSetsRequest$, ListReusableDelegationSetsResponse$, ListTagsForResourceRequest$, ListTagsForResourceResponse$, ListTagsForResourcesRequest$, ListTagsForResourcesResponse$, ListTrafficPoliciesRequest$, ListTrafficPoliciesResponse$, ListTrafficPolicyInstancesByHostedZoneRequest$, ListTrafficPolicyInstancesByHostedZoneResponse$, ListTrafficPolicyInstancesByPolicyRequest$, ListTrafficPolicyInstancesByPolicyResponse$, ListTrafficPolicyInstancesRequest$, ListTrafficPolicyInstancesResponse$, ListTrafficPolicyVersionsRequest$, ListTrafficPolicyVersionsResponse$, ListVPCAssociationAuthorizationsRequest$, ListVPCAssociationAuthorizationsResponse$, LocationSummary$, QueryLoggingConfig$, ResourceRecord$, ResourceRecordSet$, ResourceTagSet$, ReusableDelegationSetLimit$, StatusReport$, Tag$, TestDNSAnswerRequest$, TestDNSAnswerResponse$, TrafficPolicy$, TrafficPolicyInstance$, TrafficPolicySummary$, UpdateHealthCheckRequest$, UpdateHealthCheckResponse$, UpdateHostedZoneCommentRequest$, UpdateHostedZoneCommentResponse$, UpdateHostedZoneFeaturesRequest$, UpdateHostedZoneFeaturesResponse$, UpdateTrafficPolicyCommentRequest$, UpdateTrafficPolicyCommentResponse$, UpdateTrafficPolicyInstanceRequest$, UpdateTrafficPolicyInstanceResponse$, VPC$, Changes, CheckerIpRanges, ChildHealthCheckList, CidrBlockSummaries, CidrCollectionChanges, CidrList, CollectionSummaries, DelegationSetNameServers, DelegationSets, DimensionList, ErrorMessages, GeoLocationDetailsList, HealthCheckObservations, HealthCheckRegionList, HealthChecks, HostedZones, HostedZoneSummaries, KeySigningKeys, LocationSummaries, QueryLoggingConfigs, RecordData, ResettableElementNameList, ResourceRecords, ResourceRecordSets, ResourceTagSetList, TagKeyList, TagList, TagResourceIdList, TrafficPolicies, TrafficPolicyInstances, TrafficPolicySummaries, VPCs, ActivateKeySigningKey$, AssociateVPCWithHostedZone$, ChangeCidrCollection$, ChangeResourceRecordSets$, ChangeTagsForResource$, CreateCidrCollection$, CreateHealthCheck$, CreateHostedZone$, CreateKeySigningKey$, CreateQueryLoggingConfig$, CreateReusableDelegationSet$, CreateTrafficPolicy$, CreateTrafficPolicyInstance$, CreateTrafficPolicyVersion$, CreateVPCAssociationAuthorization$, DeactivateKeySigningKey$, DeleteCidrCollection$, DeleteHealthCheck$, DeleteHostedZone$, DeleteKeySigningKey$, DeleteQueryLoggingConfig$, DeleteReusableDelegationSet$, DeleteTrafficPolicy$, DeleteTrafficPolicyInstance$, DeleteVPCAssociationAuthorization$, DisableHostedZoneDNSSEC$, DisassociateVPCFromHostedZone$, EnableHostedZoneDNSSEC$, GetAccountLimit$, GetChange$, GetCheckerIpRanges$, GetDNSSEC$, GetGeoLocation$, GetHealthCheck$, GetHealthCheckCount$, GetHealthCheckLastFailureReason$, GetHealthCheckStatus$, GetHostedZone$, GetHostedZoneCount$, GetHostedZoneLimit$, GetQueryLoggingConfig$, GetReusableDelegationSet$, GetReusableDelegationSetLimit$, GetTrafficPolicy$, GetTrafficPolicyInstance$, GetTrafficPolicyInstanceCount$, ListCidrBlocks$, ListCidrCollections$, ListCidrLocations$, ListGeoLocations$, ListHealthChecks$, ListHostedZones$, ListHostedZonesByName$, ListHostedZonesByVPC$, ListQueryLoggingConfigs$, ListResourceRecordSets$, ListReusableDelegationSets$, ListTagsForResource$, ListTagsForResources$, ListTrafficPolicies$, ListTrafficPolicyInstances$, ListTrafficPolicyInstancesByHostedZone$, ListTrafficPolicyInstancesByPolicy$, ListTrafficPolicyVersions$, ListVPCAssociationAuthorizations$, TestDNSAnswer$, UpdateHealthCheck$, UpdateHostedZoneComment$, UpdateHostedZoneFeatures$, UpdateTrafficPolicyComment$, UpdateTrafficPolicyInstance$;
|
|
29981
29982
|
var init_schemas_0 = __esm(() => {
|
|
29982
29983
|
init_errors();
|
|
@@ -33099,7 +33100,7 @@ var init_schemas_0 = __esm(() => {
|
|
|
33099
33100
|
];
|
|
33100
33101
|
});
|
|
33101
33102
|
|
|
33102
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.shared.js
|
|
33103
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.shared.js
|
|
33103
33104
|
var import_httpAuthSchemes2, import_protocols4, import_checksum, import_client18, import_protocols5, import_serde3, getRuntimeConfig2 = (config) => {
|
|
33104
33105
|
return {
|
|
33105
33106
|
apiVersion: "2013-04-01",
|
|
@@ -33144,7 +33145,7 @@ var init_runtimeConfig_shared = __esm(() => {
|
|
|
33144
33145
|
import_serde3 = __toESM(require_serde(), 1);
|
|
33145
33146
|
});
|
|
33146
33147
|
|
|
33147
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.js
|
|
33148
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.js
|
|
33148
33149
|
var import_client19, import_httpAuthSchemes3, import_client20, import_config28, import_retry3, import_serde4, import_node_http_handler2, getRuntimeConfig3 = (config) => {
|
|
33149
33150
|
import_client20.emitWarningIfUnsupportedVersion(process.version);
|
|
33150
33151
|
const defaultsMode = import_config28.resolveDefaultsModeConfig(config);
|
|
@@ -33190,7 +33191,7 @@ var init_runtimeConfig = __esm(() => {
|
|
|
33190
33191
|
import_node_http_handler2 = __toESM(require_dist_cjs4(), 1);
|
|
33191
33192
|
});
|
|
33192
33193
|
|
|
33193
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthExtensionConfiguration.js
|
|
33194
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthExtensionConfiguration.js
|
|
33194
33195
|
var getHttpAuthExtensionConfiguration2 = (runtimeConfig) => {
|
|
33195
33196
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
33196
33197
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -33228,7 +33229,7 @@ var getHttpAuthExtensionConfiguration2 = (runtimeConfig) => {
|
|
|
33228
33229
|
};
|
|
33229
33230
|
};
|
|
33230
33231
|
|
|
33231
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/runtimeExtensions.js
|
|
33232
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeExtensions.js
|
|
33232
33233
|
var import_client21, import_client22, import_protocols6, resolveRuntimeExtensions2 = (runtimeConfig, extensions) => {
|
|
33233
33234
|
const extensionConfiguration = Object.assign(import_client21.getAwsRegionExtensionConfiguration(runtimeConfig), import_client22.getDefaultExtensionConfiguration(runtimeConfig), import_protocols6.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration2(runtimeConfig));
|
|
33234
33235
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
@@ -33240,7 +33241,7 @@ var init_runtimeExtensions = __esm(() => {
|
|
|
33240
33241
|
import_protocols6 = __toESM(require_protocols(), 1);
|
|
33241
33242
|
});
|
|
33242
33243
|
|
|
33243
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/Route53Client.js
|
|
33244
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/Route53Client.js
|
|
33244
33245
|
var import_client23, import_core, import_client24, import_config29, import_endpoints3, import_protocols7, import_retry4, import_schema2, Route53Client;
|
|
33245
33246
|
var init_Route53Client = __esm(() => {
|
|
33246
33247
|
init_httpAuthSchemeProvider();
|
|
@@ -33291,13 +33292,13 @@ var init_Route53Client = __esm(() => {
|
|
|
33291
33292
|
};
|
|
33292
33293
|
});
|
|
33293
33294
|
|
|
33294
|
-
// node_modules/@aws-sdk/middleware-sdk-route53/dist-es/constants.js
|
|
33295
|
+
// ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.25/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/constants.js
|
|
33295
33296
|
var IDENTIFIER_PREFIX_PATTERN;
|
|
33296
33297
|
var init_constants2 = __esm(() => {
|
|
33297
33298
|
IDENTIFIER_PREFIX_PATTERN = /^\/(hostedzone|change|delegationset)\//;
|
|
33298
33299
|
});
|
|
33299
33300
|
|
|
33300
|
-
// node_modules/@aws-sdk/middleware-sdk-route53/dist-es/change-resource-record-sets.js
|
|
33301
|
+
// ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.25/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/change-resource-record-sets.js
|
|
33301
33302
|
function changeResourceRecordSetsMiddleware() {
|
|
33302
33303
|
return (next) => async (args) => {
|
|
33303
33304
|
const { ChangeBatch } = args.input;
|
|
@@ -33346,7 +33347,7 @@ var init_change_resource_record_sets = __esm(() => {
|
|
|
33346
33347
|
};
|
|
33347
33348
|
});
|
|
33348
33349
|
|
|
33349
|
-
// node_modules/@aws-sdk/middleware-sdk-route53/dist-es/id-normalizer.js
|
|
33350
|
+
// ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.25/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/id-normalizer.js
|
|
33350
33351
|
function idNormalizerMiddleware() {
|
|
33351
33352
|
return (next) => async (args) => {
|
|
33352
33353
|
const input = { ...args.input };
|
|
@@ -33378,13 +33379,13 @@ var init_id_normalizer = __esm(() => {
|
|
|
33378
33379
|
};
|
|
33379
33380
|
});
|
|
33380
33381
|
|
|
33381
|
-
// node_modules/@aws-sdk/middleware-sdk-route53/dist-es/index.js
|
|
33382
|
+
// ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.25/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/index.js
|
|
33382
33383
|
var init_dist_es11 = __esm(() => {
|
|
33383
33384
|
init_change_resource_record_sets();
|
|
33384
33385
|
init_id_normalizer();
|
|
33385
33386
|
});
|
|
33386
33387
|
|
|
33387
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commandBuilder.js
|
|
33388
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commandBuilder.js
|
|
33388
33389
|
var import_client25, import_endpoints4, command2, _ep02, _mw02 = (Command2, cs, config, o2) => [
|
|
33389
33390
|
getIdNormalizerPlugin(config)
|
|
33390
33391
|
], _mw1 = (Command2, cs, config, o2) => [
|
|
@@ -33400,7 +33401,7 @@ var init_commandBuilder = __esm(() => {
|
|
|
33400
33401
|
_ep02 = {};
|
|
33401
33402
|
});
|
|
33402
33403
|
|
|
33403
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ActivateKeySigningKeyCommand.js
|
|
33404
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ActivateKeySigningKeyCommand.js
|
|
33404
33405
|
var ActivateKeySigningKeyCommand;
|
|
33405
33406
|
var init_ActivateKeySigningKeyCommand = __esm(() => {
|
|
33406
33407
|
init_commandBuilder();
|
|
@@ -33409,7 +33410,7 @@ var init_ActivateKeySigningKeyCommand = __esm(() => {
|
|
|
33409
33410
|
};
|
|
33410
33411
|
});
|
|
33411
33412
|
|
|
33412
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/AssociateVPCWithHostedZoneCommand.js
|
|
33413
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/AssociateVPCWithHostedZoneCommand.js
|
|
33413
33414
|
var AssociateVPCWithHostedZoneCommand;
|
|
33414
33415
|
var init_AssociateVPCWithHostedZoneCommand = __esm(() => {
|
|
33415
33416
|
init_commandBuilder();
|
|
@@ -33418,7 +33419,7 @@ var init_AssociateVPCWithHostedZoneCommand = __esm(() => {
|
|
|
33418
33419
|
};
|
|
33419
33420
|
});
|
|
33420
33421
|
|
|
33421
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeCidrCollectionCommand.js
|
|
33422
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeCidrCollectionCommand.js
|
|
33422
33423
|
var ChangeCidrCollectionCommand;
|
|
33423
33424
|
var init_ChangeCidrCollectionCommand = __esm(() => {
|
|
33424
33425
|
init_commandBuilder();
|
|
@@ -33427,7 +33428,7 @@ var init_ChangeCidrCollectionCommand = __esm(() => {
|
|
|
33427
33428
|
};
|
|
33428
33429
|
});
|
|
33429
33430
|
|
|
33430
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeResourceRecordSetsCommand.js
|
|
33431
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeResourceRecordSetsCommand.js
|
|
33431
33432
|
var ChangeResourceRecordSetsCommand;
|
|
33432
33433
|
var init_ChangeResourceRecordSetsCommand = __esm(() => {
|
|
33433
33434
|
init_commandBuilder();
|
|
@@ -33436,7 +33437,7 @@ var init_ChangeResourceRecordSetsCommand = __esm(() => {
|
|
|
33436
33437
|
};
|
|
33437
33438
|
});
|
|
33438
33439
|
|
|
33439
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeTagsForResourceCommand.js
|
|
33440
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeTagsForResourceCommand.js
|
|
33440
33441
|
var ChangeTagsForResourceCommand;
|
|
33441
33442
|
var init_ChangeTagsForResourceCommand = __esm(() => {
|
|
33442
33443
|
init_commandBuilder();
|
|
@@ -33445,7 +33446,7 @@ var init_ChangeTagsForResourceCommand = __esm(() => {
|
|
|
33445
33446
|
};
|
|
33446
33447
|
});
|
|
33447
33448
|
|
|
33448
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateCidrCollectionCommand.js
|
|
33449
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateCidrCollectionCommand.js
|
|
33449
33450
|
var CreateCidrCollectionCommand;
|
|
33450
33451
|
var init_CreateCidrCollectionCommand = __esm(() => {
|
|
33451
33452
|
init_commandBuilder();
|
|
@@ -33454,7 +33455,7 @@ var init_CreateCidrCollectionCommand = __esm(() => {
|
|
|
33454
33455
|
};
|
|
33455
33456
|
});
|
|
33456
33457
|
|
|
33457
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHealthCheckCommand.js
|
|
33458
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHealthCheckCommand.js
|
|
33458
33459
|
var CreateHealthCheckCommand;
|
|
33459
33460
|
var init_CreateHealthCheckCommand = __esm(() => {
|
|
33460
33461
|
init_commandBuilder();
|
|
@@ -33463,7 +33464,7 @@ var init_CreateHealthCheckCommand = __esm(() => {
|
|
|
33463
33464
|
};
|
|
33464
33465
|
});
|
|
33465
33466
|
|
|
33466
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHostedZoneCommand.js
|
|
33467
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHostedZoneCommand.js
|
|
33467
33468
|
var CreateHostedZoneCommand;
|
|
33468
33469
|
var init_CreateHostedZoneCommand = __esm(() => {
|
|
33469
33470
|
init_commandBuilder();
|
|
@@ -33472,7 +33473,7 @@ var init_CreateHostedZoneCommand = __esm(() => {
|
|
|
33472
33473
|
};
|
|
33473
33474
|
});
|
|
33474
33475
|
|
|
33475
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateKeySigningKeyCommand.js
|
|
33476
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateKeySigningKeyCommand.js
|
|
33476
33477
|
var CreateKeySigningKeyCommand;
|
|
33477
33478
|
var init_CreateKeySigningKeyCommand = __esm(() => {
|
|
33478
33479
|
init_commandBuilder();
|
|
@@ -33481,7 +33482,7 @@ var init_CreateKeySigningKeyCommand = __esm(() => {
|
|
|
33481
33482
|
};
|
|
33482
33483
|
});
|
|
33483
33484
|
|
|
33484
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateQueryLoggingConfigCommand.js
|
|
33485
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateQueryLoggingConfigCommand.js
|
|
33485
33486
|
var CreateQueryLoggingConfigCommand;
|
|
33486
33487
|
var init_CreateQueryLoggingConfigCommand = __esm(() => {
|
|
33487
33488
|
init_commandBuilder();
|
|
@@ -33490,7 +33491,7 @@ var init_CreateQueryLoggingConfigCommand = __esm(() => {
|
|
|
33490
33491
|
};
|
|
33491
33492
|
});
|
|
33492
33493
|
|
|
33493
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateReusableDelegationSetCommand.js
|
|
33494
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateReusableDelegationSetCommand.js
|
|
33494
33495
|
var CreateReusableDelegationSetCommand;
|
|
33495
33496
|
var init_CreateReusableDelegationSetCommand = __esm(() => {
|
|
33496
33497
|
init_commandBuilder();
|
|
@@ -33499,7 +33500,7 @@ var init_CreateReusableDelegationSetCommand = __esm(() => {
|
|
|
33499
33500
|
};
|
|
33500
33501
|
});
|
|
33501
33502
|
|
|
33502
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyCommand.js
|
|
33503
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyCommand.js
|
|
33503
33504
|
var CreateTrafficPolicyCommand;
|
|
33504
33505
|
var init_CreateTrafficPolicyCommand = __esm(() => {
|
|
33505
33506
|
init_commandBuilder();
|
|
@@ -33508,7 +33509,7 @@ var init_CreateTrafficPolicyCommand = __esm(() => {
|
|
|
33508
33509
|
};
|
|
33509
33510
|
});
|
|
33510
33511
|
|
|
33511
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyInstanceCommand.js
|
|
33512
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyInstanceCommand.js
|
|
33512
33513
|
var CreateTrafficPolicyInstanceCommand;
|
|
33513
33514
|
var init_CreateTrafficPolicyInstanceCommand = __esm(() => {
|
|
33514
33515
|
init_commandBuilder();
|
|
@@ -33517,7 +33518,7 @@ var init_CreateTrafficPolicyInstanceCommand = __esm(() => {
|
|
|
33517
33518
|
};
|
|
33518
33519
|
});
|
|
33519
33520
|
|
|
33520
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyVersionCommand.js
|
|
33521
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyVersionCommand.js
|
|
33521
33522
|
var CreateTrafficPolicyVersionCommand;
|
|
33522
33523
|
var init_CreateTrafficPolicyVersionCommand = __esm(() => {
|
|
33523
33524
|
init_commandBuilder();
|
|
@@ -33526,7 +33527,7 @@ var init_CreateTrafficPolicyVersionCommand = __esm(() => {
|
|
|
33526
33527
|
};
|
|
33527
33528
|
});
|
|
33528
33529
|
|
|
33529
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateVPCAssociationAuthorizationCommand.js
|
|
33530
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateVPCAssociationAuthorizationCommand.js
|
|
33530
33531
|
var CreateVPCAssociationAuthorizationCommand;
|
|
33531
33532
|
var init_CreateVPCAssociationAuthorizationCommand = __esm(() => {
|
|
33532
33533
|
init_commandBuilder();
|
|
@@ -33535,7 +33536,7 @@ var init_CreateVPCAssociationAuthorizationCommand = __esm(() => {
|
|
|
33535
33536
|
};
|
|
33536
33537
|
});
|
|
33537
33538
|
|
|
33538
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeactivateKeySigningKeyCommand.js
|
|
33539
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeactivateKeySigningKeyCommand.js
|
|
33539
33540
|
var DeactivateKeySigningKeyCommand;
|
|
33540
33541
|
var init_DeactivateKeySigningKeyCommand = __esm(() => {
|
|
33541
33542
|
init_commandBuilder();
|
|
@@ -33544,7 +33545,7 @@ var init_DeactivateKeySigningKeyCommand = __esm(() => {
|
|
|
33544
33545
|
};
|
|
33545
33546
|
});
|
|
33546
33547
|
|
|
33547
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteCidrCollectionCommand.js
|
|
33548
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteCidrCollectionCommand.js
|
|
33548
33549
|
var DeleteCidrCollectionCommand;
|
|
33549
33550
|
var init_DeleteCidrCollectionCommand = __esm(() => {
|
|
33550
33551
|
init_commandBuilder();
|
|
@@ -33553,7 +33554,7 @@ var init_DeleteCidrCollectionCommand = __esm(() => {
|
|
|
33553
33554
|
};
|
|
33554
33555
|
});
|
|
33555
33556
|
|
|
33556
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHealthCheckCommand.js
|
|
33557
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHealthCheckCommand.js
|
|
33557
33558
|
var DeleteHealthCheckCommand;
|
|
33558
33559
|
var init_DeleteHealthCheckCommand = __esm(() => {
|
|
33559
33560
|
init_commandBuilder();
|
|
@@ -33562,7 +33563,7 @@ var init_DeleteHealthCheckCommand = __esm(() => {
|
|
|
33562
33563
|
};
|
|
33563
33564
|
});
|
|
33564
33565
|
|
|
33565
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHostedZoneCommand.js
|
|
33566
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHostedZoneCommand.js
|
|
33566
33567
|
var DeleteHostedZoneCommand;
|
|
33567
33568
|
var init_DeleteHostedZoneCommand = __esm(() => {
|
|
33568
33569
|
init_commandBuilder();
|
|
@@ -33571,7 +33572,7 @@ var init_DeleteHostedZoneCommand = __esm(() => {
|
|
|
33571
33572
|
};
|
|
33572
33573
|
});
|
|
33573
33574
|
|
|
33574
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteKeySigningKeyCommand.js
|
|
33575
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteKeySigningKeyCommand.js
|
|
33575
33576
|
var DeleteKeySigningKeyCommand;
|
|
33576
33577
|
var init_DeleteKeySigningKeyCommand = __esm(() => {
|
|
33577
33578
|
init_commandBuilder();
|
|
@@ -33580,7 +33581,7 @@ var init_DeleteKeySigningKeyCommand = __esm(() => {
|
|
|
33580
33581
|
};
|
|
33581
33582
|
});
|
|
33582
33583
|
|
|
33583
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteQueryLoggingConfigCommand.js
|
|
33584
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteQueryLoggingConfigCommand.js
|
|
33584
33585
|
var DeleteQueryLoggingConfigCommand;
|
|
33585
33586
|
var init_DeleteQueryLoggingConfigCommand = __esm(() => {
|
|
33586
33587
|
init_commandBuilder();
|
|
@@ -33589,7 +33590,7 @@ var init_DeleteQueryLoggingConfigCommand = __esm(() => {
|
|
|
33589
33590
|
};
|
|
33590
33591
|
});
|
|
33591
33592
|
|
|
33592
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteReusableDelegationSetCommand.js
|
|
33593
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteReusableDelegationSetCommand.js
|
|
33593
33594
|
var DeleteReusableDelegationSetCommand;
|
|
33594
33595
|
var init_DeleteReusableDelegationSetCommand = __esm(() => {
|
|
33595
33596
|
init_commandBuilder();
|
|
@@ -33598,7 +33599,7 @@ var init_DeleteReusableDelegationSetCommand = __esm(() => {
|
|
|
33598
33599
|
};
|
|
33599
33600
|
});
|
|
33600
33601
|
|
|
33601
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyCommand.js
|
|
33602
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyCommand.js
|
|
33602
33603
|
var DeleteTrafficPolicyCommand;
|
|
33603
33604
|
var init_DeleteTrafficPolicyCommand = __esm(() => {
|
|
33604
33605
|
init_commandBuilder();
|
|
@@ -33607,7 +33608,7 @@ var init_DeleteTrafficPolicyCommand = __esm(() => {
|
|
|
33607
33608
|
};
|
|
33608
33609
|
});
|
|
33609
33610
|
|
|
33610
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyInstanceCommand.js
|
|
33611
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyInstanceCommand.js
|
|
33611
33612
|
var DeleteTrafficPolicyInstanceCommand;
|
|
33612
33613
|
var init_DeleteTrafficPolicyInstanceCommand = __esm(() => {
|
|
33613
33614
|
init_commandBuilder();
|
|
@@ -33616,7 +33617,7 @@ var init_DeleteTrafficPolicyInstanceCommand = __esm(() => {
|
|
|
33616
33617
|
};
|
|
33617
33618
|
});
|
|
33618
33619
|
|
|
33619
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteVPCAssociationAuthorizationCommand.js
|
|
33620
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteVPCAssociationAuthorizationCommand.js
|
|
33620
33621
|
var DeleteVPCAssociationAuthorizationCommand;
|
|
33621
33622
|
var init_DeleteVPCAssociationAuthorizationCommand = __esm(() => {
|
|
33622
33623
|
init_commandBuilder();
|
|
@@ -33625,7 +33626,7 @@ var init_DeleteVPCAssociationAuthorizationCommand = __esm(() => {
|
|
|
33625
33626
|
};
|
|
33626
33627
|
});
|
|
33627
33628
|
|
|
33628
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DisableHostedZoneDNSSECCommand.js
|
|
33629
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisableHostedZoneDNSSECCommand.js
|
|
33629
33630
|
var DisableHostedZoneDNSSECCommand;
|
|
33630
33631
|
var init_DisableHostedZoneDNSSECCommand = __esm(() => {
|
|
33631
33632
|
init_commandBuilder();
|
|
@@ -33634,7 +33635,7 @@ var init_DisableHostedZoneDNSSECCommand = __esm(() => {
|
|
|
33634
33635
|
};
|
|
33635
33636
|
});
|
|
33636
33637
|
|
|
33637
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/DisassociateVPCFromHostedZoneCommand.js
|
|
33638
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisassociateVPCFromHostedZoneCommand.js
|
|
33638
33639
|
var DisassociateVPCFromHostedZoneCommand;
|
|
33639
33640
|
var init_DisassociateVPCFromHostedZoneCommand = __esm(() => {
|
|
33640
33641
|
init_commandBuilder();
|
|
@@ -33643,7 +33644,7 @@ var init_DisassociateVPCFromHostedZoneCommand = __esm(() => {
|
|
|
33643
33644
|
};
|
|
33644
33645
|
});
|
|
33645
33646
|
|
|
33646
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/EnableHostedZoneDNSSECCommand.js
|
|
33647
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/EnableHostedZoneDNSSECCommand.js
|
|
33647
33648
|
var EnableHostedZoneDNSSECCommand;
|
|
33648
33649
|
var init_EnableHostedZoneDNSSECCommand = __esm(() => {
|
|
33649
33650
|
init_commandBuilder();
|
|
@@ -33652,7 +33653,7 @@ var init_EnableHostedZoneDNSSECCommand = __esm(() => {
|
|
|
33652
33653
|
};
|
|
33653
33654
|
});
|
|
33654
33655
|
|
|
33655
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetAccountLimitCommand.js
|
|
33656
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetAccountLimitCommand.js
|
|
33656
33657
|
var GetAccountLimitCommand;
|
|
33657
33658
|
var init_GetAccountLimitCommand = __esm(() => {
|
|
33658
33659
|
init_commandBuilder();
|
|
@@ -33661,7 +33662,7 @@ var init_GetAccountLimitCommand = __esm(() => {
|
|
|
33661
33662
|
};
|
|
33662
33663
|
});
|
|
33663
33664
|
|
|
33664
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetChangeCommand.js
|
|
33665
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetChangeCommand.js
|
|
33665
33666
|
var GetChangeCommand;
|
|
33666
33667
|
var init_GetChangeCommand = __esm(() => {
|
|
33667
33668
|
init_commandBuilder();
|
|
@@ -33670,7 +33671,7 @@ var init_GetChangeCommand = __esm(() => {
|
|
|
33670
33671
|
};
|
|
33671
33672
|
});
|
|
33672
33673
|
|
|
33673
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetCheckerIpRangesCommand.js
|
|
33674
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetCheckerIpRangesCommand.js
|
|
33674
33675
|
var GetCheckerIpRangesCommand;
|
|
33675
33676
|
var init_GetCheckerIpRangesCommand = __esm(() => {
|
|
33676
33677
|
init_commandBuilder();
|
|
@@ -33679,7 +33680,7 @@ var init_GetCheckerIpRangesCommand = __esm(() => {
|
|
|
33679
33680
|
};
|
|
33680
33681
|
});
|
|
33681
33682
|
|
|
33682
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetDNSSECCommand.js
|
|
33683
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetDNSSECCommand.js
|
|
33683
33684
|
var GetDNSSECCommand;
|
|
33684
33685
|
var init_GetDNSSECCommand = __esm(() => {
|
|
33685
33686
|
init_commandBuilder();
|
|
@@ -33688,7 +33689,7 @@ var init_GetDNSSECCommand = __esm(() => {
|
|
|
33688
33689
|
};
|
|
33689
33690
|
});
|
|
33690
33691
|
|
|
33691
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetGeoLocationCommand.js
|
|
33692
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetGeoLocationCommand.js
|
|
33692
33693
|
var GetGeoLocationCommand;
|
|
33693
33694
|
var init_GetGeoLocationCommand = __esm(() => {
|
|
33694
33695
|
init_commandBuilder();
|
|
@@ -33697,7 +33698,7 @@ var init_GetGeoLocationCommand = __esm(() => {
|
|
|
33697
33698
|
};
|
|
33698
33699
|
});
|
|
33699
33700
|
|
|
33700
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCommand.js
|
|
33701
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCommand.js
|
|
33701
33702
|
var GetHealthCheckCommand;
|
|
33702
33703
|
var init_GetHealthCheckCommand = __esm(() => {
|
|
33703
33704
|
init_commandBuilder();
|
|
@@ -33706,7 +33707,7 @@ var init_GetHealthCheckCommand = __esm(() => {
|
|
|
33706
33707
|
};
|
|
33707
33708
|
});
|
|
33708
33709
|
|
|
33709
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCountCommand.js
|
|
33710
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCountCommand.js
|
|
33710
33711
|
var GetHealthCheckCountCommand;
|
|
33711
33712
|
var init_GetHealthCheckCountCommand = __esm(() => {
|
|
33712
33713
|
init_commandBuilder();
|
|
@@ -33715,7 +33716,7 @@ var init_GetHealthCheckCountCommand = __esm(() => {
|
|
|
33715
33716
|
};
|
|
33716
33717
|
});
|
|
33717
33718
|
|
|
33718
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckLastFailureReasonCommand.js
|
|
33719
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckLastFailureReasonCommand.js
|
|
33719
33720
|
var GetHealthCheckLastFailureReasonCommand;
|
|
33720
33721
|
var init_GetHealthCheckLastFailureReasonCommand = __esm(() => {
|
|
33721
33722
|
init_commandBuilder();
|
|
@@ -33724,7 +33725,7 @@ var init_GetHealthCheckLastFailureReasonCommand = __esm(() => {
|
|
|
33724
33725
|
};
|
|
33725
33726
|
});
|
|
33726
33727
|
|
|
33727
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckStatusCommand.js
|
|
33728
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckStatusCommand.js
|
|
33728
33729
|
var GetHealthCheckStatusCommand;
|
|
33729
33730
|
var init_GetHealthCheckStatusCommand = __esm(() => {
|
|
33730
33731
|
init_commandBuilder();
|
|
@@ -33733,7 +33734,7 @@ var init_GetHealthCheckStatusCommand = __esm(() => {
|
|
|
33733
33734
|
};
|
|
33734
33735
|
});
|
|
33735
33736
|
|
|
33736
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCommand.js
|
|
33737
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCommand.js
|
|
33737
33738
|
var GetHostedZoneCommand;
|
|
33738
33739
|
var init_GetHostedZoneCommand = __esm(() => {
|
|
33739
33740
|
init_commandBuilder();
|
|
@@ -33742,7 +33743,7 @@ var init_GetHostedZoneCommand = __esm(() => {
|
|
|
33742
33743
|
};
|
|
33743
33744
|
});
|
|
33744
33745
|
|
|
33745
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCountCommand.js
|
|
33746
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCountCommand.js
|
|
33746
33747
|
var GetHostedZoneCountCommand;
|
|
33747
33748
|
var init_GetHostedZoneCountCommand = __esm(() => {
|
|
33748
33749
|
init_commandBuilder();
|
|
@@ -33751,7 +33752,7 @@ var init_GetHostedZoneCountCommand = __esm(() => {
|
|
|
33751
33752
|
};
|
|
33752
33753
|
});
|
|
33753
33754
|
|
|
33754
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneLimitCommand.js
|
|
33755
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneLimitCommand.js
|
|
33755
33756
|
var GetHostedZoneLimitCommand;
|
|
33756
33757
|
var init_GetHostedZoneLimitCommand = __esm(() => {
|
|
33757
33758
|
init_commandBuilder();
|
|
@@ -33760,7 +33761,7 @@ var init_GetHostedZoneLimitCommand = __esm(() => {
|
|
|
33760
33761
|
};
|
|
33761
33762
|
});
|
|
33762
33763
|
|
|
33763
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetQueryLoggingConfigCommand.js
|
|
33764
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetQueryLoggingConfigCommand.js
|
|
33764
33765
|
var GetQueryLoggingConfigCommand;
|
|
33765
33766
|
var init_GetQueryLoggingConfigCommand = __esm(() => {
|
|
33766
33767
|
init_commandBuilder();
|
|
@@ -33769,7 +33770,7 @@ var init_GetQueryLoggingConfigCommand = __esm(() => {
|
|
|
33769
33770
|
};
|
|
33770
33771
|
});
|
|
33771
33772
|
|
|
33772
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetCommand.js
|
|
33773
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetCommand.js
|
|
33773
33774
|
var GetReusableDelegationSetCommand;
|
|
33774
33775
|
var init_GetReusableDelegationSetCommand = __esm(() => {
|
|
33775
33776
|
init_commandBuilder();
|
|
@@ -33778,7 +33779,7 @@ var init_GetReusableDelegationSetCommand = __esm(() => {
|
|
|
33778
33779
|
};
|
|
33779
33780
|
});
|
|
33780
33781
|
|
|
33781
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetLimitCommand.js
|
|
33782
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetLimitCommand.js
|
|
33782
33783
|
var GetReusableDelegationSetLimitCommand;
|
|
33783
33784
|
var init_GetReusableDelegationSetLimitCommand = __esm(() => {
|
|
33784
33785
|
init_commandBuilder();
|
|
@@ -33787,7 +33788,7 @@ var init_GetReusableDelegationSetLimitCommand = __esm(() => {
|
|
|
33787
33788
|
};
|
|
33788
33789
|
});
|
|
33789
33790
|
|
|
33790
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyCommand.js
|
|
33791
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyCommand.js
|
|
33791
33792
|
var GetTrafficPolicyCommand;
|
|
33792
33793
|
var init_GetTrafficPolicyCommand = __esm(() => {
|
|
33793
33794
|
init_commandBuilder();
|
|
@@ -33796,7 +33797,7 @@ var init_GetTrafficPolicyCommand = __esm(() => {
|
|
|
33796
33797
|
};
|
|
33797
33798
|
});
|
|
33798
33799
|
|
|
33799
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCommand.js
|
|
33800
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCommand.js
|
|
33800
33801
|
var GetTrafficPolicyInstanceCommand;
|
|
33801
33802
|
var init_GetTrafficPolicyInstanceCommand = __esm(() => {
|
|
33802
33803
|
init_commandBuilder();
|
|
@@ -33805,7 +33806,7 @@ var init_GetTrafficPolicyInstanceCommand = __esm(() => {
|
|
|
33805
33806
|
};
|
|
33806
33807
|
});
|
|
33807
33808
|
|
|
33808
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCountCommand.js
|
|
33809
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCountCommand.js
|
|
33809
33810
|
var GetTrafficPolicyInstanceCountCommand;
|
|
33810
33811
|
var init_GetTrafficPolicyInstanceCountCommand = __esm(() => {
|
|
33811
33812
|
init_commandBuilder();
|
|
@@ -33814,7 +33815,7 @@ var init_GetTrafficPolicyInstanceCountCommand = __esm(() => {
|
|
|
33814
33815
|
};
|
|
33815
33816
|
});
|
|
33816
33817
|
|
|
33817
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrBlocksCommand.js
|
|
33818
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrBlocksCommand.js
|
|
33818
33819
|
var ListCidrBlocksCommand;
|
|
33819
33820
|
var init_ListCidrBlocksCommand = __esm(() => {
|
|
33820
33821
|
init_commandBuilder();
|
|
@@ -33823,7 +33824,7 @@ var init_ListCidrBlocksCommand = __esm(() => {
|
|
|
33823
33824
|
};
|
|
33824
33825
|
});
|
|
33825
33826
|
|
|
33826
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrCollectionsCommand.js
|
|
33827
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrCollectionsCommand.js
|
|
33827
33828
|
var ListCidrCollectionsCommand;
|
|
33828
33829
|
var init_ListCidrCollectionsCommand = __esm(() => {
|
|
33829
33830
|
init_commandBuilder();
|
|
@@ -33832,7 +33833,7 @@ var init_ListCidrCollectionsCommand = __esm(() => {
|
|
|
33832
33833
|
};
|
|
33833
33834
|
});
|
|
33834
33835
|
|
|
33835
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrLocationsCommand.js
|
|
33836
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrLocationsCommand.js
|
|
33836
33837
|
var ListCidrLocationsCommand;
|
|
33837
33838
|
var init_ListCidrLocationsCommand = __esm(() => {
|
|
33838
33839
|
init_commandBuilder();
|
|
@@ -33841,7 +33842,7 @@ var init_ListCidrLocationsCommand = __esm(() => {
|
|
|
33841
33842
|
};
|
|
33842
33843
|
});
|
|
33843
33844
|
|
|
33844
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListGeoLocationsCommand.js
|
|
33845
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListGeoLocationsCommand.js
|
|
33845
33846
|
var ListGeoLocationsCommand;
|
|
33846
33847
|
var init_ListGeoLocationsCommand = __esm(() => {
|
|
33847
33848
|
init_commandBuilder();
|
|
@@ -33850,7 +33851,7 @@ var init_ListGeoLocationsCommand = __esm(() => {
|
|
|
33850
33851
|
};
|
|
33851
33852
|
});
|
|
33852
33853
|
|
|
33853
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHealthChecksCommand.js
|
|
33854
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHealthChecksCommand.js
|
|
33854
33855
|
var ListHealthChecksCommand;
|
|
33855
33856
|
var init_ListHealthChecksCommand = __esm(() => {
|
|
33856
33857
|
init_commandBuilder();
|
|
@@ -33859,7 +33860,7 @@ var init_ListHealthChecksCommand = __esm(() => {
|
|
|
33859
33860
|
};
|
|
33860
33861
|
});
|
|
33861
33862
|
|
|
33862
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByNameCommand.js
|
|
33863
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByNameCommand.js
|
|
33863
33864
|
var ListHostedZonesByNameCommand;
|
|
33864
33865
|
var init_ListHostedZonesByNameCommand = __esm(() => {
|
|
33865
33866
|
init_commandBuilder();
|
|
@@ -33868,7 +33869,7 @@ var init_ListHostedZonesByNameCommand = __esm(() => {
|
|
|
33868
33869
|
};
|
|
33869
33870
|
});
|
|
33870
33871
|
|
|
33871
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByVPCCommand.js
|
|
33872
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByVPCCommand.js
|
|
33872
33873
|
var ListHostedZonesByVPCCommand;
|
|
33873
33874
|
var init_ListHostedZonesByVPCCommand = __esm(() => {
|
|
33874
33875
|
init_commandBuilder();
|
|
@@ -33877,7 +33878,7 @@ var init_ListHostedZonesByVPCCommand = __esm(() => {
|
|
|
33877
33878
|
};
|
|
33878
33879
|
});
|
|
33879
33880
|
|
|
33880
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesCommand.js
|
|
33881
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesCommand.js
|
|
33881
33882
|
var ListHostedZonesCommand;
|
|
33882
33883
|
var init_ListHostedZonesCommand = __esm(() => {
|
|
33883
33884
|
init_commandBuilder();
|
|
@@ -33886,7 +33887,7 @@ var init_ListHostedZonesCommand = __esm(() => {
|
|
|
33886
33887
|
};
|
|
33887
33888
|
});
|
|
33888
33889
|
|
|
33889
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListQueryLoggingConfigsCommand.js
|
|
33890
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListQueryLoggingConfigsCommand.js
|
|
33890
33891
|
var ListQueryLoggingConfigsCommand;
|
|
33891
33892
|
var init_ListQueryLoggingConfigsCommand = __esm(() => {
|
|
33892
33893
|
init_commandBuilder();
|
|
@@ -33895,7 +33896,7 @@ var init_ListQueryLoggingConfigsCommand = __esm(() => {
|
|
|
33895
33896
|
};
|
|
33896
33897
|
});
|
|
33897
33898
|
|
|
33898
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListResourceRecordSetsCommand.js
|
|
33899
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListResourceRecordSetsCommand.js
|
|
33899
33900
|
var ListResourceRecordSetsCommand;
|
|
33900
33901
|
var init_ListResourceRecordSetsCommand = __esm(() => {
|
|
33901
33902
|
init_commandBuilder();
|
|
@@ -33904,7 +33905,7 @@ var init_ListResourceRecordSetsCommand = __esm(() => {
|
|
|
33904
33905
|
};
|
|
33905
33906
|
});
|
|
33906
33907
|
|
|
33907
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListReusableDelegationSetsCommand.js
|
|
33908
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListReusableDelegationSetsCommand.js
|
|
33908
33909
|
var ListReusableDelegationSetsCommand;
|
|
33909
33910
|
var init_ListReusableDelegationSetsCommand = __esm(() => {
|
|
33910
33911
|
init_commandBuilder();
|
|
@@ -33913,7 +33914,7 @@ var init_ListReusableDelegationSetsCommand = __esm(() => {
|
|
|
33913
33914
|
};
|
|
33914
33915
|
});
|
|
33915
33916
|
|
|
33916
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourceCommand.js
|
|
33917
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourceCommand.js
|
|
33917
33918
|
var ListTagsForResourceCommand;
|
|
33918
33919
|
var init_ListTagsForResourceCommand = __esm(() => {
|
|
33919
33920
|
init_commandBuilder();
|
|
@@ -33922,7 +33923,7 @@ var init_ListTagsForResourceCommand = __esm(() => {
|
|
|
33922
33923
|
};
|
|
33923
33924
|
});
|
|
33924
33925
|
|
|
33925
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourcesCommand.js
|
|
33926
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourcesCommand.js
|
|
33926
33927
|
var ListTagsForResourcesCommand;
|
|
33927
33928
|
var init_ListTagsForResourcesCommand = __esm(() => {
|
|
33928
33929
|
init_commandBuilder();
|
|
@@ -33931,7 +33932,7 @@ var init_ListTagsForResourcesCommand = __esm(() => {
|
|
|
33931
33932
|
};
|
|
33932
33933
|
});
|
|
33933
33934
|
|
|
33934
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPoliciesCommand.js
|
|
33935
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPoliciesCommand.js
|
|
33935
33936
|
var ListTrafficPoliciesCommand;
|
|
33936
33937
|
var init_ListTrafficPoliciesCommand = __esm(() => {
|
|
33937
33938
|
init_commandBuilder();
|
|
@@ -33940,7 +33941,7 @@ var init_ListTrafficPoliciesCommand = __esm(() => {
|
|
|
33940
33941
|
};
|
|
33941
33942
|
});
|
|
33942
33943
|
|
|
33943
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByHostedZoneCommand.js
|
|
33944
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByHostedZoneCommand.js
|
|
33944
33945
|
var ListTrafficPolicyInstancesByHostedZoneCommand;
|
|
33945
33946
|
var init_ListTrafficPolicyInstancesByHostedZoneCommand = __esm(() => {
|
|
33946
33947
|
init_commandBuilder();
|
|
@@ -33949,7 +33950,7 @@ var init_ListTrafficPolicyInstancesByHostedZoneCommand = __esm(() => {
|
|
|
33949
33950
|
};
|
|
33950
33951
|
});
|
|
33951
33952
|
|
|
33952
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByPolicyCommand.js
|
|
33953
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByPolicyCommand.js
|
|
33953
33954
|
var ListTrafficPolicyInstancesByPolicyCommand;
|
|
33954
33955
|
var init_ListTrafficPolicyInstancesByPolicyCommand = __esm(() => {
|
|
33955
33956
|
init_commandBuilder();
|
|
@@ -33958,7 +33959,7 @@ var init_ListTrafficPolicyInstancesByPolicyCommand = __esm(() => {
|
|
|
33958
33959
|
};
|
|
33959
33960
|
});
|
|
33960
33961
|
|
|
33961
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesCommand.js
|
|
33962
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesCommand.js
|
|
33962
33963
|
var ListTrafficPolicyInstancesCommand;
|
|
33963
33964
|
var init_ListTrafficPolicyInstancesCommand = __esm(() => {
|
|
33964
33965
|
init_commandBuilder();
|
|
@@ -33967,7 +33968,7 @@ var init_ListTrafficPolicyInstancesCommand = __esm(() => {
|
|
|
33967
33968
|
};
|
|
33968
33969
|
});
|
|
33969
33970
|
|
|
33970
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyVersionsCommand.js
|
|
33971
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyVersionsCommand.js
|
|
33971
33972
|
var ListTrafficPolicyVersionsCommand;
|
|
33972
33973
|
var init_ListTrafficPolicyVersionsCommand = __esm(() => {
|
|
33973
33974
|
init_commandBuilder();
|
|
@@ -33976,7 +33977,7 @@ var init_ListTrafficPolicyVersionsCommand = __esm(() => {
|
|
|
33976
33977
|
};
|
|
33977
33978
|
});
|
|
33978
33979
|
|
|
33979
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/ListVPCAssociationAuthorizationsCommand.js
|
|
33980
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListVPCAssociationAuthorizationsCommand.js
|
|
33980
33981
|
var ListVPCAssociationAuthorizationsCommand;
|
|
33981
33982
|
var init_ListVPCAssociationAuthorizationsCommand = __esm(() => {
|
|
33982
33983
|
init_commandBuilder();
|
|
@@ -33985,7 +33986,7 @@ var init_ListVPCAssociationAuthorizationsCommand = __esm(() => {
|
|
|
33985
33986
|
};
|
|
33986
33987
|
});
|
|
33987
33988
|
|
|
33988
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/TestDNSAnswerCommand.js
|
|
33989
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/TestDNSAnswerCommand.js
|
|
33989
33990
|
var TestDNSAnswerCommand;
|
|
33990
33991
|
var init_TestDNSAnswerCommand = __esm(() => {
|
|
33991
33992
|
init_commandBuilder();
|
|
@@ -33994,7 +33995,7 @@ var init_TestDNSAnswerCommand = __esm(() => {
|
|
|
33994
33995
|
};
|
|
33995
33996
|
});
|
|
33996
33997
|
|
|
33997
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHealthCheckCommand.js
|
|
33998
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHealthCheckCommand.js
|
|
33998
33999
|
var UpdateHealthCheckCommand;
|
|
33999
34000
|
var init_UpdateHealthCheckCommand = __esm(() => {
|
|
34000
34001
|
init_commandBuilder();
|
|
@@ -34003,7 +34004,7 @@ var init_UpdateHealthCheckCommand = __esm(() => {
|
|
|
34003
34004
|
};
|
|
34004
34005
|
});
|
|
34005
34006
|
|
|
34006
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneCommentCommand.js
|
|
34007
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneCommentCommand.js
|
|
34007
34008
|
var UpdateHostedZoneCommentCommand;
|
|
34008
34009
|
var init_UpdateHostedZoneCommentCommand = __esm(() => {
|
|
34009
34010
|
init_commandBuilder();
|
|
@@ -34012,7 +34013,7 @@ var init_UpdateHostedZoneCommentCommand = __esm(() => {
|
|
|
34012
34013
|
};
|
|
34013
34014
|
});
|
|
34014
34015
|
|
|
34015
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneFeaturesCommand.js
|
|
34016
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneFeaturesCommand.js
|
|
34016
34017
|
var UpdateHostedZoneFeaturesCommand;
|
|
34017
34018
|
var init_UpdateHostedZoneFeaturesCommand = __esm(() => {
|
|
34018
34019
|
init_commandBuilder();
|
|
@@ -34021,7 +34022,7 @@ var init_UpdateHostedZoneFeaturesCommand = __esm(() => {
|
|
|
34021
34022
|
};
|
|
34022
34023
|
});
|
|
34023
34024
|
|
|
34024
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyCommentCommand.js
|
|
34025
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyCommentCommand.js
|
|
34025
34026
|
var UpdateTrafficPolicyCommentCommand;
|
|
34026
34027
|
var init_UpdateTrafficPolicyCommentCommand = __esm(() => {
|
|
34027
34028
|
init_commandBuilder();
|
|
@@ -34030,7 +34031,7 @@ var init_UpdateTrafficPolicyCommentCommand = __esm(() => {
|
|
|
34030
34031
|
};
|
|
34031
34032
|
});
|
|
34032
34033
|
|
|
34033
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyInstanceCommand.js
|
|
34034
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyInstanceCommand.js
|
|
34034
34035
|
var UpdateTrafficPolicyInstanceCommand;
|
|
34035
34036
|
var init_UpdateTrafficPolicyInstanceCommand = __esm(() => {
|
|
34036
34037
|
init_commandBuilder();
|
|
@@ -34039,7 +34040,7 @@ var init_UpdateTrafficPolicyInstanceCommand = __esm(() => {
|
|
|
34039
34040
|
};
|
|
34040
34041
|
});
|
|
34041
34042
|
|
|
34042
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrBlocksPaginator.js
|
|
34043
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrBlocksPaginator.js
|
|
34043
34044
|
var import_core2, paginateListCidrBlocks;
|
|
34044
34045
|
var init_ListCidrBlocksPaginator = __esm(() => {
|
|
34045
34046
|
init_ListCidrBlocksCommand();
|
|
@@ -34048,7 +34049,7 @@ var init_ListCidrBlocksPaginator = __esm(() => {
|
|
|
34048
34049
|
paginateListCidrBlocks = import_core2.createPaginator(Route53Client, ListCidrBlocksCommand, "NextToken", "NextToken", "MaxResults");
|
|
34049
34050
|
});
|
|
34050
34051
|
|
|
34051
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrCollectionsPaginator.js
|
|
34052
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrCollectionsPaginator.js
|
|
34052
34053
|
var import_core3, paginateListCidrCollections;
|
|
34053
34054
|
var init_ListCidrCollectionsPaginator = __esm(() => {
|
|
34054
34055
|
init_ListCidrCollectionsCommand();
|
|
@@ -34057,7 +34058,7 @@ var init_ListCidrCollectionsPaginator = __esm(() => {
|
|
|
34057
34058
|
paginateListCidrCollections = import_core3.createPaginator(Route53Client, ListCidrCollectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
34058
34059
|
});
|
|
34059
34060
|
|
|
34060
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrLocationsPaginator.js
|
|
34061
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrLocationsPaginator.js
|
|
34061
34062
|
var import_core4, paginateListCidrLocations;
|
|
34062
34063
|
var init_ListCidrLocationsPaginator = __esm(() => {
|
|
34063
34064
|
init_ListCidrLocationsCommand();
|
|
@@ -34066,7 +34067,7 @@ var init_ListCidrLocationsPaginator = __esm(() => {
|
|
|
34066
34067
|
paginateListCidrLocations = import_core4.createPaginator(Route53Client, ListCidrLocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
34067
34068
|
});
|
|
34068
34069
|
|
|
34069
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListHealthChecksPaginator.js
|
|
34070
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListHealthChecksPaginator.js
|
|
34070
34071
|
var import_core5, paginateListHealthChecks;
|
|
34071
34072
|
var init_ListHealthChecksPaginator = __esm(() => {
|
|
34072
34073
|
init_ListHealthChecksCommand();
|
|
@@ -34075,7 +34076,7 @@ var init_ListHealthChecksPaginator = __esm(() => {
|
|
|
34075
34076
|
paginateListHealthChecks = import_core5.createPaginator(Route53Client, ListHealthChecksCommand, "Marker", "NextMarker", "MaxItems");
|
|
34076
34077
|
});
|
|
34077
34078
|
|
|
34078
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListHostedZonesPaginator.js
|
|
34079
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListHostedZonesPaginator.js
|
|
34079
34080
|
var import_core6, paginateListHostedZones;
|
|
34080
34081
|
var init_ListHostedZonesPaginator = __esm(() => {
|
|
34081
34082
|
init_ListHostedZonesCommand();
|
|
@@ -34084,7 +34085,7 @@ var init_ListHostedZonesPaginator = __esm(() => {
|
|
|
34084
34085
|
paginateListHostedZones = import_core6.createPaginator(Route53Client, ListHostedZonesCommand, "Marker", "NextMarker", "MaxItems");
|
|
34085
34086
|
});
|
|
34086
34087
|
|
|
34087
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListQueryLoggingConfigsPaginator.js
|
|
34088
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListQueryLoggingConfigsPaginator.js
|
|
34088
34089
|
var import_core7, paginateListQueryLoggingConfigs;
|
|
34089
34090
|
var init_ListQueryLoggingConfigsPaginator = __esm(() => {
|
|
34090
34091
|
init_ListQueryLoggingConfigsCommand();
|
|
@@ -34093,7 +34094,7 @@ var init_ListQueryLoggingConfigsPaginator = __esm(() => {
|
|
|
34093
34094
|
paginateListQueryLoggingConfigs = import_core7.createPaginator(Route53Client, ListQueryLoggingConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
34094
34095
|
});
|
|
34095
34096
|
|
|
34096
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/waiters/waitForResourceRecordSetsChanged.js
|
|
34097
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/waiters/waitForResourceRecordSetsChanged.js
|
|
34097
34098
|
var import_client26, checkState = async (client, input) => {
|
|
34098
34099
|
let reason;
|
|
34099
34100
|
try {
|
|
@@ -34121,7 +34122,7 @@ var init_waitForResourceRecordSetsChanged = __esm(() => {
|
|
|
34121
34122
|
import_client26 = __toESM(require_client(), 1);
|
|
34122
34123
|
});
|
|
34123
34124
|
|
|
34124
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/Route53.js
|
|
34125
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/Route53.js
|
|
34125
34126
|
var import_client27, commands2, paginators, waiters, Route53;
|
|
34126
34127
|
var init_Route53 = __esm(() => {
|
|
34127
34128
|
init_ActivateKeySigningKeyCommand();
|
|
@@ -34293,7 +34294,7 @@ var init_Route53 = __esm(() => {
|
|
|
34293
34294
|
import_client27.createAggregatedClient(commands2, Route53, { paginators, waiters });
|
|
34294
34295
|
});
|
|
34295
34296
|
|
|
34296
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/commands/index.js
|
|
34297
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/index.js
|
|
34297
34298
|
var init_commands = __esm(() => {
|
|
34298
34299
|
init_ActivateKeySigningKeyCommand();
|
|
34299
34300
|
init_AssociateVPCWithHostedZoneCommand();
|
|
@@ -34368,10 +34369,10 @@ var init_commands = __esm(() => {
|
|
|
34368
34369
|
init_UpdateTrafficPolicyInstanceCommand();
|
|
34369
34370
|
});
|
|
34370
34371
|
|
|
34371
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/pagination/Interfaces.js
|
|
34372
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/Interfaces.js
|
|
34372
34373
|
var init_Interfaces = () => {};
|
|
34373
34374
|
|
|
34374
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/pagination/index.js
|
|
34375
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/index.js
|
|
34375
34376
|
var init_pagination = __esm(() => {
|
|
34376
34377
|
init_Interfaces();
|
|
34377
34378
|
init_ListCidrBlocksPaginator();
|
|
@@ -34382,18 +34383,18 @@ var init_pagination = __esm(() => {
|
|
|
34382
34383
|
init_ListQueryLoggingConfigsPaginator();
|
|
34383
34384
|
});
|
|
34384
34385
|
|
|
34385
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/waiters/index.js
|
|
34386
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/waiters/index.js
|
|
34386
34387
|
var init_waiters = __esm(() => {
|
|
34387
34388
|
init_waitForResourceRecordSetsChanged();
|
|
34388
34389
|
});
|
|
34389
34390
|
|
|
34390
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/models/enums.js
|
|
34391
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/models/enums.js
|
|
34391
34392
|
var init_enums = () => {};
|
|
34392
34393
|
|
|
34393
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/models/models_0.js
|
|
34394
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/models/models_0.js
|
|
34394
34395
|
var init_models_0 = () => {};
|
|
34395
34396
|
|
|
34396
|
-
// node_modules/@aws-sdk/client-route-53/dist-es/index.js
|
|
34397
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/index.js
|
|
34397
34398
|
var init_dist_es12 = __esm(() => {
|
|
34398
34399
|
init_Route53Client();
|
|
34399
34400
|
init_Route53();
|
|
@@ -34406,7 +34407,7 @@ var init_dist_es12 = __esm(() => {
|
|
|
34406
34407
|
init_models_0();
|
|
34407
34408
|
});
|
|
34408
34409
|
|
|
34409
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/auth/httpAuthSchemeProvider.js
|
|
34410
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/auth/httpAuthSchemeProvider.js
|
|
34410
34411
|
function createAwsAuthSigv4HttpAuthOption3(authParameters) {
|
|
34411
34412
|
return {
|
|
34412
34413
|
schemeId: "aws.auth#sigv4",
|
|
@@ -34448,7 +34449,7 @@ var init_httpAuthSchemeProvider2 = __esm(() => {
|
|
|
34448
34449
|
import_client29 = __toESM(require_client(), 1);
|
|
34449
34450
|
});
|
|
34450
34451
|
|
|
34451
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/EndpointParameters.js
|
|
34452
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/EndpointParameters.js
|
|
34452
34453
|
var resolveClientEndpointParameters3 = (options) => {
|
|
34453
34454
|
return Object.assign(options, {
|
|
34454
34455
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
@@ -34465,12 +34466,12 @@ var init_EndpointParameters2 = __esm(() => {
|
|
|
34465
34466
|
};
|
|
34466
34467
|
});
|
|
34467
34468
|
|
|
34468
|
-
// node_modules/@aws-sdk/client-route-53-domains/package.json
|
|
34469
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/package.json
|
|
34469
34470
|
var package_default2;
|
|
34470
34471
|
var init_package2 = __esm(() => {
|
|
34471
34472
|
package_default2 = {
|
|
34472
34473
|
name: "@aws-sdk/client-route-53-domains",
|
|
34473
|
-
version: "3.
|
|
34474
|
+
version: "3.1112.0",
|
|
34474
34475
|
description: "AWS SDK for JavaScript Route 53 Domains Client for Node.js, Browser and React Native",
|
|
34475
34476
|
homepage: "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-route-53-domains",
|
|
34476
34477
|
license: "Apache-2.0",
|
|
@@ -34541,7 +34542,7 @@ var init_package2 = __esm(() => {
|
|
|
34541
34542
|
};
|
|
34542
34543
|
});
|
|
34543
34544
|
|
|
34544
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/bdd.js
|
|
34545
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/bdd.js
|
|
34545
34546
|
var import_endpoints5, k3 = "ref", a3 = -1, b3 = true, c3 = "isSet", d3 = "PartitionResult", e3 = "booleanEquals", f3 = "getAttr", g3, h3, i3, j3, _data3, root3 = 2, r3 = 1e8, nodes3, bdd3;
|
|
34546
34547
|
var init_bdd2 = __esm(() => {
|
|
34547
34548
|
import_endpoints5 = __toESM(require_endpoints(), 1);
|
|
@@ -34618,7 +34619,7 @@ var init_bdd2 = __esm(() => {
|
|
|
34618
34619
|
bdd3 = import_endpoints5.BinaryDecisionDiagram.from(nodes3, root3, _data3.conditions, _data3.results);
|
|
34619
34620
|
});
|
|
34620
34621
|
|
|
34621
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/endpointResolver.js
|
|
34622
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/endpointResolver.js
|
|
34622
34623
|
var import_client30, import_endpoints6, cache3, defaultEndpointResolver3 = (endpointParams, context = {}) => {
|
|
34623
34624
|
return cache3.get(endpointParams, () => import_endpoints6.decideEndpoint(bdd3, {
|
|
34624
34625
|
endpointParams,
|
|
@@ -34636,7 +34637,7 @@ var init_endpointResolver2 = __esm(() => {
|
|
|
34636
34637
|
import_endpoints6.customEndpointFunctions.aws = import_client30.awsEndpointFunctions;
|
|
34637
34638
|
});
|
|
34638
34639
|
|
|
34639
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/models/Route53DomainsServiceException.js
|
|
34640
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/Route53DomainsServiceException.js
|
|
34640
34641
|
var import_client31, Route53DomainsServiceException;
|
|
34641
34642
|
var init_Route53DomainsServiceException = __esm(() => {
|
|
34642
34643
|
import_client31 = __toESM(require_client(), 1);
|
|
@@ -34648,7 +34649,7 @@ var init_Route53DomainsServiceException = __esm(() => {
|
|
|
34648
34649
|
};
|
|
34649
34650
|
});
|
|
34650
34651
|
|
|
34651
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/models/errors.js
|
|
34652
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/errors.js
|
|
34652
34653
|
var DomainLimitExceeded, InvalidInput2, OperationLimitExceeded, UnsupportedTLD, DnssecLimitExceeded, DuplicateRequest, TLDRulesViolation, TLDInMaintenance;
|
|
34653
34654
|
var init_errors2 = __esm(() => {
|
|
34654
34655
|
init_Route53DomainsServiceException();
|
|
@@ -34754,7 +34755,7 @@ var init_errors2 = __esm(() => {
|
|
|
34754
34755
|
};
|
|
34755
34756
|
});
|
|
34756
34757
|
|
|
34757
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/schemas/schemas_0.js
|
|
34758
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/schemas/schemas_0.js
|
|
34758
34759
|
var import_schema3, _A2 = "Availability", _AC = "AuthCode", _ACE = "AbuseContactEmail", _ACP = "AbuseContactPhone", _ACd = "AdminContact", _ADSTD = "AssociateDelegationSignerToDomain", _ADSTDR = "AssociateDelegationSignerToDomainRequest", _ADSTDRs = "AssociateDelegationSignerToDomainResponse", _ADTFAAA = "AcceptDomainTransferFromAnotherAwsAccount", _ADTFAAAR = "AcceptDomainTransferFromAnotherAwsAccountRequest", _ADTFAAARc = "AcceptDomainTransferFromAnotherAwsAccountResponse", _AI2 = "AccountId", _AL2 = "AddressLine", _ALd = "AddressLine1", _ALdd = "AddressLine2", _AP = "AdminPrivacy", _AR2 = "AutoRenew", _Al = "Algorithm", _BC = "BillingContact", _BD = "BillDate", _BP = "BillingPrivacy", _BR = "BillingRecord", _BRi = "BillingRecords", _C2 = "City", _CC2 = "CountryCode", _CD2 = "ContactDetail", _CDA = "CheckDomainAvailability", _CDAR = "CheckDomainAvailabilityRequest", _CDARh = "CheckDomainAvailabilityResponse", _CDT = "CheckDomainTransferability", _CDTR = "CheckDomainTransferabilityRequest", _CDTRh = "CheckDomainTransferabilityResponse", _CDTTAAA = "CancelDomainTransferToAnotherAwsAccount", _CDTTAAAR = "CancelDomainTransferToAnotherAwsAccountRequest", _CDTTAAARa = "CancelDomainTransferToAnotherAwsAccountResponse", _CDr = "CreationDate", _CEY = "CurrentExpiryYear", _CN2 = "ContactName", _CNo2 = "ContactNumber", _COP = "ChangeOwnershipPrice", _CT2 = "ContactType", _Co2 = "Consent", _Cu = "Currency", _D2 = "Digest", _DAC = "DomainAuthCode", _DD = "DeleteDomain", _DDAR = "DisableDomainAutoRenew", _DDARR = "DisableDomainAutoRenewRequest", _DDARRi = "DisableDomainAutoRenewResponse", _DDR = "DeleteDomainRequest", _DDRe = "DeleteDomainResponse", _DDSFD = "DisassociateDelegationSignerFromDomain", _DDSFDR = "DisassociateDelegationSignerFromDomainRequest", _DDSFDRi = "DisassociateDelegationSignerFromDomainResponse", _DDTL = "DisableDomainTransferLock", _DDTLR = "DisableDomainTransferLockRequest", _DDTLRi = "DisableDomainTransferLockResponse", _DIY = "DurationInYears", _DK = "DnssecKey", _DKL = "DnssecKeyList", _DKn = "DnssecKeys", _DLE = "DnssecLimitExceeded", _DLEo = "DomainLimitExceeded", _DN = "DomainName", _DP = "DomainPrice", _DPL = "DomainPriceList", _DR = "DuplicateRequest", _DS2 = "DomainSuggestion", _DSA = "DnssecSigningAttributes", _DSL = "DomainSuggestionsList", _DSLo = "DomainSummaryList", _DSn = "DnsSec", _DSo = "DomainSummary", _DT = "DigestType", _DTFD = "DeleteTagsForDomain", _DTFDR = "DeleteTagsForDomainRequest", _DTFDRe = "DeleteTagsForDomainResponse", _DTo = "DomainTransferability", _Do2 = "Domains", _E = "Email", _ED = "ExpirationDate", _EDAR = "EnableDomainAutoRenew", _EDARR = "EnableDomainAutoRenewRequest", _EDARRn = "EnableDomainAutoRenewResponse", _EDTL = "EnableDomainTransferLock", _EDTLR = "EnableDomainTransferLockRequest", _EDTLRn = "EnableDomainTransferLockResponse", _EP2 = "ExtraParams", _EPL = "ExtraParamList", _EPV = "ExtraParamValue", _EPx = "ExtraParam", _En = "End", _Ex = "Expiry", _F2 = "Fax", _FC = "FilterCondition", _FCi = "FilterConditions", _FIAK = "FIAuthKey", _FN = "FirstName", _Fl2 = "Flags", _GCRS = "GetContactReachabilityStatus", _GCRSR = "GetContactReachabilityStatusRequest", _GCRSRe = "GetContactReachabilityStatusResponse", _GDD = "GetDomainDetail", _GDDR = "GetDomainDetailRequest", _GDDRe = "GetDomainDetailResponse", _GDS = "GetDomainSuggestions", _GDSR = "GetDomainSuggestionsRequest", _GDSRe = "GetDomainSuggestionsResponse", _GI = "GlueIps", _GOD = "GetOperationDetail", _GODR = "GetOperationDetailRequest", _GODRe = "GetOperationDetailResponse", _I2 = "Id", _II2 = "InvalidInput", _IIn = "InvoiceId", _ILC = "IdnLangCode", _K2 = "Key", _KT2 = "KeyTag", _LD = "ListDomains", _LDR = "ListDomainsRequest", _LDRi = "ListDomainsResponse", _LN2 = "LastName", _LO = "ListOperations", _LOR = "ListOperationsRequest", _LORi = "ListOperationsResponse", _LP = "ListPrices", _LPR = "ListPricesRequest", _LPRi = "ListPricesResponse", _LTFD = "ListTagsForDomain", _LTFDR = "ListTagsForDomainRequest", _LTFDRi = "ListTagsForDomainResponse", _LUD = "LastUpdatedDate", _M2 = "Message", _MI2 = "MaxItems", _MP = "MaxPrice", _Ma2 = "Marker", _N2 = "Name", _NL = "NameserverList", _NPM = "NextPageMarker", _Na2 = "Nameservers", _Nam2 = "Nameserver", _O2 = "Operation", _OA2 = "OnlyAvailable", _OI = "OperationId", _OLE = "OperationLimitExceeded", _ON = "OrganizationName", _OS2 = "OperationSummary", _OSL = "OperationSummaryList", _Op = "Operator", _Ope = "Operations", _P2 = "Password", _PD = "PushDomain", _PDR = "PushDomainRequest", _PK2 = "PublicKey", _PN = "PhoneNumber", _PPAC = "PrivacyProtectAdminContact", _PPBC = "PrivacyProtectBillingContact", _PPRC = "PrivacyProtectRegistrantContact", _PPTC = "PrivacyProtectTechContact", _PWC = "PriceWithCurrency", _Pr2 = "Price", _Pri = "Prices", _R2 = "Reseller", _RC3 = "RegistrantContact", _RCRE = "ResendContactReachabilityEmail", _RCRER = "ResendContactReachabilityEmailRequest", _RCRERe = "ResendContactReachabilityEmailResponse", _RD2 = "RegisterDomain", _RDAC = "RetrieveDomainAuthCode", _RDACR = "RetrieveDomainAuthCodeRequest", _RDACRe = "RetrieveDomainAuthCodeResponse", _RDI = "RegistryDomainId", _RDR = "RegisterDomainRequest", _RDRe = "RegisterDomainResponse", _RDRen = "RenewDomainRequest", _RDRene = "RenewDomainResponse", _RDTFAAA = "RejectDomainTransferFromAnotherAwsAccount", _RDTFAAAR = "RejectDomainTransferFromAnotherAwsAccountRequest", _RDTFAAARe = "RejectDomainTransferFromAnotherAwsAccountResponse", _RDe = "RenewDomain", _RN2 = "RegistrarName", _ROA = "ResendOperationAuthorization", _ROAR = "ResendOperationAuthorizationRequest", _RP2 = "RegistrationPrice", _RPe = "RenewalPrice", _RPeg = "RegistrantPrivacy", _RPes = "RestorationPrice", _RU = "RegistrarUrl", _S2 = "State", _SA2 = "SigningAttributes", _SB = "SortBy", _SC2 = "SuggestionCount", _SCo = "SortCondition", _SD = "SubmittedDate", _SF = "StatusFlag", _SL = "StatusList", _SLu = "SuggestionsList", _SO = "SortOrder", _SS2 = "SubmittedSince", _St2 = "Status", _Sta2 = "Start", _T2 = "Transferability", _TC = "TechContact", _TD = "TransferDomain", _TDR = "TransferDomainRequest", _TDRr = "TransferDomainResponse", _TDTAAA = "TransferDomainToAnotherAwsAccount", _TDTAAAR = "TransferDomainToAnotherAwsAccountRequest", _TDTAAARr = "TransferDomainToAnotherAwsAccountResponse", _TL2 = "TransferLock", _TLDIM = "TLDInMaintenance", _TLDRV = "TLDRulesViolation", _TLa = "TagList", _TP2 = "TransferPrice", _TPe = "TechPrivacy", _TTD = "TagsToDelete", _TTU = "TagsToUpdate", _Ta2 = "Target", _Tag2 = "Tag", _Tl = "Tld", _Tr = "Transferable", _Ty = "Type", _UD = "UpdatedDate", _UDC = "UpdateDomainContact", _UDCP = "UpdateDomainContactPrivacy", _UDCPR = "UpdateDomainContactPrivacyRequest", _UDCPRp = "UpdateDomainContactPrivacyResponse", _UDCR = "UpdateDomainContactRequest", _UDCRp = "UpdateDomainContactResponse", _UDN = "UpdateDomainNameservers", _UDNR = "UpdateDomainNameserversRequest", _UDNRp = "UpdateDomainNameserversResponse", _UTFD = "UpdateTagsForDomain", _UTFDR = "UpdateTagsForDomainRequest", _UTFDRp = "UpdateTagsForDomainResponse", _UTLD = "UnsupportedTLD", _V2 = "Value", _VB = "ViewBilling", _VBR = "ViewBillingRequest", _VBRi = "ViewBillingResponse", _Va = "Values", _WIS = "WhoIsServer", _ZC = "ZipCode", _c3 = "client", _dN = "domainName", _e3 = "error", _eA = "emailAddress", _hE3 = "httpError", _iAV = "isAlreadyVerified", _m3 = "message", _rI = "requestId", _s3 = "smithy.ts.sdk.synthetic.com.amazonaws.route53domains", _st2 = "status", _t2 = "tld", n03 = "com.amazonaws.route53domains", _s_registry3, Route53DomainsServiceException$, n0_registry3, DnssecLimitExceeded$, DomainLimitExceeded$, DuplicateRequest$, InvalidInput$2, OperationLimitExceeded$, TLDInMaintenance$, TLDRulesViolation$, UnsupportedTLD$, errorTypeRegistries3, AddressLine, City, ContactName, ContactNumber, CountryCode, DomainAuthCode, Email, ExtraParamValue, FIAuthKey, Password, State, ZipCode, AcceptDomainTransferFromAnotherAwsAccountRequest$, AcceptDomainTransferFromAnotherAwsAccountResponse$, AssociateDelegationSignerToDomainRequest$, AssociateDelegationSignerToDomainResponse$, BillingRecord$, CancelDomainTransferToAnotherAwsAccountRequest$, CancelDomainTransferToAnotherAwsAccountResponse$, CheckDomainAvailabilityRequest$, CheckDomainAvailabilityResponse$, CheckDomainTransferabilityRequest$, CheckDomainTransferabilityResponse$, Consent$, ContactDetail$, DeleteDomainRequest$, DeleteDomainResponse$, DeleteTagsForDomainRequest$, DeleteTagsForDomainResponse$, DisableDomainAutoRenewRequest$, DisableDomainAutoRenewResponse$, DisableDomainTransferLockRequest$, DisableDomainTransferLockResponse$, DisassociateDelegationSignerFromDomainRequest$, DisassociateDelegationSignerFromDomainResponse$, DnssecKey$, DnssecSigningAttributes$, DomainPrice$, DomainSuggestion$, DomainSummary$, DomainTransferability$, EnableDomainAutoRenewRequest$, EnableDomainAutoRenewResponse$, EnableDomainTransferLockRequest$, EnableDomainTransferLockResponse$, ExtraParam$, FilterCondition$, GetContactReachabilityStatusRequest$, GetContactReachabilityStatusResponse$, GetDomainDetailRequest$, GetDomainDetailResponse$, GetDomainSuggestionsRequest$, GetDomainSuggestionsResponse$, GetOperationDetailRequest$, GetOperationDetailResponse$, ListDomainsRequest$, ListDomainsResponse$, ListOperationsRequest$, ListOperationsResponse$, ListPricesRequest$, ListPricesResponse$, ListTagsForDomainRequest$, ListTagsForDomainResponse$, Nameserver$, OperationSummary$, PriceWithCurrency$, PushDomainRequest$, RegisterDomainRequest$, RegisterDomainResponse$, RejectDomainTransferFromAnotherAwsAccountRequest$, RejectDomainTransferFromAnotherAwsAccountResponse$, RenewDomainRequest$, RenewDomainResponse$, ResendContactReachabilityEmailRequest$, ResendContactReachabilityEmailResponse$, ResendOperationAuthorizationRequest$, RetrieveDomainAuthCodeRequest$, RetrieveDomainAuthCodeResponse$, SortCondition$, Tag$2, TransferDomainRequest$, TransferDomainResponse$, TransferDomainToAnotherAwsAccountRequest$, TransferDomainToAnotherAwsAccountResponse$, UpdateDomainContactPrivacyRequest$, UpdateDomainContactPrivacyResponse$, UpdateDomainContactRequest$, UpdateDomainContactResponse$, UpdateDomainNameserversRequest$, UpdateDomainNameserversResponse$, UpdateTagsForDomainRequest$, UpdateTagsForDomainResponse$, ViewBillingRequest$, ViewBillingResponse$, __Unit = "unit", BillingRecords, DnssecKeyList, DomainPriceList, DomainStatusList, DomainSuggestionsList, DomainSummaryList, ExtraParamList, FilterConditions, GlueIpList, NameserverList, OperationStatusList, OperationSummaryList, OperationTypeList, TagKeyList2, TagList2, Values, AcceptDomainTransferFromAnotherAwsAccount$, AssociateDelegationSignerToDomain$, CancelDomainTransferToAnotherAwsAccount$, CheckDomainAvailability$, CheckDomainTransferability$, DeleteDomain$, DeleteTagsForDomain$, DisableDomainAutoRenew$, DisableDomainTransferLock$, DisassociateDelegationSignerFromDomain$, EnableDomainAutoRenew$, EnableDomainTransferLock$, GetContactReachabilityStatus$, GetDomainDetail$, GetDomainSuggestions$, GetOperationDetail$, ListDomains$, ListOperations$, ListPrices$, ListTagsForDomain$, PushDomain$, RegisterDomain$, RejectDomainTransferFromAnotherAwsAccount$, RenewDomain$, ResendContactReachabilityEmail$, ResendOperationAuthorization$, RetrieveDomainAuthCode$, TransferDomain$, TransferDomainToAnotherAwsAccount$, UpdateDomainContact$, UpdateDomainContactPrivacy$, UpdateDomainNameservers$, UpdateTagsForDomain$, ViewBilling$;
|
|
34759
34760
|
var init_schemas_02 = __esm(() => {
|
|
34760
34761
|
init_errors2();
|
|
@@ -35895,7 +35896,7 @@ var init_schemas_02 = __esm(() => {
|
|
|
35895
35896
|
];
|
|
35896
35897
|
});
|
|
35897
35898
|
|
|
35898
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeConfig.shared.js
|
|
35899
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeConfig.shared.js
|
|
35899
35900
|
var import_httpAuthSchemes5, import_protocols8, import_checksum2, import_client32, import_protocols9, import_serde5, getRuntimeConfig4 = (config) => {
|
|
35900
35901
|
return {
|
|
35901
35902
|
apiVersion: "2014-05-15",
|
|
@@ -35940,7 +35941,7 @@ var init_runtimeConfig_shared2 = __esm(() => {
|
|
|
35940
35941
|
import_serde5 = __toESM(require_serde(), 1);
|
|
35941
35942
|
});
|
|
35942
35943
|
|
|
35943
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeConfig.js
|
|
35944
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeConfig.js
|
|
35944
35945
|
var import_client33, import_httpAuthSchemes6, import_client34, import_config30, import_retry5, import_serde6, import_node_http_handler3, getRuntimeConfig5 = (config) => {
|
|
35945
35946
|
import_client34.emitWarningIfUnsupportedVersion(process.version);
|
|
35946
35947
|
const defaultsMode = import_config30.resolveDefaultsModeConfig(config);
|
|
@@ -35986,7 +35987,7 @@ var init_runtimeConfig2 = __esm(() => {
|
|
|
35986
35987
|
import_node_http_handler3 = __toESM(require_dist_cjs4(), 1);
|
|
35987
35988
|
});
|
|
35988
35989
|
|
|
35989
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/auth/httpAuthExtensionConfiguration.js
|
|
35990
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/auth/httpAuthExtensionConfiguration.js
|
|
35990
35991
|
var getHttpAuthExtensionConfiguration3 = (runtimeConfig) => {
|
|
35991
35992
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
35992
35993
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -36024,7 +36025,7 @@ var getHttpAuthExtensionConfiguration3 = (runtimeConfig) => {
|
|
|
36024
36025
|
};
|
|
36025
36026
|
};
|
|
36026
36027
|
|
|
36027
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeExtensions.js
|
|
36028
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeExtensions.js
|
|
36028
36029
|
var import_client35, import_client36, import_protocols10, resolveRuntimeExtensions3 = (runtimeConfig, extensions) => {
|
|
36029
36030
|
const extensionConfiguration = Object.assign(import_client35.getAwsRegionExtensionConfiguration(runtimeConfig), import_client36.getDefaultExtensionConfiguration(runtimeConfig), import_protocols10.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration3(runtimeConfig));
|
|
36030
36031
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
@@ -36036,7 +36037,7 @@ var init_runtimeExtensions2 = __esm(() => {
|
|
|
36036
36037
|
import_protocols10 = __toESM(require_protocols(), 1);
|
|
36037
36038
|
});
|
|
36038
36039
|
|
|
36039
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/Route53DomainsClient.js
|
|
36040
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/Route53DomainsClient.js
|
|
36040
36041
|
var import_client37, import_core8, import_client38, import_config31, import_endpoints7, import_protocols11, import_retry6, import_schema4, Route53DomainsClient;
|
|
36041
36042
|
var init_Route53DomainsClient = __esm(() => {
|
|
36042
36043
|
init_httpAuthSchemeProvider2();
|
|
@@ -36087,7 +36088,7 @@ var init_Route53DomainsClient = __esm(() => {
|
|
|
36087
36088
|
};
|
|
36088
36089
|
});
|
|
36089
36090
|
|
|
36090
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commandBuilder.js
|
|
36091
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commandBuilder.js
|
|
36091
36092
|
var import_client39, import_endpoints8, command3, _ep03, _mw03 = (Command3, cs, config, o2) => [];
|
|
36092
36093
|
var init_commandBuilder2 = __esm(() => {
|
|
36093
36094
|
init_EndpointParameters2();
|
|
@@ -36097,7 +36098,7 @@ var init_commandBuilder2 = __esm(() => {
|
|
|
36097
36098
|
_ep03 = {};
|
|
36098
36099
|
});
|
|
36099
36100
|
|
|
36100
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.js
|
|
36101
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.js
|
|
36101
36102
|
var AcceptDomainTransferFromAnotherAwsAccountCommand;
|
|
36102
36103
|
var init_AcceptDomainTransferFromAnotherAwsAccountCommand = __esm(() => {
|
|
36103
36104
|
init_commandBuilder2();
|
|
@@ -36106,7 +36107,7 @@ var init_AcceptDomainTransferFromAnotherAwsAccountCommand = __esm(() => {
|
|
|
36106
36107
|
};
|
|
36107
36108
|
});
|
|
36108
36109
|
|
|
36109
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/AssociateDelegationSignerToDomainCommand.js
|
|
36110
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/AssociateDelegationSignerToDomainCommand.js
|
|
36110
36111
|
var AssociateDelegationSignerToDomainCommand;
|
|
36111
36112
|
var init_AssociateDelegationSignerToDomainCommand = __esm(() => {
|
|
36112
36113
|
init_commandBuilder2();
|
|
@@ -36115,7 +36116,7 @@ var init_AssociateDelegationSignerToDomainCommand = __esm(() => {
|
|
|
36115
36116
|
};
|
|
36116
36117
|
});
|
|
36117
36118
|
|
|
36118
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CancelDomainTransferToAnotherAwsAccountCommand.js
|
|
36119
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CancelDomainTransferToAnotherAwsAccountCommand.js
|
|
36119
36120
|
var CancelDomainTransferToAnotherAwsAccountCommand;
|
|
36120
36121
|
var init_CancelDomainTransferToAnotherAwsAccountCommand = __esm(() => {
|
|
36121
36122
|
init_commandBuilder2();
|
|
@@ -36124,7 +36125,7 @@ var init_CancelDomainTransferToAnotherAwsAccountCommand = __esm(() => {
|
|
|
36124
36125
|
};
|
|
36125
36126
|
});
|
|
36126
36127
|
|
|
36127
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CheckDomainAvailabilityCommand.js
|
|
36128
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CheckDomainAvailabilityCommand.js
|
|
36128
36129
|
var CheckDomainAvailabilityCommand;
|
|
36129
36130
|
var init_CheckDomainAvailabilityCommand = __esm(() => {
|
|
36130
36131
|
init_commandBuilder2();
|
|
@@ -36133,7 +36134,7 @@ var init_CheckDomainAvailabilityCommand = __esm(() => {
|
|
|
36133
36134
|
};
|
|
36134
36135
|
});
|
|
36135
36136
|
|
|
36136
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CheckDomainTransferabilityCommand.js
|
|
36137
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CheckDomainTransferabilityCommand.js
|
|
36137
36138
|
var CheckDomainTransferabilityCommand;
|
|
36138
36139
|
var init_CheckDomainTransferabilityCommand = __esm(() => {
|
|
36139
36140
|
init_commandBuilder2();
|
|
@@ -36142,7 +36143,7 @@ var init_CheckDomainTransferabilityCommand = __esm(() => {
|
|
|
36142
36143
|
};
|
|
36143
36144
|
});
|
|
36144
36145
|
|
|
36145
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DeleteDomainCommand.js
|
|
36146
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DeleteDomainCommand.js
|
|
36146
36147
|
var DeleteDomainCommand;
|
|
36147
36148
|
var init_DeleteDomainCommand = __esm(() => {
|
|
36148
36149
|
init_commandBuilder2();
|
|
@@ -36151,7 +36152,7 @@ var init_DeleteDomainCommand = __esm(() => {
|
|
|
36151
36152
|
};
|
|
36152
36153
|
});
|
|
36153
36154
|
|
|
36154
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DeleteTagsForDomainCommand.js
|
|
36155
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DeleteTagsForDomainCommand.js
|
|
36155
36156
|
var DeleteTagsForDomainCommand;
|
|
36156
36157
|
var init_DeleteTagsForDomainCommand = __esm(() => {
|
|
36157
36158
|
init_commandBuilder2();
|
|
@@ -36160,7 +36161,7 @@ var init_DeleteTagsForDomainCommand = __esm(() => {
|
|
|
36160
36161
|
};
|
|
36161
36162
|
});
|
|
36162
36163
|
|
|
36163
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisableDomainAutoRenewCommand.js
|
|
36164
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisableDomainAutoRenewCommand.js
|
|
36164
36165
|
var DisableDomainAutoRenewCommand;
|
|
36165
36166
|
var init_DisableDomainAutoRenewCommand = __esm(() => {
|
|
36166
36167
|
init_commandBuilder2();
|
|
@@ -36169,7 +36170,7 @@ var init_DisableDomainAutoRenewCommand = __esm(() => {
|
|
|
36169
36170
|
};
|
|
36170
36171
|
});
|
|
36171
36172
|
|
|
36172
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisableDomainTransferLockCommand.js
|
|
36173
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisableDomainTransferLockCommand.js
|
|
36173
36174
|
var DisableDomainTransferLockCommand;
|
|
36174
36175
|
var init_DisableDomainTransferLockCommand = __esm(() => {
|
|
36175
36176
|
init_commandBuilder2();
|
|
@@ -36178,7 +36179,7 @@ var init_DisableDomainTransferLockCommand = __esm(() => {
|
|
|
36178
36179
|
};
|
|
36179
36180
|
});
|
|
36180
36181
|
|
|
36181
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisassociateDelegationSignerFromDomainCommand.js
|
|
36182
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisassociateDelegationSignerFromDomainCommand.js
|
|
36182
36183
|
var DisassociateDelegationSignerFromDomainCommand;
|
|
36183
36184
|
var init_DisassociateDelegationSignerFromDomainCommand = __esm(() => {
|
|
36184
36185
|
init_commandBuilder2();
|
|
@@ -36187,7 +36188,7 @@ var init_DisassociateDelegationSignerFromDomainCommand = __esm(() => {
|
|
|
36187
36188
|
};
|
|
36188
36189
|
});
|
|
36189
36190
|
|
|
36190
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/EnableDomainAutoRenewCommand.js
|
|
36191
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/EnableDomainAutoRenewCommand.js
|
|
36191
36192
|
var EnableDomainAutoRenewCommand;
|
|
36192
36193
|
var init_EnableDomainAutoRenewCommand = __esm(() => {
|
|
36193
36194
|
init_commandBuilder2();
|
|
@@ -36196,7 +36197,7 @@ var init_EnableDomainAutoRenewCommand = __esm(() => {
|
|
|
36196
36197
|
};
|
|
36197
36198
|
});
|
|
36198
36199
|
|
|
36199
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/EnableDomainTransferLockCommand.js
|
|
36200
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/EnableDomainTransferLockCommand.js
|
|
36200
36201
|
var EnableDomainTransferLockCommand;
|
|
36201
36202
|
var init_EnableDomainTransferLockCommand = __esm(() => {
|
|
36202
36203
|
init_commandBuilder2();
|
|
@@ -36205,7 +36206,7 @@ var init_EnableDomainTransferLockCommand = __esm(() => {
|
|
|
36205
36206
|
};
|
|
36206
36207
|
});
|
|
36207
36208
|
|
|
36208
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetContactReachabilityStatusCommand.js
|
|
36209
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetContactReachabilityStatusCommand.js
|
|
36209
36210
|
var GetContactReachabilityStatusCommand;
|
|
36210
36211
|
var init_GetContactReachabilityStatusCommand = __esm(() => {
|
|
36211
36212
|
init_commandBuilder2();
|
|
@@ -36214,7 +36215,7 @@ var init_GetContactReachabilityStatusCommand = __esm(() => {
|
|
|
36214
36215
|
};
|
|
36215
36216
|
});
|
|
36216
36217
|
|
|
36217
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetDomainDetailCommand.js
|
|
36218
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetDomainDetailCommand.js
|
|
36218
36219
|
var GetDomainDetailCommand;
|
|
36219
36220
|
var init_GetDomainDetailCommand = __esm(() => {
|
|
36220
36221
|
init_commandBuilder2();
|
|
@@ -36223,7 +36224,7 @@ var init_GetDomainDetailCommand = __esm(() => {
|
|
|
36223
36224
|
};
|
|
36224
36225
|
});
|
|
36225
36226
|
|
|
36226
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetDomainSuggestionsCommand.js
|
|
36227
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetDomainSuggestionsCommand.js
|
|
36227
36228
|
var GetDomainSuggestionsCommand;
|
|
36228
36229
|
var init_GetDomainSuggestionsCommand = __esm(() => {
|
|
36229
36230
|
init_commandBuilder2();
|
|
@@ -36232,7 +36233,7 @@ var init_GetDomainSuggestionsCommand = __esm(() => {
|
|
|
36232
36233
|
};
|
|
36233
36234
|
});
|
|
36234
36235
|
|
|
36235
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetOperationDetailCommand.js
|
|
36236
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetOperationDetailCommand.js
|
|
36236
36237
|
var GetOperationDetailCommand;
|
|
36237
36238
|
var init_GetOperationDetailCommand = __esm(() => {
|
|
36238
36239
|
init_commandBuilder2();
|
|
@@ -36241,7 +36242,7 @@ var init_GetOperationDetailCommand = __esm(() => {
|
|
|
36241
36242
|
};
|
|
36242
36243
|
});
|
|
36243
36244
|
|
|
36244
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListDomainsCommand.js
|
|
36245
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListDomainsCommand.js
|
|
36245
36246
|
var ListDomainsCommand;
|
|
36246
36247
|
var init_ListDomainsCommand = __esm(() => {
|
|
36247
36248
|
init_commandBuilder2();
|
|
@@ -36250,7 +36251,7 @@ var init_ListDomainsCommand = __esm(() => {
|
|
|
36250
36251
|
};
|
|
36251
36252
|
});
|
|
36252
36253
|
|
|
36253
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListOperationsCommand.js
|
|
36254
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListOperationsCommand.js
|
|
36254
36255
|
var ListOperationsCommand;
|
|
36255
36256
|
var init_ListOperationsCommand = __esm(() => {
|
|
36256
36257
|
init_commandBuilder2();
|
|
@@ -36259,7 +36260,7 @@ var init_ListOperationsCommand = __esm(() => {
|
|
|
36259
36260
|
};
|
|
36260
36261
|
});
|
|
36261
36262
|
|
|
36262
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListPricesCommand.js
|
|
36263
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListPricesCommand.js
|
|
36263
36264
|
var ListPricesCommand;
|
|
36264
36265
|
var init_ListPricesCommand = __esm(() => {
|
|
36265
36266
|
init_commandBuilder2();
|
|
@@ -36268,7 +36269,7 @@ var init_ListPricesCommand = __esm(() => {
|
|
|
36268
36269
|
};
|
|
36269
36270
|
});
|
|
36270
36271
|
|
|
36271
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListTagsForDomainCommand.js
|
|
36272
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListTagsForDomainCommand.js
|
|
36272
36273
|
var ListTagsForDomainCommand;
|
|
36273
36274
|
var init_ListTagsForDomainCommand = __esm(() => {
|
|
36274
36275
|
init_commandBuilder2();
|
|
@@ -36277,7 +36278,7 @@ var init_ListTagsForDomainCommand = __esm(() => {
|
|
|
36277
36278
|
};
|
|
36278
36279
|
});
|
|
36279
36280
|
|
|
36280
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/PushDomainCommand.js
|
|
36281
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/PushDomainCommand.js
|
|
36281
36282
|
var PushDomainCommand;
|
|
36282
36283
|
var init_PushDomainCommand = __esm(() => {
|
|
36283
36284
|
init_commandBuilder2();
|
|
@@ -36286,7 +36287,7 @@ var init_PushDomainCommand = __esm(() => {
|
|
|
36286
36287
|
};
|
|
36287
36288
|
});
|
|
36288
36289
|
|
|
36289
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RegisterDomainCommand.js
|
|
36290
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RegisterDomainCommand.js
|
|
36290
36291
|
var RegisterDomainCommand;
|
|
36291
36292
|
var init_RegisterDomainCommand = __esm(() => {
|
|
36292
36293
|
init_commandBuilder2();
|
|
@@ -36295,7 +36296,7 @@ var init_RegisterDomainCommand = __esm(() => {
|
|
|
36295
36296
|
};
|
|
36296
36297
|
});
|
|
36297
36298
|
|
|
36298
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RejectDomainTransferFromAnotherAwsAccountCommand.js
|
|
36299
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RejectDomainTransferFromAnotherAwsAccountCommand.js
|
|
36299
36300
|
var RejectDomainTransferFromAnotherAwsAccountCommand;
|
|
36300
36301
|
var init_RejectDomainTransferFromAnotherAwsAccountCommand = __esm(() => {
|
|
36301
36302
|
init_commandBuilder2();
|
|
@@ -36304,7 +36305,7 @@ var init_RejectDomainTransferFromAnotherAwsAccountCommand = __esm(() => {
|
|
|
36304
36305
|
};
|
|
36305
36306
|
});
|
|
36306
36307
|
|
|
36307
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RenewDomainCommand.js
|
|
36308
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RenewDomainCommand.js
|
|
36308
36309
|
var RenewDomainCommand;
|
|
36309
36310
|
var init_RenewDomainCommand = __esm(() => {
|
|
36310
36311
|
init_commandBuilder2();
|
|
@@ -36313,7 +36314,7 @@ var init_RenewDomainCommand = __esm(() => {
|
|
|
36313
36314
|
};
|
|
36314
36315
|
});
|
|
36315
36316
|
|
|
36316
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ResendContactReachabilityEmailCommand.js
|
|
36317
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ResendContactReachabilityEmailCommand.js
|
|
36317
36318
|
var ResendContactReachabilityEmailCommand;
|
|
36318
36319
|
var init_ResendContactReachabilityEmailCommand = __esm(() => {
|
|
36319
36320
|
init_commandBuilder2();
|
|
@@ -36322,7 +36323,7 @@ var init_ResendContactReachabilityEmailCommand = __esm(() => {
|
|
|
36322
36323
|
};
|
|
36323
36324
|
});
|
|
36324
36325
|
|
|
36325
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ResendOperationAuthorizationCommand.js
|
|
36326
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ResendOperationAuthorizationCommand.js
|
|
36326
36327
|
var ResendOperationAuthorizationCommand;
|
|
36327
36328
|
var init_ResendOperationAuthorizationCommand = __esm(() => {
|
|
36328
36329
|
init_commandBuilder2();
|
|
@@ -36331,7 +36332,7 @@ var init_ResendOperationAuthorizationCommand = __esm(() => {
|
|
|
36331
36332
|
};
|
|
36332
36333
|
});
|
|
36333
36334
|
|
|
36334
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RetrieveDomainAuthCodeCommand.js
|
|
36335
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RetrieveDomainAuthCodeCommand.js
|
|
36335
36336
|
var RetrieveDomainAuthCodeCommand;
|
|
36336
36337
|
var init_RetrieveDomainAuthCodeCommand = __esm(() => {
|
|
36337
36338
|
init_commandBuilder2();
|
|
@@ -36340,7 +36341,7 @@ var init_RetrieveDomainAuthCodeCommand = __esm(() => {
|
|
|
36340
36341
|
};
|
|
36341
36342
|
});
|
|
36342
36343
|
|
|
36343
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/TransferDomainCommand.js
|
|
36344
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/TransferDomainCommand.js
|
|
36344
36345
|
var TransferDomainCommand;
|
|
36345
36346
|
var init_TransferDomainCommand = __esm(() => {
|
|
36346
36347
|
init_commandBuilder2();
|
|
@@ -36349,7 +36350,7 @@ var init_TransferDomainCommand = __esm(() => {
|
|
|
36349
36350
|
};
|
|
36350
36351
|
});
|
|
36351
36352
|
|
|
36352
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/TransferDomainToAnotherAwsAccountCommand.js
|
|
36353
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/TransferDomainToAnotherAwsAccountCommand.js
|
|
36353
36354
|
var TransferDomainToAnotherAwsAccountCommand;
|
|
36354
36355
|
var init_TransferDomainToAnotherAwsAccountCommand = __esm(() => {
|
|
36355
36356
|
init_commandBuilder2();
|
|
@@ -36358,7 +36359,7 @@ var init_TransferDomainToAnotherAwsAccountCommand = __esm(() => {
|
|
|
36358
36359
|
};
|
|
36359
36360
|
});
|
|
36360
36361
|
|
|
36361
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainContactCommand.js
|
|
36362
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainContactCommand.js
|
|
36362
36363
|
var UpdateDomainContactCommand;
|
|
36363
36364
|
var init_UpdateDomainContactCommand = __esm(() => {
|
|
36364
36365
|
init_commandBuilder2();
|
|
@@ -36367,7 +36368,7 @@ var init_UpdateDomainContactCommand = __esm(() => {
|
|
|
36367
36368
|
};
|
|
36368
36369
|
});
|
|
36369
36370
|
|
|
36370
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainContactPrivacyCommand.js
|
|
36371
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainContactPrivacyCommand.js
|
|
36371
36372
|
var UpdateDomainContactPrivacyCommand;
|
|
36372
36373
|
var init_UpdateDomainContactPrivacyCommand = __esm(() => {
|
|
36373
36374
|
init_commandBuilder2();
|
|
@@ -36376,7 +36377,7 @@ var init_UpdateDomainContactPrivacyCommand = __esm(() => {
|
|
|
36376
36377
|
};
|
|
36377
36378
|
});
|
|
36378
36379
|
|
|
36379
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainNameserversCommand.js
|
|
36380
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainNameserversCommand.js
|
|
36380
36381
|
var UpdateDomainNameserversCommand;
|
|
36381
36382
|
var init_UpdateDomainNameserversCommand = __esm(() => {
|
|
36382
36383
|
init_commandBuilder2();
|
|
@@ -36385,7 +36386,7 @@ var init_UpdateDomainNameserversCommand = __esm(() => {
|
|
|
36385
36386
|
};
|
|
36386
36387
|
});
|
|
36387
36388
|
|
|
36388
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateTagsForDomainCommand.js
|
|
36389
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateTagsForDomainCommand.js
|
|
36389
36390
|
var UpdateTagsForDomainCommand;
|
|
36390
36391
|
var init_UpdateTagsForDomainCommand = __esm(() => {
|
|
36391
36392
|
init_commandBuilder2();
|
|
@@ -36394,7 +36395,7 @@ var init_UpdateTagsForDomainCommand = __esm(() => {
|
|
|
36394
36395
|
};
|
|
36395
36396
|
});
|
|
36396
36397
|
|
|
36397
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ViewBillingCommand.js
|
|
36398
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ViewBillingCommand.js
|
|
36398
36399
|
var ViewBillingCommand;
|
|
36399
36400
|
var init_ViewBillingCommand = __esm(() => {
|
|
36400
36401
|
init_commandBuilder2();
|
|
@@ -36403,7 +36404,7 @@ var init_ViewBillingCommand = __esm(() => {
|
|
|
36403
36404
|
};
|
|
36404
36405
|
});
|
|
36405
36406
|
|
|
36406
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListDomainsPaginator.js
|
|
36407
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListDomainsPaginator.js
|
|
36407
36408
|
var import_core9, paginateListDomains;
|
|
36408
36409
|
var init_ListDomainsPaginator = __esm(() => {
|
|
36409
36410
|
init_ListDomainsCommand();
|
|
@@ -36412,7 +36413,7 @@ var init_ListDomainsPaginator = __esm(() => {
|
|
|
36412
36413
|
paginateListDomains = import_core9.createPaginator(Route53DomainsClient, ListDomainsCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
36413
36414
|
});
|
|
36414
36415
|
|
|
36415
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListOperationsPaginator.js
|
|
36416
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListOperationsPaginator.js
|
|
36416
36417
|
var import_core10, paginateListOperations;
|
|
36417
36418
|
var init_ListOperationsPaginator = __esm(() => {
|
|
36418
36419
|
init_ListOperationsCommand();
|
|
@@ -36421,7 +36422,7 @@ var init_ListOperationsPaginator = __esm(() => {
|
|
|
36421
36422
|
paginateListOperations = import_core10.createPaginator(Route53DomainsClient, ListOperationsCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
36422
36423
|
});
|
|
36423
36424
|
|
|
36424
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListPricesPaginator.js
|
|
36425
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListPricesPaginator.js
|
|
36425
36426
|
var import_core11, paginateListPrices;
|
|
36426
36427
|
var init_ListPricesPaginator = __esm(() => {
|
|
36427
36428
|
init_ListPricesCommand();
|
|
@@ -36430,7 +36431,7 @@ var init_ListPricesPaginator = __esm(() => {
|
|
|
36430
36431
|
paginateListPrices = import_core11.createPaginator(Route53DomainsClient, ListPricesCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
36431
36432
|
});
|
|
36432
36433
|
|
|
36433
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ViewBillingPaginator.js
|
|
36434
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ViewBillingPaginator.js
|
|
36434
36435
|
var import_core12, paginateViewBilling;
|
|
36435
36436
|
var init_ViewBillingPaginator = __esm(() => {
|
|
36436
36437
|
init_ViewBillingCommand();
|
|
@@ -36439,7 +36440,7 @@ var init_ViewBillingPaginator = __esm(() => {
|
|
|
36439
36440
|
paginateViewBilling = import_core12.createPaginator(Route53DomainsClient, ViewBillingCommand, "Marker", "NextPageMarker", "MaxItems");
|
|
36440
36441
|
});
|
|
36441
36442
|
|
|
36442
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/Route53Domains.js
|
|
36443
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/Route53Domains.js
|
|
36443
36444
|
var import_client40, commands4, paginators2, Route53Domains;
|
|
36444
36445
|
var init_Route53Domains = __esm(() => {
|
|
36445
36446
|
init_AcceptDomainTransferFromAnotherAwsAccountCommand();
|
|
@@ -36529,7 +36530,7 @@ var init_Route53Domains = __esm(() => {
|
|
|
36529
36530
|
import_client40.createAggregatedClient(commands4, Route53Domains, { paginators: paginators2 });
|
|
36530
36531
|
});
|
|
36531
36532
|
|
|
36532
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/index.js
|
|
36533
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/index.js
|
|
36533
36534
|
var init_commands2 = __esm(() => {
|
|
36534
36535
|
init_AcceptDomainTransferFromAnotherAwsAccountCommand();
|
|
36535
36536
|
init_AssociateDelegationSignerToDomainCommand();
|
|
@@ -36567,10 +36568,10 @@ var init_commands2 = __esm(() => {
|
|
|
36567
36568
|
init_ViewBillingCommand();
|
|
36568
36569
|
});
|
|
36569
36570
|
|
|
36570
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/Interfaces.js
|
|
36571
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/Interfaces.js
|
|
36571
36572
|
var init_Interfaces2 = () => {};
|
|
36572
36573
|
|
|
36573
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/index.js
|
|
36574
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/index.js
|
|
36574
36575
|
var init_pagination2 = __esm(() => {
|
|
36575
36576
|
init_Interfaces2();
|
|
36576
36577
|
init_ListDomainsPaginator();
|
|
@@ -36579,13 +36580,13 @@ var init_pagination2 = __esm(() => {
|
|
|
36579
36580
|
init_ViewBillingPaginator();
|
|
36580
36581
|
});
|
|
36581
36582
|
|
|
36582
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/models/enums.js
|
|
36583
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/enums.js
|
|
36583
36584
|
var init_enums2 = () => {};
|
|
36584
36585
|
|
|
36585
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/models/models_0.js
|
|
36586
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/models_0.js
|
|
36586
36587
|
var init_models_02 = () => {};
|
|
36587
36588
|
|
|
36588
|
-
// node_modules/@aws-sdk/client-route-53-domains/dist-es/index.js
|
|
36589
|
+
// ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/index.js
|
|
36589
36590
|
var init_dist_es13 = __esm(() => {
|
|
36590
36591
|
init_Route53DomainsClient();
|
|
36591
36592
|
init_Route53Domains();
|
|
@@ -36597,7 +36598,7 @@ var init_dist_es13 = __esm(() => {
|
|
|
36597
36598
|
init_models_02();
|
|
36598
36599
|
});
|
|
36599
36600
|
|
|
36600
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js
|
|
36601
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js
|
|
36601
36602
|
var import_client42, import_config32, resolveCredentialSource2 = (credentialSource, profileName, logger) => {
|
|
36602
36603
|
const sourceProvidersMap = {
|
|
36603
36604
|
EcsContainer: async (options) => {
|
|
@@ -36628,7 +36629,7 @@ var init_resolveCredentialSource2 = __esm(() => {
|
|
|
36628
36629
|
import_config32 = __toESM(require_config(), 1);
|
|
36629
36630
|
});
|
|
36630
36631
|
|
|
36631
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js
|
|
36632
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js
|
|
36632
36633
|
var import_client43, import_config33, isAssumeRoleProfile2 = (arg, { profile = "default", logger } = {}) => {
|
|
36633
36634
|
return Boolean(arg) && typeof arg === "object" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1 && ["undefined", "string"].indexOf(typeof arg.external_id) > -1 && ["undefined", "string"].indexOf(typeof arg.mfa_serial) > -1 && (isAssumeRoleWithSourceProfile2(arg, { profile, logger }) || isCredentialSourceProfile2(arg, { profile, logger }));
|
|
36634
36635
|
}, isAssumeRoleWithSourceProfile2 = (arg, { profile, logger }) => {
|
|
@@ -36696,7 +36697,7 @@ var init_resolveAssumeRoleCredentials2 = __esm(() => {
|
|
|
36696
36697
|
import_config33 = __toESM(require_config(), 1);
|
|
36697
36698
|
});
|
|
36698
36699
|
|
|
36699
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js
|
|
36700
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js
|
|
36700
36701
|
var import_client44, isLoginProfile2 = (data) => {
|
|
36701
36702
|
return Boolean(data && data.login_session);
|
|
36702
36703
|
}, resolveLoginCredentials2 = async (profileName, options, callerClientConfig) => {
|
|
@@ -36711,7 +36712,7 @@ var init_resolveLoginCredentials2 = __esm(() => {
|
|
|
36711
36712
|
import_client44 = __toESM(require_client2(), 1);
|
|
36712
36713
|
});
|
|
36713
36714
|
|
|
36714
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js
|
|
36715
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js
|
|
36715
36716
|
var import_client45, isProcessProfile2 = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.credential_process === "string", resolveProcessCredentials3 = async (options, profile) => Promise.resolve().then(() => (init_dist_es7(), exports_dist_es6)).then(({ fromProcess: fromProcess2 }) => fromProcess2({
|
|
36716
36717
|
...options,
|
|
36717
36718
|
profile
|
|
@@ -36720,7 +36721,7 @@ var init_resolveProcessCredentials3 = __esm(() => {
|
|
|
36720
36721
|
import_client45 = __toESM(require_client2(), 1);
|
|
36721
36722
|
});
|
|
36722
36723
|
|
|
36723
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js
|
|
36724
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js
|
|
36724
36725
|
var import_client46, resolveSsoCredentials2 = async (profile, profileData, options = {}, callerClientConfig) => {
|
|
36725
36726
|
const { fromSSO: fromSSO2 } = await Promise.resolve().then(() => (init_dist_es5(), exports_dist_es4));
|
|
36726
36727
|
return fromSSO2({
|
|
@@ -36742,7 +36743,7 @@ var init_resolveSsoCredentials2 = __esm(() => {
|
|
|
36742
36743
|
import_client46 = __toESM(require_client2(), 1);
|
|
36743
36744
|
});
|
|
36744
36745
|
|
|
36745
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js
|
|
36746
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js
|
|
36746
36747
|
var import_client47, isStaticCredsProfile2 = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.aws_access_key_id === "string" && typeof arg.aws_secret_access_key === "string" && ["undefined", "string"].indexOf(typeof arg.aws_session_token) > -1 && ["undefined", "string"].indexOf(typeof arg.aws_account_id) > -1, resolveStaticCredentials2 = async (profile, options) => {
|
|
36747
36748
|
options?.logger?.debug("@aws-sdk/credential-provider-ini - resolveStaticCredentials");
|
|
36748
36749
|
const credentials = {
|
|
@@ -36758,7 +36759,7 @@ var init_resolveStaticCredentials2 = __esm(() => {
|
|
|
36758
36759
|
import_client47 = __toESM(require_client2(), 1);
|
|
36759
36760
|
});
|
|
36760
36761
|
|
|
36761
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js
|
|
36762
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js
|
|
36762
36763
|
var import_client48, isWebIdentityProfile2 = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.web_identity_token_file === "string" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1, resolveWebIdentityCredentials2 = async (profile, options, callerClientConfig) => Promise.resolve().then(() => (init_dist_es8(), exports_dist_es7)).then(({ fromTokenFile: fromTokenFile2 }) => fromTokenFile2({
|
|
36763
36764
|
webIdentityTokenFile: profile.web_identity_token_file,
|
|
36764
36765
|
roleArn: profile.role_arn,
|
|
@@ -36773,7 +36774,7 @@ var init_resolveWebIdentityCredentials2 = __esm(() => {
|
|
|
36773
36774
|
import_client48 = __toESM(require_client2(), 1);
|
|
36774
36775
|
});
|
|
36775
36776
|
|
|
36776
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js
|
|
36777
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js
|
|
36777
36778
|
var import_config34, resolveProfileData2 = async (profileName, profiles, options, callerClientConfig, visitedProfiles = {}, isAssumeRoleRecursiveCall = false) => {
|
|
36778
36779
|
const data = profiles[profileName];
|
|
36779
36780
|
if (Object.keys(visitedProfiles).length > 0 && isStaticCredsProfile2(data)) {
|
|
@@ -36809,7 +36810,7 @@ var init_resolveProfileData2 = __esm(() => {
|
|
|
36809
36810
|
import_config34 = __toESM(require_config(), 1);
|
|
36810
36811
|
});
|
|
36811
36812
|
|
|
36812
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js
|
|
36813
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js
|
|
36813
36814
|
var import_config35, fromIni2 = (init = {}) => async ({ callerClientConfig } = {}) => {
|
|
36814
36815
|
init.logger?.debug("@aws-sdk/credential-provider-ini - fromIni");
|
|
36815
36816
|
const profiles = await import_config35.parseKnownFiles(init);
|
|
@@ -36822,7 +36823,7 @@ var init_fromIni2 = __esm(() => {
|
|
|
36822
36823
|
import_config35 = __toESM(require_config(), 1);
|
|
36823
36824
|
});
|
|
36824
36825
|
|
|
36825
|
-
// node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js
|
|
36826
|
+
// ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.972.53/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js
|
|
36826
36827
|
var init_dist_es14 = __esm(() => {
|
|
36827
36828
|
init_fromIni2();
|
|
36828
36829
|
});
|
|
@@ -41346,7 +41347,7 @@ var init_interactive = __esm(() => {
|
|
|
41346
41347
|
init_stdout();
|
|
41347
41348
|
});
|
|
41348
41349
|
|
|
41349
|
-
//
|
|
41350
|
+
// ../events/dist/commander.js
|
|
41350
41351
|
var exports_commander = {};
|
|
41351
41352
|
__export(exports_commander, {
|
|
41352
41353
|
registerEventsCommands: () => registerEventsCommands,
|
|
@@ -41360,8 +41361,12 @@ import { existsSync as existsSync4 } from "fs";
|
|
|
41360
41361
|
import { homedir as homedir5 } from "os";
|
|
41361
41362
|
import { join as join6 } from "path";
|
|
41362
41363
|
import { createHmac, timingSafeEqual } from "crypto";
|
|
41364
|
+
import { lookup as dnsLookup } from "dns/promises";
|
|
41365
|
+
import { isIP as isIP2 } from "net";
|
|
41363
41366
|
import { randomUUID } from "crypto";
|
|
41364
41367
|
import { spawn } from "child_process";
|
|
41368
|
+
import { request as nodeHttpRequest } from "http";
|
|
41369
|
+
import { request as nodeHttpsRequest } from "https";
|
|
41365
41370
|
import { randomUUID as randomUUID2 } from "crypto";
|
|
41366
41371
|
function getPathValue(input, path) {
|
|
41367
41372
|
return path.split(".").reduce((value, part) => {
|
|
@@ -41758,6 +41763,177 @@ function signPayload(secret, timestamp, body) {
|
|
|
41758
41763
|
const digest = createHmac("sha256", secret).update(buildSignatureBase(timestamp, body)).digest("hex");
|
|
41759
41764
|
return `sha256=${digest}`;
|
|
41760
41765
|
}
|
|
41766
|
+
function isPrivateAddress(address) {
|
|
41767
|
+
const normalized = stripZoneId(address);
|
|
41768
|
+
const version2 = isIP2(normalized);
|
|
41769
|
+
if (version2 === 4) {
|
|
41770
|
+
const integer = ipv4ToInt(normalized);
|
|
41771
|
+
if (integer === undefined)
|
|
41772
|
+
return true;
|
|
41773
|
+
return IPV4_PRIVATE_RANGES.some(([low, high]) => integer >= low && integer <= high);
|
|
41774
|
+
}
|
|
41775
|
+
if (version2 === 6) {
|
|
41776
|
+
const groups = ipv6Groups(normalized);
|
|
41777
|
+
if (!groups)
|
|
41778
|
+
return true;
|
|
41779
|
+
for (const prefix of IPV6_SPECIAL_PREFIXES) {
|
|
41780
|
+
if (!ipv6MatchesPrefix(groups, prefix.groups, prefix.bits))
|
|
41781
|
+
continue;
|
|
41782
|
+
if (prefix.bits === 96 && groups[5] === 65535) {
|
|
41783
|
+
return isPrivateAddress(ipv4IntToString(groups[6] << 16 | groups[7]));
|
|
41784
|
+
}
|
|
41785
|
+
if (prefix.bits === 16 && groups[0] === 8194) {
|
|
41786
|
+
return isPrivateAddress(ipv4IntToString(groups[1] << 16 | groups[2]));
|
|
41787
|
+
}
|
|
41788
|
+
return true;
|
|
41789
|
+
}
|
|
41790
|
+
return false;
|
|
41791
|
+
}
|
|
41792
|
+
return true;
|
|
41793
|
+
}
|
|
41794
|
+
async function resolveWebhookTarget(url, policy = {}) {
|
|
41795
|
+
const hostname = normalizeHostname(url.hostname);
|
|
41796
|
+
const allowlist = (policy.allowPrivateHosts ?? []).map((entry) => normalizeHostname(entry.toLowerCase()));
|
|
41797
|
+
if (allowlist.includes(hostname)) {
|
|
41798
|
+
const version22 = isIP2(hostname);
|
|
41799
|
+
if (version22 === 4 || version22 === 6) {
|
|
41800
|
+
return { hostname, addresses: [hostname] };
|
|
41801
|
+
}
|
|
41802
|
+
const lookup2 = policy.lookup ?? defaultTargetLookup;
|
|
41803
|
+
let resolved2;
|
|
41804
|
+
try {
|
|
41805
|
+
resolved2 = await lookup2(hostname);
|
|
41806
|
+
} catch {
|
|
41807
|
+
throw new Error(`Webhook target ${hostname} could not be resolved`);
|
|
41808
|
+
}
|
|
41809
|
+
if (!Array.isArray(resolved2) || resolved2.length === 0) {
|
|
41810
|
+
throw new Error(`Webhook target ${hostname} resolved to no addresses`);
|
|
41811
|
+
}
|
|
41812
|
+
const addresses = resolved2.map((entry) => normalizeHostname(entry.address));
|
|
41813
|
+
return { hostname, addresses };
|
|
41814
|
+
}
|
|
41815
|
+
const version2 = isIP2(hostname);
|
|
41816
|
+
if (version2 === 4 || version2 === 6) {
|
|
41817
|
+
if (isPrivateAddress(hostname)) {
|
|
41818
|
+
throw new Error(`Webhook target ${hostname} is a private or special-use address`);
|
|
41819
|
+
}
|
|
41820
|
+
return { hostname, addresses: [hostname] };
|
|
41821
|
+
}
|
|
41822
|
+
const lookup = policy.lookup ?? defaultTargetLookup;
|
|
41823
|
+
let resolved;
|
|
41824
|
+
try {
|
|
41825
|
+
resolved = await lookup(hostname);
|
|
41826
|
+
} catch {
|
|
41827
|
+
throw new Error(`Webhook target ${hostname} could not be resolved`);
|
|
41828
|
+
}
|
|
41829
|
+
if (!Array.isArray(resolved) || resolved.length === 0) {
|
|
41830
|
+
throw new Error(`Webhook target ${hostname} resolved to no addresses`);
|
|
41831
|
+
}
|
|
41832
|
+
const allowed = [];
|
|
41833
|
+
for (const entry of resolved) {
|
|
41834
|
+
const address = normalizeHostname(entry.address);
|
|
41835
|
+
if (isPrivateAddress(address)) {
|
|
41836
|
+
if (allowlist.includes(address)) {
|
|
41837
|
+
allowed.push(address);
|
|
41838
|
+
continue;
|
|
41839
|
+
}
|
|
41840
|
+
throw new Error(`Webhook target ${hostname} resolves to private or special-use address ${address}`);
|
|
41841
|
+
}
|
|
41842
|
+
allowed.push(address);
|
|
41843
|
+
}
|
|
41844
|
+
if (allowed.length === 0) {
|
|
41845
|
+
throw new Error(`Webhook target ${hostname} resolved to no public addresses`);
|
|
41846
|
+
}
|
|
41847
|
+
return { hostname, addresses: allowed };
|
|
41848
|
+
}
|
|
41849
|
+
function normalizeMaxRedirects(value) {
|
|
41850
|
+
if (value === undefined)
|
|
41851
|
+
return DEFAULT_MAX_REDIRECTS;
|
|
41852
|
+
if (!Number.isInteger(value) || value < 0)
|
|
41853
|
+
throw new Error("webhookTargetPolicy.maxRedirects must be a non-negative integer");
|
|
41854
|
+
return value;
|
|
41855
|
+
}
|
|
41856
|
+
function normalizeHostname(hostname) {
|
|
41857
|
+
const lower = hostname.toLowerCase();
|
|
41858
|
+
if (lower.startsWith("[") && lower.endsWith("]"))
|
|
41859
|
+
return lower.slice(1, -1);
|
|
41860
|
+
return lower;
|
|
41861
|
+
}
|
|
41862
|
+
function stripZoneId(address) {
|
|
41863
|
+
const percent = address.indexOf("%");
|
|
41864
|
+
return percent === -1 ? address : address.slice(0, percent);
|
|
41865
|
+
}
|
|
41866
|
+
function ipv4ToInt(address) {
|
|
41867
|
+
const parts = address.split(".");
|
|
41868
|
+
if (parts.length !== 4)
|
|
41869
|
+
return;
|
|
41870
|
+
let value = 0;
|
|
41871
|
+
for (const part of parts) {
|
|
41872
|
+
if (!/^\d{1,3}$/.test(part))
|
|
41873
|
+
return;
|
|
41874
|
+
const octet = Number(part);
|
|
41875
|
+
if (octet > 255)
|
|
41876
|
+
return;
|
|
41877
|
+
value = value << 8 | octet;
|
|
41878
|
+
}
|
|
41879
|
+
return value >>> 0;
|
|
41880
|
+
}
|
|
41881
|
+
function ipv4IntToString(integer) {
|
|
41882
|
+
return [
|
|
41883
|
+
integer >>> 24 & 255,
|
|
41884
|
+
integer >>> 16 & 255,
|
|
41885
|
+
integer >>> 8 & 255,
|
|
41886
|
+
integer & 255
|
|
41887
|
+
].join(".");
|
|
41888
|
+
}
|
|
41889
|
+
function ipv6Groups(address) {
|
|
41890
|
+
const raw = stripZoneId(address);
|
|
41891
|
+
const doubleColon = raw.indexOf("::");
|
|
41892
|
+
const headText = doubleColon === -1 ? raw : raw.slice(0, doubleColon);
|
|
41893
|
+
const tailText = doubleColon === -1 ? "" : raw.slice(doubleColon + 2);
|
|
41894
|
+
const parseGroups = (text) => {
|
|
41895
|
+
if (text === "")
|
|
41896
|
+
return [];
|
|
41897
|
+
const out = [];
|
|
41898
|
+
for (const part of text.split(":")) {
|
|
41899
|
+
if (part.includes(".")) {
|
|
41900
|
+
const v4 = ipv4ToInt(part);
|
|
41901
|
+
if (v4 === undefined)
|
|
41902
|
+
return;
|
|
41903
|
+
out.push(v4 >>> 16 & 65535, v4 & 65535);
|
|
41904
|
+
} else {
|
|
41905
|
+
if (!/^[0-9a-fA-F]{1,4}$/.test(part))
|
|
41906
|
+
return;
|
|
41907
|
+
out.push(parseInt(part, 16));
|
|
41908
|
+
}
|
|
41909
|
+
}
|
|
41910
|
+
return out;
|
|
41911
|
+
};
|
|
41912
|
+
const head = parseGroups(headText);
|
|
41913
|
+
if (!head)
|
|
41914
|
+
return;
|
|
41915
|
+
const tail = parseGroups(tailText);
|
|
41916
|
+
if (!tail)
|
|
41917
|
+
return;
|
|
41918
|
+
const total = head.length + tail.length;
|
|
41919
|
+
if (doubleColon === -1) {
|
|
41920
|
+
return total === 8 ? head : undefined;
|
|
41921
|
+
}
|
|
41922
|
+
if (total >= 8)
|
|
41923
|
+
return;
|
|
41924
|
+
return [...head, ...new Array(8 - total).fill(0), ...tail];
|
|
41925
|
+
}
|
|
41926
|
+
function ipv6MatchesPrefix(groups, prefixGroups, prefixBits) {
|
|
41927
|
+
let remaining = prefixBits;
|
|
41928
|
+
for (let index = 0;index < prefixGroups.length && remaining > 0; index += 1) {
|
|
41929
|
+
const take = Math.min(16, remaining);
|
|
41930
|
+
const mask = 65535 << 16 - take & 65535;
|
|
41931
|
+
if ((groups[index] & mask) !== (prefixGroups[index] & mask))
|
|
41932
|
+
return false;
|
|
41933
|
+
remaining -= take;
|
|
41934
|
+
}
|
|
41935
|
+
return true;
|
|
41936
|
+
}
|
|
41761
41937
|
function now() {
|
|
41762
41938
|
return new Date().toISOString();
|
|
41763
41939
|
}
|
|
@@ -41788,9 +41964,18 @@ function buildWebhookRequest(event, channel, options = {}) {
|
|
|
41788
41964
|
}
|
|
41789
41965
|
return { body, headers };
|
|
41790
41966
|
}
|
|
41967
|
+
function normalizeWebhookUrl(raw) {
|
|
41968
|
+
const url = new URL(raw);
|
|
41969
|
+
if (url.username !== "" || url.password !== "") {
|
|
41970
|
+
url.username = "";
|
|
41971
|
+
url.password = "";
|
|
41972
|
+
}
|
|
41973
|
+
return url.toString();
|
|
41974
|
+
}
|
|
41791
41975
|
async function dispatchWebhook(event, channel, options = {}) {
|
|
41792
41976
|
if (!channel.webhook)
|
|
41793
41977
|
throw new Error(`Channel ${channel.id} has no webhook config`);
|
|
41978
|
+
const webhookUrl = normalizeWebhookUrl(channel.webhook.url);
|
|
41794
41979
|
const startedAt = now();
|
|
41795
41980
|
let secret = channel.webhook.secret;
|
|
41796
41981
|
if (channel.webhook.secretRef) {
|
|
@@ -41807,10 +41992,14 @@ async function dispatchWebhook(event, channel, options = {}) {
|
|
|
41807
41992
|
}
|
|
41808
41993
|
const timestamp = (options.now?.() ?? new Date).toISOString();
|
|
41809
41994
|
const { body, headers } = buildWebhookRequest(event, channel, { secret, timestamp });
|
|
41995
|
+
const validateTargets = options.webhookTargetPolicy !== undefined || options.fetchImpl === undefined;
|
|
41996
|
+
if (validateTargets) {
|
|
41997
|
+
return dispatchValidatedWebhook(event, channel, { body, headers, startedAt, options });
|
|
41998
|
+
}
|
|
41810
41999
|
const controller = new AbortController;
|
|
41811
42000
|
const timeout = setTimeout(() => controller.abort(), channel.webhook.timeoutMs ?? 15000);
|
|
41812
42001
|
try {
|
|
41813
|
-
const response = await (options.fetchImpl ?? fetch)(
|
|
42002
|
+
const response = await (options.fetchImpl ?? fetch)(webhookUrl, {
|
|
41814
42003
|
method: "POST",
|
|
41815
42004
|
headers,
|
|
41816
42005
|
body,
|
|
@@ -41838,6 +42027,130 @@ async function dispatchWebhook(event, channel, options = {}) {
|
|
|
41838
42027
|
clearTimeout(timeout);
|
|
41839
42028
|
}
|
|
41840
42029
|
}
|
|
42030
|
+
function isRedirectStatus(status) {
|
|
42031
|
+
return status === 301 || status === 302 || status === 303 || status === 307 || status === 308;
|
|
42032
|
+
}
|
|
42033
|
+
function redirectKeepsBody(status) {
|
|
42034
|
+
return status === 307 || status === 308;
|
|
42035
|
+
}
|
|
42036
|
+
async function pinnedNativeRequest(target, addresses, method, headers, body, signal, tls2) {
|
|
42037
|
+
const isHttps = target.protocol === "https:";
|
|
42038
|
+
if (!isHttps && target.protocol !== "http:") {
|
|
42039
|
+
throw new Error(`Webhook target uses unsupported protocol ${target.protocol}`);
|
|
42040
|
+
}
|
|
42041
|
+
const defaultPort = isHttps ? 443 : 80;
|
|
42042
|
+
const port = target.port ? Number(target.port) : defaultPort;
|
|
42043
|
+
const requestOptions = {
|
|
42044
|
+
hostname: target.hostname,
|
|
42045
|
+
port,
|
|
42046
|
+
path: `${target.pathname}${target.search}`,
|
|
42047
|
+
method,
|
|
42048
|
+
headers,
|
|
42049
|
+
...tls2?.ca ? { ca: tls2.ca } : {},
|
|
42050
|
+
lookup: (hostname, _options, callback) => {
|
|
42051
|
+
const entries = addresses.map((address) => ({
|
|
42052
|
+
address,
|
|
42053
|
+
family: address.includes(":") ? 6 : 4
|
|
42054
|
+
}));
|
|
42055
|
+
callback(null, entries);
|
|
42056
|
+
}
|
|
42057
|
+
};
|
|
42058
|
+
return new Promise((resolve3, reject) => {
|
|
42059
|
+
const request = isHttps ? nodeHttpsRequest(requestOptions, onResponse) : nodeHttpRequest(requestOptions, onResponse);
|
|
42060
|
+
const onAbort = () => {
|
|
42061
|
+
const error = new Error("The operation was aborted.");
|
|
42062
|
+
error.name = "AbortError";
|
|
42063
|
+
request.destroy(error);
|
|
42064
|
+
};
|
|
42065
|
+
if (signal.aborted)
|
|
42066
|
+
onAbort();
|
|
42067
|
+
else
|
|
42068
|
+
signal.addEventListener("abort", onAbort, { once: true });
|
|
42069
|
+
request.on("error", reject);
|
|
42070
|
+
if (body !== undefined)
|
|
42071
|
+
request.write(body);
|
|
42072
|
+
request.end();
|
|
42073
|
+
function onResponse(response) {
|
|
42074
|
+
const chunks = [];
|
|
42075
|
+
response.on("data", (chunk) => chunks.push(Buffer.from(chunk)));
|
|
42076
|
+
response.on("error", reject);
|
|
42077
|
+
response.on("end", () => {
|
|
42078
|
+
const headersRecord = {};
|
|
42079
|
+
for (const [name, value] of Object.entries(response.headers)) {
|
|
42080
|
+
if (typeof value === "string")
|
|
42081
|
+
headersRecord[name] = value;
|
|
42082
|
+
else if (Array.isArray(value))
|
|
42083
|
+
headersRecord[name] = value.join(", ");
|
|
42084
|
+
}
|
|
42085
|
+
resolve3(new Response(Buffer.concat(chunks), { status: response.statusCode ?? 200, headers: headersRecord }));
|
|
42086
|
+
});
|
|
42087
|
+
}
|
|
42088
|
+
});
|
|
42089
|
+
}
|
|
42090
|
+
async function dispatchValidatedWebhook(event, channel, input) {
|
|
42091
|
+
const { body, headers, startedAt, options } = input;
|
|
42092
|
+
const webhook = channel.webhook;
|
|
42093
|
+
if (!webhook)
|
|
42094
|
+
throw new Error(`Channel ${channel.id} has no webhook config`);
|
|
42095
|
+
const policy = options.webhookTargetPolicy ?? {};
|
|
42096
|
+
const maxRedirects = normalizeMaxRedirects(policy.maxRedirects);
|
|
42097
|
+
const controller = new AbortController;
|
|
42098
|
+
const timeout = setTimeout(() => controller.abort(), webhook.timeoutMs ?? 15000);
|
|
42099
|
+
try {
|
|
42100
|
+
let target = new URL(normalizeWebhookUrl(webhook.url));
|
|
42101
|
+
let requestHeaders = headers;
|
|
42102
|
+
let method = "POST";
|
|
42103
|
+
let requestBody = body;
|
|
42104
|
+
let redirectsFollowed = 0;
|
|
42105
|
+
for (;; ) {
|
|
42106
|
+
const resolved = await resolveWebhookTarget(target, policy).catch((error) => {
|
|
42107
|
+
throw new Error(`Webhook target rejected by SSRF guard: ${error.message}`);
|
|
42108
|
+
});
|
|
42109
|
+
const response = options.fetchImpl ? await options.fetchImpl(target, {
|
|
42110
|
+
method,
|
|
42111
|
+
headers: requestHeaders,
|
|
42112
|
+
body: requestBody,
|
|
42113
|
+
signal: controller.signal,
|
|
42114
|
+
redirect: "manual"
|
|
42115
|
+
}) : await pinnedNativeRequest(target, resolved.addresses, method, requestHeaders, requestBody, controller.signal, options.tls);
|
|
42116
|
+
const location = response.headers.get("location");
|
|
42117
|
+
if (isRedirectStatus(response.status) && location) {
|
|
42118
|
+
if (redirectsFollowed >= maxRedirects) {
|
|
42119
|
+
return failedAttempt(startedAt, `Webhook target exceeded ${maxRedirects} redirects`);
|
|
42120
|
+
}
|
|
42121
|
+
redirectsFollowed += 1;
|
|
42122
|
+
const next = new URL(location, target);
|
|
42123
|
+
target = next;
|
|
42124
|
+
if (!redirectKeepsBody(response.status)) {
|
|
42125
|
+
method = "GET";
|
|
42126
|
+
requestBody = undefined;
|
|
42127
|
+
requestHeaders = Object.fromEntries(Object.entries(requestHeaders).filter(([name]) => name.toLowerCase() !== "content-type" && name.toLowerCase() !== "content-length"));
|
|
42128
|
+
}
|
|
42129
|
+
continue;
|
|
42130
|
+
}
|
|
42131
|
+
const responseBody = truncate(await response.text());
|
|
42132
|
+
return {
|
|
42133
|
+
attempt: 1,
|
|
42134
|
+
status: response.ok ? "success" : "failed",
|
|
42135
|
+
startedAt,
|
|
42136
|
+
completedAt: now(),
|
|
42137
|
+
responseStatus: response.status,
|
|
42138
|
+
responseBody,
|
|
42139
|
+
error: response.ok ? undefined : `Webhook returned HTTP ${response.status}`
|
|
42140
|
+
};
|
|
42141
|
+
}
|
|
42142
|
+
} catch (error) {
|
|
42143
|
+
return {
|
|
42144
|
+
attempt: 1,
|
|
42145
|
+
status: "failed",
|
|
42146
|
+
startedAt,
|
|
42147
|
+
completedAt: now(),
|
|
42148
|
+
error: error instanceof Error ? error.message : String(error)
|
|
42149
|
+
};
|
|
42150
|
+
} finally {
|
|
42151
|
+
clearTimeout(timeout);
|
|
42152
|
+
}
|
|
42153
|
+
}
|
|
41841
42154
|
function failedAttempt(startedAt, error) {
|
|
41842
42155
|
return {
|
|
41843
42156
|
attempt: 1,
|
|
@@ -42033,7 +42346,9 @@ class EventsClient {
|
|
|
42033
42346
|
this.transportOptions = {
|
|
42034
42347
|
fetchImpl: options.fetchImpl,
|
|
42035
42348
|
secretResolver: options.secretResolver,
|
|
42036
|
-
now: options.now
|
|
42349
|
+
now: options.now,
|
|
42350
|
+
tls: options.tls,
|
|
42351
|
+
webhookTargetPolicy: options.webhookTargetPolicy
|
|
42037
42352
|
};
|
|
42038
42353
|
this.catalog = options.catalog ?? defaultEventTypeCatalog;
|
|
42039
42354
|
this.validateCatalogTypes = options.validateCatalogTypes ?? false;
|
|
@@ -42513,9 +42828,44 @@ function replaySummary(events, deliveries, nextCursor) {
|
|
|
42513
42828
|
const suffix = nextCursor ? `, next cursor: ${nextCursor}` : "";
|
|
42514
42829
|
return `Replayed ${events} event(s), ${deliveries} delivery result(s)${suffix}`;
|
|
42515
42830
|
}
|
|
42516
|
-
var HASNA_EVENTS_DIR_ENV = "HASNA_EVENTS_DIR", HASNA_EVENTS_HOME_ENV = "HASNA_EVENTS_HOME", LOCAL_JSON_EVENT_CURSOR_PREFIX = "local-json-v1:", DEFAULT_EVENT_PAGE_LIMIT = 100, MAX_EVENT_PAGE_LIMIT = 1000, DEFAULT_SIGNATURE_TOLERANCE_MS,
|
|
42831
|
+
var HASNA_EVENTS_DIR_ENV = "HASNA_EVENTS_DIR", HASNA_EVENTS_HOME_ENV = "HASNA_EVENTS_HOME", LOCAL_JSON_EVENT_CURSOR_PREFIX = "local-json-v1:", DEFAULT_EVENT_PAGE_LIMIT = 100, MAX_EVENT_PAGE_LIMIT = 1000, DEFAULT_SIGNATURE_TOLERANCE_MS, DEFAULT_MAX_REDIRECTS = 5, IPV4_PRIVATE_RANGES, IPV6_SPECIAL_PREFIXES, defaultTargetLookup = async (hostname) => {
|
|
42832
|
+
return dnsLookup(hostname, { all: true, verbatim: false });
|
|
42833
|
+
}, EventValidationError, defaultEventTypeCatalog, APP_EVENT_V1_MAX_DATA_BYTES, DEFAULT_EVENT_LIST_LIMIT = 100;
|
|
42517
42834
|
var init_commander = __esm(() => {
|
|
42518
42835
|
DEFAULT_SIGNATURE_TOLERANCE_MS = 5 * 60 * 1000;
|
|
42836
|
+
IPV4_PRIVATE_RANGES = [
|
|
42837
|
+
[0, 16777215],
|
|
42838
|
+
[167772160, 184549375],
|
|
42839
|
+
[1681915904, 1686110207],
|
|
42840
|
+
[2130706432, 2147483647],
|
|
42841
|
+
[2851995648, 2852061183],
|
|
42842
|
+
[2886729728, 2887778303],
|
|
42843
|
+
[3221225472, 3221225727],
|
|
42844
|
+
[3221225984, 3221226239],
|
|
42845
|
+
[3227017984, 3227018239],
|
|
42846
|
+
[3232235520, 3232301055],
|
|
42847
|
+
[3323068416, 3323199487],
|
|
42848
|
+
[3325256704, 3325256959],
|
|
42849
|
+
[3405803776, 3405804031],
|
|
42850
|
+
[3758096384, 4294967295]
|
|
42851
|
+
];
|
|
42852
|
+
IPV6_SPECIAL_PREFIXES = [
|
|
42853
|
+
{ groups: [0, 0, 0, 0, 0, 0, 0, 0], bits: 128 },
|
|
42854
|
+
{ groups: [0, 0, 0, 0, 0, 0, 0, 1], bits: 128 },
|
|
42855
|
+
{ groups: [0, 0, 0, 0, 0, 65535, 0, 0], bits: 96 },
|
|
42856
|
+
{ groups: [100, 65435, 0, 0, 0, 0, 0, 0], bits: 96 },
|
|
42857
|
+
{ groups: [256, 0, 0, 0, 0, 0, 0, 0], bits: 64 },
|
|
42858
|
+
{ groups: [8193, 0, 0, 0, 0, 0, 0, 0], bits: 32 },
|
|
42859
|
+
{ groups: [8193, 2, 0, 0, 0, 0, 0, 0], bits: 48 },
|
|
42860
|
+
{ groups: [8193, 16, 0, 0, 0, 0, 0, 0], bits: 28 },
|
|
42861
|
+
{ groups: [8193, 3512, 0, 0, 0, 0, 0, 0], bits: 32 },
|
|
42862
|
+
{ groups: [8194, 0, 0, 0, 0, 0, 0, 0], bits: 16 },
|
|
42863
|
+
{ groups: [16383, 0, 0, 0, 0, 0, 0, 0], bits: 20 },
|
|
42864
|
+
{ groups: [64512, 0, 0, 0, 0, 0, 0, 0], bits: 7 },
|
|
42865
|
+
{ groups: [65152, 0, 0, 0, 0, 0, 0, 0], bits: 10 },
|
|
42866
|
+
{ groups: [65216, 0, 0, 0, 0, 0, 0, 0], bits: 10 },
|
|
42867
|
+
{ groups: [65280, 0, 0, 0, 0, 0, 0, 0], bits: 8 }
|
|
42868
|
+
];
|
|
42519
42869
|
EventValidationError = class EventValidationError extends Error {
|
|
42520
42870
|
eventType;
|
|
42521
42871
|
issues;
|
|
@@ -42531,7 +42881,7 @@ var init_commander = __esm(() => {
|
|
|
42531
42881
|
APP_EVENT_V1_MAX_DATA_BYTES = 32 * 1024;
|
|
42532
42882
|
});
|
|
42533
42883
|
|
|
42534
|
-
// node_modules/commander/esm.mjs
|
|
42884
|
+
// ../../node_modules/.bun/commander@13.1.0/node_modules/commander/esm.mjs
|
|
42535
42885
|
var import__ = __toESM(require_commander(), 1);
|
|
42536
42886
|
var {
|
|
42537
42887
|
program,
|
|
@@ -45430,7 +45780,7 @@ function registerServeCommand(program2) {
|
|
|
45430
45780
|
});
|
|
45431
45781
|
}
|
|
45432
45782
|
|
|
45433
|
-
//
|
|
45783
|
+
// ../contracts/dist/auth/index.js
|
|
45434
45784
|
var MAX_TENANT_ID_LENGTH = 64;
|
|
45435
45785
|
var TENANT_ID_PATTERN = new RegExp(`^[A-Za-z0-9][A-Za-z0-9._-]{0,${MAX_TENANT_ID_LENGTH - 1}}$`);
|
|
45436
45786
|
var UUID_HEX = "[0-9a-fA-F]";
|
|
@@ -45722,6 +46072,7 @@ class MigrationLedger {
|
|
|
45722
46072
|
client;
|
|
45723
46073
|
migrations;
|
|
45724
46074
|
ledgerTable;
|
|
46075
|
+
acknowledgedLegacyIds;
|
|
45725
46076
|
constructor(client, migrations, options = {}) {
|
|
45726
46077
|
this.client = client;
|
|
45727
46078
|
this.migrations = migrations;
|
|
@@ -45732,6 +46083,20 @@ class MigrationLedger {
|
|
|
45732
46083
|
throw new Error(`Duplicate migration id: ${migration.id}`);
|
|
45733
46084
|
seen.add(migration.id);
|
|
45734
46085
|
}
|
|
46086
|
+
const rawAcknowledged = ownProp(options, "acknowledgedLegacyIds");
|
|
46087
|
+
if (rawAcknowledged !== undefined) {
|
|
46088
|
+
if (!Array.isArray(rawAcknowledged) || rawAcknowledged.some((id) => typeof id !== "string")) {
|
|
46089
|
+
throw new Error("acknowledgedLegacyIds must be an array of migration id strings");
|
|
46090
|
+
}
|
|
46091
|
+
this.acknowledgedLegacyIds = new Set(rawAcknowledged);
|
|
46092
|
+
} else {
|
|
46093
|
+
this.acknowledgedLegacyIds = new Set;
|
|
46094
|
+
}
|
|
46095
|
+
for (const id of this.acknowledgedLegacyIds) {
|
|
46096
|
+
if (seen.has(id)) {
|
|
46097
|
+
throw new Error(`Acknowledged legacy migration id '${id}' is also declared as a migration.`);
|
|
46098
|
+
}
|
|
46099
|
+
}
|
|
45735
46100
|
}
|
|
45736
46101
|
async ensureLedger() {
|
|
45737
46102
|
await this.client.execute(`CREATE TABLE IF NOT EXISTS ${this.ledgerTable} (
|
|
@@ -45755,9 +46120,10 @@ class MigrationLedger {
|
|
|
45755
46120
|
buildPlan(applied) {
|
|
45756
46121
|
const known = new Set(this.migrations.map((m2) => m2.id));
|
|
45757
46122
|
for (const row of applied) {
|
|
45758
|
-
if (
|
|
45759
|
-
|
|
46123
|
+
if (known.has(row.id) || this.acknowledgedLegacyIds.has(row.id)) {
|
|
46124
|
+
continue;
|
|
45760
46125
|
}
|
|
46126
|
+
throw new Error(`Applied migration '${row.id}' is not recognized by this build (downgrade?).`);
|
|
45761
46127
|
}
|
|
45762
46128
|
const appliedById = new Map(applied.map((row) => [row.id, row]));
|
|
45763
46129
|
for (const migration of this.migrations) {
|
|
@@ -45945,7 +46311,9 @@ async function runMigrations(opts = {}) {
|
|
|
45945
46311
|
const pool2 = createPgPool({ connectionString: dsn, env, applicationName: "domains-migrate" });
|
|
45946
46312
|
try {
|
|
45947
46313
|
const client = wrapExecutor(pool2);
|
|
45948
|
-
const ledger = new MigrationLedger(client, buildMigrations()
|
|
46314
|
+
const ledger = new MigrationLedger(client, buildMigrations(), {
|
|
46315
|
+
acknowledgedLegacyIds: ["domains_apikeys_tenancy_0001"]
|
|
46316
|
+
});
|
|
45949
46317
|
return await ledger.migrate(opts.dryRun ? { dryRun: true } : {});
|
|
45950
46318
|
} finally {
|
|
45951
46319
|
await pool2.end();
|