drizzle-kit 0.30.4-a82c3ad → 0.30.4-af1f2fe
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/api.d.mts +1 -1
- package/api.d.ts +1 -1
- package/api.js +6 -1
- package/api.mjs +6 -1
- package/bin.cjs +436 -403
- package/{index-pW3Ob_Ec.d.mts → index-BAUrj6Ib.d.mts} +1 -1
- package/{index-pW3Ob_Ec.d.ts → index-BAUrj6Ib.d.ts} +1 -1
- package/index.d.mts +1 -1
- package/index.d.ts +1 -1
- package/package.json +4 -4
package/bin.cjs
CHANGED
@@ -10757,18 +10757,23 @@ var init_gel = __esm({
|
|
10757
10757
|
}).transform((o) => {
|
10758
10758
|
delete o.driver;
|
10759
10759
|
return o;
|
10760
|
+
}),
|
10761
|
+
objectType({
|
10762
|
+
driver: undefinedType()
|
10763
|
+
}).transform((o) => {
|
10764
|
+
return void 0;
|
10760
10765
|
})
|
10761
10766
|
]);
|
10762
10767
|
printConfigConnectionIssues = (options) => {
|
10763
10768
|
if ("url" in options) {
|
10764
|
-
let text = `Please provide required params for
|
10769
|
+
let text = `Please provide required params for Gel driver:
|
10765
10770
|
`;
|
10766
10771
|
console.log(error(text));
|
10767
10772
|
console.log(wrapParam("url", options.url, false, "url"));
|
10768
10773
|
process.exit(1);
|
10769
10774
|
}
|
10770
10775
|
if ("host" in options || "database" in options) {
|
10771
|
-
let text = `Please provide required params for
|
10776
|
+
let text = `Please provide required params for Gel driver:
|
10772
10777
|
`;
|
10773
10778
|
console.log(error(text));
|
10774
10779
|
console.log(wrapParam("host", options.host));
|
@@ -10781,7 +10786,7 @@ var init_gel = __esm({
|
|
10781
10786
|
}
|
10782
10787
|
console.log(
|
10783
10788
|
error(
|
10784
|
-
`Either connection "url" or "host", "database" are required for
|
10789
|
+
`Either connection "url" or "host", "database" are required for Gel database connection`
|
10785
10790
|
)
|
10786
10791
|
);
|
10787
10792
|
process.exit(1);
|
@@ -64856,9 +64861,9 @@ var require_dist_cjs55 = __commonJS({
|
|
64856
64861
|
}
|
64857
64862
|
});
|
64858
64863
|
|
64859
|
-
// ../node_modules/.pnpm/
|
64864
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/chars.js
|
64860
64865
|
var require_chars = __commonJS({
|
64861
|
-
"../node_modules/.pnpm/
|
64866
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/chars.js"(exports2) {
|
64862
64867
|
"use strict";
|
64863
64868
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
64864
64869
|
exports2.$v = exports2.$s = exports2.$r = exports2.$p = exports2.$o = exports2.$n = exports2.$m = exports2.$j = exports2.$b = exports2.$Z = exports2.$Y = exports2.$X = exports2.$V = exports2.$T = exports2.$S = exports2.$R = exports2.$Q = exports2.$P = exports2.$O = exports2.$M = exports2.$L = exports2.$K = exports2.$I = exports2.$H = exports2.$E = exports2.$D = exports2.$C = exports2.$A = exports2.$1 = exports2.$0 = void 0;
|
@@ -64910,9 +64915,9 @@ var require_chars = __commonJS({
|
|
64910
64915
|
}
|
64911
64916
|
});
|
64912
64917
|
|
64913
|
-
// ../node_modules/.pnpm/
|
64918
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/buffer.js
|
64914
64919
|
var require_buffer = __commonJS({
|
64915
|
-
"../node_modules/.pnpm/
|
64920
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/buffer.js"(exports2) {
|
64916
64921
|
"use strict";
|
64917
64922
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
64918
64923
|
if (k2 === void 0)
|
@@ -65758,15 +65763,15 @@ var require_buffer = __commonJS({
|
|
65758
65763
|
}
|
65759
65764
|
});
|
65760
65765
|
|
65761
|
-
// ../node_modules/.pnpm/
|
65766
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/base.js
|
65762
65767
|
var require_base = __commonJS({
|
65763
|
-
"../node_modules/.pnpm/
|
65768
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/base.js"(exports2) {
|
65764
65769
|
"use strict";
|
65765
65770
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
65766
|
-
exports2.ErrorAttr = exports2.
|
65771
|
+
exports2.ErrorAttr = exports2.GelError = void 0;
|
65767
65772
|
exports2.prettyPrintError = prettyPrintError;
|
65768
65773
|
var buffer_1 = require_buffer();
|
65769
|
-
var
|
65774
|
+
var GelError = class extends Error {
|
65770
65775
|
static tags = {};
|
65771
65776
|
_message;
|
65772
65777
|
_query;
|
@@ -65791,7 +65796,7 @@ var require_base = __commonJS({
|
|
65791
65796
|
return error_type.tags[tag] ?? false;
|
65792
65797
|
}
|
65793
65798
|
};
|
65794
|
-
exports2.
|
65799
|
+
exports2.GelError = GelError;
|
65795
65800
|
var ErrorAttr;
|
65796
65801
|
(function(ErrorAttr2) {
|
65797
65802
|
ErrorAttr2[ErrorAttr2["hint"] = 1] = "hint";
|
@@ -65853,9 +65858,9 @@ var require_base = __commonJS({
|
|
65853
65858
|
}
|
65854
65859
|
});
|
65855
65860
|
|
65856
|
-
// ../node_modules/.pnpm/
|
65861
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/tags.js
|
65857
65862
|
var require_tags = __commonJS({
|
65858
|
-
"../node_modules/.pnpm/
|
65863
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/tags.js"(exports2) {
|
65859
65864
|
"use strict";
|
65860
65865
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
65861
65866
|
exports2.SHOULD_RETRY = exports2.SHOULD_RECONNECT = void 0;
|
@@ -65864,9 +65869,9 @@ var require_tags = __commonJS({
|
|
65864
65869
|
}
|
65865
65870
|
});
|
65866
65871
|
|
65867
|
-
// ../node_modules/.pnpm/
|
65872
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/index.js
|
65868
65873
|
var require_errors = __commonJS({
|
65869
|
-
"../node_modules/.pnpm/
|
65874
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/index.js"(exports2) {
|
65870
65875
|
"use strict";
|
65871
65876
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
65872
65877
|
if (k2 === void 0)
|
@@ -65906,29 +65911,29 @@ var require_errors = __commonJS({
|
|
65906
65911
|
__createBinding3(exports3, m2, p);
|
65907
65912
|
};
|
65908
65913
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
65909
|
-
exports2.DuplicateUserDefinitionError = exports2.DuplicatePropertyDefinitionError = exports2.DuplicateLinkDefinitionError = exports2.DuplicateModuleDefinitionError = exports2.DuplicateDefinitionError = exports2.InvalidCastDefinitionError = exports2.InvalidConstraintDefinitionError = exports2.InvalidFunctionDefinitionError = exports2.InvalidAliasDefinitionError = exports2.InvalidOperatorDefinitionError = exports2.InvalidDatabaseDefinitionError = exports2.InvalidUserDefinitionError = exports2.InvalidPropertyDefinitionError = exports2.InvalidLinkDefinitionError = exports2.InvalidModuleDefinitionError = exports2.InvalidDefinitionError = exports2.SchemaDefinitionError = exports2.SchemaError = exports2.DeprecatedScopingError = exports2.UnknownParameterError = exports2.UnknownDatabaseError = exports2.UnknownUserError = exports2.UnknownPropertyError = exports2.UnknownLinkError = exports2.UnknownModuleError = exports2.InvalidReferenceError = exports2.InvalidPropertyTargetError = exports2.InvalidLinkTargetError = exports2.InvalidTargetError = exports2.InvalidTypeError = exports2.GraphQLSyntaxError = exports2.SchemaSyntaxError = exports2.EdgeQLSyntaxError = exports2.InvalidSyntaxError = exports2.QueryError = exports2.DisabledCapabilityError = exports2.UnsupportedCapabilityError = exports2.CapabilityError = exports2.ResultCardinalityMismatchError = exports2.StateMismatchError = exports2.ParameterTypeMismatchError = exports2.InputDataError = exports2.UnexpectedMessageError = exports2.TypeSpecNotFoundError = exports2.UnsupportedProtocolVersionError = exports2.BinaryProtocolError = exports2.ProtocolError = exports2.UnsupportedFeatureError = exports2.InternalServerError = exports2.
|
65914
|
+
exports2.DuplicateUserDefinitionError = exports2.DuplicatePropertyDefinitionError = exports2.DuplicateLinkDefinitionError = exports2.DuplicateModuleDefinitionError = exports2.DuplicateDefinitionError = exports2.InvalidCastDefinitionError = exports2.InvalidConstraintDefinitionError = exports2.InvalidFunctionDefinitionError = exports2.InvalidAliasDefinitionError = exports2.InvalidOperatorDefinitionError = exports2.InvalidDatabaseDefinitionError = exports2.InvalidUserDefinitionError = exports2.InvalidPropertyDefinitionError = exports2.InvalidLinkDefinitionError = exports2.InvalidModuleDefinitionError = exports2.InvalidDefinitionError = exports2.SchemaDefinitionError = exports2.SchemaError = exports2.DeprecatedScopingError = exports2.UnknownParameterError = exports2.UnknownDatabaseError = exports2.UnknownUserError = exports2.UnknownPropertyError = exports2.UnknownLinkError = exports2.UnknownModuleError = exports2.InvalidReferenceError = exports2.InvalidPropertyTargetError = exports2.InvalidLinkTargetError = exports2.InvalidTargetError = exports2.InvalidTypeError = exports2.GraphQLSyntaxError = exports2.SchemaSyntaxError = exports2.EdgeQLSyntaxError = exports2.InvalidSyntaxError = exports2.QueryError = exports2.DisabledCapabilityError = exports2.UnsupportedCapabilityError = exports2.CapabilityError = exports2.ResultCardinalityMismatchError = exports2.StateMismatchError = exports2.ParameterTypeMismatchError = exports2.InputDataError = exports2.UnexpectedMessageError = exports2.TypeSpecNotFoundError = exports2.UnsupportedProtocolVersionError = exports2.BinaryProtocolError = exports2.ProtocolError = exports2.UnsupportedFeatureError = exports2.InternalServerError = exports2.GelError = void 0;
|
65910
65915
|
exports2.InvalidArgumentError = exports2.UnknownArgumentError = exports2.MissingArgumentError = exports2.QueryArgumentError = exports2.InterfaceError = exports2.ClientConnectionClosedError = exports2.ClientConnectionTimeoutError = exports2.ClientConnectionFailedTemporarilyError = exports2.ClientConnectionFailedError = exports2.ClientConnectionError = exports2.ClientError = exports2.WarningMessage = exports2.LogMessage = exports2.UnsupportedBackendFeatureError = exports2.BackendError = exports2.ServerBlockedError = exports2.UnknownTenantError = exports2.ServerOfflineError = exports2.BackendUnavailableError = exports2.AvailabilityError = exports2.AuthenticationError = exports2.AccessError = exports2.ConfigurationError = exports2.WatchError = exports2.TransactionDeadlockError = exports2.TransactionSerializationError = exports2.TransactionConflictError = exports2.TransactionError = exports2.MissingRequiredError = exports2.CardinalityViolationError = exports2.ConstraintViolationError = exports2.IntegrityError = exports2.QueryAssertionError = exports2.AccessPolicyError = exports2.NumericOutOfRangeError = exports2.DivisionByZeroError = exports2.InvalidValueError = exports2.ExecutionError = exports2.IdleTransactionTimeoutError = exports2.TransactionTimeoutError = exports2.QueryTimeoutError = exports2.IdleSessionTimeoutError = exports2.SessionTimeoutError = exports2.DuplicateMigrationError = exports2.DuplicateCastDefinitionError = exports2.DuplicateConstraintDefinitionError = exports2.DuplicateFunctionDefinitionError = exports2.DuplicateViewDefinitionError = exports2.DuplicateOperatorDefinitionError = exports2.DuplicateDatabaseDefinitionError = void 0;
|
65911
65916
|
exports2.InternalClientError = exports2.NoDataError = void 0;
|
65912
65917
|
var base_1 = require_base();
|
65913
65918
|
var tags = __importStar3(require_tags());
|
65914
65919
|
var base_2 = require_base();
|
65915
|
-
Object.defineProperty(exports2, "
|
65916
|
-
return base_2.
|
65920
|
+
Object.defineProperty(exports2, "GelError", { enumerable: true, get: function() {
|
65921
|
+
return base_2.GelError;
|
65917
65922
|
} });
|
65918
65923
|
__exportStar3(require_tags(), exports2);
|
65919
|
-
var InternalServerError = class extends base_1.
|
65924
|
+
var InternalServerError = class extends base_1.GelError {
|
65920
65925
|
get code() {
|
65921
65926
|
return 16777216;
|
65922
65927
|
}
|
65923
65928
|
};
|
65924
65929
|
exports2.InternalServerError = InternalServerError;
|
65925
|
-
var UnsupportedFeatureError = class extends base_1.
|
65930
|
+
var UnsupportedFeatureError = class extends base_1.GelError {
|
65926
65931
|
get code() {
|
65927
65932
|
return 33554432;
|
65928
65933
|
}
|
65929
65934
|
};
|
65930
65935
|
exports2.UnsupportedFeatureError = UnsupportedFeatureError;
|
65931
|
-
var ProtocolError = class extends base_1.
|
65936
|
+
var ProtocolError = class extends base_1.GelError {
|
65932
65937
|
get code() {
|
65933
65938
|
return 50331648;
|
65934
65939
|
}
|
@@ -66001,7 +66006,7 @@ var require_errors = __commonJS({
|
|
66001
66006
|
}
|
66002
66007
|
};
|
66003
66008
|
exports2.DisabledCapabilityError = DisabledCapabilityError;
|
66004
|
-
var QueryError = class extends base_1.
|
66009
|
+
var QueryError = class extends base_1.GelError {
|
66005
66010
|
get code() {
|
66006
66011
|
return 67108864;
|
66007
66012
|
}
|
@@ -66284,7 +66289,7 @@ var require_errors = __commonJS({
|
|
66284
66289
|
}
|
66285
66290
|
};
|
66286
66291
|
exports2.IdleTransactionTimeoutError = IdleTransactionTimeoutError;
|
66287
|
-
var ExecutionError = class extends base_1.
|
66292
|
+
var ExecutionError = class extends base_1.GelError {
|
66288
66293
|
get code() {
|
66289
66294
|
return 83886080;
|
66290
66295
|
}
|
@@ -66377,13 +66382,13 @@ var require_errors = __commonJS({
|
|
66377
66382
|
}
|
66378
66383
|
};
|
66379
66384
|
exports2.WatchError = WatchError;
|
66380
|
-
var ConfigurationError = class extends base_1.
|
66385
|
+
var ConfigurationError = class extends base_1.GelError {
|
66381
66386
|
get code() {
|
66382
66387
|
return 100663296;
|
66383
66388
|
}
|
66384
66389
|
};
|
66385
66390
|
exports2.ConfigurationError = ConfigurationError;
|
66386
|
-
var AccessError = class extends base_1.
|
66391
|
+
var AccessError = class extends base_1.GelError {
|
66387
66392
|
get code() {
|
66388
66393
|
return 117440512;
|
66389
66394
|
}
|
@@ -66395,7 +66400,7 @@ var require_errors = __commonJS({
|
|
66395
66400
|
}
|
66396
66401
|
};
|
66397
66402
|
exports2.AuthenticationError = AuthenticationError;
|
66398
|
-
var AvailabilityError = class extends base_1.
|
66403
|
+
var AvailabilityError = class extends base_1.GelError {
|
66399
66404
|
get code() {
|
66400
66405
|
return 134217728;
|
66401
66406
|
}
|
@@ -66434,7 +66439,7 @@ var require_errors = __commonJS({
|
|
66434
66439
|
}
|
66435
66440
|
};
|
66436
66441
|
exports2.ServerBlockedError = ServerBlockedError;
|
66437
|
-
var BackendError = class extends base_1.
|
66442
|
+
var BackendError = class extends base_1.GelError {
|
66438
66443
|
get code() {
|
66439
66444
|
return 150994944;
|
66440
66445
|
}
|
@@ -66446,7 +66451,7 @@ var require_errors = __commonJS({
|
|
66446
66451
|
}
|
66447
66452
|
};
|
66448
66453
|
exports2.UnsupportedBackendFeatureError = UnsupportedBackendFeatureError;
|
66449
|
-
var LogMessage = class extends base_1.
|
66454
|
+
var LogMessage = class extends base_1.GelError {
|
66450
66455
|
get code() {
|
66451
66456
|
return 4026531840;
|
66452
66457
|
}
|
@@ -66458,7 +66463,7 @@ var require_errors = __commonJS({
|
|
66458
66463
|
}
|
66459
66464
|
};
|
66460
66465
|
exports2.WarningMessage = WarningMessage;
|
66461
|
-
var ClientError = class extends base_1.
|
66466
|
+
var ClientError = class extends base_1.GelError {
|
66462
66467
|
get code() {
|
66463
66468
|
return 4278190080;
|
66464
66469
|
}
|
@@ -66551,9 +66556,9 @@ var require_errors = __commonJS({
|
|
66551
66556
|
}
|
66552
66557
|
});
|
66553
66558
|
|
66554
|
-
// ../node_modules/.pnpm/
|
66559
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/lru.js
|
66555
66560
|
var require_lru = __commonJS({
|
66556
|
-
"../node_modules/.pnpm/
|
66561
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/lru.js"(exports2) {
|
66557
66562
|
"use strict";
|
66558
66563
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
66559
66564
|
var errors_1 = require_errors();
|
@@ -66703,9 +66708,9 @@ var require_lru = __commonJS({
|
|
66703
66708
|
}
|
66704
66709
|
});
|
66705
66710
|
|
66706
|
-
// ../node_modules/.pnpm/
|
66711
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/consts.js
|
66707
66712
|
var require_consts = __commonJS({
|
66708
|
-
"../node_modules/.pnpm/
|
66713
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/consts.js"(exports2) {
|
66709
66714
|
"use strict";
|
66710
66715
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
66711
66716
|
exports2.KNOWN_TYPENAMES = exports2.KNOWN_TYPES = exports2.INVALID_CODEC_ID = exports2.NULL_CODEC_ID = void 0;
|
@@ -66760,9 +66765,9 @@ var require_consts = __commonJS({
|
|
66760
66765
|
}
|
66761
66766
|
});
|
66762
66767
|
|
66763
|
-
// ../node_modules/.pnpm/
|
66768
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/ifaces.js
|
66764
66769
|
var require_ifaces = __commonJS({
|
66765
|
-
"../node_modules/.pnpm/
|
66770
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/ifaces.js"(exports2) {
|
66766
66771
|
"use strict";
|
66767
66772
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
66768
66773
|
exports2.ScalarCodec = exports2.Codec = void 0;
|
@@ -66812,9 +66817,9 @@ var require_ifaces = __commonJS({
|
|
66812
66817
|
}
|
66813
66818
|
});
|
66814
66819
|
|
66815
|
-
// ../node_modules/.pnpm/
|
66820
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/boolean.js
|
66816
66821
|
var require_boolean = __commonJS({
|
66817
|
-
"../node_modules/.pnpm/
|
66822
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/boolean.js"(exports2) {
|
66818
66823
|
"use strict";
|
66819
66824
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
66820
66825
|
exports2.BoolCodec = void 0;
|
@@ -66839,9 +66844,9 @@ var require_boolean = __commonJS({
|
|
66839
66844
|
}
|
66840
66845
|
});
|
66841
66846
|
|
66842
|
-
// ../node_modules/.pnpm/
|
66847
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/numbers.js
|
66843
66848
|
var require_numbers = __commonJS({
|
66844
|
-
"../node_modules/.pnpm/
|
66849
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/numbers.js"(exports2) {
|
66845
66850
|
"use strict";
|
66846
66851
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
66847
66852
|
exports2.Float64Codec = exports2.Float32Codec = exports2.Int16Codec = exports2.Int32Codec = exports2.Int64Codec = void 0;
|
@@ -66933,9 +66938,9 @@ var require_numbers = __commonJS({
|
|
66933
66938
|
}
|
66934
66939
|
});
|
66935
66940
|
|
66936
|
-
// ../node_modules/.pnpm/
|
66941
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/numerics.js
|
66937
66942
|
var require_numerics = __commonJS({
|
66938
|
-
"../node_modules/.pnpm/
|
66943
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/numerics.js"(exports2) {
|
66939
66944
|
"use strict";
|
66940
66945
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
66941
66946
|
exports2.DecimalStringCodec = exports2.BigIntCodec = void 0;
|
@@ -67098,9 +67103,9 @@ var require_numerics = __commonJS({
|
|
67098
67103
|
}
|
67099
67104
|
});
|
67100
67105
|
|
67101
|
-
// ../node_modules/.pnpm/
|
67106
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/text.js
|
67102
67107
|
var require_text = __commonJS({
|
67103
|
-
"../node_modules/.pnpm/
|
67108
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/text.js"(exports2) {
|
67104
67109
|
"use strict";
|
67105
67110
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
67106
67111
|
exports2.StrCodec = void 0;
|
@@ -67127,9 +67132,9 @@ var require_text = __commonJS({
|
|
67127
67132
|
}
|
67128
67133
|
});
|
67129
67134
|
|
67130
|
-
// ../node_modules/.pnpm/
|
67135
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/uuid.js
|
67131
67136
|
var require_uuid = __commonJS({
|
67132
|
-
"../node_modules/.pnpm/
|
67137
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/uuid.js"(exports2) {
|
67133
67138
|
"use strict";
|
67134
67139
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
67135
67140
|
exports2.UUIDCodec = void 0;
|
@@ -67184,9 +67189,9 @@ var require_uuid = __commonJS({
|
|
67184
67189
|
}
|
67185
67190
|
});
|
67186
67191
|
|
67187
|
-
// ../node_modules/.pnpm/
|
67192
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/bytes.js
|
67188
67193
|
var require_bytes = __commonJS({
|
67189
|
-
"../node_modules/.pnpm/
|
67194
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/bytes.js"(exports2) {
|
67190
67195
|
"use strict";
|
67191
67196
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
67192
67197
|
exports2.BytesCodec = void 0;
|
@@ -67210,9 +67215,9 @@ var require_bytes = __commonJS({
|
|
67210
67215
|
}
|
67211
67216
|
});
|
67212
67217
|
|
67213
|
-
// ../node_modules/.pnpm/
|
67218
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/json.js
|
67214
67219
|
var require_json = __commonJS({
|
67215
|
-
"../node_modules/.pnpm/
|
67220
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/json.js"(exports2) {
|
67216
67221
|
"use strict";
|
67217
67222
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
67218
67223
|
exports2.PgTextJSONStringCodec = exports2.PgTextJSONCodec = exports2.JSONCodec = void 0;
|
@@ -67284,9 +67289,9 @@ var require_json = __commonJS({
|
|
67284
67289
|
}
|
67285
67290
|
});
|
67286
67291
|
|
67287
|
-
// ../node_modules/.pnpm/
|
67292
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/dateutil.js
|
67288
67293
|
var require_dateutil = __commonJS({
|
67289
|
-
"../node_modules/.pnpm/
|
67294
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/dateutil.js"(exports2) {
|
67290
67295
|
"use strict";
|
67291
67296
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
67292
67297
|
exports2.isLeapYear = isLeapYear;
|
@@ -67359,9 +67364,9 @@ var require_dateutil = __commonJS({
|
|
67359
67364
|
}
|
67360
67365
|
});
|
67361
67366
|
|
67362
|
-
// ../node_modules/.pnpm/
|
67367
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/datetime.js
|
67363
67368
|
var require_datetime = __commonJS({
|
67364
|
-
"../node_modules/.pnpm/
|
67369
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/datetime.js"(exports2) {
|
67365
67370
|
"use strict";
|
67366
67371
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
67367
67372
|
exports2.DateDuration = exports2.RelativeDuration = exports2.Duration = exports2.LocalDateTime = exports2.LocalDate = exports2.localDateInstances = exports2.LocalTime = exports2.localTimeInstances = exports2.DATE_PRIVATE = void 0;
|
@@ -67369,7 +67374,7 @@ var require_datetime = __commonJS({
|
|
67369
67374
|
exports2.LocalDateFromOrdinal = LocalDateFromOrdinal;
|
67370
67375
|
exports2.parseHumanDurationString = parseHumanDurationString;
|
67371
67376
|
var dateutil_1 = require_dateutil();
|
67372
|
-
exports2.DATE_PRIVATE = Symbol.for("
|
67377
|
+
exports2.DATE_PRIVATE = Symbol.for("gel.datetime");
|
67373
67378
|
function toNumber(val2) {
|
67374
67379
|
const n = Number(val2);
|
67375
67380
|
if (Number.isNaN(n)) {
|
@@ -67846,13 +67851,13 @@ var require_datetime = __commonJS({
|
|
67846
67851
|
}
|
67847
67852
|
});
|
67848
67853
|
|
67849
|
-
// ../node_modules/.pnpm/
|
67854
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/datetime.js
|
67850
67855
|
var require_datetime2 = __commonJS({
|
67851
|
-
"../node_modules/.pnpm/
|
67856
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/datetime.js"(exports2) {
|
67852
67857
|
"use strict";
|
67853
67858
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
67854
67859
|
exports2.DateDurationCodec = exports2.RelativeDurationCodec = exports2.DurationCodec = exports2.LocalTimeCodec = exports2.LocalDateCodec = exports2.LocalDateTimeCodec = exports2.DateTimeCodec = void 0;
|
67855
|
-
exports2.
|
67860
|
+
exports2.checkValidGelDuration = checkValidGelDuration;
|
67856
67861
|
var ifaces_1 = require_ifaces();
|
67857
67862
|
var datetime_1 = require_datetime();
|
67858
67863
|
var dateutil_1 = require_dateutil();
|
@@ -67897,7 +67902,7 @@ var require_datetime2 = __commonJS({
|
|
67897
67902
|
exports2.DateTimeCodec = DateTimeCodec;
|
67898
67903
|
var LocalDateTimeCodec = class extends ifaces_1.ScalarCodec {
|
67899
67904
|
tsType = "LocalDateTime";
|
67900
|
-
tsModule = "
|
67905
|
+
tsModule = "gel";
|
67901
67906
|
encode(buf, object, ctx) {
|
67902
67907
|
if (ctx.hasOverload(this)) {
|
67903
67908
|
let us2 = ctx.preEncode(this, object);
|
@@ -67940,7 +67945,7 @@ var require_datetime2 = __commonJS({
|
|
67940
67945
|
exports2.LocalDateTimeCodec = LocalDateTimeCodec;
|
67941
67946
|
var LocalDateCodec = class extends ifaces_1.ScalarCodec {
|
67942
67947
|
tsType = "LocalDate";
|
67943
|
-
tsModule = "
|
67948
|
+
tsModule = "gel";
|
67944
67949
|
encode(buf, object, ctx) {
|
67945
67950
|
if (ctx.hasOverload(this)) {
|
67946
67951
|
const ret = ctx.preEncode(this, object);
|
@@ -67967,7 +67972,7 @@ var require_datetime2 = __commonJS({
|
|
67967
67972
|
exports2.LocalDateCodec = LocalDateCodec;
|
67968
67973
|
var LocalTimeCodec = class extends ifaces_1.ScalarCodec {
|
67969
67974
|
tsType = "LocalTime";
|
67970
|
-
tsModule = "
|
67975
|
+
tsModule = "gel";
|
67971
67976
|
encode(buf, object, ctx) {
|
67972
67977
|
if (ctx.hasOverload(this)) {
|
67973
67978
|
const us2 = ctx.preEncode(this, object);
|
@@ -68011,7 +68016,7 @@ var require_datetime2 = __commonJS({
|
|
68011
68016
|
"weeks",
|
68012
68017
|
"days"
|
68013
68018
|
];
|
68014
|
-
function
|
68019
|
+
function checkValidGelDuration(duration) {
|
68015
68020
|
for (const field of unencodableDurationFields) {
|
68016
68021
|
if (duration[field] !== 0) {
|
68017
68022
|
return field;
|
@@ -68021,7 +68026,7 @@ var require_datetime2 = __commonJS({
|
|
68021
68026
|
}
|
68022
68027
|
var DurationCodec = class extends ifaces_1.ScalarCodec {
|
68023
68028
|
tsType = "Duration";
|
68024
|
-
tsModule = "
|
68029
|
+
tsModule = "gel";
|
68025
68030
|
encode(buf, object, ctx) {
|
68026
68031
|
if (ctx.hasOverload(this)) {
|
68027
68032
|
const us2 = ctx.preEncode(this, object);
|
@@ -68037,7 +68042,7 @@ var require_datetime2 = __commonJS({
|
|
68037
68042
|
if (!(object instanceof datetime_1.Duration)) {
|
68038
68043
|
throw new errors_1.InvalidArgumentError(`a Duration instance was expected, got "${object}"`);
|
68039
68044
|
}
|
68040
|
-
const invalidField =
|
68045
|
+
const invalidField = checkValidGelDuration(object);
|
68041
68046
|
if (invalidField) {
|
68042
68047
|
throw new errors_1.InvalidArgumentError(`Cannot encode a 'Duration' with a non-zero number of ${invalidField}`);
|
68043
68048
|
}
|
@@ -68091,7 +68096,7 @@ var require_datetime2 = __commonJS({
|
|
68091
68096
|
exports2.DurationCodec = DurationCodec;
|
68092
68097
|
var RelativeDurationCodec = class extends ifaces_1.ScalarCodec {
|
68093
68098
|
tsType = "RelativeDuration";
|
68094
|
-
tsModule = "
|
68099
|
+
tsModule = "gel";
|
68095
68100
|
encode(buf, object, ctx) {
|
68096
68101
|
if (ctx.hasOverload(this)) {
|
68097
68102
|
const ret = ctx.preEncode(this, object);
|
@@ -68148,7 +68153,7 @@ var require_datetime2 = __commonJS({
|
|
68148
68153
|
exports2.RelativeDurationCodec = RelativeDurationCodec;
|
68149
68154
|
var DateDurationCodec = class extends ifaces_1.ScalarCodec {
|
68150
68155
|
tsType = "DateDuration";
|
68151
|
-
tsModule = "
|
68156
|
+
tsModule = "gel";
|
68152
68157
|
encode(buf, object, ctx) {
|
68153
68158
|
if (ctx.hasOverload(this)) {
|
68154
68159
|
const ret = ctx.preEncode(this, object);
|
@@ -68186,9 +68191,9 @@ var require_datetime2 = __commonJS({
|
|
68186
68191
|
}
|
68187
68192
|
});
|
68188
68193
|
|
68189
|
-
// ../node_modules/.pnpm/
|
68194
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/memory.js
|
68190
68195
|
var require_memory = __commonJS({
|
68191
|
-
"../node_modules/.pnpm/
|
68196
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/memory.js"(exports2) {
|
68192
68197
|
"use strict";
|
68193
68198
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
68194
68199
|
exports2.ConfigMemory = void 0;
|
@@ -68252,9 +68257,9 @@ var require_memory = __commonJS({
|
|
68252
68257
|
}
|
68253
68258
|
});
|
68254
68259
|
|
68255
|
-
// ../node_modules/.pnpm/
|
68260
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/memory.js
|
68256
68261
|
var require_memory2 = __commonJS({
|
68257
|
-
"../node_modules/.pnpm/
|
68262
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/memory.js"(exports2) {
|
68258
68263
|
"use strict";
|
68259
68264
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
68260
68265
|
exports2.ConfigMemoryCodec = void 0;
|
@@ -68263,7 +68268,7 @@ var require_memory2 = __commonJS({
|
|
68263
68268
|
var errors_1 = require_errors();
|
68264
68269
|
var ConfigMemoryCodec = class extends ifaces_1.ScalarCodec {
|
68265
68270
|
tsType = "ConfigMemory";
|
68266
|
-
tsModule = "
|
68271
|
+
tsModule = "gel";
|
68267
68272
|
encode(buf, object, ctx) {
|
68268
68273
|
if (ctx.hasOverload(this)) {
|
68269
68274
|
const val2 = ctx.preEncode(this, object);
|
@@ -69617,9 +69622,9 @@ var require_lib2 = __commonJS({
|
|
69617
69622
|
}
|
69618
69623
|
});
|
69619
69624
|
|
69620
|
-
// ../node_modules/.pnpm/
|
69625
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/utils.js
|
69621
69626
|
var require_utils2 = __commonJS({
|
69622
|
-
"../node_modules/.pnpm/
|
69627
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/utils.js"(exports2) {
|
69623
69628
|
"use strict";
|
69624
69629
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
69625
69630
|
exports2.setFloat16 = exports2.isFloat16Array = exports2.getFloat16 = exports2.Float16Array = void 0;
|
@@ -69648,7 +69653,7 @@ var require_utils2 = __commonJS({
|
|
69648
69653
|
idCounter[prefix2] = 0;
|
69649
69654
|
}
|
69650
69655
|
const id = ++idCounter[prefix2];
|
69651
|
-
return `
|
69656
|
+
return `_gel_${prefix2}_${id.toString(16)}_`;
|
69652
69657
|
}
|
69653
69658
|
function sleep(durationMillis) {
|
69654
69659
|
return new Promise((accept) => {
|
@@ -69709,9 +69714,9 @@ var require_utils2 = __commonJS({
|
|
69709
69714
|
}
|
69710
69715
|
});
|
69711
69716
|
|
69712
|
-
// ../node_modules/.pnpm/
|
69717
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/pgvector.js
|
69713
69718
|
var require_pgvector = __commonJS({
|
69714
|
-
"../node_modules/.pnpm/
|
69719
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/pgvector.js"(exports2) {
|
69715
69720
|
"use strict";
|
69716
69721
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
69717
69722
|
exports2.SparseVector = void 0;
|
@@ -69780,9 +69785,9 @@ var require_pgvector = __commonJS({
|
|
69780
69785
|
}
|
69781
69786
|
});
|
69782
69787
|
|
69783
|
-
// ../node_modules/.pnpm/
|
69788
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/pgvector.js
|
69784
69789
|
var require_pgvector2 = __commonJS({
|
69785
|
-
"../node_modules/.pnpm/
|
69790
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/pgvector.js"(exports2) {
|
69786
69791
|
"use strict";
|
69787
69792
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
69788
69793
|
exports2.PgVectorSparseVecCodec = exports2.PgVectorHalfVecCodec = exports2.PgVectorCodec = exports2.PG_VECTOR_MAX_DIM = void 0;
|
@@ -69830,7 +69835,7 @@ var require_pgvector2 = __commonJS({
|
|
69830
69835
|
exports2.PgVectorCodec = PgVectorCodec;
|
69831
69836
|
var PgVectorHalfVecCodec = class extends ifaces_1.ScalarCodec {
|
69832
69837
|
tsType = "Float16Array";
|
69833
|
-
tsModule = "
|
69838
|
+
tsModule = "gel";
|
69834
69839
|
encode(buf, object, ctx) {
|
69835
69840
|
object = ctx.preEncode(this, object);
|
69836
69841
|
if (!((0, utils_1.isFloat16Array)(object) || Array.isArray(object))) {
|
@@ -69871,7 +69876,7 @@ var require_pgvector2 = __commonJS({
|
|
69871
69876
|
exports2.PgVectorHalfVecCodec = PgVectorHalfVecCodec;
|
69872
69877
|
var PgVectorSparseVecCodec = class extends ifaces_1.ScalarCodec {
|
69873
69878
|
tsType = "SparseVector";
|
69874
|
-
tsModule = "
|
69879
|
+
tsModule = "gel";
|
69875
69880
|
encode(buf, object, ctx) {
|
69876
69881
|
let dims;
|
69877
69882
|
let indexes;
|
@@ -69929,9 +69934,9 @@ var require_pgvector2 = __commonJS({
|
|
69929
69934
|
}
|
69930
69935
|
});
|
69931
69936
|
|
69932
|
-
// ../node_modules/.pnpm/
|
69937
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/postgis.js
|
69933
69938
|
var require_postgis = __commonJS({
|
69934
|
-
"../node_modules/.pnpm/
|
69939
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/postgis.js"(exports2) {
|
69935
69940
|
"use strict";
|
69936
69941
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
69937
69942
|
exports2.Box3D = exports2.Box2D = exports2.GeometryCollection = exports2.MultiSurface = exports2.TriangulatedIrregularNetwork = exports2.PolyhedralSurface = exports2.MultiPolygon = exports2.CurvePolygon = exports2.Triangle = exports2.Polygon = exports2.MultiCurve = exports2.CompoundCurve = exports2.MultiLineString = exports2.CircularString = exports2.LineString = exports2.MultiPoint = exports2.Point = exports2.Geometry = void 0;
|
@@ -70322,9 +70327,9 @@ var require_postgis = __commonJS({
|
|
70322
70327
|
}
|
70323
70328
|
});
|
70324
70329
|
|
70325
|
-
// ../node_modules/.pnpm/
|
70330
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/postgis.js
|
70326
70331
|
var require_postgis2 = __commonJS({
|
70327
|
-
"../node_modules/.pnpm/
|
70332
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/postgis.js"(exports2) {
|
70328
70333
|
"use strict";
|
70329
70334
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
70330
70335
|
exports2.PostgisBox3dCodec = exports2.PostgisBox2dCodec = exports2.PostgisGeometryCodec = void 0;
|
@@ -70667,9 +70672,9 @@ var require_postgis2 = __commonJS({
|
|
70667
70672
|
}
|
70668
70673
|
});
|
70669
70674
|
|
70670
|
-
// ../node_modules/.pnpm/
|
70675
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/codecs.js
|
70671
70676
|
var require_codecs = __commonJS({
|
70672
|
-
"../node_modules/.pnpm/
|
70677
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/codecs.js"(exports2) {
|
70673
70678
|
"use strict";
|
70674
70679
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
70675
70680
|
exports2.INVALID_CODEC = exports2.NULL_CODEC = exports2.SCALAR_CODECS = exports2.NullCodec = void 0;
|
@@ -70753,9 +70758,9 @@ var require_codecs = __commonJS({
|
|
70753
70758
|
}
|
70754
70759
|
});
|
70755
70760
|
|
70756
|
-
// ../node_modules/.pnpm/
|
70761
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/tuple.js
|
70757
70762
|
var require_tuple = __commonJS({
|
70758
|
-
"../node_modules/.pnpm/
|
70763
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/tuple.js"(exports2) {
|
70759
70764
|
"use strict";
|
70760
70765
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
70761
70766
|
exports2.EMPTY_TUPLE_CODEC = exports2.EMPTY_TUPLE_CODEC_ID = exports2.EmptyTupleCodec = exports2.TupleCodec = void 0;
|
@@ -70867,9 +70872,9 @@ var require_tuple = __commonJS({
|
|
70867
70872
|
}
|
70868
70873
|
});
|
70869
70874
|
|
70870
|
-
// ../node_modules/.pnpm/
|
70875
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/range.js
|
70871
70876
|
var require_range2 = __commonJS({
|
70872
|
-
"../node_modules/.pnpm/
|
70877
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/range.js"(exports2) {
|
70873
70878
|
"use strict";
|
70874
70879
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
70875
70880
|
exports2.MultiRange = exports2.Range = void 0;
|
@@ -70936,9 +70941,9 @@ var require_range2 = __commonJS({
|
|
70936
70941
|
}
|
70937
70942
|
});
|
70938
70943
|
|
70939
|
-
// ../node_modules/.pnpm/
|
70944
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/range.js
|
70940
70945
|
var require_range3 = __commonJS({
|
70941
|
-
"../node_modules/.pnpm/
|
70946
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/range.js"(exports2) {
|
70942
70947
|
"use strict";
|
70943
70948
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
70944
70949
|
exports2.MultiRangeCodec = exports2.RangeCodec = void 0;
|
@@ -70993,7 +70998,7 @@ var require_range3 = __commonJS({
|
|
70993
70998
|
}
|
70994
70999
|
var RangeCodec = class extends ifaces_1.Codec {
|
70995
71000
|
tsType = "Range";
|
70996
|
-
tsModule = "
|
71001
|
+
tsModule = "gel";
|
70997
71002
|
subCodec;
|
70998
71003
|
typeName;
|
70999
71004
|
constructor(tid, typeName, subCodec) {
|
@@ -71017,7 +71022,7 @@ var require_range3 = __commonJS({
|
|
71017
71022
|
exports2.RangeCodec = RangeCodec;
|
71018
71023
|
var MultiRangeCodec = class extends ifaces_1.Codec {
|
71019
71024
|
tsType = "MultiRange";
|
71020
|
-
tsModule = "
|
71025
|
+
tsModule = "gel";
|
71021
71026
|
subCodec;
|
71022
71027
|
typeName;
|
71023
71028
|
constructor(tid, typeName, subCodec) {
|
@@ -71086,9 +71091,9 @@ var require_range3 = __commonJS({
|
|
71086
71091
|
}
|
71087
71092
|
});
|
71088
71093
|
|
71089
|
-
// ../node_modules/.pnpm/
|
71094
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/namedtuple.js
|
71090
71095
|
var require_namedtuple = __commonJS({
|
71091
|
-
"../node_modules/.pnpm/
|
71096
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/namedtuple.js"(exports2) {
|
71092
71097
|
"use strict";
|
71093
71098
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
71094
71099
|
exports2.NamedTupleCodec = void 0;
|
@@ -71173,9 +71178,9 @@ var require_namedtuple = __commonJS({
|
|
71173
71178
|
}
|
71174
71179
|
});
|
71175
71180
|
|
71176
|
-
// ../node_modules/.pnpm/
|
71181
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/array.js
|
71177
71182
|
var require_array = __commonJS({
|
71178
|
-
"../node_modules/.pnpm/
|
71183
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/array.js"(exports2) {
|
71179
71184
|
"use strict";
|
71180
71185
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
71181
71186
|
exports2.ArrayCodec = void 0;
|
@@ -71269,9 +71274,9 @@ var require_array = __commonJS({
|
|
71269
71274
|
}
|
71270
71275
|
});
|
71271
71276
|
|
71272
|
-
// ../node_modules/.pnpm/
|
71277
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/enum.js
|
71273
71278
|
var require_enum = __commonJS({
|
71274
|
-
"../node_modules/.pnpm/
|
71279
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/enum.js"(exports2) {
|
71275
71280
|
"use strict";
|
71276
71281
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
71277
71282
|
exports2.EnumCodec = void 0;
|
@@ -71287,9 +71292,9 @@ var require_enum = __commonJS({
|
|
71287
71292
|
}
|
71288
71293
|
});
|
71289
71294
|
|
71290
|
-
// ../node_modules/.pnpm/
|
71295
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/ifaces.js
|
71291
71296
|
var require_ifaces2 = __commonJS({
|
71292
|
-
"../node_modules/.pnpm/
|
71297
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/ifaces.js"(exports2) {
|
71293
71298
|
"use strict";
|
71294
71299
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
71295
71300
|
if (k2 === void 0)
|
@@ -71348,9 +71353,9 @@ var require_ifaces2 = __commonJS({
|
|
71348
71353
|
}
|
71349
71354
|
});
|
71350
71355
|
|
71351
|
-
// ../node_modules/.pnpm/
|
71356
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/object.js
|
71352
71357
|
var require_object = __commonJS({
|
71353
|
-
"../node_modules/.pnpm/
|
71358
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/object.js"(exports2) {
|
71354
71359
|
"use strict";
|
71355
71360
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
71356
71361
|
exports2.ObjectCodec = void 0;
|
@@ -71496,9 +71501,9 @@ var require_object = __commonJS({
|
|
71496
71501
|
}
|
71497
71502
|
});
|
71498
71503
|
|
71499
|
-
// ../node_modules/.pnpm/
|
71504
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/set.js
|
71500
71505
|
var require_set = __commonJS({
|
71501
|
-
"../node_modules/.pnpm/
|
71506
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/set.js"(exports2) {
|
71502
71507
|
"use strict";
|
71503
71508
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
71504
71509
|
exports2.SetCodec = void 0;
|
@@ -71592,9 +71597,9 @@ var require_set = __commonJS({
|
|
71592
71597
|
}
|
71593
71598
|
});
|
71594
71599
|
|
71595
|
-
// ../node_modules/.pnpm/
|
71600
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/record.js
|
71596
71601
|
var require_record = __commonJS({
|
71597
|
-
"../node_modules/.pnpm/
|
71602
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/record.js"(exports2) {
|
71598
71603
|
"use strict";
|
71599
71604
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
71600
71605
|
exports2.RecordCodec = exports2.SQLRowModeObject = exports2.SQLRowModeArray = void 0;
|
@@ -71690,9 +71695,9 @@ var require_record = __commonJS({
|
|
71690
71695
|
}
|
71691
71696
|
});
|
71692
71697
|
|
71693
|
-
// ../node_modules/.pnpm/
|
71698
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/sparseObject.js
|
71694
71699
|
var require_sparseObject = __commonJS({
|
71695
|
-
"../node_modules/.pnpm/
|
71700
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/sparseObject.js"(exports2) {
|
71696
71701
|
"use strict";
|
71697
71702
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
71698
71703
|
exports2.SparseObjectCodec = void 0;
|
@@ -71761,9 +71766,9 @@ var require_sparseObject = __commonJS({
|
|
71761
71766
|
}
|
71762
71767
|
});
|
71763
71768
|
|
71764
|
-
// ../node_modules/.pnpm/
|
71769
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/registry.js
|
71765
71770
|
var require_registry = __commonJS({
|
71766
|
-
"../node_modules/.pnpm/
|
71771
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/registry.js"(exports2) {
|
71767
71772
|
"use strict";
|
71768
71773
|
var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
|
71769
71774
|
return mod && mod.__esModule ? mod : { "default": mod };
|
@@ -71830,7 +71835,7 @@ var require_registry = __commonJS({
|
|
71830
71835
|
}
|
71831
71836
|
buildCodec(spec, protocolVersion) {
|
71832
71837
|
if (!(0, utils_1.versionGreaterThanOrEqual)(protocolVersion, [2, 0])) {
|
71833
|
-
throw new errors_1.UnsupportedProtocolVersionError("unsupported old protocol version v1; downgrade to the previous version of
|
71838
|
+
throw new errors_1.UnsupportedProtocolVersionError("unsupported old protocol version v1; downgrade to the previous version of gel-js");
|
71834
71839
|
}
|
71835
71840
|
const frb = new buffer_1.ReadBuffer(spec);
|
71836
71841
|
const codecsList = [];
|
@@ -72100,9 +72105,9 @@ var require_registry = __commonJS({
|
|
72100
72105
|
}
|
72101
72106
|
});
|
72102
72107
|
|
72103
|
-
// ../node_modules/.pnpm/
|
72108
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/context.js
|
72104
72109
|
var require_context = __commonJS({
|
72105
|
-
"../node_modules/.pnpm/
|
72110
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/codecs/context.js"(exports2) {
|
72106
72111
|
"use strict";
|
72107
72112
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
72108
72113
|
exports2.NOOP_CODEC_CONTEXT = exports2.CodecContext = void 0;
|
@@ -72200,9 +72205,9 @@ var require_context = __commonJS({
|
|
72200
72205
|
}
|
72201
72206
|
});
|
72202
72207
|
|
72203
|
-
// ../node_modules/.pnpm/
|
72208
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/options.js
|
72204
72209
|
var require_options = __commonJS({
|
72205
|
-
"../node_modules/.pnpm/
|
72210
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/options.js"(exports2) {
|
72206
72211
|
"use strict";
|
72207
72212
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
72208
72213
|
if (k2 === void 0)
|
@@ -72251,6 +72256,7 @@ var require_options = __commonJS({
|
|
72251
72256
|
var IsolationLevel;
|
72252
72257
|
(function(IsolationLevel2) {
|
72253
72258
|
IsolationLevel2["Serializable"] = "SERIALIZABLE";
|
72259
|
+
IsolationLevel2["RepeatableRead"] = "REPEATABLE READ";
|
72254
72260
|
})(IsolationLevel || (exports2.IsolationLevel = IsolationLevel = {}));
|
72255
72261
|
var RetryCondition;
|
72256
72262
|
(function(RetryCondition2) {
|
@@ -72270,7 +72276,7 @@ var require_options = __commonJS({
|
|
72270
72276
|
}
|
72271
72277
|
function logWarnings(warnings) {
|
72272
72278
|
for (const warning3 of warnings) {
|
72273
|
-
console.warn(new Error(`
|
72279
|
+
console.warn(new Error(`Gel warning: ${warning3.message}`, { cause: warning3 }));
|
72274
72280
|
}
|
72275
72281
|
}
|
72276
72282
|
var RetryOptions = class _RetryOptions {
|
@@ -72391,7 +72397,6 @@ var require_options = __commonJS({
|
|
72391
72397
|
} else {
|
72392
72398
|
clone2.moduleAliases = this.moduleAliases;
|
72393
72399
|
}
|
72394
|
-
let originalCodecsMap = false;
|
72395
72400
|
if (mergeOptions.codecs != null) {
|
72396
72401
|
clone2.codecs = new Map([
|
72397
72402
|
...this.codecs,
|
@@ -72399,11 +72404,14 @@ var require_options = __commonJS({
|
|
72399
72404
|
]);
|
72400
72405
|
} else {
|
72401
72406
|
clone2.codecs = this.codecs;
|
72402
|
-
|
72407
|
+
clone2.cachedCodecContext = this.cachedCodecContext;
|
72408
|
+
clone2.cachedCodecContextVer = this.cachedCodecContextVer;
|
72403
72409
|
}
|
72404
72410
|
if (mergeOptions._dropSQLRowCodec && clone2.codecs.has("_private_sql_row")) {
|
72405
|
-
if (
|
72411
|
+
if (clone2.codecs === this.codecs) {
|
72406
72412
|
clone2.codecs = new Map(clone2.codecs);
|
72413
|
+
clone2.cachedCodecContext = null;
|
72414
|
+
clone2.cachedCodecContextVer = -1;
|
72407
72415
|
}
|
72408
72416
|
clone2.codecs.delete("_private_sql_row");
|
72409
72417
|
}
|
@@ -72501,9 +72509,9 @@ var require_options = __commonJS({
|
|
72501
72509
|
}
|
72502
72510
|
});
|
72503
72511
|
|
72504
|
-
// ../node_modules/.pnpm/
|
72512
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/event.js
|
72505
72513
|
var require_event = __commonJS({
|
72506
|
-
"../node_modules/.pnpm/
|
72514
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/event.js"(exports2) {
|
72507
72515
|
"use strict";
|
72508
72516
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
72509
72517
|
var errors_1 = require_errors();
|
@@ -72558,9 +72566,9 @@ var require_event = __commonJS({
|
|
72558
72566
|
}
|
72559
72567
|
});
|
72560
72568
|
|
72561
|
-
// ../node_modules/.pnpm/
|
72569
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/queues.js
|
72562
72570
|
var require_queues = __commonJS({
|
72563
|
-
"../node_modules/.pnpm/
|
72571
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/queues.js"(exports2) {
|
72564
72572
|
"use strict";
|
72565
72573
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
72566
72574
|
exports2.LifoQueue = void 0;
|
@@ -72620,9 +72628,9 @@ var require_queues = __commonJS({
|
|
72620
72628
|
}
|
72621
72629
|
});
|
72622
72630
|
|
72623
|
-
// ../node_modules/.pnpm/
|
72631
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/retry.js
|
72624
72632
|
var require_retry = __commonJS({
|
72625
|
-
"../node_modules/.pnpm/
|
72633
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/retry.js"(exports2) {
|
72626
72634
|
"use strict";
|
72627
72635
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
72628
72636
|
if (k2 === void 0)
|
@@ -72683,7 +72691,7 @@ var require_retry = __commonJS({
|
|
72683
72691
|
logMsg.push(`
|
72684
72692
|
|
72685
72693
|
|
72686
|
-
Hint: it looks like the program is running from a directory initialized with "
|
72694
|
+
Hint: it looks like the program is running from a directory initialized with "gel project init". Consider calling "gel.connect()" without arguments.
|
72687
72695
|
`);
|
72688
72696
|
}
|
72689
72697
|
console.warn(...logMsg);
|
@@ -72702,9 +72710,9 @@ Hint: it looks like the program is running from a directory initialized with "ed
|
|
72702
72710
|
}
|
72703
72711
|
});
|
72704
72712
|
|
72705
|
-
// ../node_modules/.pnpm/
|
72713
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/enums.js
|
72706
72714
|
var require_enums = __commonJS({
|
72707
|
-
"../node_modules/.pnpm/
|
72715
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/enums.js"(exports2) {
|
72708
72716
|
"use strict";
|
72709
72717
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
72710
72718
|
exports2.OperatorKind = exports2.SelectModifierKind = exports2.ExpressionKind = exports2.TypeKind = exports2.Cardinality = void 0;
|
@@ -72775,9 +72783,9 @@ var require_enums = __commonJS({
|
|
72775
72783
|
}
|
72776
72784
|
});
|
72777
72785
|
|
72778
|
-
// ../node_modules/.pnpm/
|
72786
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/util.js
|
72779
72787
|
var require_util3 = __commonJS({
|
72780
|
-
"../node_modules/.pnpm/
|
72788
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/util.js"(exports2) {
|
72781
72789
|
"use strict";
|
72782
72790
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
72783
72791
|
exports2.util = void 0;
|
@@ -72856,9 +72864,9 @@ var require_util3 = __commonJS({
|
|
72856
72864
|
}
|
72857
72865
|
});
|
72858
72866
|
|
72859
|
-
// ../node_modules/.pnpm/
|
72867
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/transaction.js
|
72860
72868
|
var require_transaction = __commonJS({
|
72861
|
-
"../node_modules/.pnpm/
|
72869
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/transaction.js"(exports2) {
|
72862
72870
|
"use strict";
|
72863
72871
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
72864
72872
|
if (k2 === void 0)
|
@@ -72924,7 +72932,7 @@ var require_transaction = __commonJS({
|
|
72924
72932
|
async _waitForConnAbort() {
|
72925
72933
|
await this._rawConn.connAbortWaiter.wait();
|
72926
72934
|
const abortError = this._rawConn.getConnAbortError();
|
72927
|
-
if (abortError instanceof errors.
|
72935
|
+
if (abortError instanceof errors.GelError && abortError.cause instanceof errors.TransactionTimeoutError) {
|
72928
72936
|
throw abortError.cause;
|
72929
72937
|
} else {
|
72930
72938
|
throw abortError;
|
@@ -73013,9 +73021,9 @@ var require_transaction = __commonJS({
|
|
73013
73021
|
}
|
73014
73022
|
});
|
73015
73023
|
|
73016
|
-
// ../node_modules/.pnpm/
|
73024
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/baseClient.js
|
73017
73025
|
var require_baseClient = __commonJS({
|
73018
|
-
"../node_modules/.pnpm/
|
73026
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/baseClient.js"(exports2) {
|
73019
73027
|
"use strict";
|
73020
73028
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
73021
73029
|
if (k2 === void 0)
|
@@ -73142,11 +73150,11 @@ var require_baseClient = __commonJS({
|
|
73142
73150
|
await transaction._rollback();
|
73143
73151
|
}
|
73144
73152
|
} catch (rollback_err) {
|
73145
|
-
if (!(rollback_err instanceof errors.
|
73153
|
+
if (!(rollback_err instanceof errors.GelError)) {
|
73146
73154
|
throw rollback_err;
|
73147
73155
|
}
|
73148
73156
|
}
|
73149
|
-
if (err2 instanceof errors.
|
73157
|
+
if (err2 instanceof errors.GelError && err2.hasTag(errors.SHOULD_RETRY) && !(commitFailed && err2 instanceof errors.ClientConnectionError)) {
|
73150
73158
|
const rule = this.options.retryOptions.getRuleForException(err2);
|
73151
73159
|
if (iteration + 1 >= rule.attempts) {
|
73152
73160
|
throw err2;
|
@@ -73169,7 +73177,7 @@ var require_baseClient = __commonJS({
|
|
73169
73177
|
}
|
73170
73178
|
return result;
|
73171
73179
|
} catch (err2) {
|
73172
|
-
if (err2 instanceof errors.
|
73180
|
+
if (err2 instanceof errors.GelError && err2.hasTag(errors.SHOULD_RETRY) && (conn.getQueryCapabilities(query, outputFormat, expectedCardinality) === 0 || err2 instanceof errors.TransactionConflictError)) {
|
73173
73181
|
const rule = this.options.retryOptions.getRuleForException(err2);
|
73174
73182
|
if (iteration + 1 >= rule.attempts) {
|
73175
73183
|
throw err2;
|
@@ -73407,7 +73415,7 @@ var require_baseClient = __commonJS({
|
|
73407
73415
|
}
|
73408
73416
|
async transaction(action) {
|
73409
73417
|
if (this.pool.isStateless) {
|
73410
|
-
throw new errors.
|
73418
|
+
throw new errors.GelError(`cannot use 'transaction()' API on HTTP client`);
|
73411
73419
|
}
|
73412
73420
|
const holder = await this.pool.acquireHolder(this.options);
|
73413
73421
|
try {
|
@@ -73524,9 +73532,9 @@ var require_baseClient = __commonJS({
|
|
73524
73532
|
}
|
73525
73533
|
});
|
73526
73534
|
|
73527
|
-
// ../node_modules/.pnpm/
|
73535
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/systemUtils.js
|
73528
73536
|
var require_systemUtils = __commonJS({
|
73529
|
-
"../node_modules/.pnpm/
|
73537
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/systemUtils.js"(exports2) {
|
73530
73538
|
"use strict";
|
73531
73539
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
73532
73540
|
if (k2 === void 0)
|
@@ -73647,9 +73655,9 @@ var require_systemUtils = __commonJS({
|
|
73647
73655
|
}
|
73648
73656
|
});
|
73649
73657
|
|
73650
|
-
// ../node_modules/.pnpm/
|
73658
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/platform.js
|
73651
73659
|
var require_platform = __commonJS({
|
73652
|
-
"../node_modules/.pnpm/
|
73660
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/platform.js"(exports2) {
|
73653
73661
|
"use strict";
|
73654
73662
|
var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
|
73655
73663
|
return mod && mod.__esModule ? mod : { "default": mod };
|
@@ -73695,9 +73703,9 @@ var require_platform = __commonJS({
|
|
73695
73703
|
}
|
73696
73704
|
});
|
73697
73705
|
|
73698
|
-
// ../node_modules/.pnpm/
|
73706
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/credentials.js
|
73699
73707
|
var require_credentials = __commonJS({
|
73700
|
-
"../node_modules/.pnpm/
|
73708
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/credentials.js"(exports2) {
|
73701
73709
|
"use strict";
|
73702
73710
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
73703
73711
|
exports2.getCredentialsPath = getCredentialsPath;
|
@@ -73800,9 +73808,9 @@ var require_credentials = __commonJS({
|
|
73800
73808
|
}
|
73801
73809
|
});
|
73802
73810
|
|
73803
|
-
// ../node_modules/.pnpm/
|
73811
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/crcHqx.js
|
73804
73812
|
var require_crcHqx = __commonJS({
|
73805
|
-
"../node_modules/.pnpm/
|
73813
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/primitives/crcHqx.js"(exports2) {
|
73806
73814
|
"use strict";
|
73807
73815
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
73808
73816
|
exports2.crcHqx = crcHqx;
|
@@ -74076,9 +74084,9 @@ var require_crcHqx = __commonJS({
|
|
74076
74084
|
}
|
74077
74085
|
});
|
74078
74086
|
|
74079
|
-
// ../node_modules/.pnpm/
|
74087
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/conUtils.js
|
74080
74088
|
var require_conUtils = __commonJS({
|
74081
|
-
"../node_modules/.pnpm/
|
74089
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/conUtils.js"(exports2) {
|
74082
74090
|
"use strict";
|
74083
74091
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
74084
74092
|
if (k2 === void 0)
|
@@ -74144,7 +74152,14 @@ var require_conUtils = __commonJS({
|
|
74144
74152
|
};
|
74145
74153
|
}
|
74146
74154
|
function getEnv(envName, _required = false) {
|
74147
|
-
|
74155
|
+
const gelEnv = envName;
|
74156
|
+
const edgedbEnv = envName.replace(/^GEL_/, "EDGEDB_");
|
74157
|
+
const gelValue = process.env[gelEnv];
|
74158
|
+
const edgedbValue = process.env[edgedbEnv];
|
74159
|
+
if (gelValue !== void 0 && edgedbValue !== void 0) {
|
74160
|
+
console.warn(`Both GEL_w+ and EDGEDB_w+ are set; EDGEDB_w+ will be ignored`);
|
74161
|
+
}
|
74162
|
+
return gelValue ?? edgedbValue;
|
74148
74163
|
}
|
74149
74164
|
var ResolvedConnectConfig = class {
|
74150
74165
|
_host = null;
|
@@ -74259,10 +74274,10 @@ var require_conUtils = __commonJS({
|
|
74259
74274
|
if (!exports2.validTlsSecurityValues.includes(_tlsSecurity)) {
|
74260
74275
|
throw new errors_1.InterfaceError(`invalid 'tlsSecurity' value: '${_tlsSecurity}', must be one of ${exports2.validTlsSecurityValues.map((val2) => `'${val2}'`).join(", ")}`);
|
74261
74276
|
}
|
74262
|
-
const clientSecurity = getEnv("
|
74277
|
+
const clientSecurity = getEnv("GEL_CLIENT_SECURITY");
|
74263
74278
|
if (clientSecurity !== void 0) {
|
74264
74279
|
if (!["default", "insecure_dev_mode", "strict"].includes(clientSecurity)) {
|
74265
|
-
throw new errors_1.InterfaceError(`invalid
|
74280
|
+
throw new errors_1.InterfaceError(`invalid GEL_CLIENT_SECURITY value: '${clientSecurity}', must be one of 'default', 'insecure_dev_mode' or 'strict'`);
|
74266
74281
|
}
|
74267
74282
|
if (clientSecurity === "insecure_dev_mode") {
|
74268
74283
|
if (_tlsSecurity === "default") {
|
@@ -74270,7 +74285,7 @@ var require_conUtils = __commonJS({
|
|
74270
74285
|
}
|
74271
74286
|
} else if (clientSecurity === "strict") {
|
74272
74287
|
if (_tlsSecurity === "insecure" || _tlsSecurity === "no_host_verification") {
|
74273
|
-
throw new errors_1.InterfaceError(`'tlsSecurity' value (${_tlsSecurity}) conflicts with
|
74288
|
+
throw new errors_1.InterfaceError(`'tlsSecurity' value (${_tlsSecurity}) conflicts with GEL_CLIENT_SECURITY value (${clientSecurity}), 'tlsSecurity' value cannot be lower than security level set by GEL_CLIENT_SECURITY`);
|
74274
74289
|
}
|
74275
74290
|
_tlsSecurity = "strict";
|
74276
74291
|
}
|
@@ -74387,7 +74402,7 @@ var require_conUtils = __commonJS({
|
|
74387
74402
|
}
|
74388
74403
|
}
|
74389
74404
|
if (duration instanceof datetime_1.Duration) {
|
74390
|
-
const invalidField = (0, datetime_2.
|
74405
|
+
const invalidField = (0, datetime_2.checkValidGelDuration)(duration);
|
74391
74406
|
if (invalidField) {
|
74392
74407
|
throw new errors_1.InterfaceError(`invalid waitUntilAvailable duration, cannot have a '${invalidField}' value`);
|
74393
74408
|
}
|
@@ -74415,7 +74430,7 @@ var require_conUtils = __commonJS({
|
|
74415
74430
|
user: config.user,
|
74416
74431
|
password: config.password,
|
74417
74432
|
secretKey: config.secretKey,
|
74418
|
-
cloudProfile: getEnv("
|
74433
|
+
cloudProfile: getEnv("GEL_CLOUD_PROFILE"),
|
74419
74434
|
tlsCA: config.tlsCA,
|
74420
74435
|
tlsCAFile: config.tlsCAFile,
|
74421
74436
|
tlsServerName: config.tlsServerName,
|
@@ -74434,7 +74449,7 @@ var require_conUtils = __commonJS({
|
|
74434
74449
|
user: `'user' option`,
|
74435
74450
|
password: `'password' option`,
|
74436
74451
|
secretKey: `'secretKey' option`,
|
74437
|
-
cloudProfile: `'
|
74452
|
+
cloudProfile: `'GEL_CLOUD_PROFILE' environment variable`,
|
74438
74453
|
tlsCA: `'tlsCA' option`,
|
74439
74454
|
tlsCAFile: `'tlsCAFile' option`,
|
74440
74455
|
tlsSecurity: `'tlsSecurity' option`,
|
@@ -74443,46 +74458,46 @@ var require_conUtils = __commonJS({
|
|
74443
74458
|
waitUntilAvailable: `'waitUntilAvailable' option`
|
74444
74459
|
}, `Cannot have more than one of the following connection options: 'dsn', 'instanceName', 'credentials', 'credentialsFile' or 'host'/'port'`, serverUtils);
|
74445
74460
|
if (!hasCompoundOptions) {
|
74446
|
-
let port = getEnv("
|
74461
|
+
let port = getEnv("GEL_PORT");
|
74447
74462
|
if (resolvedConfig._port === null && (port == null ? void 0 : port.startsWith("tcp://"))) {
|
74448
|
-
console.warn(`
|
74463
|
+
console.warn(`GEL_PORT in 'tcp://host:port' format, so will be ignored`);
|
74449
74464
|
port = void 0;
|
74450
74465
|
}
|
74451
74466
|
({ hasCompoundOptions, anyOptionsUsed: fromEnv } = await resolveConfigOptions(resolvedConfig, {
|
74452
|
-
dsn: getEnv("
|
74453
|
-
instanceName: getEnv("
|
74454
|
-
credentials: getEnv("
|
74455
|
-
credentialsFile: getEnv("
|
74456
|
-
host: getEnv("
|
74467
|
+
dsn: getEnv("GEL_DSN"),
|
74468
|
+
instanceName: getEnv("GEL_INSTANCE"),
|
74469
|
+
credentials: getEnv("GEL_CREDENTIALS"),
|
74470
|
+
credentialsFile: getEnv("GEL_CREDENTIALS_FILE"),
|
74471
|
+
host: getEnv("GEL_HOST"),
|
74457
74472
|
port,
|
74458
|
-
database: getEnv("
|
74459
|
-
branch: getEnv("
|
74460
|
-
user: getEnv("
|
74461
|
-
password: getEnv("
|
74462
|
-
secretKey: getEnv("
|
74463
|
-
tlsCA: getEnv("
|
74464
|
-
tlsCAFile: getEnv("
|
74465
|
-
tlsServerName: getEnv("
|
74466
|
-
tlsSecurity: getEnv("
|
74467
|
-
waitUntilAvailable: getEnv("
|
74473
|
+
database: getEnv("GEL_DATABASE"),
|
74474
|
+
branch: getEnv("GEL_BRANCH"),
|
74475
|
+
user: getEnv("GEL_USER"),
|
74476
|
+
password: getEnv("GEL_PASSWORD"),
|
74477
|
+
secretKey: getEnv("GEL_SECRET_KEY"),
|
74478
|
+
tlsCA: getEnv("GEL_TLS_CA"),
|
74479
|
+
tlsCAFile: getEnv("GEL_TLS_CA_FILE"),
|
74480
|
+
tlsServerName: getEnv("GEL_TLS_SERVER_NAME"),
|
74481
|
+
tlsSecurity: getEnv("GEL_CLIENT_TLS_SECURITY"),
|
74482
|
+
waitUntilAvailable: getEnv("GEL_WAIT_UNTIL_AVAILABLE")
|
74468
74483
|
}, {
|
74469
|
-
dsn: `'
|
74470
|
-
instanceName: `'
|
74471
|
-
credentials: `'
|
74472
|
-
credentialsFile: `'
|
74473
|
-
host: `'
|
74474
|
-
port: `'
|
74475
|
-
database: `'
|
74476
|
-
branch: `'
|
74477
|
-
user: `'
|
74478
|
-
password: `'
|
74479
|
-
secretKey: `'
|
74480
|
-
tlsCA: `'
|
74481
|
-
tlsCAFile: `'
|
74482
|
-
tlsServerName: `'
|
74483
|
-
tlsSecurity: `'
|
74484
|
-
waitUntilAvailable: `'
|
74485
|
-
}, `Cannot have more than one of the following connection environment variables: '
|
74484
|
+
dsn: `'GEL_DSN' environment variable`,
|
74485
|
+
instanceName: `'GEL_INSTANCE' environment variable`,
|
74486
|
+
credentials: `'GEL_CREDENTIALS' environment variable`,
|
74487
|
+
credentialsFile: `'GEL_CREDENTIALS_FILE' environment variable`,
|
74488
|
+
host: `'GEL_HOST' environment variable`,
|
74489
|
+
port: `'GEL_PORT' environment variable`,
|
74490
|
+
database: `'GEL_DATABASE' environment variable`,
|
74491
|
+
branch: `'GEL_BRANCH' environment variable`,
|
74492
|
+
user: `'GEL_USER' environment variable`,
|
74493
|
+
password: `'GEL_PASSWORD' environment variable`,
|
74494
|
+
secretKey: `'GEL_SECRET_KEY' environment variable`,
|
74495
|
+
tlsCA: `'GEL_TLS_CA' environment variable`,
|
74496
|
+
tlsCAFile: `'GEL_TLS_CA_FILE' environment variable`,
|
74497
|
+
tlsServerName: `'GEL_TLS_SERVER_NAME' environment variable`,
|
74498
|
+
tlsSecurity: `'GEL_CLIENT_TLS_SECURITY' environment variable`,
|
74499
|
+
waitUntilAvailable: `'GEL_WAIT_UNTIL_AVAILABLE' environment variable`
|
74500
|
+
}, `Cannot have more than one of the following connection environment variables: 'GEL_DSN', 'GEL_INSTANCE', 'GEL_CREDENTIALS', 'GEL_CREDENTIALS_FILE' or 'GEL_HOST'`, serverUtils));
|
74486
74501
|
}
|
74487
74502
|
if (!hasCompoundOptions) {
|
74488
74503
|
if (!serverUtils) {
|
@@ -74490,7 +74505,7 @@ var require_conUtils = __commonJS({
|
|
74490
74505
|
}
|
74491
74506
|
const projectDir = await (serverUtils == null ? void 0 : serverUtils.findProjectDir());
|
74492
74507
|
if (!projectDir) {
|
74493
|
-
throw new errors.ClientConnectionError("no project config file found and no connection options specified either via arguments to `createClient()` API or via environment variables
|
74508
|
+
throw new errors.ClientConnectionError("no project config file found and no connection options specified either via arguments to `createClient()` API or via environment variables GEL_HOST, GEL_INSTANCE, GEL_DSN, GEL_CREDENTIALS or GEL_CREDENTIALS_FILE");
|
74494
74509
|
}
|
74495
74510
|
const stashDir = await serverUtils.findStashPath(projectDir);
|
74496
74511
|
const instName = await serverUtils.readFileUtf8(stashDir, "instance-name").then((name) => name.trim()).catch(() => null);
|
@@ -74516,7 +74531,7 @@ var require_conUtils = __commonJS({
|
|
74516
74531
|
}, "", serverUtils);
|
74517
74532
|
fromProject = true;
|
74518
74533
|
} else {
|
74519
|
-
throw new errors.ClientConnectionError("Found project config file but the project is not initialized. Run '
|
74534
|
+
throw new errors.ClientConnectionError("Found project config file but the project is not initialized. Run 'gel project init'.");
|
74520
74535
|
}
|
74521
74536
|
}
|
74522
74537
|
resolvedConfig.setTlsSecurity("default", "default");
|
@@ -74770,7 +74785,7 @@ var require_conUtils = __commonJS({
|
|
74770
74785
|
const host = `${domainName}.c-${dnsBucket}.i.${dnsZone}`;
|
74771
74786
|
config.setHost(host, `resolved from 'secretKey' and ${source}`);
|
74772
74787
|
} catch (e2) {
|
74773
|
-
if (e2 instanceof errors.
|
74788
|
+
if (e2 instanceof errors.GelError) {
|
74774
74789
|
throw e2;
|
74775
74790
|
} else {
|
74776
74791
|
throw new errors_1.InterfaceError(`Invalid secret key: ${e2}`);
|
@@ -74783,9 +74798,9 @@ var require_conUtils = __commonJS({
|
|
74783
74798
|
}
|
74784
74799
|
});
|
74785
74800
|
|
74786
|
-
// ../node_modules/.pnpm/
|
74801
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/conUtils.server.js
|
74787
74802
|
var require_conUtils_server = __commonJS({
|
74788
|
-
"../node_modules/.pnpm/
|
74803
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/conUtils.server.js"(exports2) {
|
74789
74804
|
"use strict";
|
74790
74805
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
74791
74806
|
if (k2 === void 0)
|
@@ -74874,9 +74889,9 @@ var require_conUtils_server = __commonJS({
|
|
74874
74889
|
}
|
74875
74890
|
});
|
74876
74891
|
|
74877
|
-
// ../node_modules/.pnpm/
|
74892
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/map.js
|
74878
74893
|
var require_map = __commonJS({
|
74879
|
-
"../node_modules/.pnpm/
|
74894
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/map.js"(exports2) {
|
74880
74895
|
"use strict";
|
74881
74896
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
74882
74897
|
if (k2 === void 0)
|
@@ -75018,9 +75033,9 @@ var require_map = __commonJS({
|
|
75018
75033
|
}
|
75019
75034
|
});
|
75020
75035
|
|
75021
|
-
// ../node_modules/.pnpm/
|
75036
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/resolve.js
|
75022
75037
|
var require_resolve = __commonJS({
|
75023
|
-
"../node_modules/.pnpm/
|
75038
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/errors/resolve.js"(exports2) {
|
75024
75039
|
"use strict";
|
75025
75040
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
75026
75041
|
if (k2 === void 0)
|
@@ -75081,7 +75096,7 @@ var require_resolve = __commonJS({
|
|
75081
75096
|
if (result) {
|
75082
75097
|
return result;
|
75083
75098
|
}
|
75084
|
-
return errors.
|
75099
|
+
return errors.GelError;
|
75085
75100
|
}
|
75086
75101
|
var _JSON_FIELDS = {
|
75087
75102
|
hint: base_1.ErrorAttr.hint,
|
@@ -75106,9 +75121,9 @@ var require_resolve = __commonJS({
|
|
75106
75121
|
}
|
75107
75122
|
});
|
75108
75123
|
|
75109
|
-
// ../node_modules/.pnpm/
|
75124
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/baseConn.js
|
75110
75125
|
var require_baseConn = __commonJS({
|
75111
|
-
"../node_modules/.pnpm/
|
75126
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/baseConn.js"(exports2) {
|
75112
75127
|
"use strict";
|
75113
75128
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
75114
75129
|
if (k2 === void 0)
|
@@ -75764,9 +75779,9 @@ var require_baseConn = __commonJS({
|
|
75764
75779
|
}
|
75765
75780
|
});
|
75766
75781
|
|
75767
|
-
// ../node_modules/.pnpm/
|
75782
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/scram.js
|
75768
75783
|
var require_scram = __commonJS({
|
75769
|
-
"../node_modules/.pnpm/
|
75784
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/scram.js"(exports2) {
|
75770
75785
|
"use strict";
|
75771
75786
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
75772
75787
|
exports2.saslprep = saslprep;
|
@@ -75906,9 +75921,9 @@ var require_scram = __commonJS({
|
|
75906
75921
|
}
|
75907
75922
|
});
|
75908
75923
|
|
75909
|
-
// ../node_modules/.pnpm/
|
75924
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/browserCrypto.js
|
75910
75925
|
var require_browserCrypto = __commonJS({
|
75911
|
-
"../node_modules/.pnpm/
|
75926
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/browserCrypto.js"(exports2) {
|
75912
75927
|
"use strict";
|
75913
75928
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
75914
75929
|
exports2.cryptoUtils = void 0;
|
@@ -75937,9 +75952,9 @@ var require_browserCrypto = __commonJS({
|
|
75937
75952
|
}
|
75938
75953
|
});
|
75939
75954
|
|
75940
|
-
// ../node_modules/.pnpm/
|
75955
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/nodeCrypto.js
|
75941
75956
|
var require_nodeCrypto = __commonJS({
|
75942
|
-
"../node_modules/.pnpm/
|
75957
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/nodeCrypto.js"(exports2) {
|
75943
75958
|
"use strict";
|
75944
75959
|
var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
|
75945
75960
|
return mod && mod.__esModule ? mod : { "default": mod };
|
@@ -75973,9 +75988,9 @@ var require_nodeCrypto = __commonJS({
|
|
75973
75988
|
}
|
75974
75989
|
});
|
75975
75990
|
|
75976
|
-
// ../node_modules/.pnpm/
|
75991
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/cryptoUtils.js
|
75977
75992
|
var require_cryptoUtils = __commonJS({
|
75978
|
-
"../node_modules/.pnpm/
|
75993
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/cryptoUtils.js"(exports2) {
|
75979
75994
|
"use strict";
|
75980
75995
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
75981
75996
|
var browserCrypto_1 = require_browserCrypto();
|
@@ -76002,9 +76017,9 @@ var require_cryptoUtils = __commonJS({
|
|
76002
76017
|
}
|
76003
76018
|
});
|
76004
76019
|
|
76005
|
-
// ../node_modules/.pnpm/
|
76020
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/rawConn.js
|
76006
76021
|
var require_rawConn = __commonJS({
|
76007
|
-
"../node_modules/.pnpm/
|
76022
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/rawConn.js"(exports2) {
|
76008
76023
|
"use strict";
|
76009
76024
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
76010
76025
|
if (k2 === void 0)
|
@@ -76219,7 +76234,7 @@ var require_rawConn = __commonJS({
|
|
76219
76234
|
if (timeoutHappened && e2 instanceof errors.ClientConnectionClosedError) {
|
76220
76235
|
throw new errors.ClientConnectionTimeoutError(`connection timed out (${config.connectTimeout}ms)`);
|
76221
76236
|
}
|
76222
|
-
if (e2 instanceof errors.
|
76237
|
+
if (e2 instanceof errors.GelError) {
|
76223
76238
|
throw e2;
|
76224
76239
|
} else {
|
76225
76240
|
let err2;
|
@@ -76408,9 +76423,9 @@ ${config.connectionParams.explainConfig()}
|
|
76408
76423
|
}
|
76409
76424
|
});
|
76410
76425
|
|
76411
|
-
// ../node_modules/.pnpm/
|
76426
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/fetchConn.js
|
76412
76427
|
var require_fetchConn = __commonJS({
|
76413
|
-
"../node_modules/.pnpm/
|
76428
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/fetchConn.js"(exports2) {
|
76414
76429
|
"use strict";
|
76415
76430
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
76416
76431
|
if (k2 === void 0)
|
@@ -76584,9 +76599,9 @@ var require_fetchConn = __commonJS({
|
|
76584
76599
|
}
|
76585
76600
|
});
|
76586
76601
|
|
76587
|
-
// ../node_modules/.pnpm/
|
76602
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/httpScram.js
|
76588
76603
|
var require_httpScram = __commonJS({
|
76589
|
-
"../node_modules/.pnpm/
|
76604
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/httpScram.js"(exports2) {
|
76590
76605
|
"use strict";
|
76591
76606
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
76592
76607
|
exports2.getHTTPSCRAMAuth = getHTTPSCRAMAuth;
|
@@ -76665,9 +76680,9 @@ var require_httpScram = __commonJS({
|
|
76665
76680
|
}
|
76666
76681
|
});
|
76667
76682
|
|
76668
|
-
// ../node_modules/.pnpm/
|
76683
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/nodeClient.js
|
76669
76684
|
var require_nodeClient = __commonJS({
|
76670
|
-
"../node_modules/.pnpm/
|
76685
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/nodeClient.js"(exports2) {
|
76671
76686
|
"use strict";
|
76672
76687
|
var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
|
76673
76688
|
return mod && mod.__esModule ? mod : { "default": mod };
|
@@ -76700,9 +76715,9 @@ var require_nodeClient = __commonJS({
|
|
76700
76715
|
}
|
76701
76716
|
});
|
76702
76717
|
|
76703
|
-
// ../node_modules/.pnpm/
|
76718
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/wkt.js
|
76704
76719
|
var require_wkt = __commonJS({
|
76705
|
-
"../node_modules/.pnpm/
|
76720
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/datatypes/wkt.js"(exports2) {
|
76706
76721
|
"use strict";
|
76707
76722
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
76708
76723
|
exports2.parseWKT = parseWKT;
|
@@ -76943,9 +76958,9 @@ var require_wkt = __commonJS({
|
|
76943
76958
|
}
|
76944
76959
|
});
|
76945
76960
|
|
76946
|
-
// ../node_modules/.pnpm/
|
76961
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/index.shared.js
|
76947
76962
|
var require_index_shared = __commonJS({
|
76948
|
-
"../node_modules/.pnpm/
|
76963
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/index.shared.js"(exports2) {
|
76949
76964
|
"use strict";
|
76950
76965
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
76951
76966
|
if (k2 === void 0)
|
@@ -77037,17 +77052,17 @@ var require_index_shared = __commonJS({
|
|
77037
77052
|
}
|
77038
77053
|
});
|
77039
77054
|
|
77040
|
-
// ../node_modules/.pnpm/
|
77055
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/typeutil.js
|
77041
77056
|
var require_typeutil = __commonJS({
|
77042
|
-
"../node_modules/.pnpm/
|
77057
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/typeutil.js"(exports2) {
|
77043
77058
|
"use strict";
|
77044
77059
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77045
77060
|
}
|
77046
77061
|
});
|
77047
77062
|
|
77048
|
-
// ../node_modules/.pnpm/
|
77063
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/strictMap.js
|
77049
77064
|
var require_strictMap = __commonJS({
|
77050
|
-
"../node_modules/.pnpm/
|
77065
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/strictMap.js"(exports2) {
|
77051
77066
|
"use strict";
|
77052
77067
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77053
77068
|
exports2.StrictMapSet = exports2.StrictMap = void 0;
|
@@ -77071,9 +77086,9 @@ var require_strictMap = __commonJS({
|
|
77071
77086
|
}
|
77072
77087
|
});
|
77073
77088
|
|
77074
|
-
// ../node_modules/.pnpm/
|
77089
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/reservedKeywords.js
|
77075
77090
|
var require_reservedKeywords = __commonJS({
|
77076
|
-
"../node_modules/.pnpm/
|
77091
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/reservedKeywords.js"(exports2) {
|
77077
77092
|
"use strict";
|
77078
77093
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77079
77094
|
exports2.reservedKeywords = void 0;
|
@@ -77169,9 +77184,9 @@ var require_reservedKeywords = __commonJS({
|
|
77169
77184
|
}
|
77170
77185
|
});
|
77171
77186
|
|
77172
|
-
// ../node_modules/.pnpm/
|
77187
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/types.js
|
77173
77188
|
var require_types = __commonJS({
|
77174
|
-
"../node_modules/.pnpm/
|
77189
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/types.js"(exports2) {
|
77175
77190
|
"use strict";
|
77176
77191
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77177
77192
|
exports2.typeMapping = void 0;
|
@@ -77466,9 +77481,9 @@ var require_types = __commonJS({
|
|
77466
77481
|
}
|
77467
77482
|
});
|
77468
77483
|
|
77469
|
-
// ../node_modules/.pnpm/
|
77484
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/casts.js
|
77470
77485
|
var require_casts = __commonJS({
|
77471
|
-
"../node_modules/.pnpm/
|
77486
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/casts.js"(exports2) {
|
77472
77487
|
"use strict";
|
77473
77488
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77474
77489
|
exports2.casts = void 0;
|
@@ -77588,9 +77603,9 @@ EXPLICIT`);
|
|
77588
77603
|
}
|
77589
77604
|
});
|
77590
77605
|
|
77591
|
-
// ../node_modules/.pnpm/
|
77606
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/functions.js
|
77592
77607
|
var require_functions = __commonJS({
|
77593
|
-
"../node_modules/.pnpm/
|
77608
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/functions.js"(exports2) {
|
77594
77609
|
"use strict";
|
77595
77610
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77596
77611
|
exports2.functions = void 0;
|
@@ -77676,9 +77691,9 @@ var require_functions = __commonJS({
|
|
77676
77691
|
}
|
77677
77692
|
});
|
77678
77693
|
|
77679
|
-
// ../node_modules/.pnpm/
|
77694
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/globals.js
|
77680
77695
|
var require_globals = __commonJS({
|
77681
|
-
"../node_modules/.pnpm/
|
77696
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/globals.js"(exports2) {
|
77682
77697
|
"use strict";
|
77683
77698
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77684
77699
|
exports2.globals = globals;
|
@@ -77711,9 +77726,9 @@ var require_globals = __commonJS({
|
|
77711
77726
|
}
|
77712
77727
|
});
|
77713
77728
|
|
77714
|
-
// ../node_modules/.pnpm/
|
77729
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/operators.js
|
77715
77730
|
var require_operators = __commonJS({
|
77716
|
-
"../node_modules/.pnpm/
|
77731
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/operators.js"(exports2) {
|
77717
77732
|
"use strict";
|
77718
77733
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77719
77734
|
exports2.operators = void 0;
|
@@ -77789,9 +77804,9 @@ var require_operators = __commonJS({
|
|
77789
77804
|
}
|
77790
77805
|
});
|
77791
77806
|
|
77792
|
-
// ../node_modules/.pnpm/
|
77807
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/scalars.js
|
77793
77808
|
var require_scalars = __commonJS({
|
77794
|
-
"../node_modules/.pnpm/
|
77809
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries/scalars.js"(exports2) {
|
77795
77810
|
"use strict";
|
77796
77811
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77797
77812
|
exports2.scalars = void 0;
|
@@ -77821,9 +77836,9 @@ FILTER
|
|
77821
77836
|
}
|
77822
77837
|
});
|
77823
77838
|
|
77824
|
-
// ../node_modules/.pnpm/
|
77839
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries.js
|
77825
77840
|
var require_queries = __commonJS({
|
77826
|
-
"../node_modules/.pnpm/
|
77841
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/queries.js"(exports2) {
|
77827
77842
|
"use strict";
|
77828
77843
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
77829
77844
|
if (k2 === void 0)
|
@@ -77855,9 +77870,9 @@ var require_queries = __commonJS({
|
|
77855
77870
|
}
|
77856
77871
|
});
|
77857
77872
|
|
77858
|
-
// ../node_modules/.pnpm/
|
77873
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/analyzeQuery.js
|
77859
77874
|
var require_analyzeQuery = __commonJS({
|
77860
|
-
"../node_modules/.pnpm/
|
77875
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/analyzeQuery.js"(exports2) {
|
77861
77876
|
"use strict";
|
77862
77877
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
77863
77878
|
exports2.ImportMap = exports2.defaultApplyCardinalityToTsType = exports2.generateTsObjectField = exports2.generateTsObject = exports2.defaultCodecGenerators = exports2.defineCodecGeneratorTuple = exports2.generateTSTypeFromCodec = void 0;
|
@@ -77887,7 +77902,7 @@ var require_analyzeQuery = __commonJS({
|
|
77887
77902
|
cardinality,
|
77888
77903
|
query,
|
77889
77904
|
importMap: imports,
|
77890
|
-
imports: imports.get("
|
77905
|
+
imports: imports.get("gel") ?? /* @__PURE__ */ new Set()
|
77891
77906
|
};
|
77892
77907
|
}
|
77893
77908
|
var generateTSTypeFromCodec = (codec, cardinality = enums_1.Cardinality.One, options = {}) => {
|
@@ -78038,9 +78053,9 @@ ${ctx.indent}}`;
|
|
78038
78053
|
}
|
78039
78054
|
});
|
78040
78055
|
|
78041
|
-
// ../node_modules/.pnpm/
|
78056
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/index.js
|
78042
78057
|
var require_reflection = __commonJS({
|
78043
|
-
"../node_modules/.pnpm/
|
78058
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/reflection/index.js"(exports2) {
|
78044
78059
|
"use strict";
|
78045
78060
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
78046
78061
|
if (k2 === void 0)
|
@@ -78092,9 +78107,9 @@ var require_reflection = __commonJS({
|
|
78092
78107
|
}
|
78093
78108
|
});
|
78094
78109
|
|
78095
|
-
// ../node_modules/.pnpm/
|
78110
|
+
// ../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/index.node.js
|
78096
78111
|
var require_index_node = __commonJS({
|
78097
|
-
"../node_modules/.pnpm/
|
78112
|
+
"../node_modules/.pnpm/gel@2.0.0/node_modules/gel/dist/index.node.js"(exports2) {
|
78098
78113
|
"use strict";
|
78099
78114
|
var __createBinding3 = exports2 && exports2.__createBinding || (Object.create ? function(o, m2, k, k2) {
|
78100
78115
|
if (k2 === void 0)
|
@@ -78492,13 +78507,27 @@ var init_connections = __esm({
|
|
78492
78507
|
process.exit(1);
|
78493
78508
|
};
|
78494
78509
|
prepareGelDB = async (credentials2) => {
|
78495
|
-
if (await checkPackage("
|
78496
|
-
const
|
78510
|
+
if (await checkPackage("gel")) {
|
78511
|
+
const gel = await Promise.resolve().then(() => __toESM(require_index_node()));
|
78497
78512
|
let client;
|
78498
|
-
if (
|
78499
|
-
|
78513
|
+
if (!credentials2) {
|
78514
|
+
client = gel.createClient();
|
78515
|
+
try {
|
78516
|
+
await client.querySQL(`select 1;`);
|
78517
|
+
} catch (error2) {
|
78518
|
+
if (error2 instanceof gel.ClientConnectionError) {
|
78519
|
+
console.error(
|
78520
|
+
`It looks like you forgot to link the Gel project or provide the database credentials.
|
78521
|
+
To link your project, please refer https://docs.geldata.com/reference/cli/gel_instance/gel_instance_link, or add the dbCredentials to your configuration file.`
|
78522
|
+
);
|
78523
|
+
process.exit(1);
|
78524
|
+
}
|
78525
|
+
throw error2;
|
78526
|
+
}
|
78527
|
+
} else if ("url" in credentials2) {
|
78528
|
+
"tlsSecurity" in credentials2 ? client = gel.createClient({ dsn: credentials2.url, tlsSecurity: credentials2.tlsSecurity, concurrency: 1 }) : client = gel.createClient({ dsn: credentials2.url, concurrency: 1 });
|
78500
78529
|
} else {
|
78501
|
-
|
78530
|
+
gel.createClient({ ...credentials2, concurrency: 1 });
|
78502
78531
|
}
|
78503
78532
|
const query = async (sql, params) => {
|
78504
78533
|
const result = (params == null ? void 0 : params.length) ? await client.querySQL(sql, params) : await client.querySQL(sql);
|
@@ -92028,6 +92057,8 @@ var optionsDatabaseCredentials = {
|
|
92028
92057
|
ssl: string().desc("ssl mode"),
|
92029
92058
|
// Turso
|
92030
92059
|
authToken: string("auth-token").desc("Database auth token [Turso]"),
|
92060
|
+
// gel
|
92061
|
+
tlsSecurity: string("tlsSecurity").desc("tls security mode"),
|
92031
92062
|
// specific cases
|
92032
92063
|
driver: optionDriver
|
92033
92064
|
};
|
@@ -92066,7 +92097,8 @@ var push = command2({
|
|
92066
92097
|
"schemaFilters",
|
92067
92098
|
"extensionsFilters",
|
92068
92099
|
"tablesFilter",
|
92069
|
-
"casing"
|
92100
|
+
"casing",
|
92101
|
+
"tlsSecurity"
|
92070
92102
|
]
|
92071
92103
|
);
|
92072
92104
|
return preparePushConfig(opts, from);
|
@@ -92268,7 +92300,8 @@ var pull = command2({
|
|
92268
92300
|
"breakpoints",
|
92269
92301
|
"tablesFilter",
|
92270
92302
|
"schemaFilters",
|
92271
|
-
"extensionsFilters"
|
92303
|
+
"extensionsFilters",
|
92304
|
+
"tlsSecurity"
|
92272
92305
|
]
|
92273
92306
|
);
|
92274
92307
|
return preparePullConfig(opts, from);
|
@@ -92582,7 +92615,7 @@ init_utils5();
|
|
92582
92615
|
var version2 = async () => {
|
92583
92616
|
const { npmVersion } = await ormCoreVersions();
|
92584
92617
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
92585
|
-
const envVersion = "0.30.4-
|
92618
|
+
const envVersion = "0.30.4-af1f2fe";
|
92586
92619
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
92587
92620
|
const versions = `drizzle-kit: ${kitVersion}
|
92588
92621
|
${ormVersion}`;
|
@@ -92631,11 +92664,11 @@ formdata-polyfill/esm.min.js:
|
|
92631
92664
|
node-domexception/index.js:
|
92632
92665
|
(*! node-domexception. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> *)
|
92633
92666
|
|
92634
|
-
|
92667
|
+
gel/dist/primitives/chars.js:
|
92635
92668
|
(*!
|
92636
|
-
* This source file is part of the
|
92669
|
+
* This source file is part of the Gel open source project.
|
92637
92670
|
*
|
92638
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92671
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92639
92672
|
*
|
92640
92673
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92641
92674
|
* you may not use this file except in compliance with the License.
|
@@ -92650,11 +92683,11 @@ edgedb/dist/primitives/chars.js:
|
|
92650
92683
|
* limitations under the License.
|
92651
92684
|
*)
|
92652
92685
|
|
92653
|
-
|
92686
|
+
gel/dist/primitives/buffer.js:
|
92654
92687
|
(*!
|
92655
|
-
* This source file is part of the
|
92688
|
+
* This source file is part of the Gel open source project.
|
92656
92689
|
*
|
92657
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92690
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92658
92691
|
*
|
92659
92692
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92660
92693
|
* you may not use this file except in compliance with the License.
|
@@ -92669,11 +92702,11 @@ edgedb/dist/primitives/buffer.js:
|
|
92669
92702
|
* limitations under the License.
|
92670
92703
|
*)
|
92671
92704
|
|
92672
|
-
|
92705
|
+
gel/dist/errors/index.js:
|
92673
92706
|
(*!
|
92674
|
-
* This source file is part of the
|
92707
|
+
* This source file is part of the Gel open source project.
|
92675
92708
|
*
|
92676
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92709
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92677
92710
|
*
|
92678
92711
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92679
92712
|
* you may not use this file except in compliance with the License.
|
@@ -92688,11 +92721,11 @@ edgedb/dist/errors/index.js:
|
|
92688
92721
|
* limitations under the License.
|
92689
92722
|
*)
|
92690
92723
|
|
92691
|
-
|
92724
|
+
gel/dist/primitives/lru.js:
|
92692
92725
|
(*!
|
92693
|
-
* This source file is part of the
|
92726
|
+
* This source file is part of the Gel open source project.
|
92694
92727
|
*
|
92695
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92728
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92696
92729
|
*
|
92697
92730
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92698
92731
|
* you may not use this file except in compliance with the License.
|
@@ -92707,11 +92740,11 @@ edgedb/dist/primitives/lru.js:
|
|
92707
92740
|
* limitations under the License.
|
92708
92741
|
*)
|
92709
92742
|
|
92710
|
-
|
92743
|
+
gel/dist/codecs/consts.js:
|
92711
92744
|
(*!
|
92712
|
-
* This source file is part of the
|
92745
|
+
* This source file is part of the Gel open source project.
|
92713
92746
|
*
|
92714
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92747
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92715
92748
|
*
|
92716
92749
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92717
92750
|
* you may not use this file except in compliance with the License.
|
@@ -92726,11 +92759,11 @@ edgedb/dist/codecs/consts.js:
|
|
92726
92759
|
* limitations under the License.
|
92727
92760
|
*)
|
92728
92761
|
|
92729
|
-
|
92762
|
+
gel/dist/codecs/ifaces.js:
|
92730
92763
|
(*!
|
92731
|
-
* This source file is part of the
|
92764
|
+
* This source file is part of the Gel open source project.
|
92732
92765
|
*
|
92733
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92766
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92734
92767
|
*
|
92735
92768
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92736
92769
|
* you may not use this file except in compliance with the License.
|
@@ -92745,11 +92778,11 @@ edgedb/dist/codecs/ifaces.js:
|
|
92745
92778
|
* limitations under the License.
|
92746
92779
|
*)
|
92747
92780
|
|
92748
|
-
|
92781
|
+
gel/dist/codecs/boolean.js:
|
92749
92782
|
(*!
|
92750
|
-
* This source file is part of the
|
92783
|
+
* This source file is part of the Gel open source project.
|
92751
92784
|
*
|
92752
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92785
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92753
92786
|
*
|
92754
92787
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92755
92788
|
* you may not use this file except in compliance with the License.
|
@@ -92764,11 +92797,11 @@ edgedb/dist/codecs/boolean.js:
|
|
92764
92797
|
* limitations under the License.
|
92765
92798
|
*)
|
92766
92799
|
|
92767
|
-
|
92800
|
+
gel/dist/codecs/numbers.js:
|
92768
92801
|
(*!
|
92769
|
-
* This source file is part of the
|
92802
|
+
* This source file is part of the Gel open source project.
|
92770
92803
|
*
|
92771
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92804
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92772
92805
|
*
|
92773
92806
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92774
92807
|
* you may not use this file except in compliance with the License.
|
@@ -92783,11 +92816,11 @@ edgedb/dist/codecs/numbers.js:
|
|
92783
92816
|
* limitations under the License.
|
92784
92817
|
*)
|
92785
92818
|
|
92786
|
-
|
92819
|
+
gel/dist/codecs/numerics.js:
|
92787
92820
|
(*!
|
92788
|
-
* This source file is part of the
|
92821
|
+
* This source file is part of the Gel open source project.
|
92789
92822
|
*
|
92790
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92823
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92791
92824
|
*
|
92792
92825
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92793
92826
|
* you may not use this file except in compliance with the License.
|
@@ -92802,11 +92835,11 @@ edgedb/dist/codecs/numerics.js:
|
|
92802
92835
|
* limitations under the License.
|
92803
92836
|
*)
|
92804
92837
|
|
92805
|
-
|
92838
|
+
gel/dist/codecs/text.js:
|
92806
92839
|
(*!
|
92807
|
-
* This source file is part of the
|
92840
|
+
* This source file is part of the Gel open source project.
|
92808
92841
|
*
|
92809
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92842
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92810
92843
|
*
|
92811
92844
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92812
92845
|
* you may not use this file except in compliance with the License.
|
@@ -92821,11 +92854,11 @@ edgedb/dist/codecs/text.js:
|
|
92821
92854
|
* limitations under the License.
|
92822
92855
|
*)
|
92823
92856
|
|
92824
|
-
|
92857
|
+
gel/dist/codecs/uuid.js:
|
92825
92858
|
(*!
|
92826
|
-
* This source file is part of the
|
92859
|
+
* This source file is part of the Gel open source project.
|
92827
92860
|
*
|
92828
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92861
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92829
92862
|
*
|
92830
92863
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92831
92864
|
* you may not use this file except in compliance with the License.
|
@@ -92840,11 +92873,11 @@ edgedb/dist/codecs/uuid.js:
|
|
92840
92873
|
* limitations under the License.
|
92841
92874
|
*)
|
92842
92875
|
|
92843
|
-
|
92876
|
+
gel/dist/codecs/bytes.js:
|
92844
92877
|
(*!
|
92845
|
-
* This source file is part of the
|
92878
|
+
* This source file is part of the Gel open source project.
|
92846
92879
|
*
|
92847
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92880
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92848
92881
|
*
|
92849
92882
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92850
92883
|
* you may not use this file except in compliance with the License.
|
@@ -92859,11 +92892,11 @@ edgedb/dist/codecs/bytes.js:
|
|
92859
92892
|
* limitations under the License.
|
92860
92893
|
*)
|
92861
92894
|
|
92862
|
-
|
92895
|
+
gel/dist/codecs/json.js:
|
92863
92896
|
(*!
|
92864
|
-
* This source file is part of the
|
92897
|
+
* This source file is part of the Gel open source project.
|
92865
92898
|
*
|
92866
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92899
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92867
92900
|
*
|
92868
92901
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92869
92902
|
* you may not use this file except in compliance with the License.
|
@@ -92878,19 +92911,19 @@ edgedb/dist/codecs/json.js:
|
|
92878
92911
|
* limitations under the License.
|
92879
92912
|
*)
|
92880
92913
|
|
92881
|
-
|
92914
|
+
gel/dist/datatypes/dateutil.js:
|
92882
92915
|
(*!
|
92883
|
-
* Portions Copyright (c) 2019 MagicStack Inc. and the
|
92916
|
+
* Portions Copyright (c) 2019 MagicStack Inc. and the Gel authors.
|
92884
92917
|
* Portions Copyright (c) 2001-2019 Python Software Foundation.
|
92885
92918
|
* All rights reserved.
|
92886
92919
|
* Licence: PSFL https://docs.python.org/3/license.html
|
92887
92920
|
*)
|
92888
92921
|
|
92889
|
-
|
92922
|
+
gel/dist/datatypes/datetime.js:
|
92890
92923
|
(*!
|
92891
|
-
* This source file is part of the
|
92924
|
+
* This source file is part of the Gel open source project.
|
92892
92925
|
*
|
92893
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92926
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92894
92927
|
*
|
92895
92928
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92896
92929
|
* you may not use this file except in compliance with the License.
|
@@ -92905,11 +92938,11 @@ edgedb/dist/datatypes/datetime.js:
|
|
92905
92938
|
* limitations under the License.
|
92906
92939
|
*)
|
92907
92940
|
|
92908
|
-
|
92941
|
+
gel/dist/codecs/datetime.js:
|
92909
92942
|
(*!
|
92910
|
-
* This source file is part of the
|
92943
|
+
* This source file is part of the Gel open source project.
|
92911
92944
|
*
|
92912
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92945
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92913
92946
|
*
|
92914
92947
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92915
92948
|
* you may not use this file except in compliance with the License.
|
@@ -92924,11 +92957,11 @@ edgedb/dist/codecs/datetime.js:
|
|
92924
92957
|
* limitations under the License.
|
92925
92958
|
*)
|
92926
92959
|
|
92927
|
-
|
92960
|
+
gel/dist/datatypes/memory.js:
|
92928
92961
|
(*!
|
92929
|
-
* This source file is part of the
|
92962
|
+
* This source file is part of the Gel open source project.
|
92930
92963
|
*
|
92931
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92964
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92932
92965
|
*
|
92933
92966
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92934
92967
|
* you may not use this file except in compliance with the License.
|
@@ -92943,11 +92976,11 @@ edgedb/dist/datatypes/memory.js:
|
|
92943
92976
|
* limitations under the License.
|
92944
92977
|
*)
|
92945
92978
|
|
92946
|
-
|
92979
|
+
gel/dist/codecs/memory.js:
|
92947
92980
|
(*!
|
92948
|
-
* This source file is part of the
|
92981
|
+
* This source file is part of the Gel open source project.
|
92949
92982
|
*
|
92950
|
-
* Copyright 2019-present MagicStack Inc. and the
|
92983
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92951
92984
|
*
|
92952
92985
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92953
92986
|
* you may not use this file except in compliance with the License.
|
@@ -92962,11 +92995,11 @@ edgedb/dist/codecs/memory.js:
|
|
92962
92995
|
* limitations under the License.
|
92963
92996
|
*)
|
92964
92997
|
|
92965
|
-
|
92998
|
+
gel/dist/utils.js:
|
92966
92999
|
(*!
|
92967
|
-
* This source file is part of the
|
93000
|
+
* This source file is part of the Gel open source project.
|
92968
93001
|
*
|
92969
|
-
* Copyright 2020-present MagicStack Inc. and the
|
93002
|
+
* Copyright 2020-present MagicStack Inc. and the Gel authors.
|
92970
93003
|
*
|
92971
93004
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92972
93005
|
* you may not use this file except in compliance with the License.
|
@@ -92981,11 +93014,11 @@ edgedb/dist/utils.js:
|
|
92981
93014
|
* limitations under the License.
|
92982
93015
|
*)
|
92983
93016
|
|
92984
|
-
|
93017
|
+
gel/dist/codecs/pgvector.js:
|
92985
93018
|
(*!
|
92986
|
-
* This source file is part of the
|
93019
|
+
* This source file is part of the Gel open source project.
|
92987
93020
|
*
|
92988
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93021
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
92989
93022
|
*
|
92990
93023
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
92991
93024
|
* you may not use this file except in compliance with the License.
|
@@ -93000,11 +93033,11 @@ edgedb/dist/codecs/pgvector.js:
|
|
93000
93033
|
* limitations under the License.
|
93001
93034
|
*)
|
93002
93035
|
|
93003
|
-
|
93036
|
+
gel/dist/codecs/codecs.js:
|
93004
93037
|
(*!
|
93005
|
-
* This source file is part of the
|
93038
|
+
* This source file is part of the Gel open source project.
|
93006
93039
|
*
|
93007
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93040
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93008
93041
|
*
|
93009
93042
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93010
93043
|
* you may not use this file except in compliance with the License.
|
@@ -93019,11 +93052,11 @@ edgedb/dist/codecs/codecs.js:
|
|
93019
93052
|
* limitations under the License.
|
93020
93053
|
*)
|
93021
93054
|
|
93022
|
-
|
93055
|
+
gel/dist/codecs/tuple.js:
|
93023
93056
|
(*!
|
93024
|
-
* This source file is part of the
|
93057
|
+
* This source file is part of the Gel open source project.
|
93025
93058
|
*
|
93026
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93059
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93027
93060
|
*
|
93028
93061
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93029
93062
|
* you may not use this file except in compliance with the License.
|
@@ -93038,11 +93071,11 @@ edgedb/dist/codecs/tuple.js:
|
|
93038
93071
|
* limitations under the License.
|
93039
93072
|
*)
|
93040
93073
|
|
93041
|
-
|
93074
|
+
gel/dist/datatypes/range.js:
|
93042
93075
|
(*!
|
93043
|
-
* This source file is part of the
|
93076
|
+
* This source file is part of the Gel open source project.
|
93044
93077
|
*
|
93045
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93078
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93046
93079
|
*
|
93047
93080
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93048
93081
|
* you may not use this file except in compliance with the License.
|
@@ -93057,11 +93090,11 @@ edgedb/dist/datatypes/range.js:
|
|
93057
93090
|
* limitations under the License.
|
93058
93091
|
*)
|
93059
93092
|
|
93060
|
-
|
93093
|
+
gel/dist/codecs/range.js:
|
93061
93094
|
(*!
|
93062
|
-
* This source file is part of the
|
93095
|
+
* This source file is part of the Gel open source project.
|
93063
93096
|
*
|
93064
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93097
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93065
93098
|
*
|
93066
93099
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93067
93100
|
* you may not use this file except in compliance with the License.
|
@@ -93076,11 +93109,11 @@ edgedb/dist/codecs/range.js:
|
|
93076
93109
|
* limitations under the License.
|
93077
93110
|
*)
|
93078
93111
|
|
93079
|
-
|
93112
|
+
gel/dist/codecs/namedtuple.js:
|
93080
93113
|
(*!
|
93081
|
-
* This source file is part of the
|
93114
|
+
* This source file is part of the Gel open source project.
|
93082
93115
|
*
|
93083
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93116
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93084
93117
|
*
|
93085
93118
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93086
93119
|
* you may not use this file except in compliance with the License.
|
@@ -93095,11 +93128,11 @@ edgedb/dist/codecs/namedtuple.js:
|
|
93095
93128
|
* limitations under the License.
|
93096
93129
|
*)
|
93097
93130
|
|
93098
|
-
|
93131
|
+
gel/dist/codecs/array.js:
|
93099
93132
|
(*!
|
93100
|
-
* This source file is part of the
|
93133
|
+
* This source file is part of the Gel open source project.
|
93101
93134
|
*
|
93102
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93135
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93103
93136
|
*
|
93104
93137
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93105
93138
|
* you may not use this file except in compliance with the License.
|
@@ -93114,11 +93147,11 @@ edgedb/dist/codecs/array.js:
|
|
93114
93147
|
* limitations under the License.
|
93115
93148
|
*)
|
93116
93149
|
|
93117
|
-
|
93150
|
+
gel/dist/codecs/enum.js:
|
93118
93151
|
(*!
|
93119
|
-
* This source file is part of the
|
93152
|
+
* This source file is part of the Gel open source project.
|
93120
93153
|
*
|
93121
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93154
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93122
93155
|
*
|
93123
93156
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93124
93157
|
* you may not use this file except in compliance with the License.
|
@@ -93133,11 +93166,11 @@ edgedb/dist/codecs/enum.js:
|
|
93133
93166
|
* limitations under the License.
|
93134
93167
|
*)
|
93135
93168
|
|
93136
|
-
|
93169
|
+
gel/dist/ifaces.js:
|
93137
93170
|
(*!
|
93138
|
-
* This source file is part of the
|
93171
|
+
* This source file is part of the Gel open source project.
|
93139
93172
|
*
|
93140
|
-
* Copyright 2020-present MagicStack Inc. and the
|
93173
|
+
* Copyright 2020-present MagicStack Inc. and the Gel authors.
|
93141
93174
|
*
|
93142
93175
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93143
93176
|
* you may not use this file except in compliance with the License.
|
@@ -93152,11 +93185,11 @@ edgedb/dist/ifaces.js:
|
|
93152
93185
|
* limitations under the License.
|
93153
93186
|
*)
|
93154
93187
|
|
93155
|
-
|
93188
|
+
gel/dist/codecs/object.js:
|
93156
93189
|
(*!
|
93157
|
-
* This source file is part of the
|
93190
|
+
* This source file is part of the Gel open source project.
|
93158
93191
|
*
|
93159
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93192
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93160
93193
|
*
|
93161
93194
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93162
93195
|
* you may not use this file except in compliance with the License.
|
@@ -93171,11 +93204,11 @@ edgedb/dist/codecs/object.js:
|
|
93171
93204
|
* limitations under the License.
|
93172
93205
|
*)
|
93173
93206
|
|
93174
|
-
|
93207
|
+
gel/dist/codecs/set.js:
|
93175
93208
|
(*!
|
93176
|
-
* This source file is part of the
|
93209
|
+
* This source file is part of the Gel open source project.
|
93177
93210
|
*
|
93178
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93211
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93179
93212
|
*
|
93180
93213
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93181
93214
|
* you may not use this file except in compliance with the License.
|
@@ -93190,11 +93223,11 @@ edgedb/dist/codecs/set.js:
|
|
93190
93223
|
* limitations under the License.
|
93191
93224
|
*)
|
93192
93225
|
|
93193
|
-
|
93226
|
+
gel/dist/codecs/record.js:
|
93194
93227
|
(*!
|
93195
|
-
* This source file is part of the
|
93228
|
+
* This source file is part of the Gel open source project.
|
93196
93229
|
*
|
93197
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93230
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93198
93231
|
*
|
93199
93232
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93200
93233
|
* you may not use this file except in compliance with the License.
|
@@ -93209,11 +93242,11 @@ edgedb/dist/codecs/record.js:
|
|
93209
93242
|
* limitations under the License.
|
93210
93243
|
*)
|
93211
93244
|
|
93212
|
-
|
93245
|
+
gel/dist/codecs/sparseObject.js:
|
93213
93246
|
(*!
|
93214
|
-
* This source file is part of the
|
93247
|
+
* This source file is part of the Gel open source project.
|
93215
93248
|
*
|
93216
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93249
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93217
93250
|
*
|
93218
93251
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93219
93252
|
* you may not use this file except in compliance with the License.
|
@@ -93228,11 +93261,11 @@ edgedb/dist/codecs/sparseObject.js:
|
|
93228
93261
|
* limitations under the License.
|
93229
93262
|
*)
|
93230
93263
|
|
93231
|
-
|
93264
|
+
gel/dist/codecs/registry.js:
|
93232
93265
|
(*!
|
93233
|
-
* This source file is part of the
|
93266
|
+
* This source file is part of the Gel open source project.
|
93234
93267
|
*
|
93235
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93268
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93236
93269
|
*
|
93237
93270
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93238
93271
|
* you may not use this file except in compliance with the License.
|
@@ -93247,11 +93280,11 @@ edgedb/dist/codecs/registry.js:
|
|
93247
93280
|
* limitations under the License.
|
93248
93281
|
*)
|
93249
93282
|
|
93250
|
-
|
93283
|
+
gel/dist/primitives/event.js:
|
93251
93284
|
(*!
|
93252
|
-
* This source file is part of the
|
93285
|
+
* This source file is part of the Gel open source project.
|
93253
93286
|
*
|
93254
|
-
* Copyright 2021-present MagicStack Inc. and the
|
93287
|
+
* Copyright 2021-present MagicStack Inc. and the Gel authors.
|
93255
93288
|
*
|
93256
93289
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93257
93290
|
* you may not use this file except in compliance with the License.
|
@@ -93266,11 +93299,11 @@ edgedb/dist/primitives/event.js:
|
|
93266
93299
|
* limitations under the License.
|
93267
93300
|
*)
|
93268
93301
|
|
93269
|
-
|
93302
|
+
gel/dist/primitives/queues.js:
|
93270
93303
|
(*!
|
93271
|
-
* This source file is part of the
|
93304
|
+
* This source file is part of the Gel open source project.
|
93272
93305
|
*
|
93273
|
-
* Copyright 2020-present MagicStack Inc. and the
|
93306
|
+
* Copyright 2020-present MagicStack Inc. and the Gel authors.
|
93274
93307
|
*
|
93275
93308
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93276
93309
|
* you may not use this file except in compliance with the License.
|
@@ -93285,11 +93318,11 @@ edgedb/dist/primitives/queues.js:
|
|
93285
93318
|
* limitations under the License.
|
93286
93319
|
*)
|
93287
93320
|
|
93288
|
-
|
93321
|
+
gel/dist/retry.js:
|
93289
93322
|
(*!
|
93290
|
-
* This source file is part of the
|
93323
|
+
* This source file is part of the Gel open source project.
|
93291
93324
|
*
|
93292
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93325
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93293
93326
|
*
|
93294
93327
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93295
93328
|
* you may not use this file except in compliance with the License.
|
@@ -93304,11 +93337,11 @@ edgedb/dist/retry.js:
|
|
93304
93337
|
* limitations under the License.
|
93305
93338
|
*)
|
93306
93339
|
|
93307
|
-
|
93340
|
+
gel/dist/baseClient.js:
|
93308
93341
|
(*!
|
93309
|
-
* This source file is part of the
|
93342
|
+
* This source file is part of the Gel open source project.
|
93310
93343
|
*
|
93311
|
-
* Copyright 2020-present MagicStack Inc. and the
|
93344
|
+
* Copyright 2020-present MagicStack Inc. and the Gel authors.
|
93312
93345
|
*
|
93313
93346
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93314
93347
|
* you may not use this file except in compliance with the License.
|
@@ -93323,11 +93356,11 @@ edgedb/dist/baseClient.js:
|
|
93323
93356
|
* limitations under the License.
|
93324
93357
|
*)
|
93325
93358
|
|
93326
|
-
|
93359
|
+
gel/dist/conUtils.js:
|
93327
93360
|
(*!
|
93328
|
-
* This source file is part of the
|
93361
|
+
* This source file is part of the Gel open source project.
|
93329
93362
|
*
|
93330
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93363
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93331
93364
|
*
|
93332
93365
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93333
93366
|
* you may not use this file except in compliance with the License.
|
@@ -93342,11 +93375,11 @@ edgedb/dist/conUtils.js:
|
|
93342
93375
|
* limitations under the License.
|
93343
93376
|
*)
|
93344
93377
|
|
93345
|
-
|
93378
|
+
gel/dist/errors/map.js:
|
93346
93379
|
(*!
|
93347
|
-
* This source file is part of the
|
93380
|
+
* This source file is part of the Gel open source project.
|
93348
93381
|
*
|
93349
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93382
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93350
93383
|
*
|
93351
93384
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93352
93385
|
* you may not use this file except in compliance with the License.
|
@@ -93361,11 +93394,11 @@ edgedb/dist/errors/map.js:
|
|
93361
93394
|
* limitations under the License.
|
93362
93395
|
*)
|
93363
93396
|
|
93364
|
-
|
93397
|
+
gel/dist/errors/resolve.js:
|
93365
93398
|
(*!
|
93366
|
-
* This source file is part of the
|
93399
|
+
* This source file is part of the Gel open source project.
|
93367
93400
|
*
|
93368
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93401
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93369
93402
|
*
|
93370
93403
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93371
93404
|
* you may not use this file except in compliance with the License.
|
@@ -93380,11 +93413,11 @@ edgedb/dist/errors/resolve.js:
|
|
93380
93413
|
* limitations under the License.
|
93381
93414
|
*)
|
93382
93415
|
|
93383
|
-
|
93416
|
+
gel/dist/baseConn.js:
|
93384
93417
|
(*!
|
93385
|
-
* This source file is part of the
|
93418
|
+
* This source file is part of the Gel open source project.
|
93386
93419
|
*
|
93387
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93420
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93388
93421
|
*
|
93389
93422
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93390
93423
|
* you may not use this file except in compliance with the License.
|
@@ -93399,11 +93432,11 @@ edgedb/dist/baseConn.js:
|
|
93399
93432
|
* limitations under the License.
|
93400
93433
|
*)
|
93401
93434
|
|
93402
|
-
|
93435
|
+
gel/dist/scram.js:
|
93403
93436
|
(*!
|
93404
|
-
* This source file is part of the
|
93437
|
+
* This source file is part of the Gel open source project.
|
93405
93438
|
*
|
93406
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93439
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93407
93440
|
*
|
93408
93441
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93409
93442
|
* you may not use this file except in compliance with the License.
|
@@ -93418,11 +93451,11 @@ edgedb/dist/scram.js:
|
|
93418
93451
|
* limitations under the License.
|
93419
93452
|
*)
|
93420
93453
|
|
93421
|
-
|
93454
|
+
gel/dist/rawConn.js:
|
93422
93455
|
(*!
|
93423
|
-
* This source file is part of the
|
93456
|
+
* This source file is part of the Gel open source project.
|
93424
93457
|
*
|
93425
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93458
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93426
93459
|
*
|
93427
93460
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93428
93461
|
* you may not use this file except in compliance with the License.
|
@@ -93437,11 +93470,11 @@ edgedb/dist/rawConn.js:
|
|
93437
93470
|
* limitations under the License.
|
93438
93471
|
*)
|
93439
93472
|
|
93440
|
-
|
93473
|
+
gel/dist/fetchConn.js:
|
93441
93474
|
(*!
|
93442
|
-
* This source file is part of the
|
93475
|
+
* This source file is part of the Gel open source project.
|
93443
93476
|
*
|
93444
|
-
* Copyright 2022-present MagicStack Inc. and the
|
93477
|
+
* Copyright 2022-present MagicStack Inc. and the Gel authors.
|
93445
93478
|
*
|
93446
93479
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93447
93480
|
* you may not use this file except in compliance with the License.
|
@@ -93456,11 +93489,11 @@ edgedb/dist/fetchConn.js:
|
|
93456
93489
|
* limitations under the License.
|
93457
93490
|
*)
|
93458
93491
|
|
93459
|
-
|
93492
|
+
gel/dist/index.shared.js:
|
93460
93493
|
(*!
|
93461
|
-
* This source file is part of the
|
93494
|
+
* This source file is part of the Gel open source project.
|
93462
93495
|
*
|
93463
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93496
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93464
93497
|
*
|
93465
93498
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93466
93499
|
* you may not use this file except in compliance with the License.
|
@@ -93475,11 +93508,11 @@ edgedb/dist/index.shared.js:
|
|
93475
93508
|
* limitations under the License.
|
93476
93509
|
*)
|
93477
93510
|
|
93478
|
-
|
93511
|
+
gel/dist/reflection/strictMap.js:
|
93479
93512
|
(*!
|
93480
|
-
* This source file is part of the
|
93513
|
+
* This source file is part of the Gel open source project.
|
93481
93514
|
*
|
93482
|
-
* Copyright 2020-present MagicStack Inc. and the
|
93515
|
+
* Copyright 2020-present MagicStack Inc. and the Gel authors.
|
93483
93516
|
*
|
93484
93517
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93485
93518
|
* you may not use this file except in compliance with the License.
|
@@ -93494,11 +93527,11 @@ edgedb/dist/reflection/strictMap.js:
|
|
93494
93527
|
* limitations under the License.
|
93495
93528
|
*)
|
93496
93529
|
|
93497
|
-
|
93530
|
+
gel/dist/reflection/index.js:
|
93498
93531
|
(*!
|
93499
|
-
* This source file is part of the
|
93532
|
+
* This source file is part of the Gel open source project.
|
93500
93533
|
*
|
93501
|
-
* Copyright 2020-present MagicStack Inc. and the
|
93534
|
+
* Copyright 2020-present MagicStack Inc. and the Gel authors.
|
93502
93535
|
*
|
93503
93536
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93504
93537
|
* you may not use this file except in compliance with the License.
|
@@ -93513,11 +93546,11 @@ edgedb/dist/reflection/index.js:
|
|
93513
93546
|
* limitations under the License.
|
93514
93547
|
*)
|
93515
93548
|
|
93516
|
-
|
93549
|
+
gel/dist/index.node.js:
|
93517
93550
|
(*!
|
93518
|
-
* This source file is part of the
|
93551
|
+
* This source file is part of the Gel open source project.
|
93519
93552
|
*
|
93520
|
-
* Copyright 2019-present MagicStack Inc. and the
|
93553
|
+
* Copyright 2019-present MagicStack Inc. and the Gel authors.
|
93521
93554
|
*
|
93522
93555
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
93523
93556
|
* you may not use this file except in compliance with the License.
|