auto-commit for cec575c0-476c-4bef-83da-9ee19fcf043c

This commit is contained in:
emergent-agent-e1
2025-11-08 10:07:13 +00:00
parent e576e8b1ef
commit 8ed8fb904f
2784 changed files with 2784 additions and 0 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"../../../src/private/specs_DEPRECATED/modules/NativeSourceCode","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":11,"column":0},"end":{"line":11,"column":79}}],"key":"MT8+weaPHZRzxmaWtU+TlNzzBrA=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return _default;\n }\n });\n var _srcPrivateSpecs_DEPRECATEDModulesNativeSourceCode = require(_dependencyMap[0], \"../../../src/private/specs_DEPRECATED/modules/NativeSourceCode\");\n Object.keys(_srcPrivateSpecs_DEPRECATEDModulesNativeSourceCode).forEach(function (k) {\n if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) {\n Object.defineProperty(exports, k, {\n enumerable: true,\n get: function () {\n return _srcPrivateSpecs_DEPRECATEDModulesNativeSourceCode[k];\n }\n });\n }\n });\n var NativeSourceCode = _interopDefault(_srcPrivateSpecs_DEPRECATEDModulesNativeSourceCode);\n var _default = NativeSourceCode.default;\n});","lineCount":31,"map":[[12,2,14,0,"Object"],[12,8,14,0],[12,9,14,0,"defineProperty"],[12,23,14,0],[12,24,14,0,"exports"],[12,31,14,0],[13,4,14,0,"enumerable"],[13,14,14,0],[14,4,14,0,"get"],[14,7,14,0],[14,18,14,0,"get"],[14,19,14,0],[15,6,14,0],[15,13,14,0,"_default"],[15,21,14,0],[16,4,14,0],[17,2,14,0],[18,2,11,0],[18,6,11,0,"_srcPrivateSpecs_DEPRECATEDModulesNativeSourceCode"],[18,56,11,0],[18,59,11,0,"require"],[18,66,11,0],[18,67,11,0,"_dependencyMap"],[18,81,11,0],[19,2,11,0,"Object"],[19,8,11,0],[19,9,11,0,"keys"],[19,13,11,0],[19,14,11,0,"_srcPrivateSpecs_DEPRECATEDModulesNativeSourceCode"],[19,64,11,0],[19,66,11,0,"forEach"],[19,73,11,0],[19,84,11,0,"k"],[19,85,11,0],[20,4,11,0],[20,8,11,0,"k"],[20,9,11,0],[20,28,11,0,"Object"],[20,34,11,0],[20,35,11,0,"prototype"],[20,44,11,0],[20,45,11,0,"hasOwnProperty"],[20,59,11,0],[20,60,11,0,"call"],[20,64,11,0],[20,65,11,0,"exports"],[20,72,11,0],[20,74,11,0,"k"],[20,75,11,0],[21,6,11,0,"Object"],[21,12,11,0],[21,13,11,0,"defineProperty"],[21,27,11,0],[21,28,11,0,"exports"],[21,35,11,0],[21,37,11,0,"k"],[21,38,11,0],[22,8,11,0,"enumerable"],[22,18,11,0],[23,8,11,0,"get"],[23,11,11,0],[23,22,11,0,"get"],[23,23,11,0],[24,10,11,0],[24,17,11,0,"_srcPrivateSpecs_DEPRECATEDModulesNativeSourceCode"],[24,67,11,0],[24,68,11,0,"k"],[24,69,11,0],[25,8,11,0],[26,6,11,0],[27,4,11,0],[28,2,11,0],[29,2,12,0],[29,6,12,0,"NativeSourceCode"],[29,22,12,0],[29,25,12,0,"_interopDefault"],[29,40,12,0],[29,41,12,0,"_srcPrivateSpecs_DEPRECATEDModulesNativeSourceCode"],[29,91,12,0],[30,2,14,0],[30,6,14,0,"_default"],[30,14,14,0],[30,17,14,15,"NativeSourceCode"],[30,33,14,31],[30,34,14,31,"default"],[30,41,14,31],[31,0,14,32],[31,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n exports.isHttpUrl = isHttpUrl;\n exports.isWsUrl = isWsUrl;\n exports.isLocalhostUrl = isLocalhostUrl;\n var HTTP_REGEX = \"^https?:\";\n var WS_REGEX = \"^wss?:\";\n function getUrlProtocol(url) {\n var matches = url.match(new RegExp(/^\\w+:/, \"gi\"));\n if (!matches || !matches.length) return;\n return matches[0];\n }\n function matchRegexProtocol(url, regex) {\n var protocol = getUrlProtocol(url);\n if (typeof protocol === \"undefined\") return false;\n return new RegExp(regex).test(protocol);\n }\n function isHttpUrl(url) {\n return matchRegexProtocol(url, HTTP_REGEX);\n }\n function isWsUrl(url) {\n return matchRegexProtocol(url, WS_REGEX);\n }\n function isLocalhostUrl(url) {\n return new RegExp(\"wss?://localhost(:d{2,5})?\").test(url);\n }\n});","lineCount":31,"map":[[7,2,15,0,"exports"],[7,9,15,0],[7,10,15,0,"isHttpUrl"],[7,19,15,0],[7,22,15,0,"isHttpUrl"],[7,31,15,0],[8,2,18,0,"exports"],[8,9,18,0],[8,10,18,0,"isWsUrl"],[8,17,18,0],[8,20,18,0,"isWsUrl"],[8,27,18,0],[9,2,21,0,"exports"],[9,9,21,0],[9,10,21,0,"isLocalhostUrl"],[9,24,21,0],[9,27,21,0,"isLocalhostUrl"],[9,41,21,0],[10,2,1,0],[10,6,1,6,"HTTP_REGEX"],[10,16,1,16],[10,19,1,19],[10,29,1,29],[11,2,2,0],[11,6,2,6,"WS_REGEX"],[11,14,2,14],[11,17,2,17],[11,25,2,25],[12,2,3,0],[12,11,3,9,"getUrlProtocol"],[12,25,3,23,"getUrlProtocol"],[12,26,3,24,"url"],[12,29,3,27],[12,31,3,29],[13,4,4,4],[13,8,4,10,"matches"],[13,15,4,17],[13,18,4,20,"url"],[13,21,4,23],[13,22,4,24,"match"],[13,27,4,29],[13,28,4,30],[13,32,4,34,"RegExp"],[13,38,4,40],[13,39,4,41],[13,46,4,48],[13,48,4,50],[13,52,4,54],[13,53,4,55],[13,54,4,56],[14,4,5,4],[14,8,5,8],[14,9,5,9,"matches"],[14,16,5,16],[14,20,5,20],[14,21,5,21,"matches"],[14,28,5,28],[14,29,5,29,"length"],[14,35,5,35],[14,37,6,8],[15,4,7,4],[15,11,7,11,"matches"],[15,18,7,18],[15,19,7,19],[15,20,7,20],[15,21,7,21],[16,2,8,0],[17,2,9,0],[17,11,9,9,"matchRegexProtocol"],[17,29,9,27,"matchRegexProtocol"],[17,30,9,28,"url"],[17,33,9,31],[17,35,9,33,"regex"],[17,40,9,38],[17,42,9,40],[18,4,10,4],[18,8,10,10,"protocol"],[18,16,10,18],[18,19,10,21,"getUrlProtocol"],[18,33,10,35],[18,34,10,36,"url"],[18,37,10,39],[18,38,10,40],[19,4,11,4],[19,8,11,8],[19,15,11,15,"protocol"],[19,23,11,23],[19,28,11,28],[19,39,11,39],[19,41,12,8],[19,48,12,15],[19,53,12,20],[20,4,13,4],[20,11,13,11],[20,15,13,15,"RegExp"],[20,21,13,21],[20,22,13,22,"regex"],[20,27,13,27],[20,28,13,28],[20,29,13,29,"test"],[20,33,13,33],[20,34,13,34,"protocol"],[20,42,13,42],[20,43,13,43],[21,2,14,0],[22,2,15,7],[22,11,15,16,"isHttpUrl"],[22,20,15,25,"isHttpUrl"],[22,21,15,26,"url"],[22,24,15,29],[22,26,15,31],[23,4,16,4],[23,11,16,11,"matchRegexProtocol"],[23,29,16,29],[23,30,16,30,"url"],[23,33,16,33],[23,35,16,35,"HTTP_REGEX"],[23,45,16,45],[23,46,16,46],[24,2,17,0],[25,2,18,7],[25,11,18,16,"isWsUrl"],[25,18,18,23,"isWsUrl"],[25,19,18,24,"url"],[25,22,18,27],[25,24,18,29],[26,4,19,4],[26,11,19,11,"matchRegexProtocol"],[26,29,19,29],[26,30,19,30,"url"],[26,33,19,33],[26,35,19,35,"WS_REGEX"],[26,43,19,43],[26,44,19,44],[27,2,20,0],[28,2,21,7],[28,11,21,16,"isLocalhostUrl"],[28,25,21,30,"isLocalhostUrl"],[28,26,21,31,"url"],[28,29,21,34],[28,31,21,36],[29,4,22,4],[29,11,22,11],[29,15,22,15,"RegExp"],[29,21,22,21],[29,22,22,22],[29,50,22,50],[29,51,22,51],[29,52,22,52,"test"],[29,56,22,56],[29,57,22,57,"url"],[29,60,22,60],[29,61,22,61],[30,2,23,0],[31,0,23,1],[31,3]],"functionMap":{"names":["<global>","getUrlProtocol","matchRegexProtocol","isHttpUrl","isWsUrl","isLocalhostUrl"],"mappings":"AAA;ACE;CDK;AEC;CFK;OGC;CHE;OIC;CJE;OKC;CLE"},"hasCjsExports":false},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.runtime = void 0;\n exports.runtime = {\n AuraUnincludedSegmentApi: [{\n methods: {\n can_build_upon: {\n description: 'Whether it is legal to extend the chain',\n params: [{\n name: 'includedHash',\n type: 'BlockHash'\n }, {\n name: 'slot',\n type: 'Slot'\n }],\n type: 'bool'\n }\n },\n version: 1\n }],\n CollectCollationInfo: [{\n methods: {\n collect_collation_info: {\n description: 'Collect information about a collation.',\n params: [{\n name: 'header',\n type: 'Header'\n }],\n type: 'CollationInfo'\n }\n },\n version: 2\n }, {\n methods: {\n collect_collation_info: {\n description: 'Collect information about a collation.',\n params: [],\n type: 'CollationInfoV1'\n }\n },\n version: 1\n }]\n };\n});","lineCount":48,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"runtime"],[7,17,3,15],[7,20,3,18],[7,25,3,23],[7,26,3,24],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"runtime"],[8,17,4,15],[8,20,4,18],[9,4,5,4,"AuraUnincludedSegmentApi"],[9,28,5,28],[9,30,5,30],[9,31,6,8],[10,6,7,12,"methods"],[10,13,7,19],[10,15,7,21],[11,8,8,16,"can_build_upon"],[11,22,8,30],[11,24,8,32],[12,10,9,20,"description"],[12,21,9,31],[12,23,9,33],[12,64,9,74],[13,10,10,20,"params"],[13,16,10,26],[13,18,10,28],[13,19,11,24],[14,12,12,28,"name"],[14,16,12,32],[14,18,12,34],[14,32,12,48],[15,12,13,28,"type"],[15,16,13,32],[15,18,13,34],[16,10,14,24],[16,11,14,25],[16,13,15,24],[17,12,16,28,"name"],[17,16,16,32],[17,18,16,34],[17,24,16,40],[18,12,17,28,"type"],[18,16,17,32],[18,18,17,34],[19,10,18,24],[19,11,18,25],[19,12,19,21],[20,10,20,20,"type"],[20,14,20,24],[20,16,20,26],[21,8,21,16],[22,6,22,12],[22,7,22,13],[23,6,23,12,"version"],[23,13,23,19],[23,15,23,21],[24,4,24,8],[24,5,24,9],[24,6,25,5],[25,4,26,4,"CollectCollationInfo"],[25,24,26,24],[25,26,26,26],[25,27,27,8],[26,6,28,12,"methods"],[26,13,28,19],[26,15,28,21],[27,8,29,16,"collect_collation_info"],[27,30,29,38],[27,32,29,40],[28,10,30,20,"description"],[28,21,30,31],[28,23,30,33],[28,63,30,73],[29,10,31,20,"params"],[29,16,31,26],[29,18,31,28],[29,19,32,24],[30,12,33,28,"name"],[30,16,33,32],[30,18,33,34],[30,26,33,42],[31,12,34,28,"type"],[31,16,34,32],[31,18,34,34],[32,10,35,24],[32,11,35,25],[32,12,36,21],[33,10,37,20,"type"],[33,14,37,24],[33,16,37,26],[34,8,38,16],[35,6,39,12],[35,7,39,13],[36,6,40,12,"version"],[36,13,40,19],[36,15,40,21],[37,4,41,8],[37,5,41,9],[37,7,42,8],[38,6,43,12,"methods"],[38,13,43,19],[38,15,43,21],[39,8,44,16,"collect_collation_info"],[39,30,44,38],[39,32,44,40],[40,10,45,20,"description"],[40,21,45,31],[40,23,45,33],[40,63,45,73],[41,10,46,20,"params"],[41,16,46,26],[41,18,46,28],[41,20,46,30],[42,10,47,20,"type"],[42,14,47,24],[42,16,47,26],[43,8,48,16],[44,6,49,12],[44,7,49,13],[45,6,50,12,"version"],[45,13,50,19],[45,15,50,21],[46,4,51,8],[46,5,51,9],[47,2,53,0],[47,3,53,1],[48,0,53,2],[48,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long