id
stringlengths
4
10
text
stringlengths
4
2.14M
source
stringclasses
2 values
created
timestamp[s]date
2001-05-16 21:05:09
2025-01-01 03:38:30
added
stringdate
2025-04-01 04:05:38
2025-04-01 07:14:06
metadata
dict
262738023
Script to submit release to antivirus whitelist What it says on the tin. At the moment we'll have to run the script manually after every release. In future we may want to consider a cron job or a webhook to automate this. As a more general note, it looks like Rollbar has the ability to track deploys, but requires that one hit an API endpoint on release. Since our release mechanism is a GitHub publish, there's no existing script that gets run to piggyback off of easily. If we end up needing two scripts (this one and the Rollbar deploy tracking), I wonder if it'd be worth investigating writing a small script that we host somewhere to accept the GitHub webhook for releases which will automatically execute this and potentially other scripts. @krystophv I've addressed your comments. Are you happy for me to just merge this, as it contains no user-facing changes and I'm already using it to submit to antivirus whitelist? @gniezen Yeah, feel free to merge.
gharchive/pull-request
2017-10-04T10:27:44
2025-04-01T06:40:37.955944
{ "authors": [ "gniezen", "krystophv" ], "repo": "tidepool-org/chrome-uploader", "url": "https://github.com/tidepool-org/chrome-uploader/pull/530", "license": "bsd-2-clause", "license_type": "permissive", "license_source": "bigquery" }
320818178
Improve getShortName logic for non /TR/ URLs The getShortname function does not work well with non /TR/ URLs, such as https://webassembly.github.io/spec/js-api/index.html for which it produces spec. IDL filenames are not always good as a result (and it's possible two specs end up with the same filename). Actually, I don't see any obvious improvement. The Web Assembly spec was the only problematic spec in practice and it has now been published as a FPWD, so Reffy will use the /TR/ shortname from now on (wasm-js-api). Looking at the URL of the Editor's Draft of that spec, there's not much we can do to extract a meaningful name. Obviously, we could extract webassembly but that's too generic, or js-api but we'd need to hardcode a rule on spec and that would be a bad name as well... In essence, we'd have to hardcode a rule specific for that (and possible other) specs. Closing per previous comment.
gharchive/issue
2018-05-07T14:06:36
2025-04-01T06:40:37.959819
{ "authors": [ "tidoust" ], "repo": "tidoust/reffy", "url": "https://github.com/tidoust/reffy/issues/101", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2344015458
Feature/set circle support Please do not open a pull request without first filing an issue and/or discussing the feature directly with the project maintainer. Please ensure you adhere to every item in this list [ ] This PR was pre-approved by the project maintainer Raised discussion on Slack: https://tile38.slack.com/archives/C0M6QN8VC/p1718027811980879 [x] I have self-reviewed the code [x] I have added all necessary tests [ ] Fix tests, test for concentric circles contains fails. Depends on: https://github.com/tidwall/geojson/pull/27 Describe your changes Adds support for SET ... CIRCLE. 127.0.0.1:9851> SET cities sf POINT 37.769092 -122.451505 OK 127.0.0.1:9851> SET cities 10_km_from_sf CIRCLE 37.769092 -122.451505 10000 OK 127.0.0.1:9851> SET cities 100_km_from_sf CIRCLE 37.769092 -122.451505 100000 OK 127.0.0.1:9851> GET cities 10_km_from_sf "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[-122.451505,37.769092]},\"properties\":{\"type\":\"Circle\",\"radius\":10000,\"radius_units\":\"m\"}}" 127.0.0.1:9851> INTERSECTS cities POINT 37.769092 -122.451505 1) (integer) 0 2) 1) 1) "100_km_from_sf" 2) "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[-122.451505,37.769092]},\"properties\":{\"type\":\"Circle\",\"radius\":100000,\"radius_units\":\"m\"}}" 2) 1) "10_km_from_sf" 2) "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[-122.451505,37.769092]},\"properties\":{\"type\":\"Circle\",\"radius\":10000,\"radius_units\":\"m\"}}" 3) 1) "sf" 2) "{\"type\":\"Point\",\"coordinates\":[-122.451505,37.769092]}" 127.0.0.1:9851> INTERSECTS cities IDS POINT 37.769092 -122.451505 1) (integer) 0 2) 1) "100_km_from_sf" 2) "10_km_from_sf" 3) "sf" 127.0.0.1:9851> INTERSECTS cities IDS POINT 37.554478 -122.020158 1) (integer) 0 2) 1) "100_km_from_sf" This is based on PR https://github.com/tidwall/tile38/pull/649, but with some differences: https://github.com/tidwall/tile38/pull/649 no longer compiles this uses tidwall/geojsons Circle type, while the previous PR stored the polygon representation of the circle. Issue number and link Pull request require a prior issue with discussion. Include the issue number of link here. Duplicate of #649 The problem with a circle type as a geometry stored in a collection is that there is no GeoJSON compatible way to represent it without losing precision on output. I'm not opposed with the idea of a SET ... CIRCLE ... command but I would like to somehow solve the compatibility issue.
gharchive/pull-request
2024-06-10T14:03:44
2025-04-01T06:40:37.992073
{ "authors": [ "iwpnd", "tidwall", "undeadcat" ], "repo": "tidwall/tile38", "url": "https://github.com/tidwall/tile38/pull/745", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1617767270
🛑 TDMU Elearning is down In dc9faea, TDMU Elearning (https://elearning.tdmu.edu.vn) was down: HTTP code: 0 Response time: 0 ms Resolved: TDMU Elearning is back up in cad336a.
gharchive/issue
2023-03-09T18:20:04
2025-04-01T06:40:38.053038
{ "authors": [ "tienthanh2509" ], "repo": "tienthanh2509/pt-infra-status", "url": "https://github.com/tienthanh2509/pt-infra-status/issues/183", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1129809453
chore: fix mkdocs url Signed-off-by: Takagi, Isamu isamu.takagi@tier4.jp Fix mkdocs URL. How about using tier4/main instead of tier4/proposal?
gharchive/pull-request
2022-02-10T10:41:59
2025-04-01T06:40:38.054310
{ "authors": [ "isamu-takagi", "kenji-miyake" ], "repo": "tier4/autoware-documentation", "url": "https://github.com/tier4/autoware-documentation/pull/1", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1754356887
feat(andible): update environmental setup Related Links https://github.com/tier4/edge-auto/pull/4 Description Update ansible roles to set up edge.auto_jetson environment. Review Procedure Please run setup-dev-env.sh to set up the environment. Remarks This PR contains the netplan role, which fixes the IP address for eth1. If you are using this network interface for ssh connection, running ansilbe-playbook may cause ssh disconnection. Pre-Review Checklist for the PR Author PR Author should check the checkboxes below when creating the PR. [x] Assign PR to reviewer Checklist for the PR Reviewer Reviewers should check the checkboxes below before approval. [ ] Commits are properly organized and messages are according to the guideline [ ] (Optional) Unit tests have been written for new behavior [ ] PR title describes the changes Post-Review Checklist for the PR Author PR Author should check the checkboxes below before merging. [ ] All open points are addressed and tracked via issues or tickets CI Checks Build and test for PR: Required to pass before the merge. @manato How about PR status? @aohsato As well as other PR, I'll open this PR because I guess it's ready. Please note that I set the default camera configuration to be: FSYNC trigger mode fixed exposure time (11ms) in this PR. Please note that I set the default camera configuration to be... @manato Could you add this explain to our tutorials? https://github.com/tier4/edge-auto/pull/3
gharchive/pull-request
2023-06-13T08:42:39
2025-04-01T06:40:38.061335
{ "authors": [ "aohsato", "manato" ], "repo": "tier4/edge-auto-jetson", "url": "https://github.com/tier4/edge-auto-jetson/pull/26", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1275948277
Question - How do I install Calico add-on in an EKS cluster? I am looking to install Calico add-on in an EKS cluster along with AWS VPC CNI as suggested in the official calico documentation which points to the AWS official documentation, which further states that the recommended way of installing Calico on EKS is by using this operator. I am not sure how to do the same with the operator. What I have tried :) look in the certification courses but that too has the old way of installing it Alternatives Helm Installation helm install calico projectcalico/tigera-operator --version v3.23.1 Yeah it isn't clear how to do this. I think you should be able to follow the Calico quickstart directions and just ensure you properly configure the custom-resources.yaml for the AWS CNI plugin (after you install the AWS CNI plugin). The Amazon EKS documentation has steps for installing Calico listed here: https://docs.aws.amazon.com/eks/latest/userguide/calico.html#calico-install Looks like it could use an update to the latest version, though. The Amazon EKS documentation has steps for installing Calico listed here: https://docs.aws.amazon.com/eks/latest/userguide/calico.html#calico-install Looks like it could use an update to the latest version, though. Yes, this is the link I have in my query as well. It does not state how to install using the operator. @vikas027 I see that the doc is not very clear, but the instructions listed under the "Helm" tab on that page are the correct instructions to install the tigera-operator (using helm), very similar to the instructions we have here: https://projectcalico.docs.tigera.io/getting-started/kubernetes/helm We should clean up the language on the Amazon doc so that it's less confusing, but the content there is correct.
gharchive/issue
2022-06-19T04:14:39
2025-04-01T06:40:38.088692
{ "authors": [ "caseydavenport", "tmjd", "vikas027" ], "repo": "tigera/operator", "url": "https://github.com/tigera/operator/issues/2026", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1603692095
Enable quota metrics by default Describe your changes How best to test these changes Issue ticket number and link Codecov Report Patch coverage: 100.00% and project coverage change: -27.71 :warning: Comparison is base (c0eb3c0) 57.56% compared to head (b071362) 29.85%. :exclamation: Current head b071362 differs from pull request most recent head 93343b8. Consider uploading reports for the commit 93343b8 to get more accurate results :mega: This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more Additional details and impacted files @@ Coverage Diff @@ ## main #882 +/- ## =========================================== - Coverage 57.56% 29.85% -27.71% =========================================== Files 175 175 Lines 19569 19568 -1 =========================================== - Hits 11265 5843 -5422 - Misses 7349 13042 +5693 + Partials 955 683 -272 Impacted Files Coverage Δ server/metrics/metrics.go 83.69% <100.00%> (-7.71%) :arrow_down: server/search/factory.go 0.00% <0.00%> (-100.00%) :arrow_down: lib/container/priority_queue.go 0.00% <0.00%> (-100.00%) :arrow_down: server/quota/namespace.go 0.00% <0.00%> (-98.37%) :arrow_down: schema/lang/go.go 0.00% <0.00%> (-90.63%) :arrow_down: schema/lang/java.go 0.00% <0.00%> (-90.63%) :arrow_down: schema/lang/typescript.go 0.00% <0.00%> (-90.63%) :arrow_down: server/search/sorted_hits.go 0.00% <0.00%> (-89.10%) :arrow_down: server/search/facets.go 0.00% <0.00%> (-88.60%) :arrow_down: schema/inference.go 0.00% <0.00%> (-85.06%) :arrow_down: ... and 111 more Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. :umbrella: View full report at Codecov. :loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
gharchive/pull-request
2023-02-28T19:37:44
2025-04-01T06:40:38.106387
{ "authors": [ "codecov-commenter", "efirs" ], "repo": "tigrisdata/tigris", "url": "https://github.com/tigrisdata/tigris/pull/882", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1611461086
fix: only log unexpected errors in match Describe your changes We logging an error that is acceptable. There will be cases when the field we looking for does not exist in the document or in the json timestamp object when we do a query. In those cases rather check first the field does not exist and return false. Only if it is an unexpected error do we log it. How best to test these changes Test should pass Issue ticket number and link I verified that this indeed fixes the logging issue.
gharchive/pull-request
2023-03-06T13:44:15
2025-04-01T06:40:38.108712
{ "authors": [ "garrensmith", "pboros" ], "repo": "tigrisdata/tigris", "url": "https://github.com/tigrisdata/tigris/pull/902", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1040402347
Objective C example code Hi This is not an issue per se, but I could not find a way to communicate this and I thought it'll also help others in similar boat; hence posting here. Do you have an example of using TPInAppReceipt library in an objective C project? Sample code on how to instantiate the class and call various methods would be great. Or if you have Objective C class documentation, that'd be great too. I am not familiar as much with Swift, and my project is in Objective C hence the request. Thank you in advance! Hi @apatait, Unfortunately, I don't have an example, but you can use it in objc project. Here you can find how to install it: https://github.com/tikhop/TPInAppReceipt/blob/master/Documentation/UseInObjCProject.md Here is a similar question: https://github.com/tikhop/TPInAppReceipt/issues/84 Some old example that probably doesn't work anymore. https://gist.github.com/tikhop/7d1215bbcea7fe8a3be3ce5ef25e15ee Anyway, it must be pretty easy to use the library in objective c project just by checking swift examples from readme file
gharchive/issue
2021-10-31T07:56:38
2025-04-01T06:40:38.118179
{ "authors": [ "apatait", "tikhop" ], "repo": "tikhop/TPInAppReceipt", "url": "https://github.com/tikhop/TPInAppReceipt/issues/94", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1764620095
lock_resolver: let resolve lock timeout properly fix https://github.com/pingcap/tidb/issues/44822 , after this PR tidb can pass the test. I think it's better to merge PRs affecting critical path with 2-3 approvals.
gharchive/pull-request
2023-06-20T04:36:35
2025-04-01T06:40:38.122164
{ "authors": [ "cfzjywxk", "zyguan" ], "repo": "tikv/client-go", "url": "https://github.com/tikv/client-go/pull/847", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1906235826
TableFullScan gets slower resulting in a 5% performance regression in TPCDS Bug Report What version of TiKV are you using? good commit: https://github.com/tikv/tikv/pull/15523 bad commit: https://github.com/tikv/tikv/pull/15522 What operating system and CPU are you using? Steps to reproduce deploy a tidb cluster with 1 tidb + 3 tikv with the good and the bad commit run TPCDS 50g What did you expect? no performance regression What did happened? Q88 elapsed time: 34s -> 38.9s Q28 elapsed time: 24.8s->28.3s exection_plan.zip /severity critical It was caused by https://github.com/tikv/tikv/pull/15584 /remove may-affects-5.3 /remove may-affects-5.4 /remove may-affects-6.1 /remove may-affects-6.5 /remove may-affects-7.1 /unlabel may-affects-5.3 /remove-label may-affects-5.3 /remove-label may-affects-5.4 /remove-label may-affects-6.1 /remove-label may-affects-6.5 /remove-label may-affects-7.1
gharchive/issue
2023-09-21T06:48:16
2025-04-01T06:40:38.138974
{ "authors": [ "Yui-Song" ], "repo": "tikv/tikv", "url": "https://github.com/tikv/tikv/issues/15653", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1087465884
coprocessor: not return rows when there is no input for simple aggregation What is changed and how it works? Close pingcap/tidb#30923 What's Changed: For SimpleAggregation does not return row if there is no input rows Related changes PR to update pingcap/docs/pingcap/docs-cn: PR to update pingcap/tidb-ansible: Need to cherry-pick to the release branch Check List Tests Unit test Manual test (add detailed scripts or steps below) Side effects Performance regression Consumes more CPU Consumes more MEM Breaking backward compatibility Release note Fix wrong `any_value` result when there are regions returning empty result /label needs-cherry-pick-5.3 /label needs-cherry-pick-5.2 /label needs-cherry-pick-5.1 /label needs-cherry-pick-5.0 /label needs-cherry-pick-4.0 /rebuild pingcap/tidb#30923 TiDB v3.1.2/v3.0.20/v2.1.19, all of them have the same issue. BTW seems that TiKV is keeping this behavior since v2.0.0, so this might be a bug exists for a lot of versions. Better to check v3.0 and v2.1 as well. Tested in TiDB v3.1.2/v3.0.20/v2.1.19, all of them have the same issue. /label needs-cherry-pick-3.1 /label needs-cherry-pick-3.0 /label needs-cherry-pick-2.1 /merge @breeswish can you help merge it? /merge /merge
gharchive/pull-request
2021-12-23T07:52:57
2025-04-01T06:40:38.147331
{ "authors": [ "windtalker", "youjiali1995" ], "repo": "tikv/tikv", "url": "https://github.com/tikv/tikv/pull/11708", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2509688354
ci: update owners aliases What is changed and how it works? Issue Number: Close #17004 What's Changed: Related changes [ ] PR to update pingcap/docs/pingcap/docs-cn: [ ] Need to cherry-pick to the release branch Check List Tests [ ] Unit test [ ] Integration test [ ] Manual test (add detailed scripts or steps below) [x] No code Side effects [ ] Performance regression: Consumes more CPU [ ] Performance regression: Consumes more Memory [ ] Breaking backward compatibility Release note None /cc @yudongusa @benmeadowcroft @zhangjinpeng87 /cc @overvenus @LykxSassinator /ok-to-test /retest /retest flaky unit test /cc cfzjywxk
gharchive/pull-request
2024-09-06T07:07:45
2025-04-01T06:40:38.153205
{ "authors": [ "overvenus", "wuhuizuo" ], "repo": "tikv/tikv", "url": "https://github.com/tikv/tikv/pull/17490", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
629869531
test: stabilize lock_manager tests Signed-off-by: youjiali1995 zlwgx1023@gmail.com What problem does this PR solve? Issue Number: close #xxx Problem Summary: What is changed and how it works? Proposal: xxx What's Changed: Related changes PR to update pingcap/docs/pingcap/docs-cn: PR to update pingcap/tidb-ansible: Need to cherry-pick to the release branch Check List Tests Unit test Integration test Manual test (add detailed scripts or steps below) No code Side effects Performance regression Consumes more CPU Consumes more MEM Breaking backward compatibility Release note No release note /test /test /run-all-tests /rebuild /test /test /test /test /test /test /test /test
gharchive/pull-request
2020-06-03T10:11:27
2025-04-01T06:40:38.160772
{ "authors": [ "youjiali1995" ], "repo": "tikv/tikv", "url": "https://github.com/tikv/tikv/pull/8009", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
167207515
Nuvola does not recognise the current song Nuvola does not recognise the current song. It shows in the sidebar only (null). So neither the lyrics plugin nor the desktop notifications are working. I installed the Version 5.1 of the Plugin and Version 3.1.0 of Nuvola via the Arch User Repository. Hello @lonlazer. Thanks for taking the time to report this issue. I can confirm it. @SteVwonder, could you take care of it? Thanks! I wonder if there is still someone taking care of updating this service/app. Can someone give us some information about it? @fenryxo @SteVwonder Hello @das-keyboard. This script is currently unmaintained as the maintainer @SteVwonder seems to have lost interest in it. I might take over it next month if there is any spare time. I've adopted this abandoned script and released version 5.2 with fixes. -- Jiri Janousek, Nuvola Player developer • My work on Nuvola Player and user support are funded by Nuvola Patrons. :heart: Make a donation to keep the project going. Thank you.
gharchive/issue
2016-07-23T22:53:10
2025-04-01T06:40:38.170083
{ "authors": [ "das-keyboard", "fenryxo", "lonlazer" ], "repo": "tiliado/nuvola-app-amazon-cloud-player", "url": "https://github.com/tiliado/nuvola-app-amazon-cloud-player/issues/17", "license": "bsd-2-clause", "license_type": "permissive", "license_source": "bigquery" }
2165235175
Compile error from soa-rs-derive: can't leak private type Using version 0.3.1 of soa-rs I cannot compile anything because a private type is being leaked from soa-rs-derive. For me, to reproduce the issue it's as simple as cargo init test_soa_rs; cd test_soa_rs; cargo add soa-rs; cargo check; I get the following error message Compiling soa-rs-derive v0.3.1 error[E0446]: private type `SoaDerive` in public interface --> C:\Users\zane\.cargo\registry\src\index.crates.io-6f17d22bba15001f\soa-rs-derive-0.3.1\src\fields.rs:9:1 | 9 | / pub fn fields_struct( 10 | | ident: Ident, 11 | | vis: Visibility, 12 | | fields: Punctuated<Field, Comma>, 13 | | kind: FieldKind, 14 | | soa_derive: SoaDerive, 15 | | ) -> Result<TokenStream, syn::Error> { | |____________________________________^ can't leak private type | ::: C:\Users\zane\.cargo\registry\src\index.crates.io-6f17d22bba15001f\soa-rs-derive-0.3.1\src\lib.rs:75:1 | 75 | struct SoaDerive { | ---------------- `SoaDerive` declared as private For more information about this error, try `rustc --explain E0446`. error: could not compile `soa-rs-derive` (lib) due to previous error I upgraded to Rust 1.76 from 1.74 and I no longer have the issue.
gharchive/issue
2024-03-03T07:51:40
2025-04-01T06:40:38.202503
{ "authors": [ "zaneduffield" ], "repo": "tim-harding/soa-rs", "url": "https://github.com/tim-harding/soa-rs/issues/6", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1057799645
Remove size from image url movie.imdb.coverUrl.rsplit("@", 1) lazy loading Bump Could you prioritize this? This is blocking important processes! (My sense of aesthetics) Real talk: shouldn't this happen in the imdb-resolver? I actually want to do this in the frontend since the load-times will go down. The removal of the actual size can happen in imdb-resolver. I don't understand, what do you want to do where? (Keep in mind that I refuse to have a look at the frontend code) imdb-resolver removes the size from the cover url, but then we'd load the full size image in the frontend which isn't necessary since we'll never display a full size cover. That's why I want to add the actual dimensions (which are set in the frontend anyways) so we have fewer resources to load -> better loading times/less bandwidth waste/no resizing necessary. So does imdb-resolver already remove the size from the URL, or do we need to create an issue for that? https://github.com/tim-hat-die-hand-an-der-maus/imdb-resolver/pull/6 I actually need the image size ratio or original width and height. Maybe we should convert coverUrl to cover: { "url": "<String>", "width": <int>, "height": <int> } or replace width/height with ratio: <float> what do you think? I think ratio is probably the best solution additionally: _V1_SY150_CR0,0,101,150_ no idea what CR does, doesn't seem to affect the output (visually at least) SY150 is the height of the image, S can apparently be replaced with U, I couldn't find any differences in those two. Other characters seem to just ignore the size and show the given width/height based from the top left. If Y is replaced by X it takes the width for stretching.
gharchive/issue
2021-11-18T21:05:58
2025-04-01T06:40:38.208627
{ "authors": [ "BjoernPetersen", "torbencarstens" ], "repo": "tim-hat-die-hand-an-der-maus/preliminary-frontend", "url": "https://github.com/tim-hat-die-hand-an-der-maus/preliminary-frontend/issues/12", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1870280901
not working on windows the plugin simply does not work, it is active so I can run the command "Bible reference: verse lookup", but when I write inside the verse there is always no answer, nothing. Also if I write --John1:1 etc I never had any output. Tried also without firewall no difference. Is there some extra plugin I need to run it? I tried it also in android phone, same problem, nothing happens... If on windows, can I try open developer console to see what logs is there? this is the toggle for enable the developer console. If you can get some logs, that will be very helpful. I am very curious why this could happen as well. Also getting the same issue. Here's what my console produces - Also getting the same issue. Here's what my console produces - Hi @SlothUS Thanks for this. @fcom000 @SlothUS Can you try to switch the Bible Version provider by Bolls life? in the settings. This is a CORS issue, which is a server side issue, I know this will happen one day, just don't know it happens so fast. CORS issue, which it blocks the 3rd part API consume to consume its API. This is why it failed. To fix this, need to host a server by my self. For now I will suggest you to use bolls life versions. this should be fixed in 1.9.0 by switching the default version, please re-open this if not. thanks very much, it works with the Bolls life. I was wondering if it is easy to host a Bible Api offline in my computer so even without internet the plugin works (and there will be no update issues?
gharchive/issue
2023-08-28T18:47:29
2025-04-01T06:40:38.214915
{ "authors": [ "SlothUS", "fcom000", "tim-hub" ], "repo": "tim-hub/obsidian-bible-reference", "url": "https://github.com/tim-hub/obsidian-bible-reference/issues/117", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
471865221
wordpress filtered content not available in post object? I'm not getting the post `content` as expected anymore. on a single page, i'm using this in the page.php: `$context = Timber::get_context(); $context['post']= new Timber\Post();' All my templates that use {{ post.content }} stopped working. When I dump the post object, I don't see the 'content' key as being set in the object. Expected behavior {{ post.content }} should output wordpress filtered content (with wpautop, shortcodes, and oembed filters applied. Actual behavior Timber\Post Object ( [ImageClass] => Timber\Image [PostClass] => Timber\Post [TermClass] => Timber\Term [object_type] => post [custom] => Array ( [_edit_lock] => 1563905362:79 [_edit_last] => 79 [_wp_page_template] => default ) [_content:protected] => [_permalink:protected] => [_next:protected] => Array ( ) [_prev:protected] => Array ( ) [_css_class:protected] => [id] => 15061 [ID] => 15061 [post_author] => 79 [post_content] => this is the content [post_date] => 2019-07-23 09:57:18 [post_excerpt] => [post_parent] => 0 [post_status] => publish [post_title] => test page [post_type] => page [slug] => test-page [__type:protected] => [_edit_lock] => 1563905362:79 [_edit_last] => 79 [_wp_page_template] => default [post_date_gmt] => 2019-07-23 16:57:18 [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => test-page [to_ping] => [pinged] => [post_modified] => 2019-07-23 09:57:18 [post_modified_gmt] => 2019-07-23 16:57:18 [post_content_filtered] => [guid] => http://localhost:8080/library/?page_id=15061 [menu_order] => 0 [post_mime_type] => [comment_count] => 0 [filter] => raw [status] => publish ) Steps to reproduce behavior page.php: $context = Timber::get_context(); $context['post']= new Timber\Post(); Timber::render( array( 'page.twig' ), $context ); page.twig: {{ post.content }} or {{ post | print_r }} What version of WordPress, PHP and Timber are you using? PHP 7.1.3, Wordpress 5.2.2, Timber 1.9.2 How did you install Timber? (for example, from GitHub, Composer/Packagist, WP.org?) Latest from Wordpress plugins Sorry - discovered some changes to a custom plugin that were breaking this. Not a timber issue.
gharchive/issue
2019-07-23T18:43:24
2025-04-01T06:40:38.233379
{ "authors": [ "gustavolanzas" ], "repo": "timber/timber", "url": "https://github.com/timber/timber/issues/2048", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
802924213
auth.tesla.cn ? Hello One of my users reported me that he cannot login anymore since I updated my app on the new SSO login. He also told me that on his side the login page is: https://auth.tesla.cn/oauth2/v1/authorize?client_id=teslaweb-cn&response_type=code&scope=openid email profile&redirect_uri=https%3A//www.tesla.cn/openid-connect/generic&state=Ht7mUM_AjhcOj5gNaU_xHLUqy-v9TljYQOtnLUghodY&locale=zh-CN When I asked him to login on Tesla.com he told me that this does not works. On my side, I cannot login to auth.tesla.cn. So there would be multiple SSO servers not sharing their users databases? Have you encountered this case? Last thing I tested on my side, when I try to load: https://auth.tesla.cn/oauth2/v3/authorize?client_id=ownerapi&redirect_uri=https%3A%2F%2Fauth.tesla.cn%2Fvoid%2Fcallback&response_type=code&scope=openid email offline_access&state=xxx I have an "invalid-redirect-uri" error. With an account created on tesla.cn I succeed to login using this URL: https://auth.tesla.cn/oauth2/v3/authorize?client_id=ownerapi&redirect_uri=https%3A%2F%2Fauth.tesla.com%2Fvoid%2Fcallback&response_type=code&scope=openid email offline_access&state=xxxxxx So the SSO server seems to be on auth.tesla.cn and the redirect_uri seems to be common between all SSO servers (would be logical because the Android app is the same everywhere) Last thing, the /authorize page seems to be different on auth.tesla.cn and auth.tesla.com , there is one more step on auth.tesla.cn (the password field is hidden when you load the page and you have to click on "Next" to see it). The first POST to /authorize is sent with the following body: _csrf: azertyuiopzertyuiop _phase: identity transaction_id: azerty cancel: identity: user@email It answer with a 200 and load the /authorize page again, with the password field this time. Then I post the form with the password and the body contains: _csrf: qsdfghjklqsdfghjkl _phase: authenticate _process: 1 transaction_id: azerty cancel: identity: user@email credential: userPassword And this time I have the 302 response with the code in the location header. So it seems there is an additional "identity" phase on the CN login page! Ok so by adding the extra POST /authorize with the "identity" phase I succeed to obtain an SSO token. But... After getting it I cannot obtain an owner API token using the step 4. The answer is: Response{protocol=h2, code=404, message=, url=https://owner-api.teslamotors.com/oauth/token} {"response":null,"error":"https://mobilesvc.teslamotors.com:443/accounts/GetUidByFederationId => {:code=>404, :message=>\"Could not get account by federation id\"}","error_description":""} login_hint query parameter on first GET /authorize seems to be the way to get the good environment, see here: https://github.com/adriankumpf/teslamate/issues/1297 I'm guessing they distribute a different app build in China, because there are references to the tesla.cn domain in there, but I don't see any code path to actually have them set as the SSO URL or other related variables. So, there may not be that much to glean from the build in the global app stores. Given I'm not a citizen of China, I don't really have much to offer here, unfortunately. I think the last error I have when trying to exchange my bearer an owner API token is because my account in CN is not associated to any vehicle. So I sent an alpha version of my app with the login process using the login_hint query parameter, following the redirects on step 1 GET and reuse the Host value of the last redirect. I will keep you informed. Ok so I got a feedback from the CN user I sent the alpha version of my app, and this is working for him now! So I guess the error I got Could not get account by federation id with the CN account I created for test purpose was because I have no vehicle associated with this account. To summarize, in order to be compliant with all Tesla SSO servers, the GET at step 1 should include a login_hint query parameter with the email as value, and then 2 cases: you get a 200 response you get a 303 response redirecting you to another SSO server (for example auth.tesla.cn) And the rest of the process (step 2 and step 3) should be executed on this SSO server. So in my case I just followed the redirect if any, then get the request Host, and use this new value as Tesla SSO Environment. A big thanks to @cliffchen and @adriankumpf for finding a way to handle this! Documented in #309. Feel free to submit a PR if you want to add anything else. Thanks! And thanks for this documentation and this repository!!
gharchive/issue
2021-02-07T10:55:30
2025-04-01T06:40:38.267557
{ "authors": [ "denouche", "timdorr" ], "repo": "timdorr/tesla-api", "url": "https://github.com/timdorr/tesla-api/issues/299", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1226163816
Powerwall and energy endpoints Between this (timdorr/tesla-api) and joeblau/teslaapi.io, there is pretty good coverage of the API. timdorr/tesla-api has a lot more updated information on the auth endpoints, but joeblau/teslaapi.io has much more on the powerwall and energy sites. Can we make these one source of truth? We've got a start with #580!
gharchive/issue
2022-05-05T03:30:17
2025-04-01T06:40:38.270014
{ "authors": [ "insaindesign", "timdorr" ], "repo": "timdorr/tesla-api", "url": "https://github.com/timdorr/tesla-api/issues/572", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
291189262
Black out period on department basis Would be VERY helpful if we could block out a section of the calendar in a different colour and put a message on that months team view or a legend of the colours on it so that it says that people should not book leave on those dates - we have a period in the year where we don't allow leave between certain dates (although we need the option to still book it if its approved by directors) - just a colour indication I think would be good. So I would set a date period to be in red, showing that employees shouldn't book leave on those dates. +1 as in #283
gharchive/issue
2018-01-24T12:22:52
2025-04-01T06:40:38.296638
{ "authors": [ "vpp" ], "repo": "timeoff-management/application", "url": "https://github.com/timeoff-management/application/issues/232", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2114217803
enhancement: input_format_skip_unknown_fields default to true for external streams PR checklist: Did you run ClangFormat ? Did you separate headers to a different section in existing community code base ? Did you surround proton: starts/ends for new code in existing community code base ? Please write user-readable short description of the changes: Closes #549 . (Jove Github Bot) added it to the current sprint. (Jove Github Bot) moved this ticket out of the GitHub project(up to 1200 tickets for one project).
gharchive/pull-request
2024-02-02T06:48:13
2025-04-01T06:40:38.298876
{ "authors": [ "jovezhong", "zliang-min" ], "repo": "timeplus-io/proton", "url": "https://github.com/timeplus-io/proton/pull/550", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
689833655
use named port for pgbouncer The services(s) call for targetPort: pgbouncer but the sts does not currently define that name. This leads to the endpoint not getting computed, and it causes issues with service loadbalancers. Thanks for the PR, this is part of https://github.com/timescale/timescaledb-kubernetes/pull/218 now (including this commit). We cannot merge this PR directly, as this commit is now a bugfix on top of 0.7.0, whereas master has diverged a lot already.
gharchive/pull-request
2020-09-01T05:47:22
2025-04-01T06:40:38.300927
{ "authors": [ "drpebcak", "feikesteenbergen" ], "repo": "timescale/timescaledb-kubernetes", "url": "https://github.com/timescale/timescaledb-kubernetes/pull/216", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
877524750
Предложение: Autoflake Описание функциональности: Добавить autoflake как дев зависимость, для обработки импортов в помощь isort isort сам по себе не может удалять неиспользованные импорты, autoflake может @timoniq Эти импорты ведь не нужны? Я помню, что помимо инитов есть bot.py из которого не нужно удалять импорты, эти файлы такие же? @timoniq Эти импорты ведь не нужны? Я помню, что помимо инитов есть bot.py из которого не нужно удалять импорты, эти файлы такие же? Нет, это лишние импорты
gharchive/issue
2021-05-06T13:53:52
2025-04-01T06:40:38.339407
{ "authors": [ "dhvcc", "timoniq" ], "repo": "timoniq/vkbottle", "url": "https://github.com/timoniq/vkbottle/issues/338", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
99930854
added '--defaults' option that gets data with the defaults command This adds a --defaults option as an alternative to --plist and --dsobject. Basically this will run the defaults read command and create the mobileconfig from that output. That way you do not have to worry where the actual plist is stored and wether cfprefsd has already updated. There is an extra option --currentHost which will enable the -currentHost flag when running the defaults command. Example: ./mcxToProfile.py --defaults com.apple.screensaver --identifier com.example.screensaver --currentHost --manage Once I like the idea! However, since we have Python and Foundation at our fingertips, we could do this without shelling out to Python and use CFPreferences natively. I'm also not sure if the output from defaults properly distinguishes between an integer 0 and a Boolean false. I've never tried to throw the defaults output at plistlib directly as you did here. I don't know if there's a convenient way to do the equivalent of defaults read with a single API call but there is a method to list all keys, and then each value can be retrieved. Then you'd still get things in a nice dict structure that should map to a plist. You're right, it wasn't that hard at all. I have also added flags (or a placeholder) to access the 'anyUser' and 'anyApplication' (Global) domain. This is how you get at the different files: Application User Host File Location app_id current current ~/Library/Preferences/ByHost/app_id.host_id.plist app_id current any ~/Library/Preferences/app_id.plist app_id any current /Library/Preferences/app_id.plist app_id any any ??? any current current ~/Library/Preferences/ByHost/.GlobalPrefences.host_id.plist any current any ~/Library/Preferences/.GlobalPrefences.plist any any current /Library/Preferences/.GlobalPreferences.plist any any any ??? I wish I knew what the ??? are. I thought it might read forced profiles if present, but that does not seem to work. Setting those parameter always seems to return empty dicts. Maybe with MCX? If there really is no (current) application for this combinations, it might make sense to assume --currentHost when --anyUser is set. Examples: ./mcxToProfile.py --defaults com.apple.screensaver --identifier ScreenSaver --currentHost reads ~/Library/Preferences/ByHost/com.apple.screensaver.host_id.plist ./mcxToProfile.py --defaults com.apple.screensaver --identifier ScreenSaver reads ~/Library/Preferences/com.apple.screensaver.plist ./mcxToProfile.py --defaults com.apple.loginwindow --identifier loginwindow --anyUser --currentHost reads /Library/Preferences/com.apple.loginwindow.plist ./mcxToProfile.py --defaults ManagedInstalls --identifier MunkiSettings --currentHost --anyUser reads `/Library/Preferences/ManagedInstalls.plist ./mcxToProfile.py --defaults NSGlobalDomain --identifier GlobalPrefs --currentHost reads ~/Library/Preferences/ByHost/.GlobalPrefences.host_id.plist ./mcxToProfile.py --defaults NSGlobalDomain --identifier GlobalPrefs reads ~/Library/Preferences/.GlobalPrefences.plist ./mcxToProfile.py --defaults NSGlobalDomain --identifier GlobalPrefs --anyUser --currentHost reads /Library/Preferences/.GlobalPreferences.plist I think the any-host / any-user combination may have been used in the old days of network-mounted storage and user data. I think it's reasonable enough to make these options for --defaults work similarly to how the defaults command works. Thanks for adding this! Oh, and this was just merged: https://github.com/timsutton/mcxToProfile/commit/cd1314f31cec9fe8b874b6727c0e998097269153 Thinking again about the behaviour when --currentHost and --anyUser are both set, it doesn't generate the kind of "scope" we want. Say I want to capture the settings that are effectively stored in /L/P/com.apple.loginwindow: I need to type this: ./mcxToProfile.py --defaults com.apple.loginwindow --currentHost --anyUser --identifier Loginwindow But this gives me something like: <key>PayloadContent</key> <dict> <key>com.apple.loginwindow.ByHost</key> <dict> <key>Forced</key> <array> <dict> <key>mcx_preference_settings</key> <dict> <key>Hide500Users</key> <true/> </dict> </dict> </array> </dict> </dict> Notice the ".ByHost" at the end of the domain - except that this is not actually a ByHost pref. I'm starting to wonder if we should instead try and make it behave analogous to defaults, and support the --currentHost flag only. To read from the any-user domain, we could simply take the /L/P/com.whatever.domain syntax that defaults uses, and not put the .ByHost for the domain. I kind of like the extra behavior, we could also fix the logic to add the "ByHost" to the preference domain: https://github.com/timsutton/mcxToProfile/pull/12 Thanks, I just wonder what the extra behavior of --anyUser gains us if it only gives expected results when combined with --currentHost. But in practice, it's going to be less common that you want to pull preferences from the any-user domain anyway. We can just document this in an example.
gharchive/pull-request
2015-08-09T21:32:34
2025-04-01T06:40:38.373646
{ "authors": [ "scriptingosx", "timsutton" ], "repo": "timsutton/mcxToProfile", "url": "https://github.com/timsutton/mcxToProfile/pull/11", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
924884557
(bot) Update ghcr.io/fluxcd/helm-controller Docker tag to v0.11.1 This PR contains the following updates: Package Update Change ghcr.io/fluxcd/helm-controller minor v0.10.1 -> v0.11.1 Release Notes fluxcd/helm-controller v0.11.1 Compare Source CHANGELOG v0.11.0 Compare Source CHANGELOG Configuration 📅 Schedule: At any time (no schedule defined). 🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied. ♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 Ignore: Close this PR and you won't be reminded about this update again. [ ] If you want to rebase/retry this PR, check this box. This PR has been generated by Renovate Bot. Renovate Ignore Notification As this PR has been closed unmerged, Renovate will now ignore this update (v0.11.1). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the ignoreDeps array of your renovate config. If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.
gharchive/pull-request
2021-06-18T13:04:03
2025-04-01T06:40:38.382976
{ "authors": [ "timtorChen" ], "repo": "timtorChen/pi-cluster", "url": "https://github.com/timtorChen/pi-cluster/pull/154", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
807018179
StyledFocusRing has width:100%;height:100% which can break CSS layout Hey guys, Awesome job with Tina, couldn't love your project more!!! Just one issue I noticed. react-tina-inline adds StyledFocusRing to the DOM. It's all fine but by making it width: 100%; height: 100% it can break CSS layout. I'm talking about this line of code: https://github.com/tinacms/tinacms/blob/a22063fdf2e10f873df9bd401f5d224c73ef6729/packages/react-tinacms-inline/src/styles/focus-ring.tsx#L85-L86 Imagine you have an InlineGroup or InlineBlock with content that has some "intrinsic natural width" which is not 100%. Like a button with width: 200px. Imagine that the parent of this element is display: flex. Flex parent makes a use of natural width of its children during layout (uses width as flex-basis if the latter is missing). However, if you add width: 100% between parent and child (StyledFocusRing) then layout breaks, because flex parent thinks that its child is 100% width. Basically any kind of layout that makes a use of content size of its children will break if we add Tina container in between. In my opinion StyledFocusRing shouldn't have neither width nor height. Its size should be determined by the content and it should be as non-intrusive as possible. (can't wait for display: contents to have better support btw). I know this change could break backward compatibility in some projects. Maybe we could add a flag? I'd be happy to do a PR, but curious about rationale behind the current behaviour. Just with some quick testing it seems that this was done for components that use relative or absolute positioning within their parent, which is probably the minority compared to intrinsic sizing. I think possibly just accepting a class string and passing it to the focus ring, or only setting width/height when some prop is set could solve the issue for now. This component is used by the inline group and inline block components, and they already accept focus ring options which could accommodate this change. Currently for us, certain types of elements that expect direct children to have certain CSS constraints ends up with incorrect layouts while editing. For example, a FlexGroup that has FlexItems requires FlexItems to have flex properties. It would be great if we can just pass a className to be appended to the StyledFocusRing elements. This way, if I have an element like FlexGroup and another set called FlexItems, then I can give classNames to StyledFocusRing elements that would make them behave like FlexItems. In the long term, it would be great to not even have feedback elements injected. For example, notion.so adds separate feedback elements that are positioned absolutely for mouse move and dnd effects. Also, thanks for an amazing project!
gharchive/issue
2021-02-12T07:31:42
2025-04-01T06:40:38.412269
{ "authors": [ "atifsyedali", "r00dY", "spbyrne" ], "repo": "tinacms/tinacms", "url": "https://github.com/tinacms/tinacms/issues/1743", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2625525399
V2 task taking over an hour when using npm private registry. Log files are huge Describe the bug I recently migrated to the V2 task and it is timing out after my timeout limit (60 minutes). Using the V1 task only takes 3 minutes. It seems for every package, it prints out the entire contents of the yarn lock file. I'm not sure if the performance issues are related to that but the log file is huge, 134.2 MB. Categorization [x] This is not a permissions issue (Seek help at https://github.com/tinglesoftware/dependabot-azure-devops/discussions/1245) I don't think this is a permission issue because it looks to be authenticating. Configurations Pipeline: steps: - task: GoTool@0 inputs: version: 1.23.0 - task: dependabot@2 inputs: useConfigFile: true setAutoComplete: true mergeStrategy: '1' gitHubConnection: 'github.com_SabareeshGC' milestone: 12347 env: NPM_TOKEN: $(System.AccessToken) dependabot.yml registries: npm-data-module: type: npm-registry url: https://pkgs.dev.azure.com/guidedchoice/_packaging/data-projections/npm/registry/ token: ${{NPM_TOKEN}} updates: - package-ecosystem: "npm" # Files stored in `app` directory directory: "/" schedule: interval: "daily" milestone: 12347 target-branch: "dev" versioning-strategy: auto registries: - npm-data-module Logs and screenshots Logs in the beginning of the run. I had to truncate the {"data"} section because it exceeded the character limit. I think this part is potentially causing my poor performance. It seems to be printing all of the yarn.lock or something. ============================================================================== Task : Dependabot Description : Automatically update dependencies and vulnerabilities in your code using [Dependabot CLI](https://github.com/dependabot/cli) go: downloading github.com/opencontainers/image-spec v1.1.0 go: downloading github.com/moby/sys/user v0.1.0 go: downloading github.com/opencontainers/go-digest v1.0.0 go: downloading github.com/gogo/protobuf v1.3.2 go: downloading github.com/distribution/reference v0.6.0 go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.52.0 go: downloading go.opentelemetry.io/otel/trace v1.27.0 go: downloading go.opentelemetry.io/otel v1.27.0 go: downloading github.com/felixge/httpsnoop v1.0.4 go: downloading go.opentelemetry.io/otel/metric v1.27.0 go: downloading github.com/go-logr/stdr v1.2.2 go: downloading github.com/go-logr/logr v1.4.2 Processing job from '/tmp/dependabot-jobs/update-0-npm_and_yarn-all/job.yaml' /root/go/bin/dependabot update --file /tmp/dependabot-jobs/update-0-npm_and_yarn-all/job.yaml --output /tmp/dependabot-jobs/update-0-npm_and_yarn-all/scenario.yaml --provider azure --local /mnt/data-disk/gcadmin/agent1/37/s cli | 2024/10/29 16:45:04 pulling image: ghcr.io/github/dependabot-update-job-proxy/dependabot-update-job-proxy:latest cli | 2024/10/29 16:45:05 using image ghcr.io/github/dependabot-update-job-proxy/dependabot-update-job-proxy:latest at sha256:4f808dfd8f35a9fb1d8e557bea7a2b0f72d5b663f9a7446288292faa5e905042 cli | 2024/10/29 16:45:05 pulling image: ghcr.io/dependabot/dependabot-updater-npm cli | 2024/10/29 16:45:26 using image ghcr.io/dependabot/dependabot-updater-npm at sha256:5fec5a1aaccb06d782f29d6ef7a286b36d787a4e9ff27244f36c0a513212c9a4 proxy | 2024/10/29 16:45:35 proxy starting, commit: 41881abec5bb353fbea347b2394f90fb7f78881e proxy | 2024/10/29 16:45:35 Listening (:1080) updater | Reinitialized existing Git repository in /home/dependabot/dependabot-updater/repo/.git/ updater | HEAD detached at origin/8476efca2ac5c8cbc4e82dd23ba2d76083bbb1c9 updater | nothing to commit, working tree clean updater | Updating certificates in /etc/ssl/certs... updater | rehash: warning: skipping ca-certificates.crt,it does not contain exactly one certificate or CRL updater | 1 added, 0 removed; done. updater | Running hooks in /etc/ca-certificates/update.d... updater | done. updater | 2024/10/29 16:45:41 INFO <job_update_0_npm_and_yarn_all> Starting job processing updater | 2024/10/29 16:45:41 INFO <job_update_0_npm_and_yarn_all> Job definition: {"job":{"package-manager":"npm_and_yarn","allowed-updates":[{"dependency-type":"all"}],"debug":false,"dependency-groups":[],"dependencies":null,"dependency-group-to-refresh":null,"existing-pull-requests":[],"existing-group-pull-requests":[],"experiments":null,"ignore-conditions":[],"lockfile-only":false,"requirements-update-strategy":null,"security-advisories":[],"security-updates-only":false,"source":{"provider":"azure","repo":"***/***/_git/***","directory":"/","branch":"dev","hostname":"***","api-endpoint":"https://***:/"},"update-subdependencies":true,"updating-a-pull-request":false,"vendor-dependencies":false,"reject-external-code":false,"repo-private":false,"commit-message-options":null,"credentials-metadata":[{"host":"***","type":"git_source"},{"host":"github.com","type":"git_source"},{"registry":"pkgs.***/***/_packaging/data-projections/npm/registry/","type":"npm_registry"}],"max-updater-run-time":0}} updater | 2024/10/29 16:45:41 INFO <job_update_0_npm_and_yarn_all> Guessed version info "yarn" : "1" updater | 2024/10/29 16:45:41 INFO <job_update_0_npm_and_yarn_all> Base commit SHA: 8476efca2ac5c8cbc4e82dd23ba2d76083bbb1c9 updater | 2024/10/29 16:45:41 INFO <job_update_0_npm_and_yarn_all> Finished job processing updater | 2024/10/29 16:45:45 INFO <job_update_0_npm_and_yarn_all> Starting job processing proxy | 2024/10/29 16:45:46 [001] POST http://host.docker.internal:45033/update_jobs/update_0_npm_and_yarn_all/update_dependency_list {"data":{"dependencies":[{"name":"@***/data-modules","requirements":[{"file":"package.json","groups":["dependencies"],"requirement":"^0.2.611","source":{"type":"registry","url":"https://pkgs.***/***/_packaging/data-projections/npm/registry"}}],"version":"0.2.611"},{"name":"@aesop-fables/containr","requirements":[{"file":"package.json","groups":["dependencies"],"requirement":"^0.5.3","source":{"type":"registry","url":"https://pkgs.***/***/_packaging/data-projections/npm/registry"}}],"version":"0.5.3"},{"name":"@aesop-fables/containr-axios","requirements":[{"file":"package.json","groups":["dependencies"],"requirement":"^0.3.6","source":{"type":"registry","url":"https://pkgs.***/***/_packaging/data-projections/npm/registry"}}],"version":"0.3.6"},{"name":"@aesop-fables/containr-react","requirements":[{"file":"package.json","groups":["dependencies"],"requirement":"^0.4.1","source":...,"dependency_files":["/package.json","/yarn.lock"]},"type":"update_dependency_list"} proxy | 2024/10/29 16:45:46 [001] 200 http://host.docker.internal:45033/update_jobs/update_0_npm_and_yarn_all/update_dependency_list proxy | 2024/10/29 16:45:46 [002] POST http://host.docker.internal:45033/update_jobs/update_0_npm_and_yarn_all/increment_metric {"data":{"metric":"updater.started","tags":{"operation":"group_update_all_versions"}},"type":"increment_metric"} proxy | 2024/10/29 16:45:46 [002] 200 http://host.docker.internal:45033/update_jobs/update_0_npm_and_yarn_all/increment_metric updater | 2024/10/29 16:45:46 INFO <job_update_0_npm_and_yarn_all> Starting update job for ***/***/_git/***``` By the way, this is an Azure Artifact feed. @eli-gc thanks for the report. Are you able to upload a minimal reproduction repo for this? or attach a copy of your packages.json and yarn.lock so that we can reproduce the issue? It seems for every package, it prints out the entire contents of the yarn lock file I too wish this could be disabled as it does cause a lot of log noise, but unfortunately this is not configurable within Dependabot CLI, so it cannot be hidden currently. This was not so much of an issue in V1 because it did not use Dependabot CLI (which caused other issues). it is hard to say if the volume of logs is the performance issue or the contents of your package/lock file is. If you are able to provide a copy, I will investigate further. I'm seeing issues with V2 nuget private registry auth (AzDo registry) with the V2 task, will put up some logs later. May be a different issue though I guess (npm vs nuget). Let me check if I can post those. There is actually only 1 package that is hosted in our private Azure artifact feed, the rest are all public packages. If there is a way to only search the private feed for the one package and grab the others from public sources, maybe I could test that. Let me check if I can post those If it helps, I really only need the dependencies section of your packages.json as that would be enough to reproduce the issue. If there is a way to only search the private feed for the one package and grab the others from public sources, maybe I could test that. There certainly is, but that is something you would need to configure in your project source files, not Dependabot. Here is an example of how this could be done: In the same directory as your packages.json, create a .npmrc file with: registry=https://registry.npmjs.org/ # by default, fetch packages from the public feed @myorg:registry=https://pkgs.dev.azure.com/myorg/_packaging/myfeed/npm/registry/ # for anything in the "myorg" namespace, fetch packages from my private feed Then in your packages.json you would do: { "dependencies": { "@myorg/my-private-package": "~1.0", "node": "~22.0" } } When running yarn install, node would be fetched from the public feed, my-private-package would be fetched from your private feed. If you already have a yarn.lock, you'd need to delete/rebuild it for this to take effect. I'll try those changes, thanks! Here is the packages.json I am using, the only private package we use is the @3nickels/data-modules. "dependencies": { "@3nickels/data-modules": "^0.2.610", "@aesop-fables/containr": "^0.6.1", "@aesop-fables/containr-axios": "^0.3.6", "@aesop-fables/containr-react": "^0.4.1", "@aesop-fables/scrinium": "^0.11.11", "@bwjohns4/react-native-draggable-flatlist": "^4.0.1-patch", "@expo/vector-icons": "^14.0.4", "@invertase/react-native-apple-authentication": "^2.4.0", "@notifee/react-native": "^9.1.2", "@react-native-async-storage/async-storage": "^1.24.0", "@react-native-clipboard/clipboard": "^1.14.2", "@react-native-community/datetimepicker": "^7.6.3", "@react-native-community/netinfo": "11.4.1", "@react-native-community/slider": "^4.5.4", "@react-native-firebase/app": "^21.2.0", "@react-native-firebase/messaging": "^21.2.0", "@react-native-google-signin/google-signin": "^13.1.0", "@react-navigation/bottom-tabs": "^6.6.1", "@react-navigation/drawer": "^6.7.2", "@react-navigation/native": "^6.1.18", "@react-navigation/stack": "^6.4.1", "@rneui/base": "^4.0.0-rc.8", "@rneui/themed": "^4.0.0-rc.8", "async-mutex": "^0.5.0", "axios": "^1.7.7", "axios-logger": "2.8.1", "axios-retry": "^4.5.0", "buffer": "^6.0.3", "dayjs": "^1.11.13", "events": "^3.3.0", "expo": "^51.0.37", "expo-font": "^12.0.10", "expo-image-loader": "~4.7.0", "expo-modules-core": "^1.12.25", "expo-secure-store": "^13.0.2", "final-form": "^4.20.10", "intl": "^1.2.5", "jail-monkey": "^2.8.0", "jetifier": "^2.0.0", "jwt-decode": "^3.1.2", "lodash": "^4.17.21", "moment": "^2.30.1", "obfuscator-io-metro-plugin": "^2.1.3", "prop-types": "^15.8.1", "query-string": "^7.1.3", "react": "18.3.1", "react-dom": "18.3.1", "react-error-boundary": "^4.1.2", "react-final-form": "^6.5.9", "react-moment": "^1.1.3", "react-native": "0.75.4", "react-native-actions-sheet": "^0.9.7", "react-native-bars": "^2.4.3", "react-native-biometrics": "^3.0.1", "react-native-blob-util": "0.19.11", "react-native-bootsplash": "^5.5.3", "react-native-cheerio": "^1.0.0-rc.4", "react-native-config": "^1.5.3", "react-native-confirmation-code-field": "^7.4.0", "react-native-device-info": "^10.14.0", "react-native-draggable-flatlist": "^4.0.1", "react-native-elements": "^3.4.3", "react-native-fs": "^2.20.0", "react-native-gesture-handler": "^2.20.1", "react-native-google-places-autocomplete": "2.5.6", "react-native-gradle-plugin": "^0.71.19", "react-native-iap": "^12.15.5", "react-native-image-picker": "^7.1.2", "react-native-in-app-review": "^4.3.3", "react-native-keyboard-aware-scroll-view": "^0.9.5", "react-native-linear-gradient": "^2.8.3", "react-native-mmkv": "^2.12.2", "react-native-notifications": "^5.1.0", "react-native-orientation-locker": "^1.7.0", "react-native-paper": "^5.12.5", "react-native-pdf": "6.7.5", "react-native-permissions": "^4.1.5", "react-native-plaid-link-sdk": "11.8.2", "react-native-reanimated": "^3.16.1", "react-native-restart": "^0.0.27", "react-native-safe-area-context": "4.11.1", "react-native-screens": "^3.34.0", "react-native-share": "10.2.1", "react-native-svg": "15.8.0", "react-native-svg-transformer": "^1.5.0", "react-native-toast-message": "^2.2.1", "react-native-typewriter": "^0.7.0", "react-native-vector-icons": "^10.2.0", "react-native-video": "^6.7.0", "react-native-webview": "13.12.3", "react-native-windows": "^0.75.6", "reflect-metadata": "^0.2.2", "rxjs": "7.8.1", "victory-native": "^36.9.2", "yup": "^1.4.0" }, "devDependencies": { "@babel/core": "^7.25.8", "@babel/plugin-proposal-decorators": "^7.25.7", "@babel/preset-env": "^7.25.8", "@babel/runtime": "^7.25.9", "@jeremybarbet/apple-api-types": "^1.4.1", "@react-native/babel-preset": "0.75.4", "@react-native/eslint-config": "0.75.4", "@react-native/metro-config": "0.75.4", "@react-native/typescript-config": "0.75.4", "@types/color": "^3.0.6", "@types/jest": "^29.5.13", "@types/jwt-encode": "^1.0.3", "@types/lodash": "^4.17.12", "@types/react": "~18.3.11", "@types/react-dom": "~18.3.1", "@types/react-native-typewriter": "^0.7.4", "@types/react-native-video": "^5.0.20", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "babel-jest": "^29.7.0", "babel-plugin-transform-remove-console": "^6.9.4", "eslint": "^8.57.1", "eslint-config-prettier": "^8.10.0", "eslint-plugin-ft-flow": "^2.0.3", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.37.1", "husky": "^8.0.3", "jest": "29.7.0", "jest-mock-extended": "^3.0.7", "jwt-encode": "^1.0.1", "lint-staged": "^13.3.0", "patch-package": "^7.0.2", "prettier": "^2.8.8", "react-native-codegen": "^0.71.6", "react-test-renderer": "18.3.1", "ts-jest": "29.2.5", "typescript": "~5.3.3" }, "resolutions": { "@react-native/assets-registry": "0.74.83", "@react-native/gradle-plugin": "0.75.4" }, "engines": { "node": ">=18" }, "private": true, "lint-staged": { "*.{js,jsx,json,ts,tsx,md,html,css}": [ "prettier --write", "yarn lint" ] }, "name": "nickels", "version": "1.22.19", "packageManager": "yarn@4.5.1" ` Yarn.lock. It's so long I'll have to do it in pieces. `"@0no-co/graphql.web@npm:^1.0.5": version: 1.0.7 resolution: "@0no-co/graphql.web@npm:1.0.7" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: graphql: optional: true checksum: 10/8be5d80ba57df759a11f905ba7ac4bc6e9bc75034804bb679db4fa4eed3396f97b0191421031ba2d94af259fa7d55042a152e3f94294eba62ae81591d41bad87 languageName: node linkType: hard "@3nickels/data-modules@npm:^0.2.610": version: 0.2.610 resolution: "@3nickels/data-modules@npm:0.2.610" dependencies: buffer: "npm:^6.0.3" peerDependencies: "@aesop-fables/containr": 0.x "@aesop-fables/containr-axios": 0.x "@aesop-fables/containr-react": 0.x "@aesop-fables/scrinium": ">= 0.9" axios: 1.x lodash: 4.x moment: 2.x react: ">= 17.x" react-dom: ">= 17.x" reflect-metadata: 0.x rxjs: ">= 7.x" checksum: 10/b611e28071aa874630ad2a4897e7b22a814fcc962638387626cb808696e55dd38c65693b037a234ec4022668a044958299728f05768bb86a35f5c4efdfcae9eb languageName: node linkType: hard "@aesop-fables/containr-axios@npm:^0.3.6": version: 0.3.6 resolution: "@aesop-fables/containr-axios@npm:0.3.6" dependencies: axios-logger: "npm:^2.8.1" peerDependencies: "@aesop-fables/containr": ">= 0.6.1" axios: 1.x reflect-metadata: ">= 0.1.13" checksum: 10/cca895d9398a9869110c8a5d37222b4303ce3af5f55c97ca63458b93fa1f56543288e25e69f458487189ce56eab38f1b09b7d4d94bf6ede040d37ee97b46cb2d languageName: node linkType: hard "@aesop-fables/containr-react@npm:^0.4.1": version: 0.4.1 resolution: "@aesop-fables/containr-react@npm:0.4.1" peerDependencies: "@aesop-fables/containr": ">= 0.4.x" react: ">= 17.x" reflect-metadata: 0.x checksum: 10/803dd8505ca0a96a3ed73d0cb529376a68d04df06b2d3dc92609b086b2379e120f62372d043974e8c9097bd785fb9e68f29de414d2d4a3f6e96cc849bdd7661e languageName: node linkType: hard "@aesop-fables/containr@npm:^0.6.1": version: 0.6.1 resolution: "@aesop-fables/containr@npm:0.6.1" peerDependencies: reflect-metadata: ">= 0.1.x" checksum: 10/e1c2651a663c36c60cca7f05c6fb5e2c624336fac3323f5b83c3656eeb84536fd502cdbec7204424bbe71827058bdace4de95fd1382d40d40bc96dfdcd8d3f52 languageName: node linkType: hard "@aesop-fables/scrinium@npm:^0.11.11": version: 0.11.11 resolution: "@aesop-fables/scrinium@npm:0.11.11" dependencies: async-mutex: "npm:^0.5.0" peerDependencies: "@aesop-fables/containr": ">= 0.6.1" "@aesop-fables/containr-react": ">= 0.4.0" events: 3.x react: ">= 17.x" reflect-metadata: ">= 0.2.x" rxjs: 7.x checksum: 10/c54a978fc2b23f015eaba3d0298b14c1fa827d2d7cc975853812815e5bfc8751939125f0443d29dff140d347b59f1cecef54160d7fc7953b7e029290a356de0d languageName: node linkType: hard "@ampproject/remapping@npm:^2.2.0": version: 2.3.0 resolution: "@ampproject/remapping@npm:2.3.0" dependencies: "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.24" checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab languageName: node linkType: hard "@azure/abort-controller@npm:^1.0.0": version: 1.1.0 resolution: "@azure/abort-controller@npm:1.1.0" dependencies: tslib: "npm:^2.2.0" checksum: 10/1efe8735cfe6411f42ab9dda86be627073e0e3345a89bd5d0560175523ab3939db2c82fd17965a49fc70513377866539c91a5c73c871b5a0d771329ffae87dda languageName: node linkType: hard "@azure/abort-controller@npm:^2.0.0": version: 2.1.2 resolution: "@azure/abort-controller@npm:2.1.2" dependencies: tslib: "npm:^2.6.2" checksum: 10/484e34a8121e5815f764af4da1c8b51d4713106e43f1c44e59671773ffff52da066780821c7633cf601668daa1181a57a1c88f57854d60b62ecc5560f9c52932 languageName: node linkType: hard "@azure/core-auth@npm:1.5.0": version: 1.5.0 resolution: "@azure/core-auth@npm:1.5.0" dependencies: "@azure/abort-controller": "npm:^1.0.0" "@azure/core-util": "npm:^1.1.0" tslib: "npm:^2.2.0" checksum: 10/07d93f672e9381c40c2c71ddbd9bbf9f0c6f617acd51ecf7d3481373076cb13921788512c5c5a8ad42ff3c1c9e610d56e0f6e02198924f4a3ec3b958b2dffc9f languageName: node linkType: hard "@azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.5.0": version: 1.7.2 resolution: "@azure/core-auth@npm:1.7.2" dependencies: "@azure/abort-controller": "npm:^2.0.0" "@azure/core-util": "npm:^1.1.0" tslib: "npm:^2.6.2" checksum: 10/c85325c5977490554e1cdc9acbb6f8e309ab68935919900ff59cb6b125833848e082347c5ed454d1fcfa028c75e42ecd16e982f7f1eada76a17a76751f689261 languageName: node linkType: hard "@azure/core-rest-pipeline@npm:1.10.1": version: 1.10.1 resolution: "@azure/core-rest-pipeline@npm:1.10.1" dependencies: "@azure/abort-controller": "npm:^1.0.0" "@azure/core-auth": "npm:^1.4.0" "@azure/core-tracing": "npm:^1.0.1" "@azure/core-util": "npm:^1.0.0" "@azure/logger": "npm:^1.0.0" form-data: "npm:^4.0.0" http-proxy-agent: "npm:^5.0.0" https-proxy-agent: "npm:^5.0.0" tslib: "npm:^2.2.0" uuid: "npm:^8.3.0" checksum: 10/9968bcfc9c45fd28e11e947df617069d1828186ff95091ef2b6b0ee748022a47ff85cac3e6f3648b7dfc873483b589e9e958f8712c0afddf0afa5513948c28f9 languageName: node linkType: hard "@azure/core-tracing@npm:^1.0.0": version: 1.1.2 resolution: "@azure/core-tracing@npm:1.1.2" dependencies: tslib: "npm:^2.6.2" checksum: 10/027ab8f6ed0ed859a3999dd192faf7286b6e1da8887852a61150c1cf9fc29dbde95bcaa510ee5138e416e9c026cd177b69b7e2c83a8ec0a9758caba412f5368d languageName: node linkType: hard "@azure/core-tracing@npm:^1.0.1": version: 1.2.0 resolution: "@azure/core-tracing@npm:1.2.0" dependencies: tslib: "npm:^2.6.2" checksum: 10/5d63ffc8f6361545b55b108b2898cda2b424db1a533d11a56890d53ba3b385e9be8f50cfd48a21b897351e1f4bbc56ede14d57187ea927d4489637fc93ebe615 languageName: node linkType: hard "@azure/core-util@npm:1.2.0": version: 1.2.0 resolution: "@azure/core-util@npm:1.2.0" dependencies: "@azure/abort-controller": "npm:^1.0.0" tslib: "npm:^2.2.0" checksum: 10/908375f354f778f2e623acbcd630d788106a9c8c4c63fb8342447194643533419e60cda70dd1da97eab8a8100eced2852234802b6b78d387a5b82ad98756dc56 languageName: node linkType: hard "@azure/core-util@npm:^1.0.0, @azure/core-util@npm:^1.1.0": version: 1.9.0 resolution: "@azure/core-util@npm:1.9.0" dependencies: "@azure/abort-controller": "npm:^2.0.0" tslib: "npm:^2.6.2" checksum: 10/601853796bf130a87e55c687bab4c97500a8cb16e02db8aeb32ac3f05551452eaf4164b7797e49e1ebefb69b0ad8a11fa698c2e4b42ab5075fee3002fef9b2d2 languageName: node linkType: hard "@azure/logger@npm:^1.0.0": version: 1.1.2 resolution: "@azure/logger@npm:1.1.2" dependencies: tslib: "npm:^2.6.2" checksum: 10/d7806f70627a3cc94752c1f773e01566c86e62a497a5a631cd4b68ccaddf42a14314e4b43e9f59dc61bd643b1778aab5bb487dd0da0aa4e64f5d9f5cad05f1d9 languageName: node linkType: hard "@azure/opentelemetry-instrumentation-azure-sdk@npm:^1.0.0-beta.5": version: 1.0.0-beta.5 resolution: "@azure/opentelemetry-instrumentation-azure-sdk@npm:1.0.0-beta.5" dependencies: "@azure/core-tracing": "npm:^1.0.0" "@azure/logger": "npm:^1.0.0" "@opentelemetry/api": "npm:^1.4.1" "@opentelemetry/core": "npm:^1.15.2" "@opentelemetry/instrumentation": "npm:^0.41.2" tslib: "npm:^2.2.0" checksum: 10/7576223971c00d404d34cb2eb9737d31460b473960d1b51579bf5d5f024e9c6fa38f413a3fde7c62badc887ddeb8730d897cf4d6776bd219b8e401cb5d956c94 languageName: node linkType: hard "@babel/code-frame@npm:7.10.4, @babel/code-frame@npm:~7.10.4": version: 7.10.4 resolution: "@babel/code-frame@npm:7.10.4" dependencies: "@babel/highlight": "npm:^7.10.4" checksum: 10/4ef9c679515be9cb8eab519fcded953f86226155a599cf7ea209e40e088bb9a51bb5893d3307eae510b07bb3e359d64f2620957a00c27825dbe26ac62aca81f5 languageName: node linkType: hard "@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.25.7": version: 7.25.7 resolution: "@babel/code-frame@npm:7.25.7" dependencies: "@babel/highlight": "npm:^7.25.7" picocolors: "npm:^1.0.0" checksum: 10/000fb8299fb35b6217d4f6c6580dcc1fa2f6c0f82d0a54b8a029966f633a8b19b490a7a906b56a94e9d8bee91c3bc44c74c44c33fb0abaa588202f6280186291 languageName: node linkType: hard "@babel/code-frame@npm:^7.24.7": version: 7.24.7 resolution: "@babel/code-frame@npm:7.24.7" dependencies: "@babel/highlight": "npm:^7.24.7" picocolors: "npm:^1.0.0" checksum: 10/4812e94885ba7e3213d49583a155fdffb05292330f0a9b2c41b49288da70cf3c746a3fda0bf1074041a6d741c33f8d7be24be5e96f41ef77395eeddc5c9ff624 languageName: node linkType: hard "@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.25.7, @babel/compat-data@npm:^7.25.8": version: 7.25.8 resolution: "@babel/compat-data@npm:7.25.8" checksum: 10/269fcb0d89e02e36c8a11e0c1b960a6b4204e88f59f20c374d28f8e318f4cd5ded42dfedc4b54162065e6a10f71c0de651f5ed3f9b45d3a4b52240196df85726 languageName: node linkType: hard "@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.20.0, @babel/core@npm:^7.21.3, @babel/core@npm:^7.23.9, @babel/core@npm:^7.25.8": version: 7.25.8 resolution: "@babel/core@npm:7.25.8" dependencies: "@ampproject/remapping": "npm:^2.2.0" "@babel/code-frame": "npm:^7.25.7" "@babel/generator": "npm:^7.25.7" "@babel/helper-compilation-targets": "npm:^7.25.7" "@babel/helper-module-transforms": "npm:^7.25.7" "@babel/helpers": "npm:^7.25.7" "@babel/parser": "npm:^7.25.8" "@babel/template": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" "@babel/types": "npm:^7.25.8" convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" checksum: 10/31eb1a8ca1a3cc0026060720eb290e68205d95c5c00fbd831e69ddc0810f5920b8eb2749db1889ac0a0312b6eddbf321d18a996a88858f3b75c9582bef9ec1e4 languageName: node linkType: hard "@babel/eslint-parser@npm:^7.20.0": version: 7.24.7 resolution: "@babel/eslint-parser@npm:7.24.7" dependencies: "@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1" eslint-visitor-keys: "npm:^2.1.0" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.11.0 eslint: ^7.5.0 || ^8.0.0 || ^9.0.0 checksum: 10/4d7f1704cf3cb868404375298ff066603f1b27bb92a9011452d7eadcdc79c97ccd5f2202eca66d811d84e5d4466a1fb1cc7ceebed51fb0c71fb911050359b02b languageName: node linkType: hard "@babel/generator@npm:7.2.0": version: 7.2.0 resolution: "@babel/generator@npm:7.2.0" dependencies: "@babel/types": "npm:^7.2.0" jsesc: "npm:^2.5.1" lodash: "npm:^4.17.10" source-map: "npm:^0.5.0" trim-right: "npm:^1.0.1" checksum: 10/61520c478f52eff44eb3b460ae976f800eb06933f366890274e1a2ef1b7105a3271cd645915362fbc5646cd1e6688a4165b32e60cb6fbfa0715428433fdfba89 languageName: node linkType: hard "@babel/generator@npm:^7.20.0, @babel/generator@npm:^7.20.5, @babel/generator@npm:^7.25.7, @babel/generator@npm:^7.7.2": version: 7.25.7 resolution: "@babel/generator@npm:7.25.7" dependencies: "@babel/types": "npm:^7.25.7" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^3.0.2" checksum: 10/01542829621388077fa8a7464970c1db0f748f1482968dddf5332926afe4003f953cbe08e3bbbb0a335b11eba0126c9a81779bd1c5baed681a9ccec4ae63b217 languageName: node linkType: hard "@babel/generator@npm:^7.24.7": version: 7.24.7 resolution: "@babel/generator@npm:7.24.7" dependencies: "@babel/types": "npm:^7.24.7" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^2.5.1" checksum: 10/c71d24a4b41b19c10d2f2eb819f27d4cf94220e2322f7c8fed8bfbbb115b2bebbdd6dc1f27dac78a175e90604def58d763af87e0fa81ce4ab1582858162cf768 languageName: node linkType: hard "@babel/helper-annotate-as-pure@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-annotate-as-pure@npm:7.24.7" dependencies: "@babel/types": "npm:^7.24.7" checksum: 10/a9017bfc1c4e9f2225b967fbf818004703de7cf29686468b54002ffe8d6b56e0808afa20d636819fcf3a34b89ba72f52c11bdf1d69f303928ee10d92752cad95 languageName: node linkType: hard "@babel/helper-annotate-as-pure@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-annotate-as-pure@npm:7.25.7" dependencies: "@babel/types": "npm:^7.25.7" checksum: 10/38044806cab33032391c46861cd0a36adb960525b00bc03f2f3d4380c983bf17971cdabc431e58b93a328ef24bd0271f1dc3a8c1c1ea6cab49d04702961451d8 languageName: node linkType: hard "@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.25.7" dependencies: "@babel/traverse": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" checksum: 10/e493c4b7ea1dcb1e406cf30265164b632e133ea9a039a5ddc8eadd5370ad498eddcd99871fdf500b9ac05d0b43f2a0987580ceb1f7adb3b7272e49b56589849a languageName: node linkType: hard "@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-compilation-targets@npm:7.25.7" dependencies: "@babel/compat-data": "npm:^7.25.7" "@babel/helper-validator-option": "npm:^7.25.7" browserslist: "npm:^4.24.0" lru-cache: "npm:^5.1.1" semver: "npm:^6.3.1" checksum: 10/bbf9be8480da3f9a89e36e9ea2e1c76601014c1074ccada7c2edb1adeb3b62bc402cc4abaf8d16760734b25eceb187a9510ce44f6a7a6f696ccc74f69283625b languageName: node linkType: hard "@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-create-class-features-plugin@npm:7.25.7" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.25.7" "@babel/helper-member-expression-to-functions": "npm:^7.25.7" "@babel/helper-optimise-call-expression": "npm:^7.25.7" "@babel/helper-replace-supers": "npm:^7.25.7" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/76e3bb727d7541d38acaa9b6ecff88f70e62370396dd22511837b90a556c6815a7efd6fd25b499bf1c8b02cdb18c575781a6aba0c442c38a2129a403b5bf9b1e languageName: node linkType: hard "@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-create-regexp-features-plugin@npm:7.25.7" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.25.7" regexpu-core: "npm:^6.1.1" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/fa083f83ae9ba3326e32762c9839fea171de34d66bffc65569a6a67222ec55cf4ef35b6b26f332d24485c0622a69a2e0b9eb2a7ca279595b174cfeeec68849ac languageName: node linkType: hard "@babel/helper-define-polyfill-provider@npm:^0.6.1, @babel/helper-define-polyfill-provider@npm:^0.6.2": version: 0.6.2 resolution: "@babel/helper-define-polyfill-provider@npm:0.6.2" dependencies: "@babel/helper-compilation-targets": "npm:^7.22.6" "@babel/helper-plugin-utils": "npm:^7.22.5" debug: "npm:^4.1.1" lodash.debounce: "npm:^4.0.8" resolve: "npm:^1.14.2" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: 10/bb32ec12024d3f16e70641bc125d2534a97edbfdabbc9f69001ec9c4ce46f877c7a224c566aa6c8c510c3b0def2e43dc4433bf6a40896ba5ce0cef4ea5ccbcff languageName: node linkType: hard "@babel/helper-environment-visitor@npm:^7.18.9, @babel/helper-environment-visitor@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-environment-visitor@npm:7.24.7" dependencies: "@babel/types": "npm:^7.24.7" checksum: 10/079d86e65701b29ebc10baf6ed548d17c19b808a07aa6885cc141b690a78581b180ee92b580d755361dc3b16adf975b2d2058b8ce6c86675fcaf43cf22f2f7c6 languageName: node linkType: hard "@babel/helper-function-name@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-function-name@npm:7.24.7" dependencies: "@babel/template": "npm:^7.24.7" "@babel/types": "npm:^7.24.7" checksum: 10/2ceb3d9b2b35a0fc4100fc06ed7be3bc38f03ff0bf128ff0edbc0cc7dd842967b1496fc70b5c616c747d7711c2b87e7d025c8888f48740631d6148a9d3614f85 languageName: node linkType: hard "@babel/helper-hoist-variables@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-hoist-variables@npm:7.24.7" dependencies: "@babel/types": "npm:^7.24.7" checksum: 10/6cfdcf2289cd12185dcdbdf2435fa8d3447b797ac75851166de9fc8503e2fd0021db6baf8dfbecad3753e582c08e6a3f805c8d00cbed756060a877d705bd8d8d languageName: node linkType: hard "@babel/helper-member-expression-to-functions@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-member-expression-to-functions@npm:7.25.7" dependencies: "@babel/traverse": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" checksum: 10/f953a0ddbcfbaae835033b54fdbf42cc3aea08c554875fccfc02ed4b1e5fe3ee06abf1b7a8419314357841fabc9efdbcbb8afdf07c4f216a73164a45a147562b languageName: node linkType: hard "@babel/helper-module-imports@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-module-imports@npm:7.24.7" dependencies: "@babel/traverse": "npm:^7.24.7" "@babel/types": "npm:^7.24.7" checksum: 10/df8bfb2bb18413aa151ecd63b7d5deb0eec102f924f9de6bc08022ced7ed8ca7fed914562d2f6fa5b59b74a5d6e255dc35612b2bc3b8abf361e13f61b3704770 languageName: node linkType: hard "@babel/helper-module-imports@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-module-imports@npm:7.25.7" dependencies: "@babel/traverse": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" checksum: 10/94556712c27058ea35a1a39e21a3a9f067cd699405b64333d7d92b2b3d2f24d6f0ffa51aedba0b908e320acb1854e70d296259622e636fb021eeae9a6d996f01 languageName: node linkType: hard "@babel/helper-module-transforms@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-module-transforms@npm:7.25.7" dependencies: "@babel/helper-module-imports": "npm:^7.25.7" "@babel/helper-simple-access": "npm:^7.25.7" "@babel/helper-validator-identifier": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/480309b1272ceaa985de1393f0e4c41aede0d5921ca644cec5aeaf43c8e4192b6dd56a58ef6d7e9acd02a43184ab45d3b241fc8c3a0a00f9dbb30235fd8a1181 languageName: node linkType: hard "@babel/helper-optimise-call-expression@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-optimise-call-expression@npm:7.25.7" dependencies: "@babel/types": "npm:^7.25.7" checksum: 10/8da0d9f5aae15991678ad1bbe58e52cd62a0ed36871075756d9684c0a7a65988ed81bab53ad6436c39a470d3cd690694dd2b07147817217e3ca87178a129c509 languageName: node linkType: hard "@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.7, @babel/helper-plugin-utils@npm:^7.8.0": version: 7.25.7 resolution: "@babel/helper-plugin-utils@npm:7.25.7" checksum: 10/e1b0ea5e67b05378d6360e3fc370e99bfb247eed9f68145b5cce541da703424e1887fb6fc60ab2f7f743c72dcbfbed79d3032af43f2c251c229c734dc2572a5b languageName: node linkType: hard "@babel/helper-plugin-utils@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-plugin-utils@npm:7.24.7" checksum: 10/dad51622f0123fdba4e2d40a81a6b7d6ef4b1491b2f92fd9749447a36bde809106cf117358705057a2adc8fd73d5dc090222e0561b1213dae8601c8367f5aac8 languageName: node linkType: hard "@babel/helper-remap-async-to-generator@npm:^7.18.9, @babel/helper-remap-async-to-generator@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-remap-async-to-generator@npm:7.25.7" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.25.7" "@babel/helper-wrap-function": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/3d563ac35cb1306bf70e7353fc807e7b082a7510d955a36db089fa861c6a8b2c470184996f3177d5384e5290a1be9e7eed424efb9e2dd3bed3a8cf6c2d6a9723 languageName: node linkType: hard "@babel/helper-replace-supers@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-replace-supers@npm:7.25.7" dependencies: "@babel/helper-member-expression-to-functions": "npm:^7.25.7" "@babel/helper-optimise-call-expression": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/87b65c7b278fabcb67458e592082a0b4532d5400acbb51e496ea47763077d0a64dc0531d32bafcb1d51f04d61d4715dadb1fd0301bc8449c26fcfd06913eb45e languageName: node linkType: hard "@babel/helper-simple-access@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-simple-access@npm:7.25.7" dependencies: "@babel/traverse": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" checksum: 10/42da1c358f2516337a4f2927c77ebb952907543b9f85d7cb1e2b5b5f6d808cdc081ee66a73e2ecdf48c315d9b0c2a81a857d5e1923ea210b8e81aba5e6cd2b53 languageName: node linkType: hard "@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.25.7" dependencies: "@babel/traverse": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" checksum: 10/466c81d09981bfb9e10aa6697ecb621389ff92a86187daaca34a969ca990d7327ebe931e87f7d52a200e499542d398469478d83dfaaa244d2f49df4e078490b3 languageName: node linkType: hard "@babel/helper-split-export-declaration@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-split-export-declaration@npm:7.24.7" dependencies: "@babel/types": "npm:^7.24.7" checksum: 10/ff04a3071603c87de0d6ee2540b7291ab36305b329bd047cdbb6cbd7db335a12f9a77af1cf708779f75f13c4d9af46093c00b34432e50b2411872c658d1a2e5e languageName: node linkType: hard "@babel/helper-string-parser@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-string-parser@npm:7.24.7" checksum: 10/603d8d962bbe89907aa99a8f19a006759ab7b2464615f20a6a22e3e2e8375af37ddd0e5175c9e622e1c4b2d83607ffb41055a59d0ce34404502af30fde573a5c languageName: node linkType: hard "@babel/helper-string-parser@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-string-parser@npm:7.25.7" checksum: 10/2b8de9fa86c3f3090a349f1ce6e8ee2618a95355cbdafc6f228d82fa4808c84bf3d1d25290c6616d0a18b26b6cfeb6ec2aeebf01404bc8c60051d0094209f0e6 languageName: node linkType: hard "@babel/helper-validator-identifier@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-validator-identifier@npm:7.24.7" checksum: 10/86875063f57361471b531dbc2ea10bbf5406e12b06d249b03827d361db4cad2388c6f00936bcd9dc86479f7e2c69ea21412c2228d4b3672588b754b70a449d4b languageName: node linkType: hard "@babel/helper-validator-identifier@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-validator-identifier@npm:7.25.7" checksum: 10/ec6934cc47fc35baaeb968414a372b064f14f7b130cf6489a014c9486b0fd2549b3c6c682cc1fc35080075e8e38d96aeb40342d63d09fc1a62510c8ce25cde1e languageName: node linkType: hard "@babel/helper-validator-option@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-validator-option@npm:7.24.7" checksum: 10/9689166bf3f777dd424c026841c8cd651e41b21242dbfd4569a53086179a3e744c8eddd56e9d10b54142270141c91581b53af0d7c00c82d552d2540e2a919f7e languageName: node linkType: hard "@babel/helper-validator-option@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-validator-option@npm:7.25.7" checksum: 10/3c46cbdd666d176f90a0b7e952a0c6e92184b66633336eca79aca243d1f86085ec339a6e45c3d44efa9e03f1829b470a350ddafa70926af6bbf1ac611284f8d3 languageName: node linkType: hard "@babel/helper-wrap-function@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-wrap-function@npm:7.25.7" dependencies: "@babel/template": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" checksum: 10/00e2291a2b67e060b98cae90b4cc9107cff29d7b26bd5eb61149c63fb99418d9bd00bb0708b8b3e733cae4b1ea3a2b41a709d85192accfa15903f8af5c821fe6 languageName: node linkType: hard "@babel/helpers@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helpers@npm:7.25.7" dependencies: "@babel/template": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" checksum: 10/2632909f83aa99e8b0da4e10e5ab7fc4f0274e6497bb0f17071e004e037d25e4a595583620261dc21410a526fb32b4f7063c3e15e60ed7890a6f9b8ad52312c5 languageName: node linkType: hard "@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.25.7": version: 7.25.7 resolution: "@babel/highlight@npm:7.25.7" dependencies: "@babel/helper-validator-identifier": "npm:^7.25.7" chalk: "npm:^2.4.2" js-tokens: "npm:^4.0.0" picocolors: "npm:^1.0.0" checksum: 10/823be2523d246dbf80aab3cc81c2a36c6111b16ac2949ef06789da54387824c2bfaa88c6627cdeb4ba7151d047a5d6765e49ebd0b478aba09759250111e65e08 languageName: node linkType: hard "@babel/highlight@npm:^7.24.7": version: 7.24.7 resolution: "@babel/highlight@npm:7.24.7" dependencies: "@babel/helper-validator-identifier": "npm:^7.24.7" chalk: "npm:^2.4.2" js-tokens: "npm:^4.0.0" picocolors: "npm:^1.0.0" checksum: 10/69b73f38cdd4f881b09b939a711e76646da34f4834f4ce141d7a49a6bb1926eab1c594148970a8aa9360398dff800f63aade4e81fafdd7c8d8a8489ea93bfec1 languageName: node linkType: hard "@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.7, @babel/parser@npm:^7.25.8": version: 7.25.8 resolution: "@babel/parser@npm:7.25.8" dependencies: "@babel/types": "npm:^7.25.8" bin: parser: ./bin/babel-parser.js checksum: 10/0396eb71e379903cedb43862f84ebb1bec809c41e82b4894d2e6e83b8e8bc636ba6eff45382e615baefdb2399ede76ca82247ecc3a9877ac16eb3140074a3276 languageName: node linkType: hard "@babel/parser@npm:^7.24.7": version: 7.24.7 resolution: "@babel/parser@npm:7.24.7" bin: parser: ./bin/babel-parser.js checksum: 10/ef9ebce60e13db560ccc7af9235d460f6726bb7e23ae2d675098c1fc43d5249067be60d4118889dad33b1d4f85162cf66baf554719e1669f29bb20e71322568e languageName: node linkType: hard "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/25f1d0a2ec6f9e912d2513b3830b239acdf9c75f453c208f77074687393f380b1150684ca0acb78368391fa1035242ac66e7f3856834d8003f01d1af17747230 languageName: node linkType: hard "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/52551470b6164a787460c28019428e97d20097d5dffab74f8866512706a3b002e57fdb23fe8e5156149bc4c9cfea48d5a0347b7a9e7e2a05f681941037136ab3 languageName: node linkType: hard "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/c37204ec3c82a1babba13f0cc2a68220959224cbab1294b1d7d8501af4734de1664b43c67b97fcaa1b3f53c865b0a4ad6f887102c7d7b913aab43df29ac7da52 languageName: node linkType: hard "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.7" "@babel/plugin-transform-optional-chaining": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.13.0 checksum: 10/507c92bbcb3d7747c82290370336b50368fbb652af31fea718be8f1928142f1c5f7c6f2b9810d8b9b2905734f8f6b778f9e4b1cfb5a11073a2f1cfe9e5e5b354 languageName: node linkType: hard "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/289c6da5840c5049adbeb9b4cfb166d422f0b7b3f3a54aff64e8a053a1249e8eb513eac0fa3d033869372ffc30eda1e8555fa789b9daa1064bfdaf7f4717daa8 languageName: node linkType: hard "@babel/plugin-proposal-async-generator-functions@npm:^7.0.0": version: 7.20.7 resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.20.7" dependencies: "@babel/helper-environment-visitor": "npm:^7.18.9" "@babel/helper-plugin-utils": "npm:^7.20.2" "@babel/helper-remap-async-to-generator": "npm:^7.18.9" "@babel/plugin-syntax-async-generators": "npm:^7.8.4" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/111109ee118c9e69982f08d5e119eab04190b36a0f40e22e873802d941956eee66d2aa5a15f5321e51e3f9aa70a91136451b987fe15185ef8cc547ac88937723 languageName: node linkType: hard "@babel/plugin-proposal-class-properties@npm:^7.13.0, @babel/plugin-proposal-class-properties@npm:^7.18.0": version: 7.18.6 resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6" dependencies: "@babel/helper-create-class-features-plugin": "npm:^7.18.6" "@babel/helper-plugin-utils": "npm:^7.18.6" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/49a78a2773ec0db56e915d9797e44fd079ab8a9b2e1716e0df07c92532f2c65d76aeda9543883916b8e0ff13606afeffa67c5b93d05b607bc87653ad18a91422 languageName: node linkType: hard "@babel/plugin-proposal-decorators@npm:^7.12.9, @babel/plugin-proposal-decorators@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-proposal-decorators@npm:7.25.7" dependencies: "@babel/helper-create-class-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/plugin-syntax-decorators": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/f07c6af4a6db9369f30f29c33efdcdaad296746702066ce31b88d0edb17e9bc12576b208a4936dd4d0a6a4b4a770516f7dc4ca97eef30aa2fab4653fbe182abd languageName: node linkType: hard "@babel/plugin-proposal-export-default-from@npm:^7.0.0": version: 7.24.7 resolution: "@babel/plugin-proposal-export-default-from@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-export-default-from": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/ebb68d666f0f91f6ea827f11b55c6008e619752c4c02a039fb7623d27e07ec66ad3a6a56839faac382100e19602d3ccfd48c9660a9699dab4f02b8c04d61a138 languageName: node linkType: hard "@babel/plugin-proposal-logical-assignment-operators@npm:^7.18.0": version: 7.20.7 resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.20.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.20.2" "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/cdd7b8136cc4db3f47714d5266f9e7b592a2ac5a94a5878787ce08890e97c8ab1ca8e94b27bfeba7b0f2b1549a026d9fc414ca2196de603df36fb32633bbdc19 languageName: node linkType: hard "@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.18.0": version: 7.18.6 resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6" dependencies: "@babel/helper-plugin-utils": "npm:^7.18.6" "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/949c9ddcdecdaec766ee610ef98f965f928ccc0361dd87cf9f88cf4896a6ccd62fce063d4494778e50da99dea63d270a1be574a62d6ab81cbe9d85884bf55a7d languageName: node linkType: hard "@babel/plugin-proposal-numeric-separator@npm:^7.0.0": version: 7.18.6 resolution: "@babel/plugin-proposal-numeric-separator@npm:7.18.6" dependencies: "@babel/helper-plugin-utils": "npm:^7.18.6" "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/f370ea584c55bf4040e1f78c80b4eeb1ce2e6aaa74f87d1a48266493c33931d0b6222d8cee3a082383d6bb648ab8d6b7147a06f974d3296ef3bc39c7851683ec languageName: node linkType: hard "@babel/plugin-proposal-object-rest-spread@npm:^7.20.0": version: 7.20.7 resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.20.7" dependencies: "@babel/compat-data": "npm:^7.20.5" "@babel/helper-compilation-targets": "npm:^7.20.7" "@babel/helper-plugin-utils": "npm:^7.20.2" "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" "@babel/plugin-transform-parameters": "npm:^7.20.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/cb0f8f2ff98d7bb64ee91c28b20e8ab15d9bc7043f0932cbb9e51e1bbfb623b12f206a1171e070299c9cf21948c320b710d6d72a42f68a5bfd2702354113a1c5 languageName: node linkType: hard "@babel/plugin-proposal-optional-catch-binding@npm:^7.0.0": version: 7.18.6 resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.18.6" dependencies: "@babel/helper-plugin-utils": "npm:^7.18.6" "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/7b5b39fb5d8d6d14faad6cb68ece5eeb2fd550fb66b5af7d7582402f974f5bc3684641f7c192a5a57e0f59acfae4aada6786be1eba030881ddc590666eff4d1e languageName: node linkType: hard "@babel/plugin-proposal-optional-chaining@npm:^7.13.12, @babel/plugin-proposal-optional-chaining@npm:^7.20.0": version: 7.21.0 resolution: "@babel/plugin-proposal-optional-chaining@npm:7.21.0" dependencies: "@babel/helper-plugin-utils": "npm:^7.20.2" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.20.0" "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/522cd133aff5c94c0ef36ff83c64f03deee183815da68b65b6950e81972ace3b514e032df07ea76d0f9ec8cc7a49578092907adfa17fccb4612117557c04a882 languageName: node linkType: hard "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": version: 7.21.0-placeholder-for-preset-env.2 resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/fab70f399aa869275690ec6c7cedb4ef361d4e8b6f55c3d7b04bfee61d52fb93c87cec2c65d73cddbaca89fb8ef5ec0921fce675c9169d9d51f18305ab34e78a languageName: node linkType: hard "@babel/plugin-syntax-async-generators@npm:^7.8.4": version: 7.8.4 resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" dependencies: "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367 languageName: node linkType: hard "@babel/plugin-syntax-bigint@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" dependencies: "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648 languageName: node linkType: hard "@babel/plugin-syntax-class-properties@npm:^7.8.3": version: 7.12.13 resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" dependencies: "@babel/helper-plugin-utils": "npm:^7.12.13" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc languageName: node linkType: hard "@babel/plugin-syntax-decorators@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-syntax-decorators@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/68107004ba33c69ab50b9c57bb04e95dea19ee5daf9a8049cfbf2544c7c8178b6411dbc1bd08375c007543fc07f8b836075126c3220d5338b3167ad9d81746db languageName: node linkType: hard "@babel/plugin-syntax-dynamic-import@npm:^7.8.0": version: 7.8.3 resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" dependencies: "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd languageName: node linkType: hard "@babel/plugin-syntax-export-default-from@npm:^7.0.0, @babel/plugin-syntax-export-default-from@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-syntax-export-default-from@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/0fd5809bdadab0b3d98fbd4353f835a4927c119a308deacdafa032ea5c1c20226f64f1b7c84362db4c7d612be88983cadb655739075e051dc74eae3b18874b14 languageName: node linkType: hard "@babel/plugin-syntax-flow@npm:^7.12.1, @babel/plugin-syntax-flow@npm:^7.18.0, @babel/plugin-syntax-flow@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-syntax-flow@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/ce96b984445c712bb5fdc70a8c7e8a58759db17d1e31386caae5c93b062ab447421831e9527949b0d3d7750ac0a4eacfde00f40ca86392381fec7c5d39455e9c languageName: node linkType: hard "@babel/plugin-syntax-flow@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-syntax-flow@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/0a83bde6736110d68f3b20eda44ca020a6d34c336a342f84369207f5514e17779b9c3d3ebc2f1c94b595c13819f46bf7af367c4b1382bda182e1764655fd6a5a languageName: node linkType: hard "@babel/plugin-syntax-import-assertions@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-syntax-import-assertions@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/d72615f8dcc5ffbcb456bcf7ce27bc22b30cc9ea8d809e461d80af486033d31bd0b6d83c9a7997c9cd36ff283a9c1207f806da4361bb620370659c256c5454e9 languageName: node linkType: hard "@babel/plugin-syntax-import-attributes@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-syntax-import-attributes@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/7c5451e2d8351693acbc53b1e1f6951026e35899d22847a6d22424a1ee5c92c11ac6c6f209a9e18f85d7bb9267caaf2532653e892997cdcd51784106a5858b7e languageName: node linkType: hard "@babel/plugin-syntax-import-meta@npm:^7.8.3": version: 7.10.4 resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" dependencies: "@babel/helper-plugin-utils": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b languageName: node linkType: hard "@babel/plugin-syntax-json-strings@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" dependencies: "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a languageName: node linkType: hard "@babel/plugin-syntax-jsx@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-syntax-jsx@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/a93516ae5b34868ab892a95315027d4e5e38e8bd1cfca6158f2974b0901cbb32bbe64ea10ad5b25f919ddc40c6d8113c4823372909c9c9922170c12b0b1acecb languageName: node linkType: hard "@babel/plugin-syntax-jsx@npm:^7.25.7, @babel/plugin-syntax-jsx@npm:^7.7.2": version: 7.25.7 resolution: "@babel/plugin-syntax-jsx@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/243476a943a84b6b86e99076301e66f48268e8799564053e8feccab90da7944a0b42c91360216dbfb0b2958bbd0ed100d2c7b2db688dab83d19ff2745d4892eb languageName: node linkType: hard "@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": version: 7.10.4 resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" dependencies: "@babel/helper-plugin-utils": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886 languageName: node linkType: hard "@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.0.0, @babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" dependencies: "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1 languageName: node linkType: hard "@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": version: 7.10.4 resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" dependencies: "@babel/helper-plugin-utils": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1 languageName: node linkType: hard "@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" dependencies: "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf languageName: node linkType: hard "@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" dependencies: "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9 languageName: node linkType: hard "@babel/plugin-syntax-optional-chaining@npm:^7.0.0, @babel/plugin-syntax-optional-chaining@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" dependencies: "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30 languageName: node linkType: hard "@babel/plugin-syntax-top-level-await@npm:^7.8.3": version: 7.14.5 resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" dependencies: "@babel/helper-plugin-utils": "npm:^7.14.5" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e languageName: node linkType: hard "@babel/plugin-syntax-typescript@npm:^7.25.7, @babel/plugin-syntax-typescript@npm:^7.7.2": version: 7.25.7 resolution: "@babel/plugin-syntax-typescript@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/f1492336230920cc4daa6e7aa3571253fb0c0fd05a1d0a7b5dc0a5b907f31945235ee8bf09c83f7738b89943a2320a61dda95e0db2b6310b07040aeda6be4f44 languageName: node linkType: hard "@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" dependencies: "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" "@babel/helper-plugin-utils": "npm:^7.18.6" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c languageName: node linkType: hard "@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.0.0-0, @babel/plugin-transform-arrow-functions@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-arrow-functions@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/45a6b05acd132bd399ab127d54d43f7117f650908092c15da7c41c61c5e49bfdb63c0e65bd59ad68c94bfc6aade602732a98a55b146b69dfae212516203d43f9 languageName: node linkType: hard "@babel/plugin-transform-async-generator-functions@npm:^7.24.3, @babel/plugin-transform-async-generator-functions@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-async-generator-functions@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-remap-async-to-generator": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/ab3f74664fc03af357e8450711de60ec77149be668059dbc0c0d616d85253117aec0e5ffb2eccda3449d0099d5fba5ef32f0e6e12a52af5f72fbca437372ece5 languageName: node linkType: hard "@babel/plugin-transform-async-to-generator@npm:^7.20.0, @babel/plugin-transform-async-to-generator@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-async-to-generator@npm:7.25.7" dependencies: "@babel/helper-module-imports": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-remap-async-to-generator": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/fdc6161e9027bec8bbe523e40934a2cccf1a30cf241006c98a120b2cda6e4f75d4a4cb4831cf3ece43d9b752183117e4ca5ec43778750146d5fc9a74b22b1acf languageName: node linkType: hard "@babel/plugin-transform-block-scoped-functions@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/334debb143d002295c6dd5559ebf24483557787621fd1d7283ac748eb401ed96b7d43c981f1d2b6795720979fe7872dd0719aed890d064244d52b1c4fe6f3347 languageName: node linkType: hard "@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-block-scoping@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/bbc5b815c6850eb798a294a5d31ed09bb0db367a31196e78c0d02ce3f845ddd2e0dcfd7ec70505dfa4e1bd67f13e46b315d290c58aa7531468feed380e267d97 languageName: node linkType: hard "@babel/plugin-transform-class-properties@npm:^7.0.0-0, @babel/plugin-transform-class-properties@npm:^7.24.1, @babel/plugin-transform-class-properties@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-class-properties@npm:7.25.7" dependencies: "@babel/helper-create-class-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/fe1dbbd77275ade96964fec0c85a1f14e2dac0c6565bccddf00680e43c2e906d289dd9d483aff6359420cef2a044b4aaaeb303f64a3a1a005601c018188368e7 languageName: node linkType: hard "@babel/plugin-transform-class-static-block@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-class-static-block@npm:7.25.8" dependencies: "@babel/helper-create-class-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.12.0 checksum: 10/160d5f9d1dbe4dc12c2998227b51b1ccfe9f4d11b1031d0698f34403961d5b9bb995cc86acf1855102b9be365370c97d8cea243802b73c7ba7b2b18b2ac3aae9 languageName: node linkType: hard "@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.0.0-0, @babel/plugin-transform-classes@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-classes@npm:7.25.7" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.25.7" "@babel/helper-compilation-targets": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-replace-supers": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" globals: "npm:^11.1.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/239926ceb7fa926054fe9aabb7a64dba090d8f83d075bcec804d602a5715501c56dc26367bb90e6780e1113cc04cf6ad32c131e2782ccf1768fd059ac7eba04b languageName: node linkType: hard "@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-computed-properties@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/template": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/f25caeb3366847a1f67efe4b250a460f88a5ebb4c12c566d945bf211ef28977dd21f4dd6539f63743f3fabdbb174b4d34e22af2a451aba3bcfd702396442eb53 languageName: node linkType: hard "@babel/plugin-transform-destructuring@npm:^7.20.0, @babel/plugin-transform-destructuring@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-destructuring@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/b58347dc1b807ef8e6aaf995d59c6f09aa9de2c590bb90a52bc9c4082836ef72f70f8fc062370138134220de40dad06af6122ffcce77fb97d5e77ca7cd71e5c7 languageName: node linkType: hard "@babel/plugin-transform-dotall-regex@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-dotall-regex@npm:7.25.7" dependencies: "@babel/helper-create-regexp-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/a4727ee33b95d1f7e33b277b0003e3e91ebb9c3c611512e1ca5f3f0d99efd552a6c42b09e5520ea686ef0389dd8159a77c7c59fb53d0d1a1ff7d385c362da71b languageName: node linkType: hard "@babel/plugin-transform-duplicate-keys@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-duplicate-keys@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/b132ce919643f1fa519c8597513fba77155fde2d7689154c73791847efd218ff7ce11694b539ca9dee65538c9e774adf4bd6a6e950800dd648f43d5906a38155 languageName: node linkType: hard "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.25.7" dependencies: "@babel/helper-create-regexp-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/688ab66ed249a08d4b2e3ae8a2c10678fbe23f6466d5020d4cc3e031946dc335c028f5a1bee3221acb3875a1e901b0237020463157690fabc06edc4bdd6c6c88 languageName: node linkType: hard "@babel/plugin-transform-dynamic-import@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-dynamic-import@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/cf2c105143461876f418d21893ac8f7f2b0a3c3cefb4374c3cd6338a19d3a0deed3565049f7436b94452c6471622958ef9248c7bdfeb34d2917710ac74431203 languageName: node linkType: hard "@babel/plugin-transform-exponentiation-operator@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.25.7" dependencies: "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/3371fc79c052a3c63652785284a9f4b943a188ae5aa3e68a760c45afc43739d654ad6d8d24b93ed04fe736f6c0b4a7a11ace56bc954d3a6520d0b3c79e058c03 languageName: node linkType: hard "@babel/plugin-transform-export-namespace-from@npm:^7.22.11, @babel/plugin-transform-export-namespace-from@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-export-namespace-from@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/439aac4ca1c7dbb63f021142e7abcd746049bf0d44cc5d2eb469ae3b75d90e076a43ff77190b74d8139402b53eea625b08c68651d3ce1d0a0915f5643450b3de languageName: node linkType: hard "@babel/plugin-transform-flow-strip-types@npm:^7.20.0": version: 7.25.7 resolution: "@babel/plugin-transform-flow-strip-types@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/plugin-syntax-flow": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/af709749aa23deb6aaf8a34818a7de240f80e1877927b55afc566758e64cdf46738385b4f39ad94c9198ae1215f011a76ad3a779ac4a48092d349f53ef942ce0 languageName: node linkType: hard "@babel/plugin-transform-flow-strip-types@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-flow-strip-types@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-flow": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/234390eb09f0c1d5a2001c9e48c6440c30f9f188939004e07aa8c0cb946f04793a2e058fa1737b1c56041a7d3ea1510593c39220cc43bba85a017bfcc1c89c4d languageName: node linkType: hard "@babel/plugin-transform-for-of@npm:^7.0.0, @babel/plugin-transform-for-of@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-for-of@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/6fdfc1747283f50ada9f08d4f801d2156658f183db731369ac2b17f5f885661114906b3645c6a38bb6a5e24b771e6bd43c0ea47580c4fcb9347cd1d179e57435 languageName: node linkType: hard "@babel/plugin-transform-function-name@npm:^7.0.0, @babel/plugin-transform-function-name@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-function-name@npm:7.25.7" dependencies: "@babel/helper-compilation-targets": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/465d54942c03f77da3be5fb56404c6f8162f0e99034b8aceab6af2d386a77ecaf3df0c5f2dd67a00b66cd8ad970c0a08151026ed14aa44673a33f495e6849cc7 languageName: node linkType: hard "@babel/plugin-transform-json-strings@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-json-strings@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/adbc6a5a77b96db0f7e168c5fd2e56941df649808ce960f12447c1ba5d3893e9d458e7e14e3a5bd725ac5f3432ac1b3cf62b7413bbf7168a7c656dce51db711a languageName: node linkType: hard "@babel/plugin-transform-literals@npm:^7.0.0, @babel/plugin-transform-literals@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-literals@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/435d9709204e4cae46f9e75973a1424b98bb71516d9cfb0619260cfb56d445b43fa34aa49dacb0e1fbc2a19fdd9373f4b4db4908007be8f9e9e3f0ccf6c73e71 languageName: node linkType: hard "@babel/plugin-transform-logical-assignment-operators@npm:^7.24.1, @babel/plugin-transform-logical-assignment-operators@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/7af0e4ad63c1a59f24894b64330040966204963b75287752a2d56703c7924d3a883a3c2497e1f03c4b1792f8664e0650cf6687010dc5483444c077de1daae9f5 languageName: node linkType: hard "@babel/plugin-transform-member-expression-literals@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-member-expression-literals@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/fb2b985cfa0436bfbed6fbcdd430573272518cf3454c9b0de374cfb80ac6fe60b2ebbe0818a83035e436a9ff08b159bb87527dfd712560c52a0ebfabe6f65121 languageName: node linkType: hard "@babel/plugin-transform-modules-amd@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-modules-amd@npm:7.25.7" dependencies: "@babel/helper-module-transforms": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/0d061c91130433fccc723b4eb1359ced515a5dd7196c3ec75f2b2c24613154365ec1c89fe89bee648c1dc28a54c9625dd2b21b6196659a9f2b8ebff0b2352f6c languageName: node linkType: hard "@babel/plugin-transform-modules-commonjs@npm:^7.0.0, @babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-modules-commonjs@npm:7.25.7" dependencies: "@babel/helper-module-transforms": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-simple-access": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/4b3d038b55bfe5553e9eea360cc1b3dd689068256a9bce1939061ab1dfa194fea0b7b54f10c53b0af0be44508fd0037022c32709a6d96ac1277fb9c7de0f510c languageName: node linkType: hard "@babel/plugin-transform-modules-systemjs@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-modules-systemjs@npm:7.25.7" dependencies: "@babel/helper-module-transforms": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-validator-identifier": "npm:^7.25.7" "@babel/traverse": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/abd3522e60a9b639f8ad58b2ee237debe9e78a3a1462e3c5b17b4fbdc1b4bb2235edb1ed7d204b45701ec99dd3506d87164ece8ac9d9465a3e603cf13170b65b languageName: node linkType: hard "@babel/plugin-transform-modules-umd@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-modules-umd@npm:7.25.7" dependencies: "@babel/helper-module-transforms": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/06d6e95a9948aa91b218ada2940b8f568f78991265f2923f6e69c29e97ef1731c1b79adaf72a072a834a86f98fc0bd0117dfb14a37aaea6337fb4468f757471a languageName: node linkType: hard "@babel/plugin-transform-named-capturing-groups-regex@npm:^7.0.0, @babel/plugin-transform-named-capturing-groups-regex@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.25.7" dependencies: "@babel/helper-create-regexp-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/4c8340cacb1d21794777abb68db2ea434a89274e9ca539e6f564488f5e8a7f517fdf0f9dc754a14cdb8702a3a488ba2bf0fad404a7da3ba4481f620fa6f234c9 languageName: node linkType: hard "@babel/plugin-transform-new-target@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-new-target@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/c410edc9d8800590e34e648851a633534c3d153d0a76a34cc12854a4ecd578ce1b1c121e42e8c8f654757fcba13849a39fccde0d619de9ee3567a8f9fa2c8fc0 languageName: node linkType: hard "@babel/plugin-transform-nullish-coalescing-operator@npm:^7.0.0-0, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.1, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/d742fedc1abf404d7f40065cdff9afc521236607f0d06c48d1e471f43d3a7471010d1651ba4758d80c73347a39dc278d86c43a9c814382ded4e9c7c519ace021 languageName: node linkType: hard "@babel/plugin-transform-numeric-separator@npm:^7.24.1, @babel/plugin-transform-numeric-separator@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-numeric-separator@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/e27779a309dbc5fdba71d7eae0eac5506547632b0cbf8f0add8215797bbda4f4e61595750236fee3292600cc2d13892f133beccc52b2998534e0b10c668db857 languageName: node linkType: hard "@babel/plugin-transform-object-rest-spread@npm:^7.12.13, @babel/plugin-transform-object-rest-spread@npm:^7.24.5, @babel/plugin-transform-object-rest-spread@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-object-rest-spread@npm:7.25.8" dependencies: "@babel/helper-compilation-targets": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/plugin-transform-parameters": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/38f0fab8321a0b1e44784b7371f8bd5601eb885a7e9d88d7904dedda33a72f500d84792758c47e1541336c1b7592b6d956a85c2fd8e2e294f34c0303cc73442c languageName: node linkType: hard "@babel/plugin-transform-object-super@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-object-super@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-replace-supers": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/c033337d27f98a255509c3ac152a54ce25d707b7969a64ba5262c7ddb54ba962da081fe756ce922caa57d782cacc6705e3d8e74364938391170f043eb9c5905e languageName: node linkType: hard "@babel/plugin-transform-optional-catch-binding@npm:^7.24.1, @babel/plugin-transform-optional-catch-binding@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/9ecf32accc5b12b83ce2f6537c9eac87f2b0f89abfe91a8a8c87ea5ece05820988415271d0fdaf7f565e2c0c837afb24fc644779029b98b1401782d9c0d73642 languageName: node linkType: hard "@babel/plugin-transform-optional-chaining@npm:^7.0.0-0, @babel/plugin-transform-optional-chaining@npm:^7.24.5, @babel/plugin-transform-optional-chaining@npm:^7.25.7, @babel/plugin-transform-optional-chaining@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-optional-chaining@npm:7.25.8" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/ffb5d81e6dbb28907d5346c8e12a1ed1ea0e30170fbe609d48d0466cdbc9d11b5774c8781682693f7cf7bd39da6111980e54813af96c6b3086dc769369c67d28 languageName: node linkType: hard "@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7, @babel/plugin-transform-parameters@npm:^7.22.15, @babel/plugin-transform-parameters@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-parameters@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/c6a77fece85b3fd7323ec4ecc62329932b92c2c1ec20f1cc7617d3e49cc175f143988e756f5ccc45deca0fe582040afa67eeefd1704a8188cf2dc437efcfaf53 languageName: node linkType: hard "@babel/plugin-transform-private-methods@npm:^7.22.5, @babel/plugin-transform-private-methods@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-private-methods@npm:7.25.7" dependencies: "@babel/helper-create-class-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/79506a74334dc77f6c53f44109f0a3fcf6c50410faa5dd5e5d17ac4b73194098de509f5515a7aed3724a4bfa5dd246517e22a1dff4c20fc052df7a189bf2160d languageName: node linkType: hard "@babel/plugin-transform-private-property-in-object@npm:^7.22.11, @babel/plugin-transform-private-property-in-object@npm:^7.25.8": version: 7.25.8 resolution: "@babel/plugin-transform-private-property-in-object@npm:7.25.8" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.25.7" "@babel/helper-create-class-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/c612023879930c951e3a993104bbc3b78169aef6c38233758ee3358a7ab76954b41880bca67635df218dc6893aabad138f3783d508dc715419e62c8d1fad9088 languageName: node linkType: hard "@babel/plugin-transform-property-literals@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-property-literals@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/f8be4090e9ffa9eebaca5eab4534de16acc5c84a476649cfed532de564817fc982a47d9349e6e447c510786897625153f60740fe9128b40d3a1eae3bbb5e1438 languageName: node linkType: hard "@babel/plugin-transform-react-display-name@npm:^7.0.0": version: 7.25.7 resolution: "@babel/plugin-transform-react-display-name@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/2785dda2f1b5379692f9095bffbd412dd1c49f41096d111c2fba1fba7202f4eed558c675df1bbfdcd44590013f8d2b7e6fc84443866e8a5c9bd51cf95f79cbdb languageName: node linkType: hard "@babel/plugin-transform-react-display-name@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-react-display-name@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/f5d34903680ca358c5a3ccb83421df259e5142be95dde51dc4a62ec79fd6558599b3b92b4afd37329d2567a4ba4c338f1c817f8ce0c56ddf20cd3d051498649e languageName: node linkType: hard "@babel/plugin-transform-react-jsx-development@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-react-jsx-development@npm:7.24.7" dependencies: "@babel/plugin-transform-react-jsx": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/5a158803ad71ed7c434ad047755eb98feb2c428800163ff0be1351dc06ecdd19ab503cb6a1fda8708b05decde3a9297499eb0954317af79f191b4d45135af2a2 languageName: node linkType: hard "@babel/plugin-transform-react-jsx-self@npm:^7.0.0": version: 7.24.7 resolution: "@babel/plugin-transform-react-jsx-self@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/56115b4a6c006ce82846f1ab21e5ba713ee8f57a166c96c94fc632cdfbc8b9cebbf20b7cd9b8076439dabecdbf0f8ca4c2cb1bed1bf0b15cb44505a429f6a92f languageName: node linkType: hard "@babel/plugin-transform-react-jsx-source@npm:^7.0.0": version: 7.24.7 resolution: "@babel/plugin-transform-react-jsx-source@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/682e2ae15d788453d8ab34cf0dcc29c093faf7c7cf1d60110c43f33e6477f916cf301456b314fc496fadc07123f7978225f41ac286ed0bfbad9c8e76392fdb6d languageName: node linkType: hard "@babel/plugin-transform-react-jsx@npm:^7.0.0": version: 7.25.7 resolution: "@babel/plugin-transform-react-jsx@npm:7.25.7" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.25.7" "@babel/helper-module-imports": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/plugin-syntax-jsx": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/9f87990b39c68dc6441b55bf9b530c89e8cfc7a610e250dfd8002d94a6b806a585fe7cc9318540e4e635eb819fdaf15a42fd5e8a2ec3f8949bd7a5c759b558d3 languageName: node linkType: hard "@babel/plugin-transform-react-jsx@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-react-jsx@npm:7.24.7" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.24.7" "@babel/helper-module-imports": "npm:^7.24.7" "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-jsx": "npm:^7.24.7" "@babel/types": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/422952e034aefdb837ebe6c2f1f5bb1e0dc4d5e515e9cc46fe752785c7039481fc7470af254e26e253f641f055240ac2968f0d25cc30ae6580c977142a7c471c languageName: node linkType: hard "@babel/plugin-transform-react-pure-annotations@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.24.7" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.24.7" "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/c5110fa6088be5c4ac6d0f716cd032d30a246f371948b2ef30beb9eac187550ccbf972aa02051e780321917e1d9d85325623f68742c91e0355d238a8f5422179 languageName: node linkType: hard "@babel/plugin-transform-regenerator@npm:^7.20.0, @babel/plugin-transform-regenerator@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-regenerator@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" regenerator-transform: "npm:^0.15.2" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/7a68e841b12b5f767d98ee650aa914ea246d99cc84de054bdb331185894c0fa554ec4296f32d65385e3012dcf083a098e06c14e518056d7e8a0804227a12d85d languageName: node linkType: hard "@babel/plugin-transform-reserved-words@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-reserved-words@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/484edb3f4aa52f49914bea5f832fe380d159fff44e007ac9063666cf773bc258ef5b741f5a323167087bfd6a6dd5c2f96556d1ce5b3765bdf3a54fc018f3670d languageName: node linkType: hard "@babel/plugin-transform-runtime@npm:^7.0.0": version: 7.24.7 resolution: "@babel/plugin-transform-runtime@npm:7.24.7" dependencies: "@babel/helper-module-imports": "npm:^7.24.7" "@babel/helper-plugin-utils": "npm:^7.24.7" babel-plugin-polyfill-corejs2: "npm:^0.4.10" babel-plugin-polyfill-corejs3: "npm:^0.10.1" babel-plugin-polyfill-regenerator: "npm:^0.6.1" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/6f82f2104394d6efef3ba5b38474018f1072d524087eb223776dd55cf8ec8885e813a73004c95218f37de7c0dbaa1a136d2e359cee8cf9ffb3f2e130a3aeb99a languageName: node linkType: hard "@babel/plugin-transform-shorthand-properties@npm:^7.0.0, @babel/plugin-transform-shorthand-properties@npm:^7.0.0-0, @babel/plugin-transform-shorthand-properties@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-shorthand-properties@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/71c9c1d77887ffa452b2d7c9026ee8e40596e4b4208b077369a997e4e031b474ab08c2991b882a9883b78d7cd6d0d2a2b73345b17e195577b28538360b36f914 languageName: node linkType: hard "@babel/plugin-transform-spread@npm:^7.0.0, @babel/plugin-transform-spread@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-spread@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/5dd9e269241fccfdb8c9ac9cb21c53fa776113c3cee0ea92bb029940c6231b3bc7c0c70e13e5df220b80cfafe8683264cadff5b182bed9fd1b1317557f1a6c2d languageName: node linkType: hard "@babel/plugin-transform-sticky-regex@npm:^7.0.0, @babel/plugin-transform-sticky-regex@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-sticky-regex@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/9f918281fdf2661a095d53ce8b981acaec0fef2a133af4a4fb66132c7a8ad509c49f444ee140bfa5821db24f987d278b3886d3f04e6ba94a6a55c7b2ed024443 languageName: node linkType: hard "@babel/plugin-transform-template-literals@npm:^7.0.0-0, @babel/plugin-transform-template-literals@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-template-literals@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/bdb541c31d4890a0aea4cf73a897975b69372cc524302ee9b375424d1706c38d1344b891c14ad2cbc3926e9553ffc2596772e8dab5982e09a9da0d959e4a1e92 languageName: node linkType: hard "@babel/plugin-transform-typeof-symbol@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-typeof-symbol@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/1145d65dbf720837b0a1bdcdb2b8b0a761587f3602703ba42209e06b6b8d81801a2041671a881ed0cff6866acec4f7c17031f8540017f2d53913584e152453db languageName: node linkType: hard "@babel/plugin-transform-typescript@npm:^7.25.7, @babel/plugin-transform-typescript@npm:^7.5.0": version: 7.25.7 resolution: "@babel/plugin-transform-typescript@npm:7.25.7" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.25.7" "@babel/helper-create-class-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.7" "@babel/plugin-syntax-typescript": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/2648da981cd71c2100a4ea496684f2c0b939fc77eb4bb9cc8f113d433eab17d4930d2e5ed8d280606bcedef58df99002a64dc92579c6cc7f6c6ee71ceaa77418 languageName: node linkType: hard "@babel/plugin-transform-unicode-escapes@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-unicode-escapes@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/3c8d5b36738690c2d0b843fcc213a18766e617d16b6cfd92f13be2eba025228b6a796fd8e5b6e209daffa1b453c52544bf62e40b917a32c7446184fef52c98fc languageName: node linkType: hard "@babel/plugin-transform-unicode-property-regex@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.25.7" dependencies: "@babel/helper-create-regexp-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/cccdddc6837f5e82f0aca59fd77dbab5efd5024dcd6d358efc74faccb4892f69e943f7750f613fcc241f33973fe8622a7e96909305697e7e5868f8e9954cb84e languageName: node linkType: hard "@babel/plugin-transform-unicode-regex@npm:^7.0.0, @babel/plugin-transform-unicode-regex@npm:^7.0.0-0, @babel/plugin-transform-unicode-regex@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-unicode-regex@npm:7.25.7" dependencies: "@babel/helper-create-regexp-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/1a5a068d39741febd9b8cfce7bf4abf79b282a13c29d39ef7685bffdeb65e5d595e23d9630fedd34428a144d96701efed5a48ea1db0c250c4daf53f44da52983 languageName: node linkType: hard "@babel/plugin-transform-unicode-sets-regex@npm:^7.25.7": version: 7.25.7 resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.25.7" dependencies: "@babel/helper-create-regexp-features-plugin": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/c06dd8e66704fc60a97ce2555fa9f6cdfa98bb935a811b15e811cf3a8b5723e508e92b24077163ad704ddce56115062b8cf2f5490d1ad7d23f863d93a8125f89 languageName: node linkType: hard "@babel/preset-env@npm:^7.25.8": version: 7.25.8 resolution: "@babel/preset-env@npm:7.25.8" dependencies: "@babel/compat-data": "npm:^7.25.8" "@babel/helper-compilation-targets": "npm:^7.25.7" "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-validator-option": "npm:^7.25.7" "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.25.7" "@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^7.25.7" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.25.7" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.25.7" "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.25.7" "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-import-assertions": "npm:^7.25.7" "@babel/plugin-syntax-import-attributes": "npm:^7.25.7" "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6" "@babel/plugin-transform-arrow-functions": "npm:^7.25.7" "@babel/plugin-transform-async-generator-functions": "npm:^7.25.8" "@babel/plugin-transform-async-to-generator": "npm:^7.25.7" "@babel/plugin-transform-block-scoped-functions": "npm:^7.25.7" "@babel/plugin-transform-block-scoping": "npm:^7.25.7" "@babel/plugin-transform-class-properties": "npm:^7.25.7" "@babel/plugin-transform-class-static-block": "npm:^7.25.8" "@babel/plugin-transform-classes": "npm:^7.25.7" "@babel/plugin-transform-computed-properties": "npm:^7.25.7" "@babel/plugin-transform-destructuring": "npm:^7.25.7" "@babel/plugin-transform-dotall-regex": "npm:^7.25.7" "@babel/plugin-transform-duplicate-keys": "npm:^7.25.7" "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.25.7" "@babel/plugin-transform-dynamic-import": "npm:^7.25.8" "@babel/plugin-transform-exponentiation-operator": "npm:^7.25.7" "@babel/plugin-transform-export-namespace-from": "npm:^7.25.8" "@babel/plugin-transform-for-of": "npm:^7.25.7" "@babel/plugin-transform-function-name": "npm:^7.25.7" "@babel/plugin-transform-json-strings": "npm:^7.25.8" "@babel/plugin-transform-literals": "npm:^7.25.7" "@babel/plugin-transform-logical-assignment-operators": "npm:^7.25.8" "@babel/plugin-transform-member-expression-literals": "npm:^7.25.7" "@babel/plugin-transform-modules-amd": "npm:^7.25.7" "@babel/plugin-transform-modules-commonjs": "npm:^7.25.7" "@babel/plugin-transform-modules-systemjs": "npm:^7.25.7" "@babel/plugin-transform-modules-umd": "npm:^7.25.7" "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.25.7" "@babel/plugin-transform-new-target": "npm:^7.25.7" "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.25.8" "@babel/plugin-transform-numeric-separator": "npm:^7.25.8" "@babel/plugin-transform-object-rest-spread": "npm:^7.25.8" "@babel/plugin-transform-object-super": "npm:^7.25.7" "@babel/plugin-transform-optional-catch-binding": "npm:^7.25.8" "@babel/plugin-transform-optional-chaining": "npm:^7.25.8" "@babel/plugin-transform-parameters": "npm:^7.25.7" "@babel/plugin-transform-private-methods": "npm:^7.25.7" "@babel/plugin-transform-private-property-in-object": "npm:^7.25.8" "@babel/plugin-transform-property-literals": "npm:^7.25.7" "@babel/plugin-transform-regenerator": "npm:^7.25.7" "@babel/plugin-transform-reserved-words": "npm:^7.25.7" "@babel/plugin-transform-shorthand-properties": "npm:^7.25.7" "@babel/plugin-transform-spread": "npm:^7.25.7" "@babel/plugin-transform-sticky-regex": "npm:^7.25.7" "@babel/plugin-transform-template-literals": "npm:^7.25.7" "@babel/plugin-transform-typeof-symbol": "npm:^7.25.7" "@babel/plugin-transform-unicode-escapes": "npm:^7.25.7" "@babel/plugin-transform-unicode-property-regex": "npm:^7.25.7" "@babel/plugin-transform-unicode-regex": "npm:^7.25.7" "@babel/plugin-transform-unicode-sets-regex": "npm:^7.25.7" "@babel/preset-modules": "npm:0.1.6-no-external-plugins" babel-plugin-polyfill-corejs2: "npm:^0.4.10" babel-plugin-polyfill-corejs3: "npm:^0.10.6" babel-plugin-polyfill-regenerator: "npm:^0.6.1" core-js-compat: "npm:^3.38.1" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/501d78f56df8bf6f98a42da5db475db183048c4280b3292cf988b6baf01843915161f3b341ed525e2fcafcc47726798532b0e1dc7eb80aa29cc88c9d6f94ee6e languageName: node linkType: hard "@babel/preset-flow@npm:^7.13.13": version: 7.24.7 resolution: "@babel/preset-flow@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/helper-validator-option": "npm:^7.24.7" "@babel/plugin-transform-flow-strip-types": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/20fe02b5bc3a9d5b353d164d5ef89841032605434ae351d14309a041d6dc5bd0df3417d0510a6468813392d54793825ba6b04d8c5a5377eee31fc2b55503bf26 languageName: node linkType: hard "@babel/preset-modules@npm:0.1.6-no-external-plugins": version: 0.1.6-no-external-plugins resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins" dependencies: "@babel/helper-plugin-utils": "npm:^7.0.0" "@babel/types": "npm:^7.4.4" esutils: "npm:^2.0.2" peerDependencies: "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 checksum: 10/039aba98a697b920d6440c622aaa6104bb6076d65356b29dad4b3e6627ec0354da44f9621bafbeefd052cd4ac4d7f88c9a2ab094efcb50963cb352781d0c6428 languageName: node linkType: hard "@babel/preset-react@npm:^7.22.15": version: 7.24.7 resolution: "@babel/preset-react@npm:7.24.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/helper-validator-option": "npm:^7.24.7" "@babel/plugin-transform-react-display-name": "npm:^7.24.7" "@babel/plugin-transform-react-jsx": "npm:^7.24.7" "@babel/plugin-transform-react-jsx-development": "npm:^7.24.7" "@babel/plugin-transform-react-pure-annotations": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/e861e6b923e8eacb01c2e931310b4a5b2ae2514a089a37390051700d1103ab87003f2abc0b389a12db7be24971dd8eaabee794b799d3e854cb0c22ba07a33100 languageName: node linkType: hard "@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.16.7, @babel/preset-typescript@npm:^7.17.12, @babel/preset-typescript@npm:^7.23.0": version: 7.25.7 resolution: "@babel/preset-typescript@npm:7.25.7" dependencies: "@babel/helper-plugin-utils": "npm:^7.25.7" "@babel/helper-validator-option": "npm:^7.25.7" "@babel/plugin-syntax-jsx": "npm:^7.25.7" "@babel/plugin-transform-modules-commonjs": "npm:^7.25.7" "@babel/plugin-transform-typescript": "npm:^7.25.7" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/cf6501971f696800096f3b3aef4f7e2c774210b4204bb3a076b2f253970d6649c28003de3afc620b7c7ad67fb346083819c89bae2c644f59995ddb64d6003541 languageName: node linkType: hard "@babel/register@npm:^7.13.16": version: 7.24.6 resolution: "@babel/register@npm:7.24.6" dependencies: clone-deep: "npm:^4.0.1" find-cache-dir: "npm:^2.0.0" make-dir: "npm:^2.1.0" pirates: "npm:^4.0.6" source-map-support: "npm:^0.5.16" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/94580678ee541218475d605720ea1c3b4a647c504c8a08124373efad24a523f219dd7441de92f09c692c22362ea4422c5f3c51a3b3048b7a64deb1f6daea96b6 languageName: node linkType: hard "@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.10.0, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.15.4, @babel/runtime@npm:^7.20.0, @babel/runtime@npm:^7.8.4": version: 7.24.7 resolution: "@babel/runtime@npm:7.24.7" dependencies: regenerator-runtime: "npm:^0.14.0" checksum: 10/7b77f566165dee62db3db0296e71d08cafda3f34e1b0dcefcd68427272e17c1704f4e4369bff76651b07b6e49d3ea5a0ce344818af9116e9292e4381e0918c76 languageName: node linkType: hard "@babel/runtime@npm:^7.25.9": version: 7.25.9 resolution: "@babel/runtime@npm:7.25.9" dependencies: regenerator-runtime: "npm:^0.14.0" checksum: 10/8d904cfcb433374b3bb90369452751c94ae69547cdd3679950de4527ac5d04195b9c4a1840482a6f3a84694cb22a6403a7f98b826d60cd945918223a4a6b479c languageName: node linkType: hard "@babel/template@npm:^7.0.0, @babel/template@npm:^7.25.7, @babel/template@npm:^7.3.3": version: 7.25.7 resolution: "@babel/template@npm:7.25.7" dependencies: "@babel/code-frame": "npm:^7.25.7" "@babel/parser": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" checksum: 10/49e1e88d2eac17d31ae28d6cf13d6d29c1f49384c4f056a6751c065d6565c351e62c01ce6b11fef5edb5f3a77c87e114ea7326ca384fa618b4834e10cf9b20f3 languageName: node linkType: hard "@babel/template@npm:^7.24.7": version: 7.24.7 resolution: "@babel/template@npm:7.24.7" dependencies: "@babel/code-frame": "npm:^7.24.7" "@babel/parser": "npm:^7.24.7" "@babel/types": "npm:^7.24.7" checksum: 10/5975d404ef51cf379515eb0f80b115981d0b9dff5539e53a47516644abb8c83d7559f5b083eb1d4977b20d8359ebb2f911ccd4f729143f8958fdc465f976d843 languageName: node linkType: hard "@babel/traverse@npm:^7.20.0, @babel/traverse@npm:^7.25.7": version: 7.25.7 resolution: "@babel/traverse@npm:7.25.7" dependencies: "@babel/code-frame": "npm:^7.25.7" "@babel/generator": "npm:^7.25.7" "@babel/parser": "npm:^7.25.7" "@babel/template": "npm:^7.25.7" "@babel/types": "npm:^7.25.7" debug: "npm:^4.3.1" globals: "npm:^11.1.0" checksum: 10/5b2d332fcd6bc78e6500c997e79f7e2a54dfb357e06f0908cb7f0cdd9bb54e7fd3c5673f45993849d433d01ea6076a6d04b825958f0cfa01288ad55ffa5c286f languageName: node linkType: hard "@babel/traverse@npm:^7.24.7": version: 7.24.7 resolution: "@babel/traverse@npm:7.24.7" dependencies: "@babel/code-frame": "npm:^7.24.7" "@babel/generator": "npm:^7.24.7" "@babel/helper-environment-visitor": "npm:^7.24.7" "@babel/helper-function-name": "npm:^7.24.7" "@babel/helper-hoist-variables": "npm:^7.24.7" "@babel/helper-split-export-declaration": "npm:^7.24.7" "@babel/parser": "npm:^7.24.7" "@babel/types": "npm:^7.24.7" debug: "npm:^4.3.1" globals: "npm:^11.1.0" checksum: 10/785cf26383a992740e492efba7016de964cd06c05c9d7146fa1b5ead409e054c444f50b36dc37856884a56e32cf9d3105ddf1543486b6df68300bffb117a245a languageName: node linkType: hard "@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.24.7, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4": version: 7.24.7 resolution: "@babel/types@npm:7.24.7" dependencies: "@babel/helper-string-parser": "npm:^7.24.7" "@babel/helper-validator-identifier": "npm:^7.24.7" to-fast-properties: "npm:^2.0.0" checksum: 10/ad3c8c0d6fb4acb0bb74bb5b4bb849b181bf6185677ef9c59c18856c81e43628d0858253cf232f0eca806f02e08eff85a1d3e636a3e94daea737597796b0b430 languageName: node linkType: hard "@babel/types@npm:^7.19.0, @babel/types@npm:^7.2.0, @babel/types@npm:^7.25.7, @babel/types@npm:^7.25.8": version: 7.25.8 resolution: "@babel/types@npm:7.25.8" dependencies: "@babel/helper-string-parser": "npm:^7.25.7" "@babel/helper-validator-identifier": "npm:^7.25.7" to-fast-properties: "npm:^2.0.0" checksum: 10/973108dbb189916bb87360f2beff43ae97f1b08f1c071bc6499d363cce48b3c71674bf3b59dfd617f8c5062d1c76dc2a64232bc07b6ccef831fd0c06162d44d9 languageName: node linkType: hard "@babel/types@npm:^7.8.3": version: 7.25.7 resolution: "@babel/types@npm:7.25.7" dependencies: "@babel/helper-string-parser": "npm:^7.25.7" "@babel/helper-validator-identifier": "npm:^7.25.7" to-fast-properties: "npm:^2.0.0" checksum: 10/4504e16a95b6a67d50cfaa389bcbc0621019084cff73784ad4797f82d1bb76c870cb0abb6d9881d5776eb06b4607419a2b1205a08c3e87b152d74bd0884b822a languageName: node linkType: hard "@bcoe/v8-coverage@npm:^0.2.3": version: 0.2.3 resolution: "@bcoe/v8-coverage@npm:0.2.3" checksum: 10/1a1f0e356a3bb30b5f1ced6f79c413e6ebacf130421f15fac5fcd8be5ddf98aedb4404d7f5624e3285b700e041f9ef938321f3ca4d359d5b716f96afa120d88d languageName: node linkType: hard "@bwjohns4/react-native-draggable-flatlist@npm:^4.0.1-patch": version: 4.0.1-patch resolution: "@bwjohns4/react-native-draggable-flatlist@npm:4.0.1-patch" dependencies: "@babel/preset-typescript": "npm:^7.17.12" peerDependencies: react-native: ">=0.64.0" react-native-gesture-handler: ">=2.0.0" react-native-reanimated: ">=2.8.0" checksum: 10/da209934a72c8d63a20d5c7243529411b1a73548707ad2289f679541323512e5e499168c7ffcdd13e749cb24ae04488ec35b67e82c543b04c2fb816965926ecc languageName: node linkType: hard "@callstack/react-theme-provider@npm:^3.0.9": version: 3.0.9 resolution: "@callstack/react-theme-provider@npm:3.0.9" dependencies: deepmerge: "npm:^3.2.0" hoist-non-react-statics: "npm:^3.3.0" peerDependencies: react: ">=16.3.0" checksum: 10/91f21e3a2f2e70abd85d741438f61ad8d942bc787cc8f4e2b9634da9fb96903d34a90f1defd4a4d642b714503422fcab323dc71a638cb2032af1d0655907ecf6 languageName: node linkType: hard "@egjs/hammerjs@npm:^2.0.17": version: 2.0.17 resolution: "@egjs/hammerjs@npm:2.0.17" dependencies: "@types/hammerjs": "npm:^2.0.36" checksum: 10/f695129d45edfcfd6c5f2d1d36186da36ffade013991972ce23721a6b7ad7f214ce282abc4023e3f6b63062620852a63e897b523f247804afc7acd188fee9d9d languageName: node linkType: hard "@emotion/hash@npm:^0.9.1": version: 0.9.1 resolution: "@emotion/hash@npm:0.9.1" checksum: 10/716e17e48bf9047bf9383982c071de49f2615310fb4e986738931776f5a823bc1f29c84501abe0d3df91a3803c80122d24e28b57351bca9e01356ebb33d89876 languageName: node linkType: hard "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": version: 4.4.0 resolution: "@eslint-community/eslint-utils@npm:4.4.0" dependencies: eslint-visitor-keys: "npm:^3.3.0" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 checksum: 10/8d70bcdcd8cd279049183aca747d6c2ed7092a5cf0cf5916faac1ef37ffa74f0c245c2a3a3d3b9979d9dfdd4ca59257b4c5621db699d637b847a2c5e02f491c2 languageName: node linkType: hard "@eslint-community/regexpp@npm:^4.10.0": version: 4.11.1 resolution: "@eslint-community/regexpp@npm:4.11.1" checksum: 10/934b6d3588c7f16b18d41efec4fdb89616c440b7e3256b8cb92cfd31ae12908600f2b986d6c1e61a84cbc10256b1dd3448cd1eec79904bd67ac365d0f1aba2e2 languageName: node linkType: hard "@eslint-community/regexpp@npm:^4.6.1": version: 4.10.1 resolution: "@eslint-community/regexpp@npm:4.10.1" checksum: 10/54f13817caf90545502d7a19e1b61df79087aee9584342ffc558b6d067530764a47f1c484f493f43e2c70cfdff59ccfd5f26df2af298c4ad528469e599bd1d53 languageName: node linkType: hard "@eslint/eslintrc@npm:^2.1.4": version: 2.1.4 resolution: "@eslint/eslintrc@npm:2.1.4" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" espree: "npm:^9.6.0" globals: "npm:^13.19.0" ignore: "npm:^5.2.0" import-fresh: "npm:^3.2.1" js-yaml: "npm:^4.1.0" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" checksum: 10/7a3b14f4b40fc1a22624c3f84d9f467a3d9ea1ca6e9a372116cb92507e485260359465b58e25bcb6c9981b155416b98c9973ad9b796053fd7b3f776a6946bce8 languageName: node linkType: hard "@eslint/js@npm:8.57.1": version: 8.57.1 resolution: "@eslint/js@npm:8.57.1" checksum: 10/7562b21be10c2adbfa4aa5bb2eccec2cb9ac649a3569560742202c8d1cb6c931ce634937a2f0f551e078403a1c1285d6c2c0aa345dafc986149665cd69fe8b59 languageName: node linkType: hard "@expo/bunyan@npm:^4.0.0": version: 4.0.0 resolution: "@expo/bunyan@npm:4.0.0" dependencies: mv: "npm:~2" safe-json-stringify: "npm:~1" uuid: "npm:^8.0.0" dependenciesMeta: mv: optional: true safe-json-stringify: optional: true checksum: 10/7adabae89ab01aa93320a9a40120d912ea03c1b25074129946d53c5e361c3326a80a3ea9f07cd410deb6c612a86fe169b127d17aaa1f5dd99b13491c751c168b languageName: node linkType: hard "@expo/cli@npm:0.18.30": version: 0.18.30 resolution: "@expo/cli@npm:0.18.30" dependencies: "@babel/runtime": "npm:^7.20.0" "@expo/code-signing-certificates": "npm:0.0.5" "@expo/config": "npm:~9.0.0-beta.0" "@expo/config-plugins": "npm:~8.0.8" "@expo/devcert": "npm:^1.0.0" "@expo/env": "npm:~0.3.0" "@expo/image-utils": "npm:^0.5.0" "@expo/json-file": "npm:^8.3.0" "@expo/metro-config": "npm:0.18.11" "@expo/osascript": "npm:^2.0.31" "@expo/package-manager": "npm:^1.5.0" "@expo/plist": "npm:^0.1.0" "@expo/prebuild-config": "npm:7.0.9" "@expo/rudder-sdk-node": "npm:1.1.1" "@expo/spawn-async": "npm:^1.7.2" "@expo/xcpretty": "npm:^4.3.0" "@react-native/dev-middleware": "npm:0.74.85" "@urql/core": "npm:2.3.6" "@urql/exchange-retry": "npm:0.3.0" accepts: "npm:^1.3.8" arg: "npm:5.0.2" better-opn: "npm:~3.0.2" bplist-creator: "npm:0.0.7" bplist-parser: "npm:^0.3.1" cacache: "npm:^18.0.2" chalk: "npm:^4.0.0" ci-info: "npm:^3.3.0" connect: "npm:^3.7.0" debug: "npm:^4.3.4" env-editor: "npm:^0.4.1" fast-glob: "npm:^3.3.2" find-yarn-workspace-root: "npm:~2.0.0" form-data: "npm:^3.0.1" freeport-async: "npm:2.0.0" fs-extra: "npm:~8.1.0" getenv: "npm:^1.0.0" glob: "npm:^7.1.7" graphql: "npm:15.8.0" graphql-tag: "npm:^2.10.1" https-proxy-agent: "npm:^5.0.1" internal-ip: "npm:4.3.0" is-docker: "npm:^2.0.0" is-wsl: "npm:^2.1.1" js-yaml: "npm:^3.13.1" json-schema-deref-sync: "npm:^0.13.0" lodash.debounce: "npm:^4.0.8" md5hex: "npm:^1.0.0" minimatch: "npm:^3.0.4" node-fetch: "npm:^2.6.7" node-forge: "npm:^1.3.1" npm-package-arg: "npm:^7.0.0" open: "npm:^8.3.0" ora: "npm:3.4.0" picomatch: "npm:^3.0.1" pretty-bytes: "npm:5.6.0" progress: "npm:2.0.3" prompts: "npm:^2.3.2" qrcode-terminal: "npm:0.11.0" require-from-string: "npm:^2.0.2" requireg: "npm:^0.2.2" resolve: "npm:^1.22.2" resolve-from: "npm:^5.0.0" resolve.exports: "npm:^2.0.2" semver: "npm:^7.6.0" send: "npm:^0.18.0" slugify: "npm:^1.3.4" source-map-support: "npm:~0.5.21" stacktrace-parser: "npm:^0.1.10" structured-headers: "npm:^0.4.1" tar: "npm:^6.0.5" temp-dir: "npm:^2.0.0" tempy: "npm:^0.7.1" terminal-link: "npm:^2.1.1" text-table: "npm:^0.2.0" url-join: "npm:4.0.0" wrap-ansi: "npm:^7.0.0" ws: "npm:^8.12.1" bin: expo-internal: build/bin/cli checksum: 10/649779a7eec204f2c3023b1ac13cec4e2568555168899f315a249685325eef97418614ebde8c28817314ef469760bc4a73f720b79e9eca452468dbf077c7d592 languageName: node linkType: hard "@expo/code-signing-certificates@npm:0.0.5": version: 0.0.5 resolution: "@expo/code-signing-certificates@npm:0.0.5" dependencies: node-forge: "npm:^1.2.1" nullthrows: "npm:^1.1.1" checksum: 10/6783721e2eafff5547500eaf99bee54641f076dc7221e52b48f1494f993040d779fe13ae7d95d3874c483eb545cafbf692315e2da0b0fc24e7a477b84e289617 languageName: node linkType: hard "@expo/config-plugins@npm:8.0.10, @expo/config-plugins@npm:~8.0.8": version: 8.0.10 resolution: "@expo/config-plugins@npm:8.0.10" dependencies: "@expo/config-types": "npm:^51.0.3" "@expo/json-file": "npm:~8.3.0" "@expo/plist": "npm:^0.1.0" "@expo/sdk-runtime-versions": "npm:^1.0.0" chalk: "npm:^4.1.2" debug: "npm:^4.3.1" find-up: "npm:~5.0.0" getenv: "npm:^1.0.0" glob: "npm:7.1.6" resolve-from: "npm:^5.0.0" semver: "npm:^7.5.4" slash: "npm:^3.0.0" slugify: "npm:^1.6.6" xcode: "npm:^3.0.1" xml2js: "npm:0.6.0" checksum: 10/3e0d90a730cee0e02c5f7576e8c5a2997a11d21af1d90cada94ccefbc5bbe144785830f345252a9388e307fee9dcd17d6b6e2d7244e4de5771ce142d6548ec51 languageName: node linkType: hard "@expo/config-plugins@npm:^7.8.4": version: 7.9.2 resolution: "@expo/config-plugins@npm:7.9.2" dependencies: "@expo/config-types": "npm:^50.0.0-alpha.1" "@expo/fingerprint": "npm:^0.6.0" "@expo/json-file": "npm:~8.3.0" "@expo/plist": "npm:^0.1.0" "@expo/sdk-runtime-versions": "npm:^1.0.0" "@react-native/normalize-color": "npm:^2.0.0" chalk: "npm:^4.1.2" debug: "npm:^4.3.1" find-up: "npm:~5.0.0" getenv: "npm:^1.0.0" glob: "npm:7.1.6" resolve-from: "npm:^5.0.0" semver: "npm:^7.5.3" slash: "npm:^3.0.0" slugify: "npm:^1.6.6" xcode: "npm:^3.0.1" xml2js: "npm:0.6.0" checksum: 10/11e80f74e307742e195b2476efabe362da3593b5351070a68b8a5dd020a1e8f224c7ab0806d2f969e071403c26071a3490ed574797534e7cf043eca4046310af languageName: node linkType: hard "@expo/config-types@npm:^50.0.0-alpha.1": version: 50.0.1 resolution: "@expo/config-types@npm:50.0.1" checksum: 10/cfee0c3c66b77a557193461c6a0c81305576ae7ff6eb6bfddda838364b4157c107ee4a306570652ff692e4fe78628377471b1717267bb36e53d34a7d137d4b20 languageName: node linkType: hard "@expo/config-types@npm:^51.0.3": version: 51.0.3 resolution: "@expo/config-types@npm:51.0.3" checksum: 10/6ef412823d810c6f715f399d704e59af3024ccc5224675d963abe05b84b38fce6f1c4cdaa3d6418764a8564c9936f36ef90110f495f25f46a196638860749b3a languageName: node linkType: hard "@expo/config@npm:9.0.4, @expo/config@npm:~9.0.0, @expo/config@npm:~9.0.0-beta.0": version: 9.0.4 resolution: "@expo/config@npm:9.0.4" dependencies: "@babel/code-frame": "npm:~7.10.4" "@expo/config-plugins": "npm:~8.0.8" "@expo/config-types": "npm:^51.0.3" "@expo/json-file": "npm:^8.3.0" getenv: "npm:^1.0.0" glob: "npm:7.1.6" require-from-string: "npm:^2.0.2" resolve-from: "npm:^5.0.0" semver: "npm:^7.6.0" slugify: "npm:^1.3.4" sucrase: "npm:3.34.0" checksum: 10/a2fb6f06eede3b773bf2e43d444a9beeec4645844ab85b609f739c5a115b77fd37d0a1572f52a1a8340a9c4a311c5567961a0deaaada2b829099a2206038cbb7 languageName: node linkType: hard "@expo/devcert@npm:^1.0.0": version: 1.1.2 resolution: "@expo/devcert@npm:1.1.2" dependencies: application-config-path: "npm:^0.1.0" command-exists: "npm:^1.2.4" debug: "npm:^3.1.0" eol: "npm:^0.9.1" get-port: "npm:^3.2.0" glob: "npm:^7.1.2" lodash: "npm:^4.17.21" mkdirp: "npm:^0.5.1" password-prompt: "npm:^1.0.4" rimraf: "npm:^2.6.2" sudo-prompt: "npm:^8.2.0" tmp: "npm:^0.0.33" tslib: "npm:^2.4.0" checksum: 10/33d4fe6e7ec0a61f4a568f7c802f97609cc34a4baa3db010cbcd5a1eab025334e0fba8ecc9f6e87807b7708d974b7e38ba11db813318c23812175449768e1dfb languageName: node linkType: hard "@expo/env@npm:~0.3.0": version: 0.3.0 resolution: "@expo/env@npm:0.3.0" dependencies: chalk: "npm:^4.0.0" debug: "npm:^4.3.4" dotenv: "npm:~16.4.5" dotenv-expand: "npm:~11.0.6" getenv: "npm:^1.0.0" checksum: 10/b6e87be9eec4bfeb2e5518c5425107bb522882b649d5c879995b58468e035d21a91f9fd2e0974e646f31e84818f3ef1243fc7e4a2bd62d6ee5077d81a1680783 languageName: node linkType: hard "@expo/fingerprint@npm:^0.6.0": version: 0.6.1 resolution: "@expo/fingerprint@npm:0.6.1" dependencies: "@expo/spawn-async": "npm:^1.5.0" chalk: "npm:^4.1.2" debug: "npm:^4.3.4" find-up: "npm:^5.0.0" minimatch: "npm:^3.0.4" p-limit: "npm:^3.1.0" resolve-from: "npm:^5.0.0" bin: fingerprint: bin/cli.js checksum: 10/081d9e306550bc195c1d2fb5a16af7b7a571c615fcb3ad6f147fea0c810d264dc1fa910929fce30b989b21fa9724e25e25696408d213c8e4e5a1cc491a8b1826 languageName: node linkType: hard "@expo/image-utils@npm:^0.5.0": version: 0.5.1 resolution: "@expo/image-utils@npm:0.5.1" dependencies: "@expo/spawn-async": "npm:^1.7.2" chalk: "npm:^4.0.0" fs-extra: "npm:9.0.0" getenv: "npm:^1.0.0" jimp-compact: "npm:0.16.1" node-fetch: "npm:^2.6.0" parse-png: "npm:^2.1.0" resolve-from: "npm:^5.0.0" semver: "npm:^7.6.0" tempy: "npm:0.3.0" checksum: 10/b56d4b65c0ec0a58689e9930f93edae5c6a90f398f019fb1c7d925634ee1da408a626374c208f71635273354f3159caaf3205cfb22b3d780d6a99614dee8ba73 languageName: node linkType: hard "@expo/json-file@npm:^8.3.0, @expo/json-file@npm:~8.3.0": version: 8.3.3 resolution: "@expo/json-file@npm:8.3.3" dependencies: "@babel/code-frame": "npm:~7.10.4" json5: "npm:^2.2.2" write-file-atomic: "npm:^2.3.0" checksum: 10/621b21d42023c5a8d7bc3d9be53911434416fd84fd06de527dc4c6b0b54119fa0324a8e1ecb4c716ff6c30d1a12b9b3bfc2317a093bf2a111de40aad991dd6d0 languageName: node linkType: hard "@expo/metro-config@npm:0.18.11": version: 0.18.11 resolution: "@expo/metro-config@npm:0.18.11" dependencies: "@babel/core": "npm:^7.20.0" "@babel/generator": "npm:^7.20.5" "@babel/parser": "npm:^7.20.0" "@babel/types": "npm:^7.20.0" "@expo/config": "npm:~9.0.0-beta.0" "@expo/env": "npm:~0.3.0" "@expo/json-file": "npm:~8.3.0" "@expo/spawn-async": "npm:^1.7.2" chalk: "npm:^4.1.0" debug: "npm:^4.3.2" find-yarn-workspace-root: "npm:~2.0.0" fs-extra: "npm:^9.1.0" getenv: "npm:^1.0.0" glob: "npm:^7.2.3" jsc-safe-url: "npm:^0.2.4" lightningcss: "npm:~1.19.0" postcss: "npm:~8.4.32" resolve-from: "npm:^5.0.0" checksum: 10/642b4ca2957822e9ccd18ae2950269486e80f30bdd7dd7c8c21c1b137244420ce10eda2dd02345d5e25a3e627ebe40e76f362a46631ff70dfb356bc97177b96e languageName: node linkType: hard "@expo/osascript@npm:^2.0.31": version: 2.1.3 resolution: "@expo/osascript@npm:2.1.3" dependencies: "@expo/spawn-async": "npm:^1.7.2" exec-async: "npm:^2.2.0" checksum: 10/f413d7596e78fa9307444a8576da2a1c11470f7918eebe09df5a416dc612042484fa6be9f9dc00668eacb227d0ba73ef4de06d5c9c03f3c8b1eb2b096cd3c2ef languageName: node linkType: hard "@expo/package-manager@npm:^1.5.0": version: 1.5.2 resolution: "@expo/package-manager@npm:1.5.2" dependencies: "@expo/json-file": "npm:^8.3.0" "@expo/spawn-async": "npm:^1.7.2" ansi-regex: "npm:^5.0.0" chalk: "npm:^4.0.0" find-up: "npm:^5.0.0" find-yarn-workspace-root: "npm:~2.0.0" js-yaml: "npm:^3.13.1" micromatch: "npm:^4.0.2" npm-package-arg: "npm:^7.0.0" ora: "npm:^3.4.0" split: "npm:^1.0.1" sudo-prompt: "npm:9.1.1" checksum: 10/5b95ef943dea3e1143a76f0da6b2477b26183e17028a258bcf22e26eb831d5ae09c00591c76915bf22c0069f7e064d2a0ee02595d3a00e93694f97336d30c2c4 languageName: node linkType: hard "@expo/plist@npm:^0.1.0": version: 0.1.3 resolution: "@expo/plist@npm:0.1.3" dependencies: "@xmldom/xmldom": "npm:~0.7.7" base64-js: "npm:^1.2.3" xmlbuilder: "npm:^14.0.0" checksum: 10/7026e45744784539a0a3534dc393f4d7ccc04cc5a4c71a194f61aa9c5577599e27066c43e60c6611a4d34ebc30bec9380190be1685040bc72b037704fe2d2aec languageName: node linkType: hard "@expo/prebuild-config@npm:7.0.9": version: 7.0.9 resolution: "@expo/prebuild-config@npm:7.0.9" dependencies: "@expo/config": "npm:~9.0.0-beta.0" "@expo/config-plugins": "npm:~8.0.8" "@expo/config-types": "npm:^51.0.3" "@expo/image-utils": "npm:^0.5.0" "@expo/json-file": "npm:^8.3.0" "@react-native/normalize-colors": "npm:0.74.85" debug: "npm:^4.3.1" fs-extra: "npm:^9.0.0" resolve-from: "npm:^5.0.0" semver: "npm:^7.6.0" xml2js: "npm:0.6.0" peerDependencies: expo-modules-autolinking: ">=0.8.1" checksum: 10/6b231c4378ee9688cf8aa93fa3ff1e86daff2f864e7a58b7cf350c8697ae071401fcb0639c58d39f4ef34f9f39a3f60d990972e02a4cea0749ca483364be0c4a languageName: node linkType: hard "@expo/rudder-sdk-node@npm:1.1.1": version: 1.1.1 resolution: "@expo/rudder-sdk-node@npm:1.1.1" dependencies: "@expo/bunyan": "npm:^4.0.0" "@segment/loosely-validate-event": "npm:^2.0.0" fetch-retry: "npm:^4.1.1" md5: "npm:^2.2.1" node-fetch: "npm:^2.6.1" remove-trailing-slash: "npm:^0.1.0" uuid: "npm:^8.3.2" checksum: 10/e5611d51cbeb8c7517b2265e909bfc6b59f4b973b3ce08f9581e233164ab4ca2ec3b9288f895750aea1c390fa40cce136665c659a937493b08f00d606a4436f8 languageName: node linkType: hard "@expo/sdk-runtime-versions@npm:^1.0.0": version: 1.0.0 resolution: "@expo/sdk-runtime-versions@npm:1.0.0" checksum: 10/0942d5a356f590e8dc795761456cc48b3e2d6a38ad2a02d6774efcdc5a70424e05623b4e3e5d2fec0cdc30f40dde05c14391c781607eed3971bf8676518bfd9d languageName: node linkType: hard "@expo/spawn-async@npm:^1.5.0, @expo/spawn-async@npm:^1.7.2": version: 1.7.2 resolution: "@expo/spawn-async@npm:1.7.2" dependencies: cross-spawn: "npm:^7.0.3" checksum: 10/009816d1722fc02603cfb4c348a609a80f41fba726d0d20208cd0d2d8a532f511a924a6681501251c851453499c4c13380a93209027a00bacc1b5282a4324cf8 languageName: node linkType: hard "@expo/vector-icons@npm:^14.0.3, @expo/vector-icons@npm:^14.0.4": version: 14.0.4 resolution: "@expo/vector-icons@npm:14.0.4" dependencies: prop-types: "npm:^15.8.1" checksum: 10/bb807830dd886cb439e90bbaf5afd5e9ea538486d3bd0cc240210a230c53e7d858b460d05836875ae0ef3958bc591c21afedb5f58086be4aeeb362d08665c809 languageName: node linkType: hard "@expo/xcpretty@npm:^4.3.0": version: 4.3.1 resolution: "@expo/xcpretty@npm:4.3.1" dependencies: "@babel/code-frame": "npm:7.10.4" chalk: "npm:^4.1.0" find-up: "npm:^5.0.0" js-yaml: "npm:^4.1.0" bin: excpretty: ./build/cli.js checksum: 10/68f9537e496c8f6a40f9eff27c947eff11f209438a5a9a2771241e586fc3e6fcce87422bd051d2bc9bea01209d164b40746b0cb4cb40b21531a45707d8f66d7c languageName: node linkType: hard "@firebase/analytics-compat@npm:0.2.14": version: 0.2.14 resolution: "@firebase/analytics-compat@npm:0.2.14" dependencies: "@firebase/analytics": "npm:0.10.8" "@firebase/analytics-types": "npm:0.8.2" "@firebase/component": "npm:0.6.9" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/0e368159d24223076b488b27308c11e5ef50456aff49fc58e1f66616228021c61e60c3299f63ce52ddc2f7099d803e9048bc28cd952cf5c302917002c03c85ee languageName: node linkType: hard "@firebase/analytics-types@npm:0.8.2": version: 0.8.2 resolution: "@firebase/analytics-types@npm:0.8.2" checksum: 10/297fb7becbc51950c7de5809fed896c391d1e87b4d8bb4bf88f4e8760b2e32f903a7dd8e92de4424b49c4e2ecb60a44d49e2f9c68ac3f7ffe3a0194f78910392 languageName: node linkType: hard "@firebase/analytics@npm:0.10.8": version: 0.10.8 resolution: "@firebase/analytics@npm:0.10.8" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/installations": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app": 0.x checksum: 10/152ddaf68146f02baa7060d34426c25ec13890a53942ffa2db09faa148bef35f59ee9810e6fb8f561fb3d115b71d1fb9fb111d2a0f0199aa510220782557c765 languageName: node linkType: hard "@firebase/app-check-compat@npm:0.3.15": version: 0.3.15 resolution: "@firebase/app-check-compat@npm:0.3.15" dependencies: "@firebase/app-check": "npm:0.8.8" "@firebase/app-check-types": "npm:0.5.2" "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/ae541d324d5f91dbb7b479855d3380c4fe73e365013b80973a54620405093e6fd2f8e418549155b3a527530472a19b6edf6df1481a708f823eba42e376105b28 languageName: node linkType: hard "@firebase/app-check-interop-types@npm:0.3.2": version: 0.3.2 resolution: "@firebase/app-check-interop-types@npm:0.3.2" checksum: 10/3effe656a4762c541838f4bde91b4498e51d48389046b930dc3dbb012e54b6ab0727f7c68a3e94198f633d57833346fc337a0847b6b03d2407030e1489d466fe languageName: node linkType: hard "@firebase/app-check-types@npm:0.5.2": version: 0.5.2 resolution: "@firebase/app-check-types@npm:0.5.2" checksum: 10/2b33a7adfb7b6ebf5423940bf0af5909df69bf2d6184e12e989f6c76062077be16c31193795349862b4f8aab6b3059806b732a92995cae30fd77419f19a86c6e languageName: node linkType: hard "@firebase/app-check@npm:0.8.8": version: 0.8.8 resolution: "@firebase/app-check@npm:0.8.8" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app": 0.x checksum: 10/a3676f2143c8e438d7e8ac11bb163af30880f6ce6acc5cc54cfcc214b8efd5dabce14c040626f8a64a3967db144b99834f1108c2076a0eae8a6baf864b5a3d77 languageName: node linkType: hard "@firebase/app-compat@npm:0.2.41": version: 0.2.41 resolution: "@firebase/app-compat@npm:0.2.41" dependencies: "@firebase/app": "npm:0.10.11" "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" checksum: 10/67e4b0572a3c24c4acc13e2c3b55a4fc778d286bae10f1df684a142c9790b4f131519fe84087341884bd67b04b822c3f7092b9748dfa3b52086b6f82ca8a1001 languageName: node linkType: hard "@firebase/app-types@npm:0.9.2": version: 0.9.2 resolution: "@firebase/app-types@npm:0.9.2" checksum: 10/566b3714a4d7e8180514258e4b1549bf5b28ae0383b4ff53d3532a45e114048afdd27c1fef8688d871dd9e5ad5307e749776e23f094122655ac6b0fb550eb11a languageName: node linkType: hard "@firebase/app@npm:0.10.11": version: 0.10.11 resolution: "@firebase/app@npm:0.10.11" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" idb: "npm:7.1.1" tslib: "npm:^2.1.0" checksum: 10/529d9e59b39e96cd97a8402e1cee508dbbb962aa1805345dc902ecbfe61709bb46ab3b821cd3b50b3d2e3e9f898515eb91cded030492e376550a97518cbcdb70 languageName: node linkType: hard "@firebase/auth-compat@npm:0.5.14": version: 0.5.14 resolution: "@firebase/auth-compat@npm:0.5.14" dependencies: "@firebase/auth": "npm:1.7.9" "@firebase/auth-types": "npm:0.12.2" "@firebase/component": "npm:0.6.9" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" undici: "npm:6.19.7" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/85d5259e7b04b14b5d02dc1fb19b015d742c594c14138f33f13146ed9f6caa7ed9d19d65bb99aaca57e70ffd2a491e520d8638eadefbd00f839d37ef972cbbda languageName: node linkType: hard "@firebase/auth-interop-types@npm:0.2.3": version: 0.2.3 resolution: "@firebase/auth-interop-types@npm:0.2.3" checksum: 10/e55b8ded6bd1a5e6a2845c9c7ed520bb9a8a76e4ddf90249bf685986ac7b1fb079be2fa4edcb6a3aa81d1d56870a470eadcd5a8f20b797dccd803d72ed4c80aa languageName: node linkType: hard "@firebase/auth-types@npm:0.12.2": version: 0.12.2 resolution: "@firebase/auth-types@npm:0.12.2" peerDependencies: "@firebase/app-types": 0.x "@firebase/util": 1.x checksum: 10/f55449381de8e2a24ffaf19f12b5c4a093c8323034253ea7a5f7afc946327d20b09f32a483c12960862a1c4814645ea80bc4343f0a9f22db5dc048ca82773132 languageName: node linkType: hard "@firebase/auth@npm:1.7.9": version: 1.7.9 resolution: "@firebase/auth@npm:1.7.9" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" undici: "npm:6.19.7" peerDependencies: "@firebase/app": 0.x "@react-native-async-storage/async-storage": ^1.18.1 peerDependenciesMeta: "@react-native-async-storage/async-storage": optional: true checksum: 10/010013ec339c9ef7b4d9278c6cacfd8e2eb3282f27a3e4e89c42a5968955976a26277421f34fda3e9400409a22a61f632bcc03e713b3f39d71e4777bc003165d languageName: node linkType: hard "@firebase/component@npm:0.6.9": version: 0.6.9 resolution: "@firebase/component@npm:0.6.9" dependencies: "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" checksum: 10/76c865d640e4b24a0e50876ecdc0e1199df38af562131a937b5a4bac924d61b6933339afb7906881dca509f38f3b0c511cd6b5008e061424c61b20876de9531e languageName: node linkType: hard "@firebase/database-compat@npm:1.0.8": version: 1.0.8 resolution: "@firebase/database-compat@npm:1.0.8" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/database": "npm:1.0.8" "@firebase/database-types": "npm:1.0.5" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" checksum: 10/28389efcc87da77b822cb27c31707824fe98e7b0a3bf9cbf2b0c0fccd9edd72e2681a9467b76b120281464dbfc814852ebca63d99a385a9cb68fb55c7b334105 languageName: node linkType: hard "@firebase/database-types@npm:1.0.5": version: 1.0.5 resolution: "@firebase/database-types@npm:1.0.5" dependencies: "@firebase/app-types": "npm:0.9.2" "@firebase/util": "npm:1.10.0" checksum: 10/bdf667da0369dce8623987fc01cad8db09cfe1895130f69ab581d34a0ee043ca6113c32457629147ae1441a934d985ede9d7cbe104ac346de6d0c21629903a8b languageName: node linkType: hard "@firebase/database@npm:1.0.8": version: 1.0.8 resolution: "@firebase/database@npm:1.0.8" dependencies: "@firebase/app-check-interop-types": "npm:0.3.2" "@firebase/auth-interop-types": "npm:0.2.3" "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" faye-websocket: "npm:0.11.4" tslib: "npm:^2.1.0" checksum: 10/adb199a6ad7866b418e8b319cc505e108bfc8200b5406f21857706df0849d4e5982a1b0e44e07001821edebef73c4dfffc7f96fb77a2cff10bb9ac26f17d40c3 languageName: node linkType: hard "@firebase/firestore-compat@npm:0.3.37": version: 0.3.37 resolution: "@firebase/firestore-compat@npm:0.3.37" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/firestore": "npm:4.7.2" "@firebase/firestore-types": "npm:3.0.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/c152ba401f0d786699b25e1101d77351b7a6503f1a1f774efa7fecacc66aec58aca58a7b54e3f8587fcb45ffa3772d5e123ae79ddd90d0a87f2042ac34880d8a languageName: node linkType: hard "@firebase/firestore-types@npm:3.0.2": version: 3.0.2 resolution: "@firebase/firestore-types@npm:3.0.2" peerDependencies: "@firebase/app-types": 0.x "@firebase/util": 1.x checksum: 10/81e91f836a026ecb70937407ca8699add7abb5b050d8815620cde97c3eec3f78f7dfbb366225758909f0df31d9f21e98a84ba62701bd27ee38b2609898c11acd languageName: node linkType: hard "@firebase/firestore@npm:4.7.2": version: 4.7.2 resolution: "@firebase/firestore@npm:4.7.2" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" "@firebase/webchannel-wrapper": "npm:1.0.1" "@grpc/grpc-js": "npm:~1.9.0" "@grpc/proto-loader": "npm:^0.7.8" tslib: "npm:^2.1.0" undici: "npm:6.19.7" peerDependencies: "@firebase/app": 0.x checksum: 10/066a125760bc2163bbc9c6fcde8b3f67da97791f8ce6f5ffa8ff3c40567aff97b2fe02020c3403857f104f051e4d6452aee60fe75ed5e408e467c611c397b4bb languageName: node linkType: hard "@firebase/functions-compat@npm:0.3.14": version: 0.3.14 resolution: "@firebase/functions-compat@npm:0.3.14" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/functions": "npm:0.11.8" "@firebase/functions-types": "npm:0.6.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/a8d6cbcdc646d78adecfcdc1f8fa14a5d9af2394dd69cac00c6826106b923e01d246c67fb7e09025ca7cfb876f8d5df97240cc056c64ccee8899ca5f17178a6c languageName: node linkType: hard "@firebase/functions-types@npm:0.6.2": version: 0.6.2 resolution: "@firebase/functions-types@npm:0.6.2" checksum: 10/5b8733f9d4bd85a617d35dd10ce296d9ec0490494e584697c4eda8098ff1e865607d7880b84194e86c35d438bbcd714977c111180502d0d1b6b2da1cde1b37ca languageName: node linkType: hard "@firebase/functions@npm:0.11.8": version: 0.11.8 resolution: "@firebase/functions@npm:0.11.8" dependencies: "@firebase/app-check-interop-types": "npm:0.3.2" "@firebase/auth-interop-types": "npm:0.2.3" "@firebase/component": "npm:0.6.9" "@firebase/messaging-interop-types": "npm:0.2.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" undici: "npm:6.19.7" peerDependencies: "@firebase/app": 0.x checksum: 10/44f3e42df189f3f3cb3c366b38e93a0ffdfaa1a7b3f6dba624bcd9a7cda3d3271df66f2769b7cbe7e1e5ff01bf6ab3bef6c1e1e15c6646e34514d1e2ebb60555 languageName: node linkType: hard "@firebase/installations-compat@npm:0.2.9": version: 0.2.9 resolution: "@firebase/installations-compat@npm:0.2.9" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/installations": "npm:0.6.9" "@firebase/installations-types": "npm:0.5.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/919e1a4f4b63f5fe757a3c9cefb4a36cbab92deb4a6e15f249c94d6e80d1c6d37e5e384a460af8c17fc88e3091594bf43d036c88b704516c279b5ab8401977e1 languageName: node linkType: hard "@firebase/installations-types@npm:0.5.2": version: 0.5.2 resolution: "@firebase/installations-types@npm:0.5.2" peerDependencies: "@firebase/app-types": 0.x checksum: 10/2e795280c299d644b8c8e3fdfa5c6f20cb367dd3b7df32317211f84393fa169b33dee0cbed28de407f3b22dc8f1fb2f7a11ae5a373f8082cc570ef61ef6b91ba languageName: node linkType: hard "@firebase/installations@npm:0.6.9": version: 0.6.9 resolution: "@firebase/installations@npm:0.6.9" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/util": "npm:1.10.0" idb: "npm:7.1.1" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app": 0.x checksum: 10/349c8b7e877b002fb29f274f4d239fbca4c2c266ccb66ecfb5f1762f973a7fe1be99cc3346184d1230e6e35feb2b6f9e8b7169479fa0018b53e4a83837848619 languageName: node linkType: hard "@firebase/logger@npm:0.4.2": version: 0.4.2 resolution: "@firebase/logger@npm:0.4.2" dependencies: tslib: "npm:^2.1.0" checksum: 10/961b4605220c0a56c5f3ccf4e6049e44c27303c1ca998c6fa1d19de785c76d93e3b1a3da455e9f40655711345d8d779912366e4f369d93eda8d08c407cc5b140 languageName: node linkType: hard "@firebase/messaging-compat@npm:0.2.11": version: 0.2.11 resolution: "@firebase/messaging-compat@npm:0.2.11" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/messaging": "npm:0.12.11" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/8ace6d65adcf891b272875b7b3f43978a15644b23f7ee796346f02eb50007c20c99719f4991772911005697613bf122167ca150d8245d0fccb2b959472b4a625 languageName: node linkType: hard "@firebase/messaging-interop-types@npm:0.2.2": version: 0.2.2 resolution: "@firebase/messaging-interop-types@npm:0.2.2" checksum: 10/547f8ebf2c5a8dcbc484991b97d76bd3dc3eb4bd9d4e6ea2ffc652097c7065d92dc68d389ddb19fba41e0ce3b5f4cd757ed22f96b4744801149b0f8dbf323af7 languageName: node linkType: hard "@firebase/messaging@npm:0.12.11": version: 0.12.11 resolution: "@firebase/messaging@npm:0.12.11" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/installations": "npm:0.6.9" "@firebase/messaging-interop-types": "npm:0.2.2" "@firebase/util": "npm:1.10.0" idb: "npm:7.1.1" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app": 0.x checksum: 10/1de21d56c74996e99151a902e0f1ff0825d47ebff044104483a838ff5cb4883433b2f541616b033255e4fd2780b29f71982d8832edf4987c101df97ed508828a languageName: node linkType: hard "@firebase/performance-compat@npm:0.2.9": version: 0.2.9 resolution: "@firebase/performance-compat@npm:0.2.9" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/performance": "npm:0.6.9" "@firebase/performance-types": "npm:0.2.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/bc4e8b0208c9bc603518e1388713ec80658ee109c6af80d429479447ccb85e8e831269383233c379ed66bf37469d13f5c234074d0c0c9e7e69e909be5fdeca4f languageName: node linkType: hard "@firebase/performance-types@npm:0.2.2": version: 0.2.2 resolution: "@firebase/performance-types@npm:0.2.2" checksum: 10/d25ae06cb75ab6b44ffacf7affadc1f651881f283e58381c444eb63b62dfb74c33c544ab89843518ec1d15367ba7c4343b4d6b22de1f1df35126a1283baa578d languageName: node linkType: hard "@firebase/performance@npm:0.6.9": version: 0.6.9 resolution: "@firebase/performance@npm:0.6.9" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/installations": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app": 0.x checksum: 10/d682d0b1e342ed3eda1a5ddab39c8ddac33afc9edb2c7335a2f9a28eb8c268b975bbf450a3bad5443138edebaf2aa731dca0b774bcf3211a6dc215b35d86d849 languageName: node linkType: hard "@firebase/remote-config-compat@npm:0.2.9": version: 0.2.9 resolution: "@firebase/remote-config-compat@npm:0.2.9" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/remote-config": "npm:0.4.9" "@firebase/remote-config-types": "npm:0.3.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/a6db7509512d8d22b7ddf1127c741715e379e04e5b3246372bb0302d7c84afb421a94550adebecddcce5def115d61729a9580940dce6e65f8d77f9af30f69fe1 languageName: node linkType: hard "@firebase/remote-config-types@npm:0.3.2": version: 0.3.2 resolution: "@firebase/remote-config-types@npm:0.3.2" checksum: 10/6c91599c653825708aba9fe9e4562997f108c3e4f3eaf5d188f31c859a6ad013414aa7a213b6b021b68049dd0dd57158546dbc9fb64384652274ef7f57ce7d7d languageName: node linkType: hard "@firebase/remote-config@npm:0.4.9": version: 0.4.9 resolution: "@firebase/remote-config@npm:0.4.9" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/installations": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app": 0.x checksum: 10/f14189f38c8cf75db16bf8b85dd004486b1dd8242f62d697c716fa85cd32928aed549ccea8c632a528870a424fc7f04f1132a14b3b099276cd7696c78e644b28 languageName: node linkType: hard "@firebase/storage-compat@npm:0.3.12": version: 0.3.12 resolution: "@firebase/storage-compat@npm:0.3.12" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/storage": "npm:0.13.2" "@firebase/storage-types": "npm:0.8.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app-compat": 0.x checksum: 10/4eea49a57f1d7537da697e5ff8b4e035ff1af69e416e7eab14485753c39c25eaa5a71bd2bafba0985ac6a7ce803f98f2f2f83c613c78c8f74bce286e3259b8ec languageName: node linkType: hard "@firebase/storage-types@npm:0.8.2": version: 0.8.2 resolution: "@firebase/storage-types@npm:0.8.2" peerDependencies: "@firebase/app-types": 0.x "@firebase/util": 1.x checksum: 10/e00716932370d2004dc9f7ef6d7e3aff72305b91569fa6ec15e8bc2ec784b03a150391e8be2c063234edbbfda7796da915d48e26ce2f1f7c5d3343acd39afd99 languageName: node linkType: hard "@firebase/storage@npm:0.13.2": version: 0.13.2 resolution: "@firebase/storage@npm:0.13.2" dependencies: "@firebase/component": "npm:0.6.9" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" undici: "npm:6.19.7" peerDependencies: "@firebase/app": 0.x checksum: 10/d887f80cf95ef5daa80ffb2e6d564d25abb8a3e84099bee9730c95082597a12028bbf73bfe66fca2df3cdf04eaadea8e9d74ec0a826f946bc8f002293a9983ea languageName: node linkType: hard "@firebase/util@npm:1.10.0": version: 1.10.0 resolution: "@firebase/util@npm:1.10.0" dependencies: tslib: "npm:^2.1.0" checksum: 10/eb161f1c6294ff097f3c40236820e9e6e29cd6582e5e1254148157143272493580535ee2cb9e7c6055d3909b3ef39d8b64086895b071c665827acb66742b63eb languageName: node linkType: hard "@firebase/vertexai-preview@npm:0.0.4": version: 0.0.4 resolution: "@firebase/vertexai-preview@npm:0.0.4" dependencies: "@firebase/app-check-interop-types": "npm:0.3.2" "@firebase/component": "npm:0.6.9" "@firebase/logger": "npm:0.4.2" "@firebase/util": "npm:1.10.0" tslib: "npm:^2.1.0" peerDependencies: "@firebase/app": 0.x "@firebase/app-types": 0.x checksum: 10/8ec48d81f48aebdcc63b65d802c67bf36880f256e5c2f5f3b152dc91c8c0e924053fba2fac5218716612f8ee720b25d0822337a214f16f5b7e51ce0247dfc4e5 languageName: node linkType: hard "@firebase/webchannel-wrapper@npm:1.0.1": version: 1.0.1 resolution: "@firebase/webchannel-wrapper@npm:1.0.1" checksum: 10/22fc7e1e6dd36ab7c13f3a6c1ff51f4d405304424dc323cb146109e7a3ab3b592e2ddb29f53197ee5719a8448cdedb98d9e86a080f9365e389f8429b1c6555c2 languageName: node linkType: hard "@graphql-typed-document-node/core@npm:^3.1.0": version: 3.2.0 resolution: "@graphql-typed-document-node/core@npm:3.2.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 checksum: 10/fa44443accd28c8cf4cb96aaaf39d144a22e8b091b13366843f4e97d19c7bfeaf609ce3c7603a4aeffe385081eaf8ea245d078633a7324c11c5ec4b2011bb76d languageName: node linkType: hard "@grpc/grpc-js@npm:~1.9.0": version: 1.9.15 resolution: "@grpc/grpc-js@npm:1.9.15" dependencies: "@grpc/proto-loader": "npm:^0.7.8" "@types/node": "npm:>=12.12.47" checksum: 10/edd45c5970046ebb1bb54856f22a41186742c77dfb7e5182ca615f690f1a320af3abeef553d8924812d56911157a04882c7d264c2de64f326f8df7d473c47b2a languageName: node linkType: hard "@grpc/proto-loader@npm:^0.7.8": version: 0.7.13 resolution: "@grpc/proto-loader@npm:0.7.13" dependencies: lodash.camelcase: "npm:^4.3.0" long: "npm:^5.0.0" protobufjs: "npm:^7.2.5" yargs: "npm:^17.7.2" bin: proto-loader-gen-types: ./build/bin/proto-loader-gen-types.js checksum: 10/7e2d842c2061cbaf6450c71da0077263be3bab165454d5c8a3e1ae4d3c6d2915f02fd27da63ff01f05e127b1221acd40705273f5d29303901e60514e852992f4 languageName: node linkType: hard "@hapi/hoek@npm:^9.0.0, @hapi/hoek@npm:^9.3.0": version: 9.3.0 resolution: "@hapi/hoek@npm:9.3.0" checksum: 10/ad83a223787749f3873bce42bd32a9a19673765bf3edece0a427e138859ff729469e68d5fdf9ff6bbee6fb0c8e21bab61415afa4584f527cfc40b59ea1957e70 languageName: node linkType: hard "@hapi/topo@npm:^5.1.0": version: 5.1.0 resolution: "@hapi/topo@npm:5.1.0" dependencies: "@hapi/hoek": "npm:^9.0.0" checksum: 10/084bfa647015f4fd3fdd51fadb2747d09ef2f5e1443d6cbada2988b0c88494f85edf257ec606c790db146ac4e34ff57f3fcb22e3299b8e06ed5c87ba7583495c languageName: node linkType: hard "@humanwhocodes/config-array@npm:^0.13.0": version: 0.13.0 resolution: "@humanwhocodes/config-array@npm:0.13.0" dependencies: "@humanwhocodes/object-schema": "npm:^2.0.3" debug: "npm:^4.3.1" minimatch: "npm:^3.0.5" checksum: 10/524df31e61a85392a2433bf5d03164e03da26c03d009f27852e7dcfdafbc4a23f17f021dacf88e0a7a9fe04ca032017945d19b57a16e2676d9114c22a53a9d11 languageName: node linkType: hard "@humanwhocodes/module-importer@npm:^1.0.1": version: 1.0.1 resolution: "@humanwhocodes/module-importer@npm:1.0.1" checksum: 10/e993950e346331e5a32eefb27948ecdee2a2c4ab3f072b8f566cd213ef485dd50a3ca497050608db91006f5479e43f91a439aef68d2a313bd3ded06909c7c5b3 languageName: node linkType: hard "@humanwhocodes/object-schema@npm:^2.0.3": version: 2.0.3 resolution: "@humanwhocodes/object-schema@npm:2.0.3" checksum: 10/05bb99ed06c16408a45a833f03a732f59bf6184795d4efadd33238ff8699190a8c871ad1121241bb6501589a9598dc83bf25b99dcbcf41e155cdf36e35e937a3 languageName: node linkType: hard "@invertase/react-native-apple-authentication@npm:^2.4.0": version: 2.4.0 resolution: "@invertase/react-native-apple-authentication@npm:2.4.0" checksum: 10/f9d42eda104e55fb5f3f405e8771e401a6ae2c2ca2e54ace29164794f43dbfa347d34856513575c67883f5c42da284108151ada07ea0bf5df065bb03989ec3cf languageName: node linkType: hard "@isaacs/cliui@npm:^8.0.2": version: 8.0.2 resolution: "@isaacs/cliui@npm:8.0.2" dependencies: string-width: "npm:^5.1.2" string-width-cjs: "npm:string-width@^4.2.0" strip-ansi: "npm:^7.0.1" strip-ansi-cjs: "npm:strip-ansi@^6.0.1" wrap-ansi: "npm:^8.1.0" wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" checksum: 10/e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243 languageName: node linkType: hard "@isaacs/ttlcache@npm:^1.4.1": version: 1.4.1 resolution: "@isaacs/ttlcache@npm:1.4.1" checksum: 10/57f2b00b58845d48a173c7668c58c27c3e6f91a56c17d6d4c58b38780a475a858ce3b4fc2cd4304469eee9f49818b79a187f0e13120b3617c4f67e4abc475698 languageName: node linkType: hard "@istanbuljs/load-nyc-config@npm:^1.0.0": version: 1.1.0 resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" dependencies: camelcase: "npm:^5.3.1" find-up: "npm:^4.1.0" get-package-type: "npm:^0.1.0" js-yaml: "npm:^3.13.1" resolve-from: "npm:^5.0.0" checksum: 10/b000a5acd8d4fe6e34e25c399c8bdbb5d3a202b4e10416e17bfc25e12bab90bb56d33db6089ae30569b52686f4b35ff28ef26e88e21e69821d2b85884bd055b8 languageName: node linkType: hard "@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": version: 0.1.3 resolution: "@istanbuljs/schema@npm:0.1.3" checksum: 10/a9b1e49acdf5efc2f5b2359f2df7f90c5c725f2656f16099e8b2cd3a000619ecca9fc48cf693ba789cf0fd989f6e0df6a22bc05574be4223ecdbb7997d04384b languageName: node linkType: hard "@javascript-obfuscator/escodegen@npm:2.3.0": version: 2.3.0 resolution: "@javascript-obfuscator/escodegen@npm:2.3.0" dependencies: "@javascript-obfuscator/estraverse": "npm:^5.3.0" esprima: "npm:^4.0.1" esutils: "npm:^2.0.2" optionator: "npm:^0.8.1" source-map: "npm:~0.6.1" dependenciesMeta: source-map: optional: true checksum: 10/b197cd0a6ce70d92a2bb7f126d3d8ce91b1c20db5d1f5ca9e6ff8f0bfce79b06ef6d4f475db9f1f1e9238d1ec72f8458c90101478c5fb94c9589f2ba90513127 languageName: node linkType: hard "@javascript-obfuscator/estraverse@npm:5.4.0, @javascript-obfuscator/estraverse@npm:^5.3.0": version: 5.4.0 resolution: "@javascript-obfuscator/estraverse@npm:5.4.0" checksum: 10/96b2d265dc8a937adc178cd96e97ac1e67cb491efbe9b379b65cad9a7b69e3892752ce8b94cfebaea5243a7faf50d574cfa6d05716e1e67c6483da19f33d4e81 languageName: node linkType: hard "@jeremybarbet/apple-api-types@npm:^1.4.1": version: 1.4.1 resolution: "@jeremybarbet/apple-api-types@npm:1.4.1" checksum: 10/7d7f495d0d5b6f9541ebde12ff983ed381e67ba0be171ca8f2b1ec13a3cf5bad63bb3cb6aed2a235f7beb7c649195b8739e5dba7d709610e634bb669347844c5 languageName: node linkType: hard "@jest/console@npm:^29.7.0": version: 29.7.0 resolution: "@jest/console@npm:29.7.0" dependencies: "@jest/types": "npm:^29.6.3" "@types/node": "npm:*" chalk: "npm:^4.0.0" jest-message-util: "npm:^29.7.0" jest-util: "npm:^29.7.0" slash: "npm:^3.0.0" checksum: 10/4a80c750e8a31f344233cb9951dee9b77bf6b89377cb131f8b3cde07ff218f504370133a5963f6a786af4d2ce7f85642db206ff7a15f99fe58df4c38ac04899e languageName: node linkType: hard "@jest/core@npm:^29.7.0": version: 29.7.0 resolution: "@jest/core@npm:29.7.0" dependencies: "@jest/console": "npm:^29.7.0" "@jest/reporters": "npm:^29.7.0" "@jest/test-result": "npm:^29.7.0" "@jest/transform": "npm:^29.7.0" "@jest/types": "npm:^29.6.3" "@types/node": "npm:*" ansi-escapes: "npm:^4.2.1" chalk: "npm:^4.0.0" ci-info: "npm:^3.2.0" exit: "npm:^0.1.2" graceful-fs: "npm:^4.2.9" jest-changed-files: "npm:^29.7.0" jest-config: "npm:^29.7.0" jest-haste-map: "npm:^29.7.0" jest-message-util: "npm:^29.7.0" jest-regex-util: "npm:^29.6.3" jest-resolve: "npm:^29.7.0" jest-resolve-dependencies: "npm:^29.7.0" jest-runner: "npm:^29.7.0" jest-runtime: "npm:^29.7.0" jest-snapshot: "npm:^29.7.0" jest-util: "npm:^29.7.0" jest-validate: "npm:^29.7.0" jest-watcher: "npm:^29.7.0" micromatch: "npm:^4.0.4" pretty-format: "npm:^29.7.0" slash: "npm:^3.0.0" strip-ansi: "npm:^6.0.0" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true checksum: 10/ab6ac2e562d083faac7d8152ec1cc4eccc80f62e9579b69ed40aedf7211a6b2d57024a6cd53c4e35fd051c39a236e86257d1d99ebdb122291969a0a04563b51e languageName: node linkType: hard "@jest/create-cache-key-function@npm:^29.6.3": version: 29.7.0 resolution: "@jest/create-cache-key-function@npm:29.7.0" dependencies: "@jest/types": "npm:^29.6.3" checksum: 10/061ef63b13ec8c8e5d08e4456f03b5cf8c7f9c1cab4fed8402e1479153cafce6eea80420e308ef62027abb7e29b825fcfa06551856bd021d98e92e381bf91723 languageName: node linkType: hard "@jest/environment@npm:^29.7.0": version: 29.7.0 resolution: "@jest/environment@npm:29.7.0" dependencies: "@jest/fake-timers": "npm:^29.7.0" "@jest/types": "npm:^29.6.3" "@types/node": "npm:*" jest-mock: "npm:^29.7.0" checksum: 10/90b5844a9a9d8097f2cf107b1b5e57007c552f64315da8c1f51217eeb0a9664889d3f145cdf8acf23a84f4d8309a6675e27d5b059659a004db0ea9546d1c81a8 languageName: node linkType: hard "@jest/expect-utils@npm:^29.7.0": version: 29.7.0 resolution: "@jest/expect-utils@npm:29.7.0" dependencies: jest-get-type: "npm:^29.6.3" checksum: 10/ef8d379778ef574a17bde2801a6f4469f8022a46a5f9e385191dc73bb1fc318996beaed4513fbd7055c2847227a1bed2469977821866534593a6e52a281499ee languageName: node linkType: hard "@jest/expect@npm:^29.7.0": version: 29.7.0 resolution: "@jest/expect@npm:29.7.0" dependencies: expect: "npm:^29.7.0" jest-snapshot: "npm:^29.7.0" checksum: 10/fea6c3317a8da5c840429d90bfe49d928e89c9e89fceee2149b93a11b7e9c73d2f6e4d7cdf647163da938fc4e2169e4490be6bae64952902bc7a701033fd4880 languageName: node linkType: hard "@jest/fake-timers@npm:^29.7.0": version: 29.7.0 resolution: "@jest/fake-timers@npm:29.7.0" dependencies: "@jest/types": "npm:^29.6.3" "@sinonjs/fake-timers": "npm:^10.0.2" "@types/node": "npm:*" jest-message-util: "npm:^29.7.0" jest-mock: "npm:^29.7.0" jest-util: "npm:^29.7.0" checksum: 10/9b394e04ffc46f91725ecfdff34c4e043eb7a16e1d78964094c9db3fde0b1c8803e45943a980e8c740d0a3d45661906de1416ca5891a538b0660481a3a828c27 languageName: node linkType: hard "@jest/globals@npm:^29.7.0": version: 29.7.0 resolution: "@jest/globals@npm:29.7.0" dependencies: "@jest/environment": "npm:^29.7.0" "@jest/expect": "npm:^29.7.0" "@jest/types": "npm:^29.6.3" jest-mock: "npm:^29.7.0" checksum: 10/97dbb9459135693ad3a422e65ca1c250f03d82b2a77f6207e7fa0edd2c9d2015fbe4346f3dc9ebff1678b9d8da74754d4d440b7837497f8927059c0642a22123 languageName: node linkType: hard "@jest/reporters@npm:^29.7.0": version: 29.7.0 resolution: "@jest/reporters@npm:29.7.0" dependencies: "@bcoe/v8-coverage": "npm:^0.2.3" "@jest/console": "npm:^29.7.0" "@jest/test-result": "npm:^29.7.0" "@jest/transform": "npm:^29.7.0" "@jest/types": "npm:^29.6.3" "@jridgewell/trace-mapping": "npm:^0.3.18" "@types/node": "npm:*" chalk: "npm:^4.0.0" collect-v8-coverage: "npm:^1.0.0" exit: "npm:^0.1.2" glob: "npm:^7.1.3" graceful-fs: "npm:^4.2.9" istanbul-lib-coverage: "npm:^3.0.0" istanbul-lib-instrument: "npm:^6.0.0" istanbul-lib-report: "npm:^3.0.0" istanbul-lib-source-maps: "npm:^4.0.0" istanbul-reports: "npm:^3.1.3" jest-message-util: "npm:^29.7.0" jest-util: "npm:^29.7.0" jest-worker: "npm:^29.7.0" slash: "npm:^3.0.0" string-length: "npm:^4.0.1" strip-ansi: "npm:^6.0.0" v8-to-istanbul: "npm:^9.0.1" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true checksum: 10/a17d1644b26dea14445cedd45567f4ba7834f980be2ef74447204e14238f121b50d8b858fde648083d2cd8f305f81ba434ba49e37a5f4237a6f2a61180cc73dc languageName: node linkType: hard "@jest/schemas@npm:^29.6.3": version: 29.6.3 resolution: "@jest/schemas@npm:29.6.3" dependencies: "@sinclair/typebox": "npm:^0.27.8" checksum: 10/910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93 languageName: node linkType: hard "@jest/source-map@npm:^29.6.3": version: 29.6.3 resolution: "@jest/source-map@npm:29.6.3" dependencies: "@jridgewell/trace-mapping": "npm:^0.3.18" callsites: "npm:^3.0.0" graceful-fs: "npm:^4.2.9" checksum: 10/bcc5a8697d471396c0003b0bfa09722c3cd879ad697eb9c431e6164e2ea7008238a01a07193dfe3cbb48b1d258eb7251f6efcea36f64e1ebc464ea3c03ae2deb languageName: node linkType: hard "@jest/test-result@npm:^29.7.0": version: 29.7.0 resolution: "@jest/test-result@npm:29.7.0" dependencies: "@jest/console": "npm:^29.7.0" "@jest/types": "npm:^29.6.3" "@types/istanbul-lib-coverage": "npm:^2.0.0" collect-v8-coverage: "npm:^1.0.0" checksum: 10/c073ab7dfe3c562bff2b8fee6cc724ccc20aa96bcd8ab48ccb2aa309b4c0c1923a9e703cea386bd6ae9b71133e92810475bb9c7c22328fc63f797ad3324ed189 languageName: node linkType: hard "@jest/test-sequencer@npm:^29.7.0": version: 29.7.0 resolution: "@jest/test-sequencer@npm:29.7.0" dependencies: "@jest/test-result": "npm:^29.7.0" graceful-fs: "npm:^4.2.9" jest-haste-map: "npm:^29.7.0" slash: "npm:^3.0.0" checksum: 10/4420c26a0baa7035c5419b0892ff8ffe9a41b1583ec54a10db3037cd46a7e29dd3d7202f8aa9d376e9e53be5f8b1bc0d16e1de6880a6d319b033b01dc4c8f639 languageName: node linkType: hard "@jest/transform@npm:^29.7.0": version: 29.7.0 resolution: "@jest/transform@npm:29.7.0" dependencies: "@babel/core": "npm:^7.11.6" "@jest/types": "npm:^29.6.3" "@jridgewell/trace-mapping": "npm:^0.3.18" babel-plugin-istanbul: "npm:^6.1.1" chalk: "npm:^4.0.0" convert-source-map: "npm:^2.0.0" fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.9" jest-haste-map: "npm:^29.7.0" jest-regex-util: "npm:^29.6.3" jest-util: "npm:^29.7.0" micromatch: "npm:^4.0.4" pirates: "npm:^4.0.4" slash: "npm:^3.0.0" write-file-atomic: "npm:^4.0.2" checksum: 10/30f42293545ab037d5799c81d3e12515790bb58513d37f788ce32d53326d0d72ebf5b40f989e6896739aa50a5f77be44686e510966370d58511d5ad2637c68c1 languageName: node linkType: hard "@jest/types@npm:^24.9.0": version: 24.9.0 resolution: "@jest/types@npm:24.9.0" dependencies: "@types/istanbul-lib-coverage": "npm:^2.0.0" "@types/istanbul-reports": "npm:^1.1.1" "@types/yargs": "npm:^13.0.0" checksum: 10/22bdbf26f32e18b48b5b8881332cfdc93bfb87daf84f336c492dd3d4f0731b9b0bf3c854351508f9debc4dce8b8ca015156686f6119f6d11431ffa875ae046e5 languageName: node linkType: hard "@jest/types@npm:^26.6.2": version: 26.6.2 resolution: "@jest/types@npm:26.6.2" dependencies: "@types/istanbul-lib-coverage": "npm:^2.0.0" "@types/istanbul-reports": "npm:^3.0.0" "@types/node": "npm:*" "@types/yargs": "npm:^15.0.0" chalk: "npm:^4.0.0" checksum: 10/02d42749c8c6dc7e3184d0ff0293dd91c97233c2e6dc3708d61ef33d3162d4f07ad38d2d8a39abd94cf2fced69b92a87565c7099137c4529809242ca327254af languageName: node linkType: hard "@jest/types@npm:^29.6.3": version: 29.6.3 resolution: "@jest/types@npm:29.6.3" dependencies: "@jest/schemas": "npm:^29.6.3" "@types/istanbul-lib-coverage": "npm:^2.0.0" "@types/istanbul-reports": "npm:^3.0.0" "@types/node": "npm:*" "@types/yargs": "npm:^17.0.8" chalk: "npm:^4.0.0" checksum: 10/f74bf512fd09bbe2433a2ad460b04668b7075235eea9a0c77d6a42222c10a79b9747dc2b2a623f140ed40d6865a2ed8f538f3cbb75169120ea863f29a7ed76cd languageName: node linkType: hard "@jridgewell/gen-mapping@npm:^0.3.2, @jridgewell/gen-mapping@npm:^0.3.5": version: 0.3.5 resolution: "@jridgewell/gen-mapping@npm:0.3.5" dependencies: "@jridgewell/set-array": "npm:^1.2.1" "@jridgewell/sourcemap-codec": "npm:^1.4.10" "@jridgewell/trace-mapping": "npm:^0.3.24" checksum: 10/81587b3c4dd8e6c60252122937cea0c637486311f4ed208b52b62aae2e7a87598f63ec330e6cd0984af494bfb16d3f0d60d3b21d7e5b4aedd2602ff3fe9d32e2 languageName: node linkType: hard "@jridgewell/resolve-uri@npm:^3.1.0": version: 3.1.2 resolution: "@jridgewell/resolve-uri@npm:3.1.2" checksum: 10/97106439d750a409c22c8bff822d648f6a71f3aa9bc8e5129efdc36343cd3096ddc4eeb1c62d2fe48e9bdd4db37b05d4646a17114ecebd3bbcacfa2de51c3c1d languageName: node linkType: hard "@jridgewell/set-array@npm:^1.2.1": version: 1.2.1 resolution: "@jridgewell/set-array@npm:1.2.1" checksum: 10/832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10 languageName: node linkType: hard "@jridgewell/source-map@npm:^0.3.3": version: 0.3.6 resolution: "@jridgewell/source-map@npm:0.3.6" dependencies: "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" checksum: 10/0a9aca9320dc9044014ba0ef989b3a8411b0d778895553e3b7ca2ac0a75a20af4a5ad3f202acfb1879fa40466036a4417e1d5b38305baed8b9c1ebe6e4b3e7f5 languageName: node linkType: hard "@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": version: 1.4.15 resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" checksum: 10/89960ac087781b961ad918978975bcdf2051cd1741880469783c42de64239703eab9db5230d776d8e6a09d73bb5e4cb964e07d93ee6e2e7aea5a7d726e865c09 languageName: node linkType: hard "@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": version: 0.3.25 resolution: "@jridgewell/trace-mapping@npm:0.3.25" dependencies: "@jridgewell/resolve-uri": "npm:^3.1.0" "@jridgewell/sourcemap-codec": "npm:^1.4.14" checksum: 10/dced32160a44b49d531b80a4a2159dceab6b3ddf0c8e95a0deae4b0e894b172defa63d5ac52a19c2068e1fe7d31ea4ba931fbeec103233ecb4208953967120fc languageName: node linkType: hard "@microsoft/applicationinsights-web-snippet@npm:^1.0.1": version: 1.1.2 resolution: "@microsoft/applicationinsights-web-snippet@npm:1.1.2" checksum: 10/567696c72c669beecc13b7038c381e3f30e4c4356029e8a0c21ef164064890469a850d62da8e0e43aa070cb07a30f55ea4f48f173b41af3a2e79ed1b834072a2 languageName: node linkType: hard "@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1": version: 5.1.1-v1 resolution: "@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1" dependencies: eslint-scope: "npm:5.1.1" checksum: 10/f2e3b2d6a6e2d9f163ca22105910c9f850dc4897af0aea3ef0a5886b63d8e1ba6505b71c99cb78a3bba24a09557d601eb21c8dede3f3213753fcfef364eb0e57 languageName: node linkType: hard "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" dependencies: "@nodelib/fs.stat": "npm:2.0.5" run-parallel: "npm:^1.1.9" checksum: 10/6ab2a9b8a1d67b067922c36f259e3b3dfd6b97b219c540877a4944549a4d49ea5ceba5663905ab5289682f1f3c15ff441d02f0447f620a42e1cb5e1937174d4b languageName: node linkType: hard "@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": version: 2.0.5 resolution: "@nodelib/fs.stat@npm:2.0.5" checksum: 10/012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0 languageName: node linkType: hard "@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": version: 1.2.8 resolution: "@nodelib/fs.walk@npm:1.2.8" dependencies: "@nodelib/fs.scandir": "npm:2.1.5" fastq: "npm:^1.6.0" checksum: 10/40033e33e96e97d77fba5a238e4bba4487b8284678906a9f616b5579ddaf868a18874c0054a75402c9fbaaa033a25ceae093af58c9c30278e35c23c9479e79b0 languageName: node linkType: hard "@notifee/react-native@npm:^9.1.2": version: 9.1.2 resolution: "@notifee/react-native@npm:9.1.2" peerDependencies: react-native: "*" checksum: 10/14ab6e8b5438bda5ff20f99a6cf049273f1b23581dac094d9cdf4ace69d4a5119ce4cf632bda5f1abf3c8b2c8ee245b1ced181c45dba7153a1357102713d7670 languageName: node linkType: hard "@npmcli/agent@npm:^2.0.0": version: 2.2.2 resolution: "@npmcli/agent@npm:2.2.2" dependencies: agent-base: "npm:^7.1.0" http-proxy-agent: "npm:^7.0.0" https-proxy-agent: "npm:^7.0.1" lru-cache: "npm:^10.0.1" socks-proxy-agent: "npm:^8.0.3" checksum: 10/96fc0036b101bae5032dc2a4cd832efb815ce9b33f9ee2f29909ee49d96a0026b3565f73c507a69eb8603f5cb32e0ae45a70cab1e2655990a4e06ae99f7f572a languageName: node linkType: hard "@npmcli/fs@npm:^3.1.0": version: 3.1.1 resolution: "@npmcli/fs@npm:3.1.1" dependencies: semver: "npm:^7.3.5" checksum: 10/1e0e04087049b24b38bc0b30d87a9388ee3ca1d3fdfc347c2f77d84fcfe6a51f250bc57ba2c1f614d7e4285c6c62bf8c769bc19aa0949ea39e5b043ee023b0bd languageName: node linkType: hard "@opentelemetry/api@npm:^1.4.1": version: 1.9.0 resolution: "@opentelemetry/api@npm:1.9.0" checksum: 10/a607f0eef971893c4f2ee2a4c2069aade6ec3e84e2a1f5c2aac19f65c5d9eeea41aa72db917c1029faafdd71789a1a040bdc18f40d63690e22ccae5d7070f194 languageName: node linkType: hard "@opentelemetry/core@npm:1.25.0": version: 1.25.0 resolution: "@opentelemetry/core@npm:1.25.0" dependencies: "@opentelemetry/semantic-conventions": "npm:1.25.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" checksum: 10/8b64d82263fca1fe8f6ef09ab5fc5fff7bf59fcebb404a8610f66bddb4b93100872a1d56d4952c55adaaa29e7580856ea492fbc2bf76c3c771704de69d0dbc2a languageName: node linkType: hard "@opentelemetry/core@npm:^1.15.2": version: 1.26.0 resolution: "@opentelemetry/core@npm:1.26.0" dependencies: "@opentelemetry/semantic-conventions": "npm:1.27.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" checksum: 10/474b6bcf42cd2825d56f915eb0d6e6cdcb37777a11fc2618fc2fa50754f4b9b5df23944f3aab186cb3ab930db5c3a81efa3183362802314a966930110346e6a4 languageName: node linkType: hard "@opentelemetry/instrumentation@npm:^0.41.2": version: 0.41.2 resolution: "@opentelemetry/instrumentation@npm:0.41.2" dependencies: "@types/shimmer": "npm:^1.0.2" import-in-the-middle: "npm:1.4.2" require-in-the-middle: "npm:^7.1.1" semver: "npm:^7.5.1" shimmer: "npm:^1.2.1" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10/837e8c08ecec1550456609a1db4805f1b0e603f12ffcb225e2a25440239c294ab30fde3de0d06a44118a711b5465d9b34120d223197d1e323e0b14f7ba7a2bb4 languageName: node linkType: hard "@opentelemetry/resources@npm:1.25.0": version: 1.25.0 resolution: "@opentelemetry/resources@npm:1.25.0" dependencies: "@opentelemetry/core": "npm:1.25.0" "@opentelemetry/semantic-conventions": "npm:1.25.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" checksum: 10/0f0668ecde09d7dfb2a2c240bcffb87ac41c50f5b492bdef971f084251f258eb759c801409f85a7a551ed3649678af7a678a1dca22f787c651dce9cde2674bf5 languageName: node linkType: hard "@opentelemetry/sdk-trace-base@npm:^1.15.2": version: 1.25.0 resolution: "@opentelemetry/sdk-trace-base@npm:1.25.0" dependencies: "@opentelemetry/core": "npm:1.25.0" "@opentelemetry/resources": "npm:1.25.0" "@opentelemetry/semantic-conventions": "npm:1.25.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" checksum: 10/7fa9e89f16de2c082159935bd3178a4851b45f092ad89275d3b324be14dbf777413fea1042c2c243a33bbb4c22e99c08884023a5e39434cc64ad8c844237b553 languageName: node linkType: hard "@opentelemetry/semantic-conventions@npm:1.25.0": version: 1.25.0 resolution: "@opentelemetry/semantic-conventions@npm:1.25.0" checksum: 10/f39fe489457598954f00147197e6a86dda731f088384cadba69aaa81a8ea94c2986f250bde3d0f6dee9a85e66fd90e6a726a0dd7bfc2097caee2bd8b53121ab8 languageName: node linkType: hard "@opentelemetry/semantic-conventions@npm:1.27.0, @opentelemetry/semantic-conventions@npm:^1.15.2": version: 1.27.0 resolution: "@opentelemetry/semantic-conventions@npm:1.27.0" checksum: 10/98166522f299e2fe3d43376adbdeb92679b75ebb172e2a3c4c71f2942bd91585e9537618efbbae6dc08177699e5719368edf66d7e69e8636f360b85217bbdbe1 languageName: node linkType: hard "@pkgjs/parseargs@npm:^0.11.0": version: 0.11.0 resolution: "@pkgjs/parseargs@npm:0.11.0" checksum: 10/115e8ceeec6bc69dff2048b35c0ab4f8bbee12d8bb6c1f4af758604586d802b6e669dcb02dda61d078de42c2b4ddce41b3d9e726d7daa6b4b850f4adbf7333ff languageName: node linkType: hard "@protobufjs/aspromise@npm:^1.1.1, @protobufjs/aspromise@npm:^1.1.2": version: 1.1.2 resolution: "@protobufjs/aspromise@npm:1.1.2" checksum: 10/8a938d84fe4889411296db66b29287bd61ea3c14c2d23e7a8325f46a2b8ce899857c5f038d65d7641805e6c1d06b495525c7faf00c44f85a7ee6476649034969 languageName: node linkType: hard "@protobufjs/base64@npm:^1.1.2": version: 1.1.2 resolution: "@protobufjs/base64@npm:1.1.2" checksum: 10/c71b100daeb3c9bdccab5cbc29495b906ba0ae22ceedc200e1ba49717d9c4ab15a6256839cebb6f9c6acae4ed7c25c67e0a95e734f612b258261d1a3098fe342 languageName: node linkType: hard "@protobufjs/codegen@npm:^2.0.4": version: 2.0.4 resolution: "@protobufjs/codegen@npm:2.0.4" checksum: 10/c6ee5fa172a8464f5253174d3c2353ea520c2573ad7b6476983d9b1346f4d8f2b44aa29feb17a949b83c1816bc35286a5ea265ed9d8fdd2865acfa09668c0447 languageName: node linkType: hard "@protobufjs/eventemitter@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/eventemitter@npm:1.1.0" checksum: 10/03af3e99f17ad421283d054c88a06a30a615922a817741b43ca1b13e7c6b37820a37f6eba9980fb5150c54dba6e26cb6f7b64a6f7d8afa83596fafb3afa218c3 languageName: node linkType: hard "@protobufjs/fetch@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/fetch@npm:1.1.0" dependencies: "@protobufjs/aspromise": "npm:^1.1.1" "@protobufjs/inquire": "npm:^1.1.0" checksum: 10/67ae40572ad536e4ef94269199f252c024b66e3059850906bdaee161ca1d75c73d04d35cd56f147a8a5a079f5808e342b99e61942c1dae15604ff0600b09a958 languageName: node linkType: hard "@protobufjs/float@npm:^1.0.2": version: 1.0.2 resolution: "@protobufjs/float@npm:1.0.2" checksum: 10/634c2c989da0ef2f4f19373d64187e2a79f598c5fb7991afb689d29a2ea17c14b796b29725945fa34b9493c17fb799e08ac0a7ccaae460ee1757d3083ed35187 languageName: node linkType: hard "@protobufjs/inquire@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/inquire@npm:1.1.0" checksum: 10/c09efa34a5465cb120775e1a482136f2340a58b4abce7e93d72b8b5a9324a0e879275016ef9fcd73d72a4731639c54f2bb755bb82f916e4a78892d1d840bb3d2 languageName: node linkType: hard "@protobufjs/path@npm:^1.1.2": version: 1.1.2 resolution: "@protobufjs/path@npm:1.1.2" checksum: 10/bb709567935fd385a86ad1f575aea98131bbd719c743fb9b6edd6b47ede429ff71a801cecbd64fc72deebf4e08b8f1bd8062793178cdaed3713b8d15771f9b83 languageName: node linkType: hard "@protobufjs/pool@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/pool@npm:1.1.0" checksum: 10/b9c7047647f6af28e92aac54f6f7c1f7ff31b201b4bfcc7a415b2861528854fce3ec666d7e7e10fd744da905f7d4aef2205bbcc8944ca0ca7a82e18134d00c46 languageName: node linkType: hard "@protobufjs/utf8@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/utf8@npm:1.1.0" checksum: 10/131e289c57534c1d73a0e55782d6751dd821db1583cb2f7f7e017c9d6747addaebe79f28120b2e0185395d990aad347fb14ffa73ef4096fa38508d61a0e64602 languageName: node linkType: hard "@react-native-async-storage/async-storage@npm:^1.24.0": version: 1.24.0 resolution: "@react-native-async-storage/async-storage@npm:1.24.0" dependencies: merge-options: "npm:^3.0.4" peerDependencies: react-native: ^0.0.0-0 || >=0.60 <1.0 checksum: 10/5a6b7ac8bd7a9e537a53a3f2301530c284fd885a45ce4a4e0014859bc0f7c89bee5c4b5a6b3740b8d83751561159b237474d18f32fad75ea7d56d4ddb2180d91 languageName: node linkType: hard "@react-native-clipboard/clipboard@npm:^1.14.2": version: 1.14.2 resolution: "@react-native-clipboard/clipboard@npm:1.14.2" peerDependencies: react: ">= 16.9.0" react-native: ">= 0.61.5" react-native-macos: ">= 0.61.0" react-native-windows: ">= 0.61.0" peerDependenciesMeta: react-native-macos: optional: true react-native-windows: optional: true checksum: 10/c70544b94957158dca90bb9554e116c0714a79245d9bb09762329fb321a3e71509e3fb58b95e9681df509df406fdf2f383dfd999594b1cf6edc13ce4aad1d68c languageName: node linkType: hard "@react-native-community/cli-clean@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-clean@npm:14.1.0" dependencies: "@react-native-community/cli-tools": "npm:14.1.0" chalk: "npm:^4.1.2" execa: "npm:^5.0.0" fast-glob: "npm:^3.3.2" checksum: 10/56e3db6f908fa9c3c91fe4fb067d596c91c1035e83c3526ee41a10fa83726ad1944345650d1d9836ff4de50ae06152eae8f4340afa8b3c56522cb42ea0e468ff languageName: node linkType: hard "@react-native-community/cli-config@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-config@npm:14.1.0" dependencies: "@react-native-community/cli-tools": "npm:14.1.0" chalk: "npm:^4.1.2" cosmiconfig: "npm:^9.0.0" deepmerge: "npm:^4.3.0" fast-glob: "npm:^3.3.2" joi: "npm:^17.2.1" checksum: 10/2f73d96324a813ddc9eb0a96eba26e80afa58d53eb1ab36067e9519818c91eb9255220f1b09a407c95f83f785b9a995700944f0dd3b44a49d3e50cdb76574948 languageName: node linkType: hard "@react-native-community/cli-debugger-ui@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-debugger-ui@npm:14.1.0" dependencies: serve-static: "npm:^1.13.1" checksum: 10/272f7bfacff55f6b17293960380e2826f01c7d02f9be684eade4c3ad275fb08dbd5bd6ea5abb9da2f76cbdc9b9d3e7f0737ac6cb86b8bfd9d333f1908882b2b0 languageName: node linkType: hard "@react-native-community/cli-doctor@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-doctor@npm:14.1.0" dependencies: "@react-native-community/cli-config": "npm:14.1.0" "@react-native-community/cli-platform-android": "npm:14.1.0" "@react-native-community/cli-platform-apple": "npm:14.1.0" "@react-native-community/cli-platform-ios": "npm:14.1.0" "@react-native-community/cli-tools": "npm:14.1.0" chalk: "npm:^4.1.2" command-exists: "npm:^1.2.8" deepmerge: "npm:^4.3.0" envinfo: "npm:^7.13.0" execa: "npm:^5.0.0" node-stream-zip: "npm:^1.9.1" ora: "npm:^5.4.1" semver: "npm:^7.5.2" strip-ansi: "npm:^5.2.0" wcwidth: "npm:^1.0.1" yaml: "npm:^2.2.1" checksum: 10/351588779928775799160e7fd942b1b99336235c882b89909559550a83775f05f4f5abde5bb67538bd92a9709ee69cd73478c384e2197558d3561b40b8cdd73b languageName: node linkType: hard "@react-native-community/cli-platform-android@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-platform-android@npm:14.1.0" dependencies: "@react-native-community/cli-tools": "npm:14.1.0" chalk: "npm:^4.1.2" execa: "npm:^5.0.0" fast-glob: "npm:^3.3.2" fast-xml-parser: "npm:^4.4.1" logkitty: "npm:^0.7.1" checksum: 10/76df3dc834e573ea9b209578af488bfeae2731d5182367055e5d961ebcb15c674c6e7bf79c8362a43a011a271a0a496f9acc0a11e882ca689d3c1fb1d834ead7 languageName: node linkType: hard "@react-native-community/cli-platform-apple@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-platform-apple@npm:14.1.0" dependencies: "@react-native-community/cli-tools": "npm:14.1.0" chalk: "npm:^4.1.2" execa: "npm:^5.0.0" fast-glob: "npm:^3.3.2" fast-xml-parser: "npm:^4.4.1" ora: "npm:^5.4.1" checksum: 10/10917abc15faedf2309749cc05bf512d7ce47ff7dfdb270f62327571f15ab0b8f54b30dcdd9b1e53fffac8b9921577a2618f9ac9912193af744f4917f0464f1b languageName: node linkType: hard "@react-native-community/cli-platform-ios@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-platform-ios@npm:14.1.0" dependencies: "@react-native-community/cli-platform-apple": "npm:14.1.0" checksum: 10/85e78f3973d1b088e9bb683d326636e71d936072cd6f6f2c27c610e8b9dcd0e222ea7777c85dcdfdd7ae0bb29909c2b85ff5ab4af3ccbcdf546f37f1f0fe3060 languageName: node linkType: hard "@react-native-community/cli-server-api@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-server-api@npm:14.1.0" dependencies: "@react-native-community/cli-debugger-ui": "npm:14.1.0" "@react-native-community/cli-tools": "npm:14.1.0" compression: "npm:^1.7.1" connect: "npm:^3.6.5" errorhandler: "npm:^1.5.1" nocache: "npm:^3.0.1" pretty-format: "npm:^26.6.2" serve-static: "npm:^1.13.1" ws: "npm:^6.2.3" checksum: 10/11e2a4909a1e7a1cdef86f2ff6c35d23c238ea355e4327bc6a05ad00f40d7cc2c4e6b25583f9d9e9ef1a4d2f2e3c04586b652e06637cd90dc1538f0024336aa0 languageName: node linkType: hard "@react-native-community/cli-tools@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-tools@npm:14.1.0" dependencies: appdirsjs: "npm:^1.2.4" chalk: "npm:^4.1.2" execa: "npm:^5.0.0" find-up: "npm:^5.0.0" mime: "npm:^2.4.1" open: "npm:^6.2.0" ora: "npm:^5.4.1" semver: "npm:^7.5.2" shell-quote: "npm:^1.7.3" sudo-prompt: "npm:^9.0.0" checksum: 10/b46247ffcac6a1464955b5b770617dd31f8666997a477481fdf23e87e570e2368e0d0a55393da6f177ad84175e33d6ffa5a3a05cf0f5beccf112242c97903ccc languageName: node linkType: hard "@react-native-community/cli-types@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli-types@npm:14.1.0" dependencies: joi: "npm:^17.2.1" checksum: 10/c721d256a1e90fa3f8353cb0b9d37688aad080e2de44ad6b69516dd591c9f4089d214c43e85b5be0aff0d8b08595af4727a13ddd1c88492f5d3acc57bc22ce8f languageName: node linkType: hard "@react-native-community/cli@npm:14.1.0": version: 14.1.0 resolution: "@react-native-community/cli@npm:14.1.0" dependencies: "@react-native-community/cli-clean": "npm:14.1.0" "@react-native-community/cli-config": "npm:14.1.0" "@react-native-community/cli-debugger-ui": "npm:14.1.0" "@react-native-community/cli-doctor": "npm:14.1.0" "@react-native-community/cli-server-api": "npm:14.1.0" "@react-native-community/cli-tools": "npm:14.1.0" "@react-native-community/cli-types": "npm:14.1.0" chalk: "npm:^4.1.2" commander: "npm:^9.4.1" deepmerge: "npm:^4.3.0" execa: "npm:^5.0.0" find-up: "npm:^5.0.0" fs-extra: "npm:^8.1.0" graceful-fs: "npm:^4.1.3" prompts: "npm:^2.4.2" semver: "npm:^7.5.2" bin: rnc-cli: build/bin.js checksum: 10/144898574b17c7e01a21d8b156e142f43038f138dbc321e8e7e4c5ee4960ae12f0accae4fc00b0f7f4c25727159cba7e5f664efc70dc90206a62369770c9cbf2 languageName: node linkType: hard "@react-native-community/datetimepicker@npm:^7.6.3": version: 7.7.0 resolution: "@react-native-community/datetimepicker@npm:7.7.0" dependencies: invariant: "npm:^2.2.4" checksum: 10/276bf32b9eb3cdfe1cde2b263f920feb7aad039f2e53a9920a62d0cd221e02b78c55cc2a1d52ceca4ccee557d2c36679d88dc9775549e8e33c7d6c9349617b27 languageName: node linkType: hard "@react-native-community/netinfo@npm:11.4.1": version: 11.4.1 resolution: "@react-native-community/netinfo@npm:11.4.1" peerDependencies: react-native: ">=0.59" checksum: 10/47f0d61072ca04a545784daaa44a5b1927eb788a3521dce5462184855733485c3b58c52d2a9b790b5c784e806fb342c83bc14e348cc7e55263b63d31e1862f9d languageName: node linkType: hard "@react-native-community/slider@npm:^4.5.4": version: 4.5.4 resolution: "@react-native-community/slider@npm:4.5.4" checksum: 10/4c5962a7f349020f8600d1fb385526f7e7376bc9e44ca7328bf1d415f8457ac8fb3a475a89cd88dfe3d85a60c084167b06c87ebccd51eea30c743b7024e51776 languageName: node linkType: hard "@react-native-firebase/app@npm:^21.2.0": version: 21.2.0 resolution: "@react-native-firebase/app@npm:21.2.0" dependencies: firebase: "npm:10.13.2" superstruct: "npm:^0.6.2" peerDependencies: expo: ">=47.0.0" react: "" react-native: "" peerDependenciesMeta: expo: optional: true checksum: 10/90d58d29f6925f8f4f9f8bf268665697b892c5a32a7e672cbec14fd0b8d9bf41ef1fc6d42ce030a7d019e86f09cf544187450d5c4e2be95ea63cf4bda8f686a3 languageName: node linkType: hard "@react-native-firebase/messaging@npm:^21.2.0": version: 21.2.0 resolution: "@react-native-firebase/messaging@npm:21.2.0" peerDependencies: "@react-native-firebase/app": 21.2.0 expo: ">=47.0.0" peerDependenciesMeta: expo: optional: true checksum: 10/0315bf2fd2b9d784ab7c2885adb37583f0968175ef462a40c3189a228dc73c6894864ae6935fea24854fe49badba711e58a2bd3843200be54e4286fd49e4ab4d languageName: node linkType: hard "@react-native-google-signin/google-signin@npm:^13.1.0": version: 13.1.0 resolution: "@react-native-google-signin/google-signin@npm:13.1.0" peerDependencies: expo: ">=50.0.0" react: "" react-dom: "" react-native: "*" peerDependenciesMeta: expo: optional: true react-dom: optional: true checksum: 10/f5ff8551b43e7fa530b5d2f381ac502d68e2760b474c3c21927dbf690ac6c8763adeb7d887aba92d17bbcf9a4f78679075801e8bd120e186bf5b0b488baaa01e languageName: node linkType: hard "@react-native-windows/cli@npm:0.75.4": version: 0.75.4 resolution: "@react-native-windows/cli@npm:0.75.4" dependencies: "@react-native-windows/codegen": "npm:0.75.2" "@react-native-windows/fs": "npm:0.75.0" "@react-native-windows/package-utils": "npm:0.75.0" "@react-native-windows/telemetry": "npm:0.75.1" "@xmldom/xmldom": "npm:^0.7.7" chalk: "npm:^4.1.0" cli-spinners: "npm:^2.2.0" envinfo: "npm:^7.5.0" find-up: "npm:^4.1.0" glob: "npm:^7.1.1" lodash: "npm:^4.17.15" mustache: "npm:^4.0.1" ora: "npm:^3.4.0" prompts: "npm:^2.4.1" semver: "npm:^7.3.2" shelljs: "npm:^0.8.4" username: "npm:^5.1.0" uuid: "npm:^3.3.2" xml-formatter: "npm:^2.4.0" xml-parser: "npm:^1.2.1" xpath: "npm:^0.0.27" peerDependencies: react-native: "*" checksum: 10/2c997676271c9c9fda25b167e198b8d70654ff72970f721e35ec9e51af642793f301e919c3526cd03a8152999fb3716220644b421674c9861fe87d6be2c9a736 languageName: node linkType: hard "@react-native-windows/codegen@npm:0.75.2": version: 0.75.2 resolution: "@react-native-windows/codegen@npm:0.75.2" dependencies: "@react-native-windows/fs": "npm:0.75.0" chalk: "npm:^4.1.0" globby: "npm:^11.1.0" mustache: "npm:^4.0.1" source-map-support: "npm:^0.5.19" yargs: "npm:^16.2.0" peerDependencies: react-native: "*" bin: react-native-windows-codegen: ./bin.js checksum: 10/c9beaffbeb90e880b149040a821679e24fb6274a37104767de875788525482365306f57009600bd388182777c0494b2a90ed4e2853300356961bf885d999ba29 languageName: node linkType: hard "@react-native-windows/find-repo-root@npm:0.75.0": version: 0.75.0 resolution: "@react-native-windows/find-repo-root@npm:0.75.0" dependencies: "@react-native-windows/fs": "npm:0.75.0" find-up: "npm:^4.1.0" checksum: 10/8b9feefbc64fb1a3406608fde9340eabeeb0a06c008be6e10e37384c24bab0b7e3f85d32670917af38587ea92ebf855581347cda21614ef2585946f7997ad951 languageName: node linkType: hard "@react-native-windows/fs@npm:0.75.0": version: 0.75.0 resolution: "@react-native-windows/fs@npm:0.75.0" dependencies: graceful-fs: "npm:^4.2.8" checksum: 10/38ea24ba7cbb1f1f02d8786197e7c7d0d0ea22b30c0aa7d264f186fce658d78acf18b9a1ff5e9fc7246f16c610492c3d2ce2d8403f5c79e73998243027425cc9 languageName: node linkType: hard "@react-native-windows/package-utils@npm:0.75.0": version: 0.75.0 resolution: "@react-native-windows/package-utils@npm:0.75.0" dependencies: "@react-native-windows/find-repo-root": "npm:0.75.0" "@react-native-windows/fs": "npm:0.75.0" get-monorepo-packages: "npm:^1.2.0" lodash: "npm:^4.17.15" checksum: 10/7083fb4fa176d1bb14dc3160f35b09e4f37426b1fea5cc0082303550479f54d458c878651230d2e6a55a432d012778f16dcb759114bc1088006ed5066f40666c languageName: node linkType: hard "@react-native-windows/telemetry@npm:0.75.1": version: 0.75.1 resolution: "@react-native-windows/telemetry@npm:0.75.1" dependencies: "@azure/core-auth": "npm:1.5.0" "@react-native-windows/fs": "npm:0.75.0" "@xmldom/xmldom": "npm:^0.7.7" applicationinsights: "npm:2.9.1" ci-info: "npm:^3.2.0" envinfo: "npm:^7.8.1" lodash: "npm:^4.17.21" os-locale: "npm:^5.0.0" xpath: "npm:^0.0.27" checksum: 10/540951c617a0fd016160d40edc8c51e6ea71339368323799b54f321988a57488446273e5d813742a7e37fd17553d49c56b7717722cdea00847ff899e3ae1443f languageName: node linkType: hard "@react-native/assets-registry@npm:0.74.83": version: 0.74.83 resolution: "@react-native/assets-registry@npm:0.74.83" checksum: 10/930d97c5c595d63810cda11f87125bfc11e91337a6f98cd33f72fcf1279fb016491b86232ed0523e2432d2a17f7a9f2abbe28547e70da42c6b341768a399defd languageName: node linkType: hard "@react-native/assets@npm:1.0.0": version: 1.0.0 resolution: "@react-native/assets@npm:1.0.0" checksum: 10/47389faa2233c819a1792fa209b4107e395fcc2acf953c0c08f0bac8255458f2ee6feb1912669dafab9ae25b845f908bef229952859caccd3255d028453c52fa languageName: node linkType: hard "@react-native/babel-plugin-codegen@npm:0.74.87": version: 0.74.87 resolution: "@react-native/babel-plugin-codegen@npm:0.74.87" dependencies: "@react-native/codegen": "npm:0.74.87" checksum: 10/c418a7e3d40ef1b757150b030cffc6a7ad92b1a7f4c3d3a406c559a7d54f4f7f89a6e216d18549544fbace414a0ffec5deee0631f5ad0361171fe7888aaeddfc languageName: node linkType: hard "@react-native/babel-plugin-codegen@npm:0.75.3": version: 0.75.3 resolution: "@react-native/babel-plugin-codegen@npm:0.75.3" dependencies: "@react-native/codegen": "npm:0.75.3" checksum: 10/ab67b1aa082942fe816ef93c42ade03dbd8f2e62ab66ded45b2583cb00137fd9abba9dd29aa7b91c55106093f3f77e7db9059df0019cf85fd1f6a6acdd5adc25 languageName: node linkType: hard "@react-native/babel-plugin-codegen@npm:0.75.4": version: 0.75.4 resolution: "@react-native/babel-plugin-codegen@npm:0.75.4" dependencies: "@react-native/codegen": "npm:0.75.4" checksum: 10/63e14540d918347b7a017416b8ab99aaf4974116f0ef6345e98b76a1500feb57528d448f69dda79c5a8c7de3d6e6713f3dff1dd8a39d87e1a54c73da6e9faa5f languageName: node linkType: hard "@react-native/babel-preset@npm:0.74.87": version: 0.74.87 resolution: "@react-native/babel-preset@npm:0.74.87" dependencies: "@babel/core": "npm:^7.20.0" "@babel/plugin-proposal-async-generator-functions": "npm:^7.0.0" "@babel/plugin-proposal-class-properties": "npm:^7.18.0" "@babel/plugin-proposal-export-default-from": "npm:^7.0.0" "@babel/plugin-proposal-logical-assignment-operators": "npm:^7.18.0" "@babel/plugin-proposal-nullish-coalescing-operator": "npm:^7.18.0" "@babel/plugin-proposal-numeric-separator": "npm:^7.0.0" "@babel/plugin-proposal-object-rest-spread": "npm:^7.20.0" "@babel/plugin-proposal-optional-catch-binding": "npm:^7.0.0" "@babel/plugin-proposal-optional-chaining": "npm:^7.20.0" "@babel/plugin-syntax-dynamic-import": "npm:^7.8.0" "@babel/plugin-syntax-export-default-from": "npm:^7.0.0" "@babel/plugin-syntax-flow": "npm:^7.18.0" "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.0.0" "@babel/plugin-syntax-optional-chaining": "npm:^7.0.0" "@babel/plugin-transform-arrow-functions": "npm:^7.0.0" "@babel/plugin-transform-async-to-generator": "npm:^7.20.0" "@babel/plugin-transform-block-scoping": "npm:^7.0.0" "@babel/plugin-transform-classes": "npm:^7.0.0" "@babel/plugin-transform-computed-properties": "npm:^7.0.0" "@babel/plugin-transform-destructuring": "npm:^7.20.0" "@babel/plugin-transform-flow-strip-types": "npm:^7.20.0" "@babel/plugin-transform-function-name": "npm:^7.0.0" "@babel/plugin-transform-literals": "npm:^7.0.0" "@babel/plugin-transform-modules-commonjs": "npm:^7.0.0" "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.0.0" "@babel/plugin-transform-parameters": "npm:^7.0.0" "@babel/plugin-transform-private-methods": "npm:^7.22.5" "@babel/plugin-transform-private-property-in-object": "npm:^7.22.11" "@babel/plugin-transform-react-display-name": "npm:^7.0.0" "@babel/plugin-transform-react-jsx": "npm:^7.0.0" "@babel/plugin-transform-react-jsx-self": "npm:^7.0.0" "@babel/plugin-transform-react-jsx-source": "npm:^7.0.0" "@babel/plugin-transform-runtime": "npm:^7.0.0" "@babel/plugin-transform-shorthand-properties": "npm:^7.0.0" "@babel/plugin-transform-spread": "npm:^7.0.0" "@babel/plugin-transform-sticky-regex": "npm:^7.0.0" "@babel/plugin-transform-typescript": "npm:^7.5.0" "@babel/plugin-transform-unicode-regex": "npm:^7.0.0" "@babel/template": "npm:^7.0.0" "@react-native/babel-plugin-codegen": "npm:0.74.87" babel-plugin-transform-flow-enums: "npm:^0.0.2" react-refresh: "npm:^0.14.0" peerDependencies: "@babel/core": "*" checksum: 10/f71e57ad9c7f2e456a55983bba6841bff952c75b8a3bccb53eccb698055ec0f7cf8f2c7261ca7a04a1a513dda7340c3709006c87998288afa4caf2f4896a4f39 languageName: node linkType: hard "@react-native/babel-preset@npm:0.75.3": version: 0.75.3 resolution: "@react-native/babel-preset@npm:0.75.3" dependencies: "@babel/core": "npm:^7.20.0" "@babel/plugin-proposal-export-default-from": "npm:^7.0.0" "@babel/plugin-syntax-dynamic-import": "npm:^7.8.0" "@babel/plugin-syntax-export-default-from": "npm:^7.0.0" "@babel/plugin-syntax-flow": "npm:^7.18.0" "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.0.0" "@babel/plugin-syntax-optional-chaining": "npm:^7.0.0" "@babel/plugin-transform-arrow-functions": "npm:^7.0.0" "@babel/plugin-transform-async-generator-functions": "npm:^7.24.3" "@babel/plugin-transform-async-to-generator": "npm:^7.20.0" "@babel/plugin-transform-block-scoping": "npm:^7.0.0" "@babel/plugin-transform-class-properties": "npm:^7.24.1" "@babel/plugin-transform-classes": "npm:^7.0.0" "@babel/plugin-transform-computed-properties": "npm:^7.0.0" "@babel/plugin-transform-destructuring": "npm:^7.20.0" "@babel/plugin-transform-flow-strip-types": "npm:^7.20.0" "@babel/plugin-transform-for-of": "npm:^7.0.0" "@babel/plugin-transform-function-name": "npm:^7.0.0" "@babel/plugin-transform-literals": "npm:^7.0.0" "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.1" "@babel/plugin-transform-modules-commonjs": "npm:^7.0.0" "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.0.0" "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.1" "@babel/plugin-transform-numeric-separator": "npm:^7.24.1" "@babel/plugin-transform-object-rest-spread": "npm:^7.24.5" "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.1" "@babel/plugin-transform-optional-chaining": "npm:^7.24.5" "@babel/plugin-transform-parameters": "npm:^7.0.0" "@babel/plugin-transform-private-methods": "npm:^7.22.5" "@babel/plugin-transform-private-property-in-object": "npm:^7.22.11" "@babel/plugin-transform-react-display-name": "npm:^7.0.0" "@babel/plugin-transform-react-jsx": "npm:^7.0.0" "@babel/plugin-transform-react-jsx-self": "npm:^7.0.0" "@babel/plugin-transform-react-jsx-source": "npm:^7.0.0" "@babel/plugin-transform-regenerator": "npm:^7.20.0" "@babel/plugin-transform-runtime": "npm:^7.0.0" "@babel/plugin-transform-shorthand-properties": "npm:^7.0.0" "@babel/plugin-transform-spread": "npm:^7.0.0" "@babel/plugin-transform-sticky-regex": "npm:^7.0.0" "@babel/plugin-transform-typescript": "npm:^7.5.0" "@babel/plugin-transform-unicode-regex": "npm:^7.0.0" "@babel/template": "npm:^7.0.0" "@react-native/babel-plugin-codegen": "npm:0.75.3" babel-plugin-transform-flow-enums: "npm:^0.0.2" react-refresh: "npm:^0.14.0" peerDependencies: "@babel/core": "*" checksum: 10/3932d2b7dc779e2ca3d9d6ad6d87c66bf7f0fa76ff574c00b152a39b8ea06a4e4f1b2387a0a3e68f976f98e5a8de208ace3f2593fde3e03894b7bbde050b7d8a languageName: node linkType: hard "@react-native/babel-preset@npm:0.75.4": version: 0.75.4 resolution: "@react-native/babel-preset@npm:0.75.4" dependencies: "@babel/core": "npm:^7.20.0" "@babel/plugin-proposal-export-default-from": "npm:^7.0.0" "@babel/plugin-syntax-dynamic-import": "npm:^7.8.0" "@babel/plugin-syntax-export-default-from": "npm:^7.0.0" "@babel/plugin-syntax-flow": "npm:^7.18.0" "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.0.0" "@babel/plugin-syntax-optional-chaining": "npm:^7.0.0" "@babel/plugin-transform-arrow-functions": "npm:^7.0.0" "@babel/plugin-transform-async-generator-functions": "npm:^7.24.3" "@babel/plugin-transform-async-to-generator": "npm:^7.20.0" "@babel/plugin-transform-block-scoping": "npm:^7.0.0" "@babel/plugin-transform-class-properties": "npm:^7.24.1" "@babel/plugin-transform-classes": "npm:^7.0.0" "@babel/plugin-transform-computed-properties": "npm:^7.0.0" "@babel/plugin-transform-destructuring": "npm:^7.20.0" "@babel/plugin-transform-flow-strip-types": "npm:^7.20.0" "@babel/plugin-transform-for-of": "npm:^7.0.0" "@babel/plugin-transform-function-name": "npm:^7.0.0" "@babel/plugin-transform-literals": "npm:^7.0.0" "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.1" "@babel/plugin-transform-modules-commonjs": "npm:^7.0.0" "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.0.0" "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.1" "@babel/plugin-transform-numeric-separator": "npm:^7.24.1" "@babel/plugin-transform-object-rest-spread": "npm:^7.24.5" "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.1" "@babel/plugin-transform-optional-chaining": "npm:^7.24.5" "@babel/plugin-transform-parameters": "npm:^7.0.0" "@babel/plugin-transform-private-methods": "npm:^7.22.5" "@babel/plugin-transform-private-property-in-object": "npm:^7.22.11" "@babel/plugin-transform-react-display-name": "npm:^7.0.0" "@babel/plugin-transform-react-jsx": "npm:^7.0.0" "@babel/plugin-transform-react-jsx-self": "npm:^7.0.0" "@babel/plugin-transform-react-jsx-source": "npm:^7.0.0" "@babel/plugin-transform-regenerator": "npm:^7.20.0" "@babel/plugin-transform-runtime": "npm:^7.0.0" "@babel/plugin-transform-shorthand-properties": "npm:^7.0.0" "@babel/plugin-transform-spread": "npm:^7.0.0" "@babel/plugin-transform-sticky-regex": "npm:^7.0.0" "@babel/plugin-transform-typescript": "npm:^7.5.0" "@babel/plugin-transform-unicode-regex": "npm:^7.0.0" "@babel/template": "npm:^7.0.0" "@react-native/babel-plugin-codegen": "npm:0.75.4" babel-plugin-transform-flow-enums: "npm:^0.0.2" react-refresh: "npm:^0.14.0" peerDependencies: "@babel/core": "*" checksum: 10/eb572a2b1830bd280cc1a10af959fb2104c9e360c9ff166bb865dcb93068c1c37f2dcf9d42dd8073a870406c5e222b2240e39fe8ff701091a4511537d6c9d7d1 languageName: node linkType: hard "@react-native/codegen@npm:0.74.87": version: 0.74.87 resolution: "@react-native/codegen@npm:0.74.87" dependencies: "@babel/parser": "npm:^7.20.0" glob: "npm:^7.1.1" hermes-parser: "npm:0.19.1" invariant: "npm:^2.2.4" jscodeshift: "npm:^0.14.0" mkdirp: "npm:^0.5.1" nullthrows: "npm:^1.1.1" peerDependencies: "@babel/preset-env": ^7.1.6 checksum: 10/4f962484bbde32cc7f70199c7a942d41620ef7c95f978129197fb0079d4a2371d7e385e1b30c98f84d66b2c2c9a4226a74c99b4f9fc334f1b4cba3c08e760df0 languageName: node linkType: hard "@react-native/codegen@npm:0.75.3": version: 0.75.3 resolution: "@react-native/codegen@npm:0.75.3" dependencies: "@babel/parser": "npm:^7.20.0" glob: "npm:^7.1.1" hermes-parser: "npm:0.22.0" invariant: "npm:^2.2.4" jscodeshift: "npm:^0.14.0" mkdirp: "npm:^0.5.1" nullthrows: "npm:^1.1.1" yargs: "npm:^17.6.2" peerDependencies: "@babel/preset-env": ^7.1.6 checksum: 10/a6b23e560bfe0d98594362c8ed602758eb0d00a467b45dc1863b7e585f97f7bab8c93ba711f8e41807b00b26c0776f561be7ed2d38a759bcbde375fe20ceff35 languageName: node linkType: hard "@react-native/codegen@npm:0.75.4": version: 0.75.4 resolution: "@react-native/codegen@npm:0.75.4" dependencies: "@babel/parser": "npm:^7.20.0" glob: "npm:^7.1.1" hermes-parser: "npm:0.22.0" invariant: "npm:^2.2.4" jscodeshift: "npm:^0.14.0" mkdirp: "npm:^0.5.1" nullthrows: "npm:^1.1.1" yargs: "npm:^17.6.2" peerDependencies: "@babel/preset-env": ^7.1.6 checksum: 10/7e71d79a4b27213e346101a4c54a9c752f4efb129d1e3a41630ebc3a45e3198d96949e7a143f5dfc870f0e64413a673cf1bd120b9a104106aee6fcc5a021a746 languageName: node linkType: hard "@react-native/community-cli-plugin@npm:0.75.3": version: 0.75.3 resolution: "@react-native/community-cli-plugin@npm:0.75.3" dependencies: "@react-native-community/cli-server-api": "npm:14.1.0" "@react-native-community/cli-tools": "npm:14.1.0" "@react-native/dev-middleware": "npm:0.75.3" "@react-native/metro-babel-transformer": "npm:0.75.3" chalk: "npm:^4.0.0" execa: "npm:^5.1.1" metro: "npm:^0.80.3" metro-config: "npm:^0.80.3" metro-core: "npm:^0.80.3" node-fetch: "npm:^2.2.0" readline: "npm:^1.3.0" checksum: 10/080c2eb5b543f161c0967e6de93015284a3d266df2d01876cfb8dc5ce759e0875ab47e1126cc355caef21ab602751cab31734f19eac09f19e6d964759b5ec790 languageName: node linkType: hard "@react-native/community-cli-plugin@npm:0.75.4": version: 0.75.4 resolution: "@react-native/community-cli-plugin@npm:0.75.4" dependencies: "@react-native-community/cli-server-api": "npm:14.1.0" "@react-native-community/cli-tools": "npm:14.1.0" "@react-native/dev-middleware": "npm:0.75.4" "@react-native/metro-babel-transformer": "npm:0.75.4" chalk: "npm:^4.0.0" execa: "npm:^5.1.1" metro: "npm:^0.80.3" metro-config: "npm:^0.80.3" metro-core: "npm:^0.80.3" node-fetch: "npm:^2.2.0" readline: "npm:^1.3.0" checksum: 10/3c013f4b746405648709e22f771c4a5d3b1c940e05bc8165d59a2173ab1b85064773e30e228ec8fb4e15ebbe0b7c3f1d0546e5729449ed08787846c27e9e50cb languageName: node linkType: hard "@react-native/debugger-frontend@npm:0.74.85": version: 0.74.85 resolution: "@react-native/debugger-frontend@npm:0.74.85" checksum: 10/e0db8781515c843cb2c11deacfab84ea9aa9927a9869c981356afcacbc717c1542eb140b316779e768348de3d709108b0901c4be8589d1e7bd6eb2f84db79a28 languageName: node linkType: hard "@react-native/debugger-frontend@npm:0.75.3": version: 0.75.3 resolution: "@react-native/debugger-frontend@npm:0.75.3" checksum: 10/f28265582bcd2e3c8b7dc8a43b8d210c11852bdba327fdce0ae0bf82b9b9cf66b1b77046569e0d2e2e0461508e9736a6a5e0190766d395d34c62e18abe91e12a languageName: node linkType: hard "@react-native/debugger-frontend@npm:0.75.4": version: 0.75.4 resolution: "@react-native/debugger-frontend@npm:0.75.4" checksum: 10/f5b967919d7e1463a1104de0bceb9b732007a5b6083fb44a410b5b3403e23ad1fe98638607ef7b76670a191ec8829d5bec79e125ed7dae47aa7059a3be2b81d9 languageName: node linkType: hard "@react-native/dev-middleware@npm:0.74.85": version: 0.74.85 resolution: "@react-native/dev-middleware@npm:0.74.85" dependencies: "@isaacs/ttlcache": "npm:^1.4.1" "@react-native/debugger-frontend": "npm:0.74.85" "@rnx-kit/chromium-edge-launcher": "npm:^1.0.0" chrome-launcher: "npm:^0.15.2" connect: "npm:^3.6.5" debug: "npm:^2.2.0" node-fetch: "npm:^2.2.0" nullthrows: "npm:^1.1.1" open: "npm:^7.0.3" selfsigned: "npm:^2.4.1" serve-static: "npm:^1.13.1" temp-dir: "npm:^2.0.0" ws: "npm:^6.2.2" checksum: 10/3a6b566fcce6e35054e9b957724dfed2a3e45c986640e4cca419a32c4518dac0ae7bf9440380b33a8f0b125e05ac44d4300e839d51980126aa0a81ea07a73a33 languageName: node linkType: hard "@react-native/dev-middleware@npm:0.75.3": version: 0.75.3 resolution: "@react-native/dev-middleware@npm:0.75.3" dependencies: "@isaacs/ttlcache": "npm:^1.4.1" "@react-native/debugger-frontend": "npm:0.75.3" chrome-launcher: "npm:^0.15.2" chromium-edge-launcher: "npm:^0.2.0" connect: "npm:^3.6.5" debug: "npm:^2.2.0" node-fetch: "npm:^2.2.0" nullthrows: "npm:^1.1.1" open: "npm:^7.0.3" selfsigned: "npm:^2.4.1" serve-static: "npm:^1.13.1" ws: "npm:^6.2.2" checksum: 10/6086c2ccfae3697a20842a6630b0819316f1b3cfb5a90cacdfd80044f58fcec20105f384a328a0fed3014f2ab5ebddfdce5aea5e614c9e3a2642543c53c5d713 languageName: node linkType: hard "@react-native/dev-middleware@npm:0.75.4": version: 0.75.4 resolution: "@react-native/dev-middleware@npm:0.75.4" dependencies: "@isaacs/ttlcache": "npm:^1.4.1" "@react-native/debugger-frontend": "npm:0.75.4" chrome-launcher: "npm:^0.15.2" chromium-edge-launcher: "npm:^0.2.0" connect: "npm:^3.6.5" debug: "npm:^2.2.0" node-fetch: "npm:^2.2.0" nullthrows: "npm:^1.1.1" open: "npm:^7.0.3" selfsigned: "npm:^2.4.1" serve-static: "npm:^1.13.1" ws: "npm:^6.2.2" checksum: 10/eaa7c0d6c14b4cdb15aa28fb8b3ddef53832dc19d86edbd65a0008dd2252ac8ce9f53b419ffde7633dd01b2acde8d883eef1a632865e6db681688ceb08307e21 languageName: node linkType: hard "@react-native/eslint-config@npm:0.75.4": version: 0.75.4 resolution: "@react-native/eslint-config@npm:0.75.4" dependencies: "@babel/core": "npm:^7.20.0" "@babel/eslint-parser": "npm:^7.20.0" "@react-native/eslint-plugin": "npm:0.75.4" "@typescript-eslint/eslint-plugin": "npm:^7.1.1" "@typescript-eslint/parser": "npm:^7.1.1" eslint-config-prettier: "npm:^8.5.0" eslint-plugin-eslint-comments: "npm:^3.2.0" eslint-plugin-ft-flow: "npm:^2.0.1" eslint-plugin-jest: "npm:^27.9.0" eslint-plugin-react: "npm:^7.30.1" eslint-plugin-react-hooks: "npm:^4.6.0" eslint-plugin-react-native: "npm:^4.0.0" peerDependencies: eslint: ">=8" prettier: ">=2" checksum: 10/c39d8506a6afde2bf0554c99edd85948bbf4b8482719ce9bce35bdd3ff9543189a3438207597604cc60f0a7abaee3ee020ca2b6c68f62468a542c6874c38553f languageName: node linkType: hard "@react-native/eslint-plugin@npm:0.75.4": version: 0.75.4 resolution: "@react-native/eslint-plugin@npm:0.75.4" checksum: 10/b3766a4801855615bf32667e9e21c4e6a44f636a6f218a8c22a4fedaa441b4a1fd8e4b48c10e5e49395a437259307a1ec9be3dba56cbeb3810c0a2ee3b6a5d0e languageName: node linkType: hard "@react-native/gradle-plugin@npm:0.75.4": version: 0.75.4 resolution: "@react-native/gradle-plugin@npm:0.75.4" checksum: 10/7fe648705740703186d9f90408521cdcc46af2c0a11d50e6baca39d1ea6d4d57a30701ee8902ddc5fea93aa8d1a4b6efd2651eb280f5b7555375b7c6f8562026 languageName: node linkType: hard "@react-native/js-polyfills@npm:0.75.3": version: 0.75.3 resolution: "@react-native/js-polyfills@npm:0.75.3" checksum: 10/f6e2357bff99755f445f8141317e61cf0d633b565e53c99dd3f9714f667123fbbfae37a91039de671dd15e5e4389b78fb34993ae6e95ad7231a7a7bc19c99b5c languageName: node linkType: hard "@react-native/js-polyfills@npm:0.75.4": version: 0.75.4 resolution: "@react-native/js-polyfills@npm:0.75.4" checksum: 10/603742117221a6b588f1d9650d6157f7b84d4a134a725b059149e515ebc86a9bf76a42bbc1524cfeb1e47943bd04e03e305581fa53598cdc69f345202b4485c3 languageName: node linkType: hard "@react-native/metro-babel-transformer@npm:0.75.3": version: 0.75.3 resolution: "@react-native/metro-babel-transformer@npm:0.75.3" dependencies: "@babel/core": "npm:^7.20.0" "@react-native/babel-preset": "npm:0.75.3" hermes-parser: "npm:0.22.0" nullthrows: "npm:^1.1.1" peerDependencies: "@babel/core": "*" checksum: 10/823e31e8348a8357d1f870cc85137e1fc84f326dd0047467c93131a3ea64052c680fb14d121ab920d7035f5f8ff2d25148f3f91ab4268b1d14b2469122318016 languageName: node linkType: hard "@react-native/metro-babel-transformer@npm:0.75.4": version: 0.75.4 resolution: "@react-native/metro-babel-transformer@npm:0.75.4" dependencies: "@babel/core": "npm:^7.20.0" "@react-native/babel-preset": "npm:0.75.4" hermes-parser: "npm:0.22.0" nullthrows: "npm:^1.1.1" peerDependencies: "@babel/core": "*" checksum: 10/f073ebe3047675c30dc8a18ba742060b1456526d73a3ddf87044ab226aae0eb9cc82c71cbe506074bdf919c1dfdd22a1fc66c647da1d186183a197a3ec93637f languageName: node linkType: hard "@react-native/metro-config@npm:0.75.4": version: 0.75.4 resolution: "@react-native/metro-config@npm:0.75.4" dependencies: "@react-native/js-polyfills": "npm:0.75.4" "@react-native/metro-babel-transformer": "npm:0.75.4" metro-config: "npm:^0.80.3" metro-runtime: "npm:^0.80.3" checksum: 10/49608519e45396e1c6e5301dfa7af598f3309a1b7b7be4ac1e13a27de4a4ed09c9ca3d29abf0c5f9f391ebc7aa5ee13fb1f2bed00ba063d82b1b5ca27011d029 languageName: node linkType: hard "@react-native/normalize-color@npm:*, @react-native/normalize-color@npm:^2.0.0": version: 2.1.0 resolution: "@react-native/normalize-color@npm:2.1.0" checksum: 10/a72b98538e6b7e265fb0669b8767d5f788777fb1a0ac1df7b0c82d8b3a804c8122aa7b819688c5e36fcf90b5ba93050b0070e29d3f0d70ab9530c2abd2bb9f9e languageName: node linkType: hard "@react-native/normalize-colors@npm:0.74.85": version: 0.74.85 resolution: "@react-native/normalize-colors@npm:0.74.85" checksum: 10/741a162ba6a319d0763c60af1e08159715acc945564d098cf13d14df684fd7cd496bd311155cf4b18d703aa4e362d639edff556c3a3a8b34043acdcd6601ec0d languageName: node linkType: hard "@react-native/normalize-colors@npm:0.75.3": version: 0.75.3 resolution: "@react-native/normalize-colors@npm:0.75.3" checksum: 10/a631015d453395d66c093b6bb6690c1fe4331318a846109a700cfd70ac278d271f6fdbce7e12e523bcf2b810f3d800ada387e4eb761e44b430b163bee96c5b99 languageName: node linkType: hard "@react-native/normalize-colors@npm:0.75.4": version: 0.75.4 resolution: "@react-native/normalize-colors@npm:0.75.4" checksum: 10/75b4176b4fbd8120c962ab5d5ecfb05cb6a31e0d32ac9c368e159116d06c5bff017f6938bfd1ee6a53df480eec7edea5b6124bf39e824ab2ebceb8423ca9d0ac languageName: node linkType: hard "@react-native/typescript-config@npm:0.75.4": version: 0.75.4 resolution: "@react-native/typescript-config@npm:0.75.4" checksum: 10/0c4bdffffbe990671c9e878683c1ac809bf205e35a4185e9ec77a82ecfbd4c8defdd08e5c1741e8d2b460cd29daaea8333f98090fcd01d57f2ec993122a71e98 languageName: node linkType: hard "@react-native/virtualized-lists@npm:0.75.3": version: 0.75.3 resolution: "@react-native/virtualized-lists@npm:0.75.3" dependencies: invariant: "npm:^2.2.4" nullthrows: "npm:^1.1.1" peerDependencies: "@types/react": ^18.2.6 react: "" react-native: "" peerDependenciesMeta: "@types/react": optional: true checksum: 10/c1f0ca6c7278c398dd893de3639cf5a5b992161835eee1d155050bcf33ece537fef858c09e75b802206ad35d2eb1ab22e185ee0c7269bd9525c15640c8e7b9a7 languageName: node linkType: hard "@react-native/virtualized-lists@npm:0.75.4": version: 0.75.4 resolution: "@react-native/virtualized-lists@npm:0.75.4" dependencies: invariant: "npm:^2.2.4" nullthrows: "npm:^1.1.1" peerDependencies: "@types/react": ^18.2.6 react: "" react-native: "" peerDependenciesMeta: "@types/react": optional: true checksum: 10/a84ef8bb57af38fa8b3559969ff0c1fc64a0fdb7635aefac99e5c5c80891f55204b157b12db4a89c7fae63f10880d643fdbddf53988938cca364ca1fb25866af languageName: node linkType: hard "@react-navigation/bottom-tabs@npm:^6.6.1": version: 6.6.1 resolution: "@react-navigation/bottom-tabs@npm:6.6.1" dependencies: "@react-navigation/elements": "npm:^1.3.31" color: "npm:^4.2.3" warn-once: "npm:^0.1.0" peerDependencies: "@react-navigation/native": ^6.0.0 react: "" react-native: "" react-native-safe-area-context: ">= 3.0.0" react-native-screens: ">= 3.0.0" checksum: 10/572f67c1ea26ac52a0c599064957ec6ac5cd0eee810d2e3cd5b4f4beb1016fbd5c5e8eb54c4d62836e1afe90c5ef922b31a288f41e0c442123dcfc417aa8fd7f languageName: node linkType: hard "@react-navigation/core@npm:^6.4.17": version: 6.4.17 resolution: "@react-navigation/core@npm:6.4.17" dependencies: "@react-navigation/routers": "npm:^6.1.9" escape-string-regexp: "npm:^4.0.0" nanoid: "npm:^3.1.23" query-string: "npm:^7.1.3" react-is: "npm:^16.13.0" use-latest-callback: "npm:^0.2.1" peerDependencies: react: "*" checksum: 10/481470361c7dd638d8af513ca559265829e8de5a2ff18c207d8d1c9e2d65606318061ffe369afbccfea3c6d027d38ad539ae5bae8863d9cedd8eaeafeb18426c languageName: node linkType: hard "@react-navigation/drawer@npm:^6.7.2": version: 6.7.2 resolution: "@react-navigation/drawer@npm:6.7.2" dependencies: "@react-navigation/elements": "npm:^1.3.31" color: "npm:^4.2.3" warn-once: "npm:^0.1.0" peerDependencies: "@react-navigation/native": ^6.0.0 react: "" react-native: "" react-native-gesture-handler: ">= 1.0.0" react-native-reanimated: ">= 1.0.0" react-native-safe-area-context: ">= 3.0.0" react-native-screens: ">= 3.0.0" checksum: 10/970da3f2f78458bbbf30aa2c1a2e071c22a63a4404e2f1f4f6c916b0e33c4faec0693da15a9b52d8f3e0c857008a20f57f310eddb8dd0c1958cfa1aa7fa710ae languageName: node linkType: hard "@react-navigation/elements@npm:^1.3.31": version: 1.3.31 resolution: "@react-navigation/elements@npm:1.3.31" peerDependencies: "@react-navigation/native": ^6.0.0 react: "" react-native: "" react-native-safe-area-context: ">= 3.0.0" checksum: 10/379b3657300f9ab8043979f1ecaea95dce96253903db8d6954468e39dc7cf0710cc08345fa6625071a1505b6442a395e0e20bde39c0b997fd90fea370275fc08 languageName: node linkType: hard "@react-navigation/native@npm:^6.1.18": version: 6.1.18 resolution: "@react-navigation/native@npm:6.1.18" dependencies: "@react-navigation/core": "npm:^6.4.17" escape-string-regexp: "npm:^4.0.0" fast-deep-equal: "npm:^3.1.3" nanoid: "npm:^3.1.23" peerDependencies: react: "" react-native: "" checksum: 10/1c16813e7d1d796519d0c3a9163de8be6d4af0afa74d9d88ec6729f8c0f533540250f09e39063f4a1eafb9ff71c3f3a9cc9d420ba75aa3eb7f42834f4ba0ee20 languageName: node linkType: hard "@react-navigation/routers@npm:^6.1.9": version: 6.1.9 resolution: "@react-navigation/routers@npm:6.1.9" dependencies: nanoid: "npm:^3.1.23" checksum: 10/35af21aa89074b6c4ef8e7a52701694cf393eda4bc3b237e8c908b27468a2f14c04acfaf702acfe833713730e65cac31733e411a3bdf459859e9b1c823d0c06e languageName: node linkType: hard "@react-navigation/stack@npm:^6.4.1": version: 6.4.1 resolution: "@react-navigation/stack@npm:6.4.1" dependencies: "@react-navigation/elements": "npm:^1.3.31" color: "npm:^4.2.3" warn-once: "npm:^0.1.0" peerDependencies: "@react-navigation/native": ^6.0.0 react: "" react-native: "" react-native-gesture-handler: ">= 1.0.0" react-native-safe-area-context: ">= 3.0.0" react-native-screens: ">= 3.0.0" checksum: 10/8eb7ae7cfffae1963ed4b386165f08517c42ff05a00f9c6d3d28827016810135dd96033f36916e1b58ddd73bf7d8a6f38f3afc782e5f0f84c1d722d3d296968c languageName: node linkType: hard "@rneui/base@npm:^4.0.0-rc.8": version: 4.0.0-rc.8 resolution: "@rneui/base@npm:4.0.0-rc.8" dependencies: "@types/react-native-vector-icons": "npm:^6.4.10" color: "npm:^3.2.1" deepmerge: "npm:^4.2.2" hoist-non-react-statics: "npm:^3.3.2" react-native-ratings: "npm:^8.1.0" react-native-size-matters: "npm:^0.4.0" peerDependencies: react-native-safe-area-context: ">= 3.0.0" react-native-vector-icons: ">7.0.0" checksum: 10/2a64e083ca88b0d51505a83f397f244b18e18447d49fae565eb97ec78912d30bc7ab3fa89bacfafea13822cf713c0389be841abce3eb0c83a7287a0224c09c9d languageName: node linkType: hard "@rneui/themed@npm:^4.0.0-rc.8": version: 4.0.0-rc.8 resolution: "@rneui/themed@npm:4.0.0-rc.8" peerDependencies: "@rneui/base": 4.0.0-rc.7 checksum: 10/5035d51530ddc4df5813cc84aca36a35d0a0cc9a50fed295ffc90ebc04db559d7d6ac2b837ce6e99e24c78e84e8620729dd6937b6214e1a340be9894d600ff6e languageName: node linkType: hard "@rnx-kit/chromium-edge-launcher@npm:^1.0.0": version: 1.0.0 resolution: "@rnx-kit/chromium-edge-launcher@npm:1.0.0" dependencies: "@types/node": "npm:^18.0.0" escape-string-regexp: "npm:^4.0.0" is-wsl: "npm:^2.2.0" lighthouse-logger: "npm:^1.0.0" mkdirp: "npm:^1.0.4" rimraf: "npm:^3.0.2" checksum: 10/b4f3775da4140f071075f4cfd96e47a57f3212385f9865196a4fae38f30a33a31f78b1937c83d56aea95ad0672bf200cd4d25487e32e8b4735d0b899b65e527f languageName: node linkType: hard "@segment/loosely-validate-event@npm:^2.0.0": version: 2.0.0 resolution: "@segment/loosely-validate-event@npm:2.0.0" dependencies: component-type: "npm:^1.2.1" join-component: "npm:^1.1.0" checksum: 10/4e0b097de2c564673acceb5a0688bb8cf045bab4a1ffed1be19293a6bd2859af723e0d012349ff1d51433a6aad19f729383a302c3c0a9fc831e251cd16ade5ad languageName: node linkType: hard "@sideway/address@npm:^4.1.5": version: 4.1.5 resolution: "@sideway/address@npm:4.1.5" dependencies: "@hapi/hoek": "npm:^9.0.0" checksum: 10/c4c73ac0339504f34e016d3a687118e7ddf197c1c968579572123b67b230be84caa705f0f634efdfdde7f2e07a6e0224b3c70665dc420d8bc95bf400cfc4c998 languageName: node linkType: hard "@sideway/formula@npm:^3.0.1": version: 3.0.1 resolution: "@sideway/formula@npm:3.0.1" checksum: 10/8d3ee7f80df4e5204b2cbe92a2a711ca89684965a5c9eb3b316b7051212d3522e332a65a0bb2a07cc708fcd1d0b27fcb30f43ff0bcd5089d7006c7160a89eefe languageName: node linkType: hard "@sideway/pinpoint@npm:^2.0.0": version: 2.0.0 resolution: "@sideway/pinpoint@npm:2.0.0" checksum: 10/1ed21800128b2b23280ba4c9db26c8ff6142b97a8683f17639fd7f2128aa09046461574800b30fb407afc5b663c2331795ccf3b654d4b38fa096e41a5c786bf8 languageName: node linkType: hard "@sinclair/typebox@npm:^0.27.8": version: 0.27.8 resolution: "@sinclair/typebox@npm:0.27.8" checksum: 10/297f95ff77c82c54de8c9907f186076e715ff2621c5222ba50b8d40a170661c0c5242c763cba2a4791f0f91cb1d8ffa53ea1d7294570cf8cd4694c0e383e484d languageName: node linkType: hard "@sinonjs/commons@npm:^3.0.0": version: 3.0.1 resolution: "@sinonjs/commons@npm:3.0.1" dependencies: type-detect: "npm:4.0.8" checksum: 10/a0af217ba7044426c78df52c23cedede6daf377586f3ac58857c565769358ab1f44ebf95ba04bbe38814fba6e316ca6f02870a009328294fc2c555d0f85a7117 languageName: node linkType: hard "@sinonjs/fake-timers@npm:^10.0.2": version: 10.3.0 resolution: "@sinonjs/fake-timers@npm:10.3.0" dependencies: "@sinonjs/commons": "npm:^3.0.0" checksum: 10/78155c7bd866a85df85e22028e046b8d46cf3e840f72260954f5e3ed5bd97d66c595524305a6841ffb3f681a08f6e5cef572a2cce5442a8a232dc29fb409b83e languageName: node linkType: hard "@svgr/babel-plugin-add-jsx-attribute@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-add-jsx-attribute@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/3fc8e35d16f5abe0af5efe5851f27581225ac405d6a1ca44cda0df064cddfcc29a428c48c2e4bef6cebf627c9ac2f652a096030edb02cf5a120ce28d3c234710 languageName: node linkType: hard "@svgr/babel-plugin-remove-jsx-attribute@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-remove-jsx-attribute@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/ff992893c6c4ac802713ba3a97c13be34e62e6d981c813af40daabcd676df68a72a61bd1e692bb1eda3587f1b1d700ea462222ae2153bb0f46886632d4f88d08 languageName: node linkType: hard "@svgr/babel-plugin-remove-jsx-empty-expression@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-remove-jsx-empty-expression@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/0fb691b63a21bac00da3aa2dccec50d0d5a5b347ff408d60803b84410d8af168f2656e4ba1ee1f24dab0ae4e4af77901f2928752bb0434c1f6788133ec599ec8 languageName: node linkType: hard "@svgr/babel-plugin-replace-jsx-attribute-value@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-replace-jsx-attribute-value@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/1edda65ef4f4dd8f021143c8ec276a08f6baa6f733b8e8ee2e7775597bf6b97afb47fdeefd579d6ae6c959fe2e634f55cd61d99377631212228c8cfb351b8921 languageName: node linkType: hard "@svgr/babel-plugin-svg-dynamic-title@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-svg-dynamic-title@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/876cec891488992e6a9aebb8155e2bea4ec461b4718c51de36e988e00e271c6d9d01ef6be17b9effd44b2b3d7db0b41c161a5904a46ae6f38b26b387ad7f3709 languageName: node linkType: hard "@svgr/babel-plugin-svg-em-dimensions@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-svg-em-dimensions@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/be0e2d391164428327d9ec469a52cea7d93189c6b0e2c290999e048f597d777852f701c64dca44cd45b31ed14a7f859520326e2e4ad7c3a4545d0aa235bc7e9a languageName: node linkType: hard "@svgr/babel-plugin-transform-react-native-svg@npm:8.1.0": version: 8.1.0 resolution: "@svgr/babel-plugin-transform-react-native-svg@npm:8.1.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/85b434a57572f53bd2b9f0606f253e1fcf57b4a8c554ec3f2d43ed17f50d8cae200cb3aaf1ec9d626e1456e8b135dce530ae047eb0bed6d4bf98a752d6640459 languageName: node linkType: hard "@svgr/babel-plugin-transform-svg-component@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-transform-svg-component@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/86ca139c0be0e7df05f103c5f10874387ada1434ca0286584ba9cd367c259d74bf9c86700b856449f46cf674bd6f0cf18f8f034f6d3f0e2ce5e5435c25dbff4b languageName: node linkType: hard "@svgr/babel-preset@npm:8.1.0": version: 8.1.0 resolution: "@svgr/babel-preset@npm:8.1.0" dependencies: "@svgr/babel-plugin-add-jsx-attribute": "npm:8.0.0" "@svgr/babel-plugin-remove-jsx-attribute": "npm:8.0.0" "@svgr/babel-plugin-remove-jsx-empty-expression": "npm:8.0.0" "@svgr/babel-plugin-replace-jsx-attribute-value": "npm:8.0.0" "@svgr/babel-plugin-svg-dynamic-title": "npm:8.0.0" "@svgr/babel-plugin-svg-em-dimensions": "npm:8.0.0" "@svgr/babel-plugin-transform-react-native-svg": "npm:8.1.0" "@svgr/babel-plugin-transform-svg-component": "npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/3a67930f080b8891e1e8e2595716b879c944d253112bae763dce59807ba23454d162216c8d66a0a0e3d4f38a649ecd6c387e545d1e1261dd69a68e9a3392ee08 languageName: node linkType: hard "@svgr/core@npm:^8.1.0": version: 8.1.0 resolution: "@svgr/core@npm:8.1.0" dependencies: "@babel/core": "npm:^7.21.3" "@svgr/babel-preset": "npm:8.1.0" camelcase: "npm:^6.2.0" cosmiconfig: "npm:^8.1.3" snake-case: "npm:^3.0.4" checksum: 10/bc98cd5fc349ab9dcf0c13c2279164726d45878cdac8999090765379c6e897a1b24aca641c12a3c33f578d06f7a09252fb090962a4695c753fb02b627a56bfe6 languageName: node linkType: hard "@svgr/hast-util-to-babel-ast@npm:8.0.0": version: 8.0.0 resolution: "@svgr/hast-util-to-babel-ast@npm:8.0.0" dependencies: "@babel/types": "npm:^7.21.3" entities: "npm:^4.4.0" checksum: 10/243aa9c92d66aa3f1fc82851fe1fa376808a08fcc02719fed38ebfb4e25cf3e3c1282c185300c29953d047c36acb9e3ac588d46b0af55a3b7a5186a6badec8a9 languageName: node linkType: hard "@svgr/plugin-jsx@npm:^8.1.0": version: 8.1.0 resolution: "@svgr/plugin-jsx@npm:8.1.0" dependencies: "@babel/core": "npm:^7.21.3" "@svgr/babel-preset": "npm:8.1.0" "@svgr/hast-util-to-babel-ast": "npm:8.0.0" svg-parser: "npm:^2.0.4" peerDependencies: "@svgr/core": "*" checksum: 10/0418a9780753d3544912ee2dad5d2cf8d12e1ba74df8053651b3886aeda54d5f0f7d2dece0af5e0d838332c4f139a57f0dabaa3ca1afa4d1a765efce6a7656f2 languageName: node linkType: hard "@svgr/plugin-svgo@npm:^8.1.0": version: 8.1.0 resolution: "@svgr/plugin-svgo@npm:8.1.0" dependencies: cosmiconfig: "npm:^8.1.3" deepmerge: "npm:^4.3.1" svgo: "npm:^3.0.2" peerDependencies: "@svgr/core": "*" checksum: 10/59d9d214cebaacca9ca71a561f463d8b7e5a68ca9443e4792a42d903acd52259b1790c0680bc6afecc3f00a255a6cbd7ea278a9f625bac443620ea58a590c2d0 languageName: node linkType: hard "@tootallnate/once@npm:2": version: 2.0.0 resolution: "@tootallnate/once@npm:2.0.0" checksum: 10/ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8 languageName: node linkType: hard "@trysound/sax@npm:0.2.0": version: 0.2.0 resolution: "@trysound/sax@npm:0.2.0" checksum: 10/7379713eca480ac0d9b6c7b063e06b00a7eac57092354556c81027066eb65b61ea141a69d0cc2e15d32e05b2834d4c9c2184793a5e36bbf5daf05ee5676af18c languageName: node linkType: hard "@types/babel__core@npm:^7.1.14": version: 7.20.5 resolution: "@types/babel__core@npm:7.20.5" dependencies: "@babel/parser": "npm:^7.20.7" "@babel/types": "npm:^7.20.7" "@types/babel__generator": "npm:" "@types/babel__template": "npm:" "@types/babel__traverse": "npm:*" checksum: 10/c32838d280b5ab59d62557f9e331d3831f8e547ee10b4f85cb78753d97d521270cebfc73ce501e9fb27fe71884d1ba75e18658692c2f4117543f0fc4e3e118b3 languageName: node linkType: hard "@types/babel__generator@npm:*": version: 7.6.8 resolution: "@types/babel__generator@npm:7.6.8" dependencies: "@babel/types": "npm:^7.0.0" checksum: 10/b53c215e9074c69d212402990b0ca8fa57595d09e10d94bda3130aa22b55d796e50449199867879e4ea0ee968f3a2099e009cfb21a726a53324483abbf25cd30 languageName: node linkType: hard "@types/babel__template@npm:*": version: 7.4.4 resolution: "@types/babel__template@npm:7.4.4" dependencies: "@babel/parser": "npm:^7.1.0" "@babel/types": "npm:^7.0.0" checksum: 10/d7a02d2a9b67e822694d8e6a7ddb8f2b71a1d6962dfd266554d2513eefbb205b33ca71a0d163b1caea3981ccf849211f9964d8bd0727124d18ace45aa6c9ae29 languageName: node linkType: hard "@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6": version: 7.20.6 resolution: "@types/babel__traverse@npm:7.20.6" dependencies: "@babel/types": "npm:^7.20.7" checksum: 10/63d13a3789aa1e783b87a8b03d9fb2c2c90078de7782422feff1631b8c2a25db626e63a63ac5a1465d47359201c73069dacb4b52149d17c568187625da3064ae languageName: node linkType: hard "@types/color-convert@npm:": version: 2.0.3 resolution: "@types/color-convert@npm:2.0.3" dependencies: "@types/color-name": "npm:" checksum: 10/39fe4036c0fb27e796f962eb19e4640aaa7f55cdb05cb8d4b21ef48d4a6f82fc281c06a6664ef1dfb11d9d6d2051a988a0ffa0b7a2f71b3a9418ebced12a9f38 languageName: node linkType: hard "@types/color-name@npm:*": version: 1.1.4 resolution: "@types/color-name@npm:1.1.4" checksum: 10/be275af06d32e6f09c8f1b8c15d35d2b8194736af980569b2fa572720339a19b3d5ccb63ce5950105d859d5c6226c98b8d8ecd613d626e757667037a90b9b47f languageName: node linkType: hard "@types/color@npm:^3.0.6": version: 3.0.6 resolution: "@types/color@npm:3.0.6" dependencies: "@types/color-convert": "npm:*" checksum: 10/0f16dcf4e202896d5425019c44a1f99713fca998052ab2fd836cdd38048398a0caf5b79a2efe560e41fca4b9401e8d8f6f02ed541cfea30cca3a8cb1b50b80f7 languageName: node linkType: hard "@types/d3-array@npm:^3.0.3": version: 3.2.1 resolution: "@types/d3-array@npm:3.2.1" checksum: 10/4a9ecacaa859cff79e10dcec0c79053f027a4749ce0a4badeaff7400d69a9c44eb8210b147916b6ff5309be049030e7d68a0e333294ff3fa11c44aa1af4ba458 languageName: node linkType: hard "@types/d3-color@npm:*": version: 3.1.3 resolution: "@types/d3-color@npm:3.1.3" checksum: 10/1cf0f512c09357b25d644ab01b54200be7c9b15c808333b0ccacf767fff36f17520b2fcde9dad45e1bd7ce84befad39b43da42b4fded57680fa2127006ca3ece languageName: node linkType: hard "@types/d3-ease@npm:^3.0.0": version: 3.0.2 resolution: "@types/d3-ease@npm:3.0.2" checksum: 10/d8f92a8a7a008da71f847a16227fdcb53a8938200ecdf8d831ab6b49aba91e8921769761d3bfa7e7191b28f62783bfd8b0937e66bae39d4dd7fb0b63b50d4a94 languageName: node linkType: hard "@types/d3-interpolate@npm:^3.0.1": version: 3.0.4 resolution: "@types/d3-interpolate@npm:3.0.4" dependencies: "@types/d3-color": "npm:*" checksum: 10/72a883afd52c91132598b02a8cdfced9e783c54ca7e4459f9e29d5f45d11fb33f2cabc844e42fd65ba6e28f2a931dcce1add8607d2f02ef6fb8ea5b83ae84127 languageName: node linkType: hard "@types/d3-path@npm:*": version: 3.1.0 resolution: "@types/d3-path@npm:3.1.0" checksum: 10/7348d65c9b37c7023590d4e5ef11e37f9eee62df9fa23e0758da1fbd66a1cbff40e37cbe0b85e9388ab900451e9c18a5a973469e9fd725c8c85c4a3f84647b9d languageName: node linkType: hard "@types/d3-scale@npm:^4.0.2": version: 4.0.8 resolution: "@types/d3-scale@npm:4.0.8" dependencies: "@types/d3-time": "npm:*" checksum: 10/376e4f2199ee6db70906651587a4521976920fa5eaa847a976c434e7a8171cbfeeab515cc510c5130b1f64fcf95b9750a7fd21dfc0a40fc3398641aa7dd4e7e2 languageName: node linkType: hard "@types/d3-shape@npm:^3.1.0": version: 3.1.6 resolution: "@types/d3-shape@npm:3.1.6" dependencies: "@types/d3-path": "npm:*" checksum: 10/75abf403ec5b8c11e761256aa6b3546533d61e2e12f15c82bed6b606e963dcdfb9868a2038c46099173c8830423b35ddaf14d1162f96ad9da18a2e90b0fa7d25 languageName: node linkType: hard "@types/d3-time@npm:*, @types/d3-time@npm:^3.0.0": version: 3.0.3 resolution: "@types/d3-time@npm:3.0.3" checksum: 10/4e6bf24ec422f0893747e5020592e107bb3d96764a43d5f0bff666202bd71f052c73f735b50ec66296a6efd5766ca40b6a4e8ce3bbc61217dbe9467340608c12 languageName: node linkType: hard "@types/d3-timer@npm:^3.0.0": version: 3.0.2 resolution: "@types/d3-timer@npm:3.0.2" checksum: 10/1643eebfa5f4ae3eb00b556bbc509444d88078208ec2589ddd8e4a24f230dd4cf2301e9365947e70b1bee33f63aaefab84cd907822aae812b9bc4871b98ab0e1 languageName: node linkType: hard "@types/graceful-fs@npm:^4.1.3": version: 4.1.9 resolution: "@types/graceful-fs@npm:4.1.9" dependencies: "@types/node": "npm:*" checksum: 10/79d746a8f053954bba36bd3d94a90c78de995d126289d656fb3271dd9f1229d33f678da04d10bce6be440494a5a73438e2e363e92802d16b8315b051036c5256 languageName: node linkType: hard "@types/hammerjs@npm:^2.0.36": version: 2.0.45 resolution: "@types/hammerjs@npm:2.0.45" checksum: 10/8d7f8791789853a9461f6445e625f18922a823a61042161dde5513f4a2c15ecd6361fa6f9b457ce13bfb6b518489b892fedb9e2cebb4420523cb45f1cbb4ee88 languageName: node linkType: hard "@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0, @types/istanbul-lib-coverage@npm:^2.0.1": version: 2.0.6 resolution: "@types/istanbul-lib-coverage@npm:2.0.6" checksum: 10/3feac423fd3e5449485afac999dcfcb3d44a37c830af898b689fadc65d26526460bedb889db278e0d4d815a670331796494d073a10ee6e3a6526301fe7415778 languageName: node linkType: hard "@types/istanbul-lib-report@npm:": version: 3.0.3 resolution: "@types/istanbul-lib-report@npm:3.0.3" dependencies: "@types/istanbul-lib-coverage": "npm:" checksum: 10/b91e9b60f865ff08cb35667a427b70f6c2c63e88105eadd29a112582942af47ed99c60610180aa8dcc22382fa405033f141c119c69b95db78c4c709fbadfeeb4 languageName: node linkType: hard "@types/istanbul-reports@npm:^1.1.1": version: 1.1.2 resolution: "@types/istanbul-reports@npm:1.1.2" dependencies: "@types/istanbul-lib-coverage": "npm:" "@types/istanbul-lib-report": "npm:" checksum: 10/00866e815d1e68d0a590d691506937b79d8d65ad8eab5ed34dbfee66136c7c0f4ea65327d32046d5fe469f22abea2b294987591dc66365ebc3991f7e413b2d78 languageName: node linkType: hard "@types/istanbul-reports@npm:^3.0.0": version: 3.0.4 resolution: "@types/istanbul-reports@npm:3.0.4" dependencies: "@types/istanbul-lib-report": "npm:*" checksum: 10/93eb18835770b3431f68ae9ac1ca91741ab85f7606f310a34b3586b5a34450ec038c3eed7ab19266635499594de52ff73723a54a72a75b9f7d6a956f01edee95 languageName: node linkType: hard "@types/jest@npm:^29.5.13": version: 29.5.13 resolution: "@types/jest@npm:29.5.13" dependencies: expect: "npm:^29.0.0" pretty-format: "npm:^29.0.0" checksum: 10/7d6e3e4ef4b1cab0f61270d55764709512fdfbcb1bd47c0ef44117d48490529c1f264dacf3440b9188363e99e290b80b79c529eadc3af2184116a90f6856b192 languageName: node linkType: hard "@types/json-schema@npm:^7.0.9": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" checksum: 10/1a3c3e06236e4c4aab89499c428d585527ce50c24fe8259e8b3926d3df4cfbbbcf306cfc73ddfb66cbafc973116efd15967020b0f738f63e09e64c7d260519e7 languageName: node linkType: hard "@types/jwt-encode@npm:^1.0.3": version: 1.0.3 resolution: "@types/jwt-encode@npm:1.0.3" checksum: 10/dca97c0e5bdec81d34ffbb3ec8dd1dc1faa4d4d20812f9da08dc45fedbf89df1884075784b7897e2a50f5e5b2e034797a02fb1f437dc1b93cdf1b639cb1c3457 languageName: node linkType: hard "@types/lodash@npm:^4.17.12": version: 4.17.12 resolution: "@types/lodash@npm:4.17.12" checksum: 10/3d829f97c0ea713135e6eb48e983feffb315f4cf228d03654ca8a328e3fecd03005bf7dd30bf411f4306967c610d96738d441588283a41456815f2ce1fd7044c languageName: node linkType: hard "@types/minimatch@npm:^3.0.3": version: 3.0.5 resolution: "@types/minimatch@npm:3.0.5" checksum: 10/c41d136f67231c3131cf1d4ca0b06687f4a322918a3a5adddc87ce90ed9dbd175a3610adee36b106ae68c0b92c637c35e02b58c8a56c424f71d30993ea220b92 languageName: node linkType: hard "@types/node-forge@npm:^1.3.0": version: 1.3.11 resolution: "@types/node-forge@npm:1.3.11" dependencies: "@types/node": "npm:*" checksum: 10/670c9b377c48189186ec415e3c8ed371f141ecc1a79ab71b213b20816adeffecba44dae4f8406cc0d09e6349a4db14eb8c5893f643d8e00fa19fc035cf49dee0 languageName: node linkType: hard "@types/node@npm:*": version: 20.14.2 resolution: "@types/node@npm:20.14.2" dependencies: undici-types: "npm:~5.26.4" checksum: 10/c38e47b190fa0a8bdfde24b036dddcf9401551f2fb170a90ff33625c7d6f218907e81c74e0fa6e394804a32623c24c60c50e249badc951007830f0d02c48ee0f languageName: node linkType: hard "@types/node@npm:>=12.12.47, @types/node@npm:>=13.7.0": version: 22.7.7 resolution: "@types/node@npm:22.7.7" dependencies: undici-types: "npm:~6.19.2" checksum: 10/ada6c5f850fa09621e21923d7b17c3f3b5264c3b39c0953006f4a8b0b3d4b6d77ac02e2bbf8bae1d493abf81668804624470d895dd4483875fde8382b6eb7933 languageName: node linkType: hard "@types/node@npm:^18.0.0": version: 18.19.34 resolution: "@types/node@npm:18.19.34" dependencies: undici-types: "npm:~5.26.4" checksum: 10/5c8daed0c672e824c36d31312377fc4dddf3e91006fadad719527bb2bd710d4207193c1c7034da9d2d6cbc03da89d3693c86207f751540c18a7d38802040fbd9 languageName: node linkType: hard "@types/prop-types@npm:*": version: 15.7.12 resolution: "@types/prop-types@npm:15.7.12" checksum: 10/ac16cc3d0a84431ffa5cfdf89579ad1e2269549f32ce0c769321fdd078f84db4fbe1b461ed5a1a496caf09e637c0e367d600c541435716a55b1d9713f5035dfe languageName: node linkType: hard "@types/react-dom@npm:~18.3.1": version: 18.3.1 resolution: "@types/react-dom@npm:18.3.1" dependencies: "@types/react": "npm:*" checksum: 10/33f9ba79b26641ddf00a8699c30066b7e3573ab254e97475bf08f82fab83a6d3ce8d4ebad86afeb49bb8df3374390a9ba93125cece33badc4b3e8f7eac3c84d8 languageName: node linkType: hard "@types/react-native-typewriter@npm:^0.7.4": version: 0.7.4 resolution: "@types/react-native-typewriter@npm:0.7.4" dependencies: "@types/react": "npm:" react-native: "npm:" checksum: 10/bd99907b381f16cbbe4a42cc174304d07c0d14ad36ad8ff096a98fbb3da060a94bc6e00e07c83ffb75f3c6cc0eb4562ba01e10361d16db62b3893b8f2cab17c6 languageName: node linkType: hard "@types/react-native-vector-icons@npm:^6.4.10, @types/react-native-vector-icons@npm:^6.4.6": version: 6.4.18 resolution: "@types/react-native-vector-icons@npm:6.4.18" dependencies: "@types/react": "npm:*" "@types/react-native": "npm:^0.70" checksum: 10/1ef458cb5e7a37f41eb400e3153940b1b152e4df76a7c06c7a47c712dbfe46e14b9999f04dde1bd074f338f850e161c6c925174ddea33386b74f8112c940065b languageName: node linkType: hard "@types/react-native-video@npm:^5.0.20": version: 5.0.20 resolution: "@types/react-native-video@npm:5.0.20" dependencies: "@types/react": "npm:" react-native: "npm:" checksum: 10/4923c81c2896359d223f2f75a808670aa75ec1534c5cd4320fa809653a0963384d4d8063d1a00bdd619aef411644c12d35e25065cb2d6f2b4c7fc8bfee25aa3b languageName: node linkType: hard "@types/react-native@npm:^0.70": version: 0.70.19 resolution: "@types/react-native@npm:0.70.19" dependencies: "@types/react": "npm:*" checksum: 10/43b280990f7a3c45cd707098d686ddbf353270cc463c9bb4306a5f675e3fe84010a32e344274b00b8a11629d73a8df1a1075af267d182a0f7094599616ae622c languageName: node linkType: hard "@types/react@npm:": version: 18.3.3 resolution: "@types/react@npm:18.3.3" dependencies: "@types/prop-types": "npm:" csstype: "npm:^3.0.2" checksum: 10/68e203b7f1f91d6cf21f33fc7af9d6d228035a26c83f514981e54aa3da695d0ec6af10c277c6336de1dd76c4adbe9563f3a21f80c4462000f41e5f370b46e96c languageName: node linkType: hard "@types/react@npm:~18.3.11": version: 18.3.11 resolution: "@types/react@npm:18.3.11" dependencies: "@types/prop-types": "npm:*" csstype: "npm:^3.0.2" checksum: 10/a36f0707fdfe9fe19cbe5892bcdab0f042ecadb501ea4e1c39519943f3e74cffbd31e892d3860f5c87cf33f5f223552b246a552bed0087b95954f2cb39d5cf65 languageName: node linkType: hard "@types/semver@npm:^7.3.12": version: 7.5.8 resolution: "@types/semver@npm:7.5.8" checksum: 10/3496808818ddb36deabfe4974fd343a78101fa242c4690044ccdc3b95dcf8785b494f5d628f2f47f38a702f8db9c53c67f47d7818f2be1b79f2efb09692e1178 languageName: node linkType: hard "@types/shimmer@npm:^1.0.2": version: 1.0.5 resolution: "@types/shimmer@npm:1.0.5" checksum: 10/f6b0c950dc9187464c5393faf4f4e2b7b44b16665bb49196da28affecceb4fdcd9749af15cbe50f1a2de39f3a84b7523e73445f117f6b48bdbd61b892568364a languageName: node linkType: hard "@types/stack-utils@npm:^2.0.0": version: 2.0.3 resolution: "@types/stack-utils@npm:2.0.3" checksum: 10/72576cc1522090fe497337c2b99d9838e320659ac57fa5560fcbdcbafcf5d0216c6b3a0a8a4ee4fdb3b1f5e3420aa4f6223ab57b82fef3578bec3206425c6cf5 languageName: node linkType: hard "@types/validator@npm:^13.7.10": version: 13.11.10 resolution: "@types/validator@npm:13.11.10" checksum: 10/5f074f7d0bb92ba035ebac28692599755d7285c6961aff2092e6c13e11b6a3f50101e602197bc15a3b1eb7f40d5d5efc485790e79c58e30042c7f915e74c85c5 languageName: node linkType: hard "@types/yargs-parser@npm:*": version: 21.0.3 resolution: "@types/yargs-parser@npm:21.0.3" checksum: 10/a794eb750e8ebc6273a51b12a0002de41343ffe46befef460bdbb57262d187fdf608bc6615b7b11c462c63c3ceb70abe2564c8dd8ee0f7628f38a314f74a9b9b languageName: node linkType: hard "@types/yargs@npm:^13.0.0": version: 13.0.12 resolution: "@types/yargs@npm:13.0.12" dependencies: "@types/yargs-parser": "npm:*" checksum: 10/d970b79cf16100328fffb615a4d1617332384ca6966cc15bf6ad11feef44e598045d2247eb94e49159ef1211842911e9c3e92a34a44bd0f671d1e01af8103e02 languageName: node linkType: hard "@types/yargs@npm:^15.0.0": version: 15.0.19 resolution: "@types/yargs@npm:15.0.19" dependencies: "@types/yargs-parser": "npm:*" checksum: 10/c3abcd3472c32c02702f365dc1702a0728562deb8a8c61f3ce2161958d756cc033f7d78567565b4eba62f5869e9b5eac93d4c1dcb2c97af17aafda8f9f892b4b languageName: node linkType: hard "@types/yargs@npm:^17.0.8": version: 17.0.32 resolution: "@types/yargs@npm:17.0.32" dependencies: "@types/yargs-parser": "npm:*" checksum: 10/1e2b2673847011ce43607df690d392f137d95a2d6ea85aa319403eadda2ef4277365efd4982354d8843f2611ef3846c88599660aaeb537fa9ccddae83c2a89de languageName: node linkType: hard "@typescript-eslint/eslint-plugin@npm:^7.1.1, @typescript-eslint/eslint-plugin@npm:^7.18.0": version: 7.18.0 resolution: "@typescript-eslint/eslint-plugin@npm:7.18.0" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" "@typescript-eslint/scope-manager": "npm:7.18.0" "@typescript-eslint/type-utils": "npm:7.18.0" "@typescript-eslint/utils": "npm:7.18.0" "@typescript-eslint/visitor-keys": "npm:7.18.0" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^1.3.0" peerDependencies: "@typescript-eslint/parser": ^7.0.0 eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true checksum: 10/6ee4c61f145dc05f0a567b8ac01b5399ef9c75f58bc6e9a3ffca8927b15e2be2d4c3fd32a2c1a7041cc0848fdeadac30d9cb0d3bcd3835d301847a88ffd19c4d languageName: node linkType: hard "@typescript-eslint/parser@npm:^7.1.1, @typescript-eslint/parser@npm:^7.18.0": version: 7.18.0 resolution: "@typescript-eslint/parser@npm:7.18.0" dependencies: "@typescript-eslint/scope-manager": "npm:7.18.0" "@typescript-eslint/types": "npm:7.18.0" "@typescript-eslint/typescript-estree": "npm:7.18.0" "@typescript-eslint/visitor-keys": "npm:7.18.0" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true checksum: 10/36b00e192a96180220ba100fcce3c777fc3e61a6edbdead4e6e75a744d9f0cbe3fabb5f1c94a31cce6b28a4e4d5de148098eec01296026c3c8e16f7f0067cb1e languageName: node linkType: hard "@typescript-eslint/scope-manager@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/scope-manager@npm:5.62.0" dependencies: "@typescript-eslint/types": "npm:5.62.0" "@typescript-eslint/visitor-keys": "npm:5.62.0" checksum: 10/e827770baa202223bc0387e2fd24f630690809e460435b7dc9af336c77322290a770d62bd5284260fa881c86074d6a9fd6c97b07382520b115f6786b8ed499da languageName: node linkType: hard "@typescript-eslint/scope-manager@npm:7.18.0": version: 7.18.0 resolution: "@typescript-eslint/scope-manager@npm:7.18.0" dependencies: "@typescript-eslint/types": "npm:7.18.0" "@typescript-eslint/visitor-keys": "npm:7.18.0" checksum: 10/9eb2ae5d69d9f723e706c16b2b97744fc016996a5473bed596035ac4d12429b3d24e7340a8235d704efa57f8f52e1b3b37925ff7c2e3384859d28b23a99b8bcc languageName: node linkType: hard "@typescript-eslint/type-utils@npm:7.18.0": version: 7.18.0 resolution: "@typescript-eslint/type-utils@npm:7.18.0" dependencies: "@typescript-eslint/typescript-estree": "npm:7.18.0" "@typescript-eslint/utils": "npm:7.18.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.3.0" peerDependencies: eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true checksum: 10/bcc7958a4ecdddad8c92e17265175773e7dddf416a654c1a391e69cb16e43960b39d37b6ffa349941bf3635e050f0ca7cd8f56ec9dd774168f2bbe7afedc9676 languageName: node linkType: hard "@typescript-eslint/types@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/types@npm:5.62.0" checksum: 10/24e8443177be84823242d6729d56af2c4b47bfc664dd411a1d730506abf2150d6c31bdefbbc6d97c8f91043e3a50e0c698239dcb145b79bb6b0c34469aaf6c45 languageName: node linkType: hard "@typescript-eslint/types@npm:7.18.0": version: 7.18.0 resolution: "@typescript-eslint/types@npm:7.18.0" checksum: 10/0e30c73a3cc3c67dd06360a5a12fd12cee831e4092750eec3d6c031bdc4feafcb0ab1d882910a73e66b451a4f6e1dd015e9e2c4d45bf6bf716a474e5d123ddf0 languageName: node linkType: hard "@typescript-eslint/typescript-estree@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" dependencies: "@typescript-eslint/types": "npm:5.62.0" "@typescript-eslint/visitor-keys": "npm:5.62.0" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" semver: "npm:^7.3.7" tsutils: "npm:^3.21.0" peerDependenciesMeta: typescript: optional: true checksum: 10/06c975eb5f44b43bd19fadc2e1023c50cf87038fe4c0dd989d4331c67b3ff509b17fa60a3251896668ab4d7322bdc56162a9926971218d2e1a1874d2bef9a52e languageName: node linkType: hard "@typescript-eslint/typescript-estree@npm:7.18.0": version: 7.18.0 resolution: "@typescript-eslint/typescript-estree@npm:7.18.0" dependencies: "@typescript-eslint/types": "npm:7.18.0" "@typescript-eslint/visitor-keys": "npm:7.18.0" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.4" semver: "npm:^7.6.0" ts-api-utils: "npm:^1.3.0" peerDependenciesMeta: typescript: optional: true checksum: 10/b01e66235a91aa4439d02081d4a5f8b4a7cf9cb24f26b334812f657e3c603493e5f41e5c1e89cf4efae7d64509fa1f73affc16afc5e15cb7f83f724577c82036 languageName: node linkType: hard "@typescript-eslint/utils@npm:7.18.0": version: 7.18.0 resolution: "@typescript-eslint/utils@npm:7.18.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" "@typescript-eslint/scope-manager": "npm:7.18.0" "@typescript-eslint/types": "npm:7.18.0" "@typescript-eslint/typescript-estree": "npm:7.18.0" peerDependencies: eslint: ^8.56.0 checksum: 10/f43fedb4f4d2e3836bdf137889449063a55c0ece74fdb283929cd376197b992313be8ef4df920c1c801b5c3076b92964c84c6c3b9b749d263b648d0011f5926e languageName: node linkType: hard "@typescript-eslint/utils@npm:^5.10.0": version: 5.62.0 resolution: "@typescript-eslint/utils@npm:5.62.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" "@types/json-schema": "npm:^7.0.9" "@types/semver": "npm:^7.3.12" "@typescript-eslint/scope-manager": "npm:5.62.0" "@typescript-eslint/types": "npm:5.62.0" "@typescript-eslint/typescript-estree": "npm:5.62.0" eslint-scope: "npm:^5.1.1" semver: "npm:^7.3.7" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 checksum: 10/15ef13e43998a082b15f85db979f8d3ceb1f9ce4467b8016c267b1738d5e7cdb12aa90faf4b4e6dd6486c236cf9d33c463200465cf25ff997dbc0f12358550a1 languageName: node linkType: hard "@typescript-eslint/visitor-keys@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" dependencies: "@typescript-eslint/types": "npm:5.62.0" eslint-visitor-keys: "npm:^3.3.0" checksum: 10/dc613ab7569df9bbe0b2ca677635eb91839dfb2ca2c6fa47870a5da4f160db0b436f7ec0764362e756d4164e9445d49d5eb1ff0b87f4c058946ae9d8c92eb388 languageName: node linkType: hard "@typescript-eslint/visitor-keys@npm:7.18.0": version: 7.18.0 resolution: "@typescript-eslint/visitor-keys@npm:7.18.0" dependencies: "@typescript-eslint/types": "npm:7.18.0" eslint-visitor-keys: "npm:^3.4.3" checksum: 10/b7cfe6fdeae86c507357ac6b2357813c64fb2fbf1aaf844393ba82f73a16e2599b41981b34200d9fc7765d70bc3a8181d76b503051e53f04bcb7c9afef637eab languageName: node linkType: hard "@ungap/structured-clone@npm:^1.2.0": version: 1.2.0 resolution: "@ungap/structured-clone@npm:1.2.0" checksum: 10/c6fe89a505e513a7592e1438280db1c075764793a2397877ff1351721fe8792a966a5359769e30242b3cd023f2efb9e63ca2ca88019d73b564488cc20e3eab12 languageName: node linkType: hard "@urql/core@npm:2.3.6": version: 2.3.6 resolution: "@urql/core@npm:2.3.6" dependencies: "@graphql-typed-document-node/core": "npm:^3.1.0" wonka: "npm:^4.0.14" peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 checksum: 10/83b239f5559f380fff8f88ddeac15977443d97b83c47b2066315194e37a5b27b1b1f777a588f8ecb3bb823f522755a20337d3437119721328fd53f08fa55b361 languageName: node linkType: hard "@urql/core@npm:>=2.3.1": version: 5.0.3 resolution: "@urql/core@npm:5.0.3" dependencies: "@0no-co/graphql.web": "npm:^1.0.5" wonka: "npm:^6.3.2" checksum: 10/f6cd3db1a9272aba1cf09397d9fc8f81b64ad155d0a63c42bcfe0d06fd733407534ca9dca786be5568b086544c8f80d799ecdffc693123cef03fc12ab961ce27 languageName: node linkType: hard "@urql/exchange-retry@npm:0.3.0": version: 0.3.0 resolution: "@urql/exchange-retry@npm:0.3.0" dependencies: "@urql/core": "npm:>=2.3.1" wonka: "npm:^4.0.14" peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 checksum: 10/db9d611a5c66afa0b9953d2d622ad19b191da631841a1a3231d1a837ff1bd756e26cb87569e9f124d5503866f36c77f2bc33fa2f86fba20b1b61bd476be9261b languageName: node linkType: hard "@xmldom/xmldom@npm:^0.7.7, @xmldom/xmldom@npm:~0.7.7": version: 0.7.13 resolution: "@xmldom/xmldom@npm:0.7.13" checksum: 10/a359d15fe3c24fe85a1e1b3bc4cfd23d4f014fb8aa382aa445cccaac545e42958b75e386dd4853c76d82036401400b8d5e33cbcbfb6af7cdadeba769eae6122a languageName: node linkType: hard "@xmldom/xmldom@npm:^0.8.8": version: 0.8.10 resolution: "@xmldom/xmldom@npm:0.8.10" checksum: 10/62400bc5e0e75b90650e33a5ceeb8d94829dd11f9b260962b71a784cd014ddccec3e603fe788af9c1e839fa4648d8c521ebd80d8b752878d3a40edabc9ce7ccf languageName: node linkType: hard "@yarnpkg/lockfile@npm:^1.1.0": version: 1.1.0 resolution: "@yarnpkg/lockfile@npm:1.1.0" checksum: 10/cd19e1114aaf10a05126aeea8833ef4ca8af8a46e88e12884f8359d19333fd19711036dbc2698dbe937f81f037070cf9a8da45c2e8c6ca19cafd7d15659094ed languageName: node linkType: hard "abbrev@npm:^2.0.0": version: 2.0.0 resolution: "abbrev@npm:2.0.0" checksum: 10/ca0a54e35bea4ece0ecb68a47b312e1a9a6f772408d5bcb9051230aaa94b0460671c5b5c9cb3240eb5b7bc94c52476550eb221f65a0bbd0145bdc9f3113a6707 languageName: node linkType: hard "abort-controller@npm:^3.0.0": version: 3.0.0 resolution: "abort-controller@npm:3.0.0" dependencies: event-target-shim: "npm:^5.0.0" checksum: 10/ed84af329f1828327798229578b4fe03a4dd2596ba304083ebd2252666bdc1d7647d66d0b18704477e1f8aa315f055944aa6e859afebd341f12d0a53c37b4b40 languageName: node linkType: hard "accepts@npm:^1.3.7, accepts@npm:^1.3.8, accepts@npm:~1.3.5, accepts@npm:~1.3.7": version: 1.3.8 resolution: "accepts@npm:1.3.8" dependencies: mime-types: "npm:~2.1.34" negotiator: "npm:0.6.3" checksum: 10/67eaaa90e2917c58418e7a9b89392002d2b1ccd69bcca4799135d0c632f3b082f23f4ae4ddeedbced5aa59bcc7bdf4699c69ebed4593696c922462b7bc5744d6 languageName: node linkType: hard "acorn-import-assertions@npm:^1.9.0": version: 1.9.0 resolution: "acorn-import-assertions@npm:1.9.0" peerDependencies: acorn: ^8 checksum: 10/af8dd58f6b0c6a43e85849744534b99f2133835c6fcdabda9eea27d0a0da625a0d323c4793ba7cb25cf4507609d0f747c210ccc2fc9b5866de04b0e59c9c5617 languageName: node linkType: hard "acorn-jsx@npm:^5.3.2": version: 5.3.2 resolution: "acorn-jsx@npm:5.3.2" peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 checksum: 10/d4371eaef7995530b5b5ca4183ff6f062ca17901a6d3f673c9ac011b01ede37e7a1f7f61f8f5cfe709e88054757bb8f3277dc4061087cdf4f2a1f90ccbcdb977 languageName: node linkType: hard "acorn@npm:8.8.2": version: 8.8.2 resolution: "acorn@npm:8.8.2" bin: acorn: ./bin/acorn checksum: 10/b4e77d56d24d3e11a45d9ac8ae661b4e14a4af04ae33edbf1e6bf910887e5bb352cc60e9ea06a0944880e6b658f58c095d3b54e88e1921cb9319608b51085dd7 languageName: node linkType: hard "acorn@npm:^8.8.2, acorn@npm:^8.9.0": version: 8.11.3 resolution: "acorn@npm:8.11.3" bin: acorn: ./bin/acorn checksum: 10/b688e7e3c64d9bfb17b596e1b35e4da9d50553713b3b3630cf5690f2b023a84eac90c56851e6912b483fe60e8b4ea28b254c07e92f17ef83d72d78745a8352dd languageName: node linkType: hard "agent-base@npm:6": version: 6.0.2 resolution: "agent-base@npm:6.0.2" dependencies: debug: "npm:4" checksum: 10/21fb903e0917e5cb16591b4d0ef6a028a54b83ac30cd1fca58dece3d4e0990512a8723f9f83130d88a41e2af8b1f7be1386fda3ea2d181bb1a62155e75e95e23 languageName: node linkType: hard "agent-base@npm:^7.0.2, agent-base@npm:^7.1.0, agent-base@npm:^7.1.1": version: 7.1.1 resolution: "agent-base@npm:7.1.1" dependencies: debug: "npm:^4.3.4" checksum: 10/c478fec8f79953f118704d007a38f2a185458853f5c45579b9669372bd0e12602e88dc2ad0233077831504f7cd6fcc8251c383375bba5eaaf563b102938bda26 languageName: node linkType: hard "aggregate-error@npm:^3.0.0": version: 3.1.0 resolution: "aggregate-error@npm:3.1.0" dependencies: clean-stack: "npm:^2.0.0" indent-string: "npm:^4.0.0" checksum: 10/1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 languageName: node linkType: hard "ajv@npm:^6.12.4": version: 6.12.6 resolution: "ajv@npm:6.12.6" dependencies: fast-deep-equal: "npm:^3.1.1" fast-json-stable-stringify: "npm:^2.0.0" json-schema-traverse: "npm:^0.4.1" uri-js: "npm:^4.2.2" checksum: 10/48d6ad21138d12eb4d16d878d630079a2bda25a04e745c07846a4ad768319533031e28872a9b3c5790fa1ec41aabdf2abed30a56e5a03ebc2cf92184b8ee306c languageName: node linkType: hard "anser@npm:^1.4.9": version: 1.4.10 resolution: "anser@npm:1.4.10" checksum: 10/a5a6658ccb2ca8271b25cfb29f53ff7cd042800d8e3daa472cdbde0da99392547baaac6be33cbfe41eb76c48a2e4f1fc6647a8636b33f663ac7dd1ba72e0a199 languageName: node linkType: hard "ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.2": version: 4.3.2 resolution: "ansi-escapes@npm:4.3.2" dependencies: type-fest: "npm:^0.21.3" checksum: 10/8661034456193ffeda0c15c8c564a9636b0c04094b7f78bd01517929c17c504090a60f7a75f949f5af91289c264d3e1001d91492c1bd58efc8e100500ce04de2 languageName: node linkType: hard "ansi-escapes@npm:^5.0.0": version: 5.0.0 resolution: "ansi-escapes@npm:5.0.0" dependencies: type-fest: "npm:^1.0.2" checksum: 10/cbfb95f9f6d8a1ffc89f50fcda3313effae2d9ac2f357f89f626815b4d95fdc3f10f74e0887614ff850d01f805b7505eb1e7ebfdd26144bbfc26c5de08e19195 languageName: node linkType: hard "ansi-fragments@npm:^0.2.1": version: 0.2.1 resolution: "ansi-fragments@npm:0.2.1" dependencies: colorette: "npm:^1.0.7" slice-ansi: "npm:^2.0.0" strip-ansi: "npm:^5.0.0" checksum: 10/2380829941c8884290f65ed0af9ed2e0449efc24d8d15d0bc451f0836f14a70076ddd1322dc2c60372874c4598228ca707edf578ed353f8054cfbf872a7ecac2 languageName: node linkType: hard "ansi-regex@npm:^4.0.0, ansi-regex@npm:^4.1.0": version: 4.1.1 resolution: "ansi-regex@npm:4.1.1" checksum: 10/b1a6ee44cb6ecdabaa770b2ed500542714d4395d71c7e5c25baa631f680fb2ad322eb9ba697548d498a6fd366949fc8b5bfcf48d49a32803611f648005b01888 languageName: node linkType: hard "ansi-regex@npm:^5.0.0, ansi-regex@npm:^5.0.1": version: 5.0.1 resolution: "ansi-regex@npm:5.0.1" checksum: 10/2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b languageName: node linkType: hard "ansi-regex@npm:^6.0.1": version: 6.0.1 resolution: "ansi-regex@npm:6.0.1" checksum: 10/1ff8b7667cded1de4fa2c9ae283e979fc87036864317da86a2e546725f96406746411d0d85e87a2d12fa5abd715d90006de7fa4fa0477c92321ad3b4c7d4e169 languageName: node linkType: hard "ansi-styles@npm:^3.2.0, ansi-styles@npm:^3.2.1": version: 3.2.1 resolution: "ansi-styles@npm:3.2.1" dependencies: color-convert: "npm:^1.9.0" checksum: 10/d85ade01c10e5dd77b6c89f34ed7531da5830d2cb5882c645f330079975b716438cd7ebb81d0d6e6b4f9c577f19ae41ab55f07f19786b02f9dfd9e0377395665 languageName: node linkType: hard "ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": version: 4.3.0 resolution: "ansi-styles@npm:4.3.0" dependencies: color-convert: "npm:^2.0.1" checksum: 10/b4494dfbfc7e4591b4711a396bd27e540f8153914123dccb4cdbbcb514015ada63a3809f362b9d8d4f6b17a706f1d7bea3c6f974b15fa5ae76b5b502070889ff languageName: node linkType: hard "ansi-styles@npm:^5.0.0": version: 5.2.0 resolution: "ansi-styles@npm:5.2.0" checksum: 10/d7f4e97ce0623aea6bc0d90dcd28881ee04cba06c570b97fd3391bd7a268eedfd9d5e2dd4fdcbdd82b8105df5faf6f24aaedc08eaf3da898e702db5948f63469 languageName: node linkType: hard "ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0": version: 6.2.1 resolution: "ansi-styles@npm:6.2.1" checksum: 10/70fdf883b704d17a5dfc9cde206e698c16bcd74e7f196ab821511651aee4f9f76c9514bdfa6ca3a27b5e49138b89cb222a28caf3afe4567570139577f991df32 languageName: node linkType: hard "any-promise@npm:^1.0.0": version: 1.3.0 resolution: "any-promise@npm:1.3.0" checksum: 10/6737469ba353b5becf29e4dc3680736b9caa06d300bda6548812a8fee63ae7d336d756f88572fa6b5219aed36698d808fa55f62af3e7e6845c7a1dc77d240edb languageName: node linkType: hard "anymatch@npm:^3.0.3": version: 3.1.3 resolution: "anymatch@npm:3.1.3" dependencies: normalize-path: "npm:^3.0.0" picomatch: "npm:^2.0.4" checksum: 10/3e044fd6d1d26545f235a9fe4d7a534e2029d8e59fa7fd9f2a6eb21230f6b5380ea1eaf55136e60cbf8e613544b3b766e7a6fa2102e2a3a117505466e3025dc2 languageName: node linkType: hard "appdirsjs@npm:^1.2.4": version: 1.2.7 resolution: "appdirsjs@npm:1.2.7" checksum: 10/8f6cb9cc18de2b38e2f5efddf764c5f0331aba4168ee28cb7370b98e1dc69316352b9a936acf4d628b4dcc510d77b1645ed4b68ab2231e302f835d35e11348d3 languageName: node linkType: hard "application-config-path@npm:^0.1.0": version: 0.1.1 resolution: "application-config-path@npm:0.1.1" checksum: 10/380f4c49585511813526632c8366318f52941526dbb284a887e5af328caa76424a056795ab18f03f5009197f2dea0ef01a8a9812d85724f26d2f5cf9bf9bf1f9 languageName: node linkType: hard "applicationinsights@npm:2.9.1": version: 2.9.1 resolution: "applicationinsights@npm:2.9.1" dependencies: "@azure/core-auth": "npm:^1.5.0" "@azure/core-rest-pipeline": "npm:1.10.1" "@azure/core-util": "npm:1.2.0" "@azure/opentelemetry-instrumentation-azure-sdk": "npm:^1.0.0-beta.5" "@microsoft/applicationinsights-web-snippet": "npm:^1.0.1" "@opentelemetry/api": "npm:^1.4.1" "@opentelemetry/core": "npm:^1.15.2" "@opentelemetry/sdk-trace-base": "npm:^1.15.2" "@opentelemetry/semantic-conventions": "npm:^1.15.2" cls-hooked: "npm:^4.2.2" continuation-local-storage: "npm:^3.2.1" diagnostic-channel: "npm:1.1.1" diagnostic-channel-publishers: "npm:1.0.7" peerDependencies: applicationinsights-native-metrics: "*" peerDependenciesMeta: applicationinsights-native-metrics: optional: true checksum: 10/e288d3878b99d40956d78acf03a20809e0c5a24873ec648514d77a9d0443c8305360e7a9b0479fe4f388ddf627f1ce4a1aff7b2d5c1b544adc8b21b1f89dca0c languageName: node linkType: hard "arg@npm:5.0.2": version: 5.0.2 resolution: "arg@npm:5.0.2" checksum: 10/92fe7de222054a060fd2329e92e867410b3ea260328147ee3fb7855f78efae005f4087e698d4e688a856893c56bb09951588c40f2c901cf6996cd8cd7bcfef2c languageName: node linkType: hard "argparse@npm:^1.0.7": version: 1.0.10 resolution: "argparse@npm:1.0.10" dependencies: sprintf-js: "npm:~1.0.2" checksum: 10/c6a621343a553ff3779390bb5ee9c2263d6643ebcd7843227bdde6cc7adbed796eb5540ca98db19e3fd7b4714e1faa51551f8849b268bb62df27ddb15cbcd91e languageName: node linkType: hard "argparse@npm:^2.0.1": version: 2.0.1 resolution: "argparse@npm:2.0.1" checksum: 10/18640244e641a417ec75a9bd38b0b2b6b95af5199aa241b131d4b2fb206f334d7ecc600bd194861610a5579084978bfcbb02baa399dbe442d56d0ae5e60dbaef languageName: node linkType: hard "array-buffer-byte-length@npm:^1.0.1": version: 1.0.1 resolution: "array-buffer-byte-length@npm:1.0.1" dependencies: call-bind: "npm:^1.0.5" is-array-buffer: "npm:^3.0.4" checksum: 10/53524e08f40867f6a9f35318fafe467c32e45e9c682ba67b11943e167344d2febc0f6977a17e699b05699e805c3e8f073d876f8bbf1b559ed494ad2cd0fae09e languageName: node linkType: hard "array-differ@npm:^3.0.0": version: 3.0.0 resolution: "array-differ@npm:3.0.0" checksum: 10/117edd9df5c1530bd116c6e8eea891d4bd02850fd89b1b36e532b6540e47ca620a373b81feca1c62d1395d9ae601516ba538abe5e8172d41091da2c546b05fb7 languageName: node linkType: hard "array-includes@npm:^3.1.6, array-includes@npm:^3.1.8": version: 3.1.8 resolution: "array-includes@npm:3.1.8" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.2" es-object-atoms: "npm:^1.0.0" get-intrinsic: "npm:^1.2.4" is-string: "npm:^1.0.7" checksum: 10/290b206c9451f181fb2b1f79a3bf1c0b66bb259791290ffbada760c79b284eef6f5ae2aeb4bcff450ebc9690edd25732c4c73a3c2b340fcc0f4563aed83bf488 languageName: node linkType: hard "array-union@npm:^1.0.1": version: 1.0.2 resolution: "array-union@npm:1.0.2" dependencies: array-uniq: "npm:^1.0.1" checksum: 10/82cec6421b6e6766556c484835a6d476a873f1b71cace5ab2b4f1b15b1e3162dc4da0d16f7a2b04d4aec18146c6638fe8f661340b31ba8e469fd811a1b45dc8d languageName: node linkType: hard "array-union@npm:^2.1.0": version: 2.1.0 resolution: "array-union@npm:2.1.0" checksum: 10/5bee12395cba82da674931df6d0fea23c4aa4660cb3b338ced9f828782a65caa232573e6bf3968f23e0c5eb301764a382cef2f128b170a9dc59de0e36c39f98d languageName: node linkType: hard "array-uniq@npm:^1.0.1": version: 1.0.3 resolution: "array-uniq@npm:1.0.3" checksum: 10/1625f06b093d8bf279b81adfec6e72951c0857d65b5e3f65f053fffe9f9dd61c2fc52cff57e38a4700817e7e3f01a4faa433d505ea9e33cdae4514c334e0bf9e languageName: node linkType: hard "array.prototype.findlast@npm:^1.2.5": version: 1.2.5 resolution: "array.prototype.findlast@npm:1.2.5" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.2" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.0.0" es-shim-unscopables: "npm:^1.0.2" checksum: 10/7dffcc665aa965718ad6de7e17ac50df0c5e38798c0a5bf9340cf24feb8594df6ec6f3fcbe714c1577728a1b18b5704b15669474b27bceeca91ef06ce2a23c31 languageName: node linkType: hard "array.prototype.flat@npm:^1.3.1": version: 1.3.2 resolution: "array.prototype.flat@npm:1.3.2" dependencies: call-bind: "npm:^1.0.2" define-properties: "npm:^1.2.0" es-abstract: "npm:^1.22.1" es-shim-unscopables: "npm:^1.0.0" checksum: 10/d9d2f6f27584de92ec7995bc931103e6de722cd2498bdbfc4cba814fc3e52f056050a93be883018811f7c0a35875f5056584a0e940603a5e5934f0279896aebe languageName: node linkType: hard "array.prototype.flatmap@npm:^1.3.2": version: 1.3.2 resolution: "array.prototype.flatmap@npm:1.3.2" dependencies: call-bind: "npm:^1.0.2" define-properties: "npm:^1.2.0" es-abstract: "npm:^1.22.1" es-shim-unscopables: "npm:^1.0.0" checksum: 10/33f20006686e0cbe844fde7fd290971e8366c6c5e3380681c2df15738b1df766dd02c7784034aeeb3b037f65c496ee54de665388288edb323a2008bb550f77ea languageName: node linkType: hard "array.prototype.tosorted@npm:^1.1.4": version: 1.1.4 resolution: "array.prototype.tosorted@npm:1.1.4" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.3" es-errors: "npm:^1.3.0" es-shim-unscopables: "npm:^1.0.2" checksum: 10/874694e5d50e138894ff5b853e639c29b0aa42bbd355acda8e8e9cd337f1c80565f21edc15e8c727fa4c0877fd9d8783c575809e440cc4d2d19acaa048bf967d languageName: node linkType: hard "arraybuffer.prototype.slice@npm:^1.0.3": version: 1.0.3 resolution: "arraybuffer.prototype.slice@npm:1.0.3" dependencies: array-buffer-byte-length: "npm:^1.0.1" call-bind: "npm:^1.0.5" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.22.3" es-errors: "npm:^1.2.1" get-intrinsic: "npm:^1.2.3" is-array-buffer: "npm:^3.0.4" is-shared-array-buffer: "npm:^1.0.2" checksum: 10/0221f16c1e3ec7b67da870ee0e1f12b825b5f9189835392b59a22990f715827561a4f4cd5330dc7507de272d8df821be6cd4b0cb569babf5ea4be70e365a2f3d languageName: node linkType: hard "arrify@npm:^2.0.1": version: 2.0.1 resolution: "arrify@npm:2.0.1" checksum: 10/067c4c1afd182806a82e4c1cb8acee16ab8b5284fbca1ce29408e6e91281c36bb5b612f6ddfbd40a0f7a7e0c75bf2696eb94c027f6e328d6e9c52465c98e4209 languageName: node linkType: hard "asap@npm:~2.0.3, asap@npm:~2.0.6": version: 2.0.6 resolution: "asap@npm:2.0.6" checksum: 10/b244c0458c571945e4b3be0b14eb001bea5596f9868cc50cc711dc03d58a7e953517d3f0dad81ccde3ff37d1f074701fa76a6f07d41aaa992d7204a37b915dda languageName: node linkType: hard "assert@npm:2.0.0": version: 2.0.0 resolution: "assert@npm:2.0.0" dependencies: es6-object-assign: "npm:^1.1.0" is-nan: "npm:^1.2.1" object-is: "npm:^1.0.1" util: "npm:^0.12.0" checksum: 10/5bd5e80a0dc5fce9ac812254ad39bcec8c224878705e5021a1a0ae84e2c30b980f90584ef544a5f6b1cd79edb002e80972367731260dac723c7a6f76e0fcd2ea languageName: node linkType: hard "ast-types@npm:0.15.2": version: 0.15.2 resolution: "ast-types@npm:0.15.2" dependencies: tslib: "npm:^2.0.1" checksum: 10/81680bd5829cdec33524e9aa3434e23f3919c0c388927068a0ff2e8466f55b0f34eae53e0007b3668742910c289481ab4e1d486a5318f618ae2fc93b5e7e863b languageName: node linkType: hard "astral-regex@npm:^1.0.0": version: 1.0.0 resolution: "astral-regex@npm:1.0.0" checksum: 10/93417fc0879531cd95ace2560a54df865c9461a3ac0714c60cbbaa5f1f85d2bee85489e78d82f70b911b71ac25c5f05fc5a36017f44c9bb33c701bee229ff848 languageName: node linkType: hard "async-hook-jl@npm:^1.7.6": version: 1.7.6 resolution: "async-hook-jl@npm:1.7.6" dependencies: stack-chain: "npm:^1.3.7" checksum: 10/f61a3bd4c34c01dfdf7f571a22b5308b5c4cfc1574879bf57d86384e1944f50d4dc4873dbb31e718801dd1121604b22c316f88e5abd0f44b8ba15c97b4b73388 languageName: node linkType: hard "async-limiter@npm:~1.0.0": version: 1.0.1 resolution: "async-limiter@npm:1.0.1" checksum: 10/2b849695b465d93ad44c116220dee29a5aeb63adac16c1088983c339b0de57d76e82533e8e364a93a9f997f28bbfc6a92948cefc120652bd07f3b59f8d75cf2b languageName: node linkType: hard "async-listener@npm:^0.6.0": version: 0.6.10 resolution: "async-listener@npm:0.6.10" dependencies: semver: "npm:^5.3.0" shimmer: "npm:^1.1.0" checksum: 10/dcf3d9320215f4f4594de03f46587743ebd742ec4993ff49649b948f62c967be62114aaeea3bc2ddae2b451a8452b9989ae565a84eda453f9b9d56d929a8dc85 languageName: node linkType: hard "async-mutex@npm:^0.5.0": version: 0.5.0 resolution: "async-mutex@npm:0.5.0" dependencies: tslib: "npm:^2.4.0" checksum: 10/4c6bfce1cc9cd43f723c4d96403ac5f4757f885c953b839cde6956ec8817ff39623b82d67614de10c7933e21626925882fb9bac367db7d15d7cb4f84228722c9 languageName: node linkType: hard "async@npm:^3.2.3": version: 3.2.6 resolution: "async@npm:3.2.6" checksum: 10/cb6e0561a3c01c4b56a799cc8bab6ea5fef45f069ab32500b6e19508db270ef2dffa55e5aed5865c5526e9907b1f8be61b27530823b411ffafb5e1538c86c368 languageName: node linkType: hard "asynckit@npm:^0.4.0": version: 0.4.0 resolution: "asynckit@npm:0.4.0" checksum: 10/3ce727cbc78f69d6a4722517a58ee926c8c21083633b1d3fdf66fd688f6c127a53a592141bd4866f9b63240a86e9d8e974b13919450bd17fa33c2d22c4558ad8 languageName: node linkType: hard "at-least-node@npm:^1.0.0": version: 1.0.0 resolution: "at-least-node@npm:1.0.0" checksum: 10/463e2f8e43384f1afb54bc68485c436d7622acec08b6fad269b421cb1d29cebb5af751426793d0961ed243146fe4dc983402f6d5a51b720b277818dbf6f2e49e languageName: node linkType: hard "available-typed-arrays@npm:^1.0.7": version: 1.0.7 resolution: "available-typed-arrays@npm:1.0.7" dependencies: possible-typed-array-names: "npm:^1.0.0" checksum: 10/6c9da3a66caddd83c875010a1ca8ef11eac02ba15fb592dc9418b2b5e7b77b645fa7729380a92d9835c2f05f2ca1b6251f39b993e0feb3f1517c74fa1af02cab languageName: node linkType: hard "axios-logger@npm:2.8.1, axios-logger@npm:^2.8.1": version: 2.8.1 resolution: "axios-logger@npm:2.8.1" dependencies: chalk: "npm:^4.1.0" dateformat: "npm:^3.0.3" checksum: 10/462ed59da3482f5b0c3781aeaa1ec91ec89bc896a38ec8b0726e561e6ccdd20158834937495b57131e3cbbd950dbd7491e5f77b7a45f19e7ddd21b0ad03ee90b languageName: node linkType: hard "axios-retry@npm:^4.5.0": version: 4.5.0 resolution: "axios-retry@npm:4.5.0" dependencies: is-retry-allowed: "npm:^2.2.0" peerDependencies: axios: 0.x || 1.x checksum: 10/39ed05248757387a44dde94255df8ad54088aece50574c6ce9a1cd02b9e40252f7390285cea54ded04e33a3a549e462d5bdacc8d3178221b7cd40e8aff09ba46 languageName: node linkType: hard "axios@npm:^1.7.7": version: 1.7.7 resolution: "axios@npm:1.7.7" dependencies: follow-redirects: "npm:^1.15.6" form-data: "npm:^4.0.0" proxy-from-env: "npm:^1.1.0" checksum: 10/7f875ea13b9298cd7b40fd09985209f7a38d38321f1118c701520939de2f113c4ba137832fe8e3f811f99a38e12c8225481011023209a77b0c0641270e20cde1 languageName: node linkType: hard "b4a@npm:^1.6.4": version: 1.6.7 resolution: "b4a@npm:1.6.7" checksum: 10/1ac056e3bce378d4d3e570e57319360a9d3125ab6916a1921b95bea33d9ee646698ebc75467561fd6fcc80ff697612124c89bb9b95e80db94c6dc23fcb977705 languageName: node linkType: hard "babel-core@npm:^7.0.0-bridge.0": version: 7.0.0-bridge.0 resolution: "babel-core@npm:7.0.0-bridge.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10/2a1cb879019dffb08d17bec36e13c3a6d74c94773f41c1fd8b14de13f149cc34b705b0a1e07b42fcf35917b49d78db6ff0c5c3b00b202a5235013d517b5c6bbb languageName: node linkType: hard "babel-jest@npm:^29.7.0": version: 29.7.0 resolution: "babel-jest@npm:29.7.0" dependencies: "@jest/transform": "npm:^29.7.0" "@types/babel__core": "npm:^7.1.14" babel-plugin-istanbul: "npm:^6.1.1" babel-preset-jest: "npm:^29.6.3" chalk: "npm:^4.0.0" graceful-fs: "npm:^4.2.9" slash: "npm:^3.0.0" peerDependencies: "@babel/core": ^7.8.0 checksum: 10/8a0953bd813b3a8926008f7351611055548869e9a53dd36d6e7e96679001f71e65fd7dbfe253265c3ba6a4e630dc7c845cf3e78b17d758ef1880313ce8fba258 languageName: node linkType: hard "babel-plugin-istanbul@npm:^6.1.1": version: 6.1.1 resolution: "babel-plugin-istanbul@npm:6.1.1" dependencies: "@babel/helper-plugin-utils": "npm:^7.0.0" "@istanbuljs/load-nyc-config": "npm:^1.0.0" "@istanbuljs/schema": "npm:^0.1.2" istanbul-lib-instrument: "npm:^5.0.4" test-exclude: "npm:^6.0.0" checksum: 10/ffd436bb2a77bbe1942a33245d770506ab2262d9c1b3c1f1da7f0592f78ee7445a95bc2efafe619dd9c1b6ee52c10033d6c7d29ddefe6f5383568e60f31dfe8d languageName: node linkType: hard "babel-plugin-jest-hoist@npm:^29.6.3": version: 29.6.3 resolution: "babel-plugin-jest-hoist@npm:29.6.3" dependencies: "@babel/template": "npm:^7.3.3" "@babel/types": "npm:^7.3.3" "@types/babel__core": "npm:^7.1.14" "@types/babel__traverse": "npm:^7.0.6" checksum: 10/9bfa86ec4170bd805ab8ca5001ae50d8afcb30554d236ba4a7ffc156c1a92452e220e4acbd98daefc12bf0216fccd092d0a2efed49e7e384ec59e0597a926d65 languageName: node linkType: hard "babel-plugin-polyfill-corejs2@npm:^0.4.10": version: 0.4.11 resolution: "babel-plugin-polyfill-corejs2@npm:0.4.11" dependencies: "@babel/compat-data": "npm:^7.22.6" "@babel/helper-define-polyfill-provider": "npm:^0.6.2" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: 10/9c79908bed61b9f52190f254e22d3dca6ce25769738642579ba8d23832f3f9414567a90d8367a31831fa45d9b9607ac43d8d07ed31167d8ca8cda22871f4c7a1 languageName: node linkType: hard "babel-plugin-polyfill-corejs3@npm:^0.10.1": version: 0.10.4 resolution: "babel-plugin-polyfill-corejs3@npm:0.10.4" dependencies: "@babel/helper-define-polyfill-provider": "npm:^0.6.1" core-js-compat: "npm:^3.36.1" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: 10/a69ed5a95bb55e9b7ea37307d56113f7e24054d479c15de6d50fa61388b5334bed1f9b6414cde6c575fa910a4de4d1ab4f2d22720967d57c4fec9d1b8f61b355 languageName: node linkType: hard "babel-plugin-polyfill-corejs3@npm:^0.10.6": version: 0.10.6 resolution: "babel-plugin-polyfill-corejs3@npm:0.10.6" dependencies: "@babel/helper-define-polyfill-provider": "npm:^0.6.2" core-js-compat: "npm:^3.38.0" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: 10/360ac9054a57a18c540059dc627ad5d84d15f79790cb3d84d19a02eec7188c67d08a07db789c3822d6f5df22d918e296d1f27c4055fec2e287d328f09ea8a78a languageName: node linkType: hard "babel-plugin-polyfill-regenerator@npm:^0.6.1": version: 0.6.2 resolution: "babel-plugin-polyfill-regenerator@npm:0.6.2" dependencies: "@babel/helper-define-polyfill-provider": "npm:^0.6.2" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 checksum: 10/150233571072b6b3dfe946242da39cba8587b7f908d1c006f7545fc88b0e3c3018d445739beb61e7a75835f0c2751dbe884a94ff9b245ec42369d9267e0e1b3f languageName: node linkType: hard "babel-plugin-react-compiler@npm:0.0.0-experimental-592953e-20240517": version: 0.0.0-experimental-592953e-20240517 resolution: "babel-plugin-react-compiler@npm:0.0.0-experimental-592953e-20240517" dependencies: "@babel/generator": "npm:7.2.0" "@babel/types": "npm:^7.19.0" chalk: "npm:4" invariant: "npm:^2.2.4" pretty-format: "npm:^24" zod: "npm:^3.22.4" zod-validation-error: "npm:^2.1.0" checksum: 10/53416c11bd20f2fdd103e40fb2ce43f54ba0dfc824946d40053672b2b88d9ce8be796837892b6b5efd6bafd6947c5dab34d03d10317aaab96da34fe42f19e7bf languageName: node linkType: hard "babel-plugin-react-native-web@npm:~0.19.10": version: 0.19.12 resolution: "babel-plugin-react-native-web@npm:0.19.12" checksum: 10/8f4066fcb26e8ac3150fc0524e4cfc5feb1bc13655dfeaa5b2919602cb0ea36eb36ca3c4a981e0c583d4027c7962fb0d4805a19c0810f022633e41743455c2cc languageName: node linkType: hard "babel-plugin-transform-flow-enums@npm:^0.0.2": version: 0.0.2 resolution: "babel-plugin-transform-flow-enums@npm:0.0.2" dependencies: "@babel/plugin-syntax-flow": "npm:^7.12.1" checksum: 10/fd52aef54448e01948a9d1cca0c8f87d064970c8682458962b7a222c372704bc2ce26ae8109e0ab2566e7ea5106856460f04c1a5ed794ab3bcd2f42cae1d9845 languageName: node linkType: hard "babel-plugin-transform-remove-console@npm:^6.9.4": version: 6.9.4 resolution: "babel-plugin-transform-remove-console@npm:6.9.4" checksum: 10/1123c3816c6f89c064752199c8796f30265d937f5d8e1e43d3837f1c0e87ed0e6bbd0afa6117ce021c8b93ec1de7154e158674bb22331c7ed6609d10121359df languageName: node linkType: hard "babel-preset-current-node-syntax@npm:^1.0.0": version: 1.0.1 resolution: "babel-preset-current-node-syntax@npm:1.0.1" dependencies: "@babel/plugin-syntax-async-generators": "npm:^7.8.4" "@babel/plugin-syntax-bigint": "npm:^7.8.3" "@babel/plugin-syntax-class-properties": "npm:^7.8.3" "@babel/plugin-syntax-import-meta": "npm:^7.8.3" "@babel/plugin-syntax-json-strings": "npm:^7.8.3" "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.8.3" "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" "@babel/plugin-syntax-numeric-separator": "npm:^7.8.3" "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" "@babel/plugin-syntax-top-level-await": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/94561959cb12bfa80867c9eeeace7c3d48d61707d33e55b4c3fdbe82fc745913eb2dbfafca62aef297421b38aadcb58550e5943f50fbcebbeefd70ce2bed4b74 languageName: node linkType: hard "babel-preset-expo@npm:~11.0.15": version: 11.0.15 resolution: "babel-preset-expo@npm:11.0.15" dependencies: "@babel/plugin-proposal-decorators": "npm:^7.12.9" "@babel/plugin-transform-export-namespace-from": "npm:^7.22.11" "@babel/plugin-transform-object-rest-spread": "npm:^7.12.13" "@babel/plugin-transform-parameters": "npm:^7.22.15" "@babel/preset-react": "npm:^7.22.15" "@babel/preset-typescript": "npm:^7.23.0" "@react-native/babel-preset": "npm:0.74.87" babel-plugin-react-compiler: "npm:0.0.0-experimental-592953e-20240517" babel-plugin-react-native-web: "npm:~0.19.10" react-refresh: "npm:^0.14.2" checksum: 10/be5862180c1e69053c22fee05ec50258aab97c4cc6780634313d8497726a6de1b76cc3badd00ebdc44aaf63f1f767082a430a7d486b935cf58dc20e0ca3377a9 languageName: node linkType: hard "babel-preset-jest@npm:^29.6.3": version: 29.6.3 resolution: "babel-preset-jest@npm:29.6.3" dependencies: babel-plugin-jest-hoist: "npm:^29.6.3" babel-preset-current-node-syntax: "npm:^1.0.0" peerDependencies: "@babel/core": ^7.0.0 checksum: 10/aa4ff2a8a728d9d698ed521e3461a109a1e66202b13d3494e41eea30729a5e7cc03b3a2d56c594423a135429c37bf63a9fa8b0b9ce275298be3095a88c69f6fb languageName: node linkType: hard "balanced-match@npm:^1.0.0": version: 1.0.2 resolution: "balanced-match@npm:1.0.2" checksum: 10/9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65 languageName: node linkType: hard "bare-events@npm:^2.0.0, bare-events@npm:^2.2.0": version: 2.3.1 resolution: "bare-events@npm:2.3.1" checksum: 10/ffe968dbcb5ca7dd640b57ae31ad6deceecdd7119c08cfc11807c05b3fda46419c970b6971513b83ca94970609f7fd7ce809ead08d4c5c8eb541e1c9403209c6 languageName: node linkType: hard "bare-fs@npm:^2.1.1": version: 2.3.1 resolution: "bare-fs@npm:2.3.1" dependencies: bare-events: "npm:^2.0.0" bare-path: "npm:^2.0.0" bare-stream: "npm:^2.0.0" checksum: 10/1fe777a1a265c8dfdff2a5e28a2295368fad08a245364877ca2f382021cb591600e5c84911377dc66b7df47a6e3adef6019256591362a3670a75a5d62ec8194c languageName: node linkType: hard ` Here is the yarn.lock file. yarn.lock.zip After looking at the logs again, it seems like it is just repeating itself. I can see GET to the same package multiple times. Don't really see any errors in the logs though so I'm not sure why it is retrying. I am getting the same issue.... I want to move to v2 because I also fetch nuget dependencies from ADO Artifacts..... Oh interesting, I don't even get PRs created. registries: npm-data-module: type: npm-registry url: https://pkgs.dev.azure.com/guidedchoice/_packaging/data-projections/npm/registry/ token: ${{NPM_TOKEN}} I wager your problem is on the token. It might need to be: [...] token: ${{ORGANIZATION}}:${{NPM_TOKEN}} Looks like your organization is guidedchoice. But note this doesn't solve the looping behavior which the original issue is about. @epicstar the README says to use PAT:${{ NPM_TOKEN }} for access tokens. I tried that to no avail. # Artifactory private feed using PAT artifactory: type: nuget-feed url: https://artifactory.com/api/nuget/v3/myfeed token: PAT:${{ MY_DEPENDABOT_ARTIFACTORY_PAT }} Yes, that works for nuget feeds, but the README isn't explicit about how to authenticate on NPM feeds. And for more info: https://github.com/yarnpkg/berry/issues/316#issuecomment-1378520569 I understand that these are instructions on the .yarnrc.yml and not dependabot though... I actually do have that in my .yarnrc.yml, but maybe I need to put it in my dependabot config as well. I'll give that a try. Thanks for the suggestion. Tried it but didn't seem to make a difference. Still just takes forever and times out after an hour. Yup, mine ran today and I got the same issue... This time no PRs made. bad_dependabot_logs.txt For people interested in my log file... Just an update on this, I haven't managed to reproduce the issue yet, but do want to mention that there are known issues reported in dependabot-core around NPM updates stalling and causing timeouts that you might want to contribute to if you believe they are related. See: https://github.com/dependabot/dependabot-core/issues/10309 https://github.com/dependabot/dependabot-core/issues/8008 This issue is still on my radar to look in to, but there is no obvious or straight forward fix, so progress is slow. I do plan on reducing the verbosity of the logs for non-debug builds, but I am very confident that the size of the logs is not the root cause of the issue or the reason why it takes so long. For context, I have projects that generate logs of around 300K lines (50mb+) and they complete well under 1 hour. Seems like it is indeed a dependabot/dependabot-core issue and maybe not your side., From the comments, it's related to groups (which I am using in preparation for wanting/needing to use it since the Azure version doesn't have auto rebasing). I was wondering if it is possible to extend the timeout to over 60 minutes? I tried in my pipeline yaml, and dependabot is still timing out at 60 minutes. steps: - task: dependabot@2 timeoutInMinutes: 180 inputs: abandonUnwantedPullRequests: false setAutoComplete: true githubConnection: blah azureDevopsAccessToken: $(DEVOPS_PAT) env: AZURE_ARTIFACTS_PAT: $(DEVOPS_PAT) There's nothing in the documentation that suggests that can change the timeout on the .github/dependabot,yml side: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/troubleshooting-dependabot-errors#dependabot-timed-out-during-its-update @epicstar Dependabot does not have a timeout, the pipeline does. You need to configure the timeout on the pipeline, there are some limitations if you are not using paid agents. See: https://learn.microsoft.com/en-us/azure/devops/pipelines/process/phases?view=azure-devops&tabs=yaml#timeouts jobs: - job: dependabot displayName: Dependabot timeoutInMinutes: 180 # max 3 hours steps: # ...snip... Ok thank you that explains why my timeout isn't working. I should research the pipeline args and caveats more. I apologize. I tested with 1.39 and it still seems to be printing the whole yarn.lock. Seems to be less lines but the file size of the log is about the same as before. I am still getting timeout after an hour. @eli-gc unfortunately I'm not sure if the timeout issue can be resolved in the scope of this project; My understanding is that this is an issue in dependabot-core. See: https://github.com/dependabot/dependabot-core/issues/10309 https://github.com/dependabot/dependabot-core/issues/8008 If you believe your issue is not the same as these and you are able to upload or send me a copy of your task logs, I will investigate further to see if there are any issues in the scope of this project. From #1518, I have supplied a minimum repo that reproduces this exact issue on Azure DevOps by running over 60 minutes. The same exact code in Github runs in less than 16 minutes. @epicstar thanks, I will investigate further and see what is different between the two environments I'll get you logs ASAP. It's been 2 hours and the dependabot job is still running ☠️ Same logs posted from #1518 are here. Github Dependabot seems to only hone in on the dependencies declared in the monorepo, while this version seems to hone in on the dependencies from the whole yarn.lock multiple times. I removed the private registry and it is still timing out so seems to be unrelated to that. Works fine on github. Tried it with the latest version. 2.40.1110 without private registry. It seems like it gets stuck when trying to submit a PR. I truncated the logs below and attached the full version. dependabot_logs_20241231.txt updater | 2024/12/31 20:03:09 INFO <job_update_0_npm_and_yarn_all> Checking all dependencies for version updates... updater | 2024/12/31 20:03:10 INFO <job_update_0_npm_and_yarn_all> Checking if @aesop-fables/containr 0.6.1 needs updating updater | 2024/12/31 20:03:11 INFO <job_update_0_npm_and_yarn_all> Latest version is 0.6.2 updater | 2024/12/31 20:03:17 INFO <job_update_0_npm_and_yarn_all> Requirements to unlock own updater | 2024/12/31 20:03:17 INFO <job_update_0_npm_and_yarn_all> Requirements update strategy bump_versions updater | 2024/12/31 20:03:17 INFO <job_update_0_npm_and_yarn_all> Updating @aesop-fables/containr from 0.6.1 to 0.6.2 updater | 2024/12/31 20:03:22 INFO <job_update_0_npm_and_yarn_all> Submitting @aesop-fables/containr pull request for creation {"data":{"base-commit-sha":"b9b75801450836032248f3e087f64f1420a347f9","dependencies":[{"name":"@aesop-fables/containr","previous-requirements":[{"file":"package.json","groups":["dependencies"],"requirement":"^0.6.1","source":null}],"previous-version":"0.6.1","requirements":[{"file":"package.json","groups":["dependencies"],"requirement":"^0.6.2","source":null}],"version":"0.6.2","directory":"/"}],"updated-dependency-files":[{"content":"{\n \"scripts\": {\n \"build\": \"tsc --p ./tsconfig.json\",\n \"start\": \"react-native start\",\n \"restart\": \"rm -rf node_modules/.cache \u0026\u0026 yarn ios\",\n \"clear\": \"rm -rf node_modules/.cache\",\n \"debug\": \"rm -rf node_modules/.cache \u0026\u0026 npx react-native start --experimental-debugger\",\n \"android\": \"react-native run-android\",\n \"ios\": \"react-native run-ios --simulator \\\"iPhone 16\\\"\",\n \"ios14\": \"react-native run-ios --simulator \\\"iPhone 14\\\"\",\n \"ios15\": \"react-native run-ios --simulator \\\"iPhone 15\\\"\",\n \"iosSE\": \"react-native run-ios --simulator \\\"iPhone SE (3rd generation)\\\"\",\n \"ipadPro13\": \"yarn react-native run-ios --simulator \\\"iPad Pro 13-inch (M4)\\\"\",\n \"ipadPro11\": \"yarn react-native run-ios --simulator \\\"iPad Pro 11-inch (M4)\\\"\",\n \"ipad10\": \"yarn react-native run-ios --simulator \\\"iPad (10th generation)\\\"\",\n \"ipadMini\": \"yarn react-native run-ios --simulator \\\"iPad mini (6th generation)\\\"\",\n \"lint\": \"eslint '*/**/*.{js,ts,tsx}' --fix --max-warnings 0\",\n \"test\": \"jest --verbose=false --runInBand --useStderr\",\n \"test:watch\": \"jest --watch --verbose=true --runInBand --useStderr\",\n \"fix-build\": \"cmd1 \u0026\u0026 cmd2\",\n ... [dependabot_logs_20241231.txt](https://github.com/user-attachments/files/18283541/dependabot_logs_20241231.txt) fdd3a9fdf176571404abf22af3af330e89227c3cb2e7092d61d0c6dfc8dd688648025346303585a03db51aa466efef5ebb8bdf14dbe630ccdedd5d0aa00741ab\n languageName: node\n linkType: hard\n\n\"zod@npm:^3.22.4\":\n version: 3.23.8\n resolution: \"zod@npm:3.23.8\"\n checksum: 10/846fd73e1af0def79c19d510ea9e4a795544a67d5b34b7e1c4d0425bf6bfd1c719446d94cdfa1721c1987d891321d61f779e8236fde517dc0e524aa851a6eff1\n languageName: node\n linkType: hard\n","content_encoding":"utf-8","deleted":false,"directory":"/","name":"yarn.lock","operation":"update","support_file":false,"type":"file","mode":""}],"pr-title":"Bump @aesop-fables/containr from 0.6.1 to 0.6.2","pr-body":"Bumps @aesop-fables/containr from 0.6.1 to 0.6.2.\n","commit-message":"Bump @aesop-fables/containr from 0.6.1 to 0.6.2\n\nBumps @aesop-fables/containr from 0.6.1 to 0.6.2.","dependency-group":null},"type":"create_pull_request"}
gharchive/issue
2024-10-30T22:46:52
2025-04-01T06:40:39.437659
{ "authors": [ "eli-gc", "epicstar", "psyvision", "rhyskoedijk" ], "repo": "tinglesoftware/dependabot-azure-devops", "url": "https://github.com/tinglesoftware/dependabot-azure-devops/issues/1441", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1314946708
[BUG] Raise errors in models.nn if they can't make in-sample and some cases out-sample predictions Before submitting (must do checklist) [x] Did you read the contribution guide? [x] Did you update the docs? We use Numpy format for all the methods and classes. [x] Did you write any new necessary tests? [x] Did you update the CHANGELOG? Proposed Changes Closing issues closes #787 Codecov Report Merging #813 (2cc0ddd) into master (41fcce4) will decrease coverage by 34.59%. The diff coverage is 70.00%. @@ Coverage Diff @@ ## master #813 +/- ## =========================================== - Coverage 84.05% 49.46% -34.60% =========================================== Files 126 126 Lines 7220 7236 +16 =========================================== - Hits 6069 3579 -2490 - Misses 1151 3657 +2506 Impacted Files Coverage Δ etna/models/nn/deepar.py 82.95% <70.00%> (-17.05%) :arrow_down: etna/models/nn/tft.py 71.69% <70.00%> (-28.31%) :arrow_down: etna/commands/__init__.py 0.00% <0.00%> (-100.00%) :arrow_down: etna/commands/backtest_command.py 0.00% <0.00%> (-97.06%) :arrow_down: etna/commands/forecast_command.py 0.00% <0.00%> (-94.88%) :arrow_down: etna/commands/__main__.py 0.00% <0.00%> (-87.50%) :arrow_down: etna/models/utils.py 14.28% <0.00%> (-85.72%) :arrow_down: etna/commands/resolvers.py 0.00% <0.00%> (-80.00%) :arrow_down: etna/analysis/outliers/density_outliers.py 22.44% <0.00%> (-75.52%) :arrow_down: etna/datasets/datasets_generation.py 27.02% <0.00%> (-72.98%) :arrow_down: ... and 77 more :mega: Codecov can now indicate which changes are the most critical in Pull Requests. Learn more
gharchive/pull-request
2022-07-22T12:28:42
2025-04-01T06:40:39.479052
{ "authors": [ "codecov-commenter", "martins0n" ], "repo": "tinkoff-ai/etna", "url": "https://github.com/tinkoff-ai/etna/pull/813", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
379839322
Add mesh and operators for spherical domain Summary Add (dimensionless?) spherical domain to mesh.py, independently of the existing Cartesian domain Add grad and div operators (Finite Volumes) for the spherical domain Mesh shall be unchanged. Will use if domain is "negative particle" or "positive particle" to determine when spherical operators should be used. Closed by #142
gharchive/issue
2018-11-12T15:54:25
2025-04-01T06:40:39.481597
{ "authors": [ "Scottmar93", "tinosulzer" ], "repo": "tinosulzer/PyBaMM", "url": "https://github.com/tinosulzer/PyBaMM/issues/9", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
2148816076
move all reduces to the end in lazy This is just an experiment. I don't like how the reduce LazyOp doesn't specify the actual reduce operation. Neither new_shape nor axis list expresses it fully, but rather depends on what shape the input buffer has. One idea is to have the arg just be the number of elements that are being reduced and move them to the end, but I'm not sure this is expressive enough for multireduce. Oh I think this actually might work! The final permute isn't really a permute, it's a reshape of only 1s. This is also already happening in the Linearizer
gharchive/pull-request
2024-02-22T11:11:57
2025-04-01T06:40:39.517500
{ "authors": [ "geohot" ], "repo": "tinygrad/tinygrad", "url": "https://github.com/tinygrad/tinygrad/pull/3475", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
849632155
fix: start_server不支持windows启动flask的问题 What type of PR is this? enhancement What does this PR do / why do we need it: The start_server method in tinyms does not support running in the windows environment. It is a huge blow to the friends who use the windows environment to learn tinyms. We have also seen that tinyms stated in the introduction that it supports the operation of the windows system, but it is a very uncomfortable thing that it cannot be used as one of its features. Which issue(s) this PR fixes: Fixes #65 Special notes for your reviewers: Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.Dragonfruit_JC seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account.You have signed the CLA already but the status is still pending? Let us recheck it. 在FlaskServer类中,linux_run_server方法中,有一行循环监听信号的代码,我给了一些注释,这个地方是我存疑的地方,希望你们看完谨慎合并 @lyd911 Please take a look, thanks!
gharchive/pull-request
2021-04-03T10:48:45
2025-04-01T06:40:39.530446
{ "authors": [ "CLAassistant", "Mickls", "leonwanghui" ], "repo": "tinyms-ai/tinyms", "url": "https://github.com/tinyms-ai/tinyms/pull/66", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
818050014
GMB Accounts Multiple Accounts need to be present to implement data pulls through the Google My Business API (#7) for Locations (https://github.com/tipoff/locations/issues/42). This is also mentioned in this issue: https://github.com/tipoff/locations/issues/50 https://developers.google.com/my-business/reference/rest/v4/accounts https://support.google.com/business/answer/6085339?ref_topic=6085325
gharchive/issue
2021-02-27T22:57:54
2025-04-01T06:40:39.540473
{ "authors": [ "drewroberts" ], "repo": "tipoff/laravel-google-api", "url": "https://github.com/tipoff/laravel-google-api/issues/8", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2121699475
fix: broken link to matrix example workflow Why Because the link was broken, I got 404. It should be linked to this file → https://github.com/tj-actions/changed-files/blob/main/.github/workflows/matrix-example.yml @all-contributors please add @KeisukeYamashita for docs
gharchive/pull-request
2024-02-06T21:31:26
2025-04-01T06:40:39.568938
{ "authors": [ "KeisukeYamashita", "jackton1" ], "repo": "tj-actions/changed-files", "url": "https://github.com/tj-actions/changed-files/pull/1918", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1249014101
[BUG] - Warning: Unexpected input(s) 'extensions', Is there an existing issue for this? [X] I have searched the existing issues Does this issue exist in the latest version? [X] I'm using the latest release Describe the bug? To eslint-changed-files maintainers, First off, i would like to extend gratitude to the maintainers for creating this amazing workflow to automate the linting process. This workflow has become a great help to our team to ensure code readability and code quality. However, we found that there were some breaking changes from @v10 so we updated the package to @v11 after updating the latest v11, we have started to receive a warning that is blocking the github actions in the workflow please see the following snippet: 14s ##[debug]Evaluating condition for step: 'Run ESLint on changed files' ##[debug]Evaluating: success() ##[debug]Evaluating success: ##[debug]=> true ##[debug]Result: true ##[debug]Starting: Run ESLint on changed files ##[debug]Register post job cleanup for action: tj-actions/eslint-changed-files@v[1](https://github.com/fible/fible-app/runs/6603050516?check_suite_focus=true#step:6:1)1 ##[debug]Loading inputs ##[debug]Evaluating: github.token ##[debug]Evaluating Index: ##[debug]..Evaluating github: ##[debug]..=> Object ##[debug]..Evaluating String: ##[debug]..=> 'token' ##[debug]=> '***' ##[debug]Result: '***' Warning: Unexpected input(s) 'extensions', valid inputs are ['token', 'all_files', 'config_path', 'ignore_path', 'file_extensions', 'extra_args', 'skip_annotations', 'level', 'reporter', 'filter_mode', 'fail_on_error'] ##[debug]Loading env Run tj-actions/eslint-changed-files@v[11](https://github.com/fible/fible-app/runs/6603050516?check_suite_focus=true#step:6:11) with: config_path: .eslintrc.json extensions: js,jsx extra_args: --quiet token: *** all_files: false file_extensions: **/*.ts **/*.tsx **/*.js **/*.jsx With that said, would there be something missing the configuration that's causing this issue? Thanks for accommodating me. To Reproduce This is how the github action is written name: Run Linter on: pull_request: branches: - '**' jobs: run-linters: name: ESLint runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12.x - name: Install Packages run: yarn install - name: Run Jest run: yarn test - name: Run ESLint on changed files uses: tj-actions/eslint-changed-files@v11 with: config_path: ".eslintrc.json" extensions: "js,jsx" extra_args: "--quiet" What OS are you seeing the problem on? all Expected behavior? We are expecting the linter to run without warnings. Relevant log output 14s ##[debug]Evaluating condition for step: 'Run ESLint on changed files' ##[debug]Evaluating: success() ##[debug]Evaluating success: ##[debug]=> true ##[debug]Result: true ##[debug]Starting: Run ESLint on changed files ##[debug]Register post job cleanup for action: tj-actions/eslint-changed-files@v[1](https://github.com/fible/fible-app/runs/6603050516?check_suite_focus=true#step:6:1)1 ##[debug]Loading inputs ##[debug]Evaluating: github.token ##[debug]Evaluating Index: ##[debug]..Evaluating github: ##[debug]..=> Object ##[debug]..Evaluating String: ##[debug]..=> 'token' ##[debug]=> '***' ##[debug]Result: '***' Warning: Unexpected input(s) 'extensions', valid inputs are ['token', 'all_files', 'config_path', 'ignore_path', 'file_extensions', 'extra_args', 'skip_annotations', 'level', 'reporter', 'filter_mode', 'fail_on_error'] ##[debug]Loading env Run tj-actions/eslint-changed-files@v[11](https://github.com/fible/fible-app/runs/6603050516?check_suite_focus=true#step:6:11) with: config_path: .eslintrc.json extensions: js,jsx extra_args: --quiet token: *** all_files: false file_extensions: **/*.ts **/*.tsx **/*.js **/*.jsx Anything else? No response Code of Conduct [X] I agree to follow this project's Code of Conduct @janzzen-tp I’ve added a Migration Guide to help you resolve the warning. Let me know if you need more information but a high-level description of the warning is the extension input is no longer supported and has now been renamed to file_extensions.
gharchive/issue
2022-05-26T02:32:15
2025-04-01T06:40:39.575426
{ "authors": [ "jackton1", "janzzen-tp" ], "repo": "tj-actions/eslint-changed-files", "url": "https://github.com/tj-actions/eslint-changed-files/issues/632", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1386820755
🛑 ci.tjo.space is down In 73f59a6, ci.tjo.space (https://ci.tjo.space) was down: HTTP code: 0 Response time: 0 ms Resolved: ci.tjo.space is back up in abf20e7.
gharchive/issue
2022-09-26T22:37:10
2025-04-01T06:40:39.597416
{ "authors": [ "mentos1386" ], "repo": "tjo-space/status", "url": "https://github.com/tjo-space/status/issues/241", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1634831335
🛑 SITE_PIC is down In 6f5f2f3, SITE_PIC ($SITE_PIC) was down: HTTP code: 0 Response time: 0 ms Resolved: SITE_PIC is back up in 0204f61.
gharchive/issue
2023-03-21T23:23:12
2025-04-01T06:40:39.603790
{ "authors": [ "tjsky" ], "repo": "tjsky/upptime", "url": "https://github.com/tjsky/upptime/issues/540", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1747344516
🛑 SITE_PIC is down In e393903, SITE_PIC ($SITE_PIC) was down: HTTP code: 0 Response time: 0 ms Resolved: SITE_PIC is back up in 834ae77.
gharchive/issue
2023-06-08T08:14:05
2025-04-01T06:40:39.605964
{ "authors": [ "tjsky" ], "repo": "tjsky/upptime", "url": "https://github.com/tjsky/upptime/issues/731", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1047173901
inline svg url not working with Franklin because changed by compression On Franklin server everything just works, but when deploying to gitlab, my background heropatterns (svg images inlined into background-image: url(...)) just don't show up. Inspecting the issue it turns out that something in the pipeline deleted the surrounding quotes. Unbelievable... So on my local system I have background-image: url("data:image/svg+xml,..."); which somehow ends up on gitlab pages as background-image: url(data:image/svg+xml,...); no surrounding quotes any longer. Any help is highly appreciated, as this seems to be due to the standard Franklin gitlab pipeline. Turning off minify fixed this issue as well. See https://github.com/tlienart/Franklin.jl/issues/921#issuecomment-962938930 I would vote for turning off minify by default for everyone. yes so as per other issue, minification will be turned off for everyone (prerendering as well btw even though it causes much fewer issues)
gharchive/issue
2021-11-08T08:49:48
2025-04-01T06:40:39.654804
{ "authors": [ "schlichtanders", "tlienart" ], "repo": "tlienart/Franklin.jl", "url": "https://github.com/tlienart/Franklin.jl/issues/922", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
482661818
Compilation warning about Kotlin's AnnotationTarget enum The following warning occurs when compiling with basic-annotations in compileOnly scope: warning: unknown enum constant AnnotationTarget.ANNOTATION_CLASS reason: class file for kotlin.annotation.AnnotationTarget not found This happens e.g. when compiling sample-java-api subproject: https://travis-ci.com/tlinkowski/basic-annotations/builds/123617322#L278-L279 Caused by KT-33141. I have the same problem
gharchive/issue
2019-08-20T06:06:52
2025-04-01T06:40:39.657092
{ "authors": [ "Zeus64", "tlinkowski" ], "repo": "tlinkowski/basic-annotations", "url": "https://github.com/tlinkowski/basic-annotations/issues/15", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1487490763
profiles: unexpected behavior in sigil color selection When attempting to edit the sigil color field in the profile settings, it truncates leading zeroes and then pads out the last character. For example, I previously had my color set to 0000b2. After the upgrade, it had converted it to B22222. Attempting to change it back results in the same thing after a refresh. 1000b2 however works. can confirm this This is fixed in Groups and Talk, but the Grid still shows the incorrectly padded color.
gharchive/issue
2022-12-09T21:41:07
2025-04-01T06:40:39.658447
{ "authors": [ "bazfum", "riblus-bandyr" ], "repo": "tloncorp/landscape-apps", "url": "https://github.com/tloncorp/landscape-apps/issues/1413", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2423524425
Added preferred_algorithms and packet_size config options Adding two more config options that get passed to the underlying erlang ssh connect: preferred_algorithms and packet_size Thank you for adding that! @BrendonPierson Could you possibly also update config_test.exs to reflect those changes? Thank you. Sure thing @tlux! Let me know if this looks ok
gharchive/pull-request
2024-07-22T18:33:37
2025-04-01T06:40:39.675550
{ "authors": [ "BrendonPierson", "tlux" ], "repo": "tlux/sftp_client", "url": "https://github.com/tlux/sftp_client/pull/36", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
286672279
After run build script, docbox css broken Hi, I'm new to docbox and i have a little problem. Every time i run npm run buildscript it always ends up with a broken CSS, i'm using the default provided CSS, and when i inspect it, i got this error: Warning: Prop className did not match. Server: "fixed-top fixed-right space-left16" Client: "fixed-top fixed-right undefined" Also, I found that revert the index.html file can solve this problem. This would be a great opportunity for someone to help and fix and contribute a PR! I'd love to review and merge such a PR. Can confirm that changing package.json "react": "15.6.2", "react-dom": "15.6.2", resolves the build issue for me.
gharchive/issue
2018-01-08T08:09:11
2025-04-01T06:40:39.679185
{ "authors": [ "aipsel", "jimlongo56", "nubilfi", "tmcw" ], "repo": "tmcw/docbox", "url": "https://github.com/tmcw/docbox/issues/64", "license": "isc", "license_type": "permissive", "license_source": "bigquery" }
2600496745
sf コマンドがなくても、sf org display, sf org list およびログインくらいは imori 独自にできないのか これをやろうとおもったら、API経由での OAuthの方法を完全に理解した上で、さらにその情報を自前で管理するということをやらんといけなくなるだろう。ホームディレクトリに置くとして、さらにそれを暗号化しておくとして、Win・Unix両方で動かすとなると、まぁ色々手間がかかりそうではある。 秘匿情報をどうやって保持するかが非常に悩ましい 一つの案として、imori を起動したら必ずログイン、かなぁ〜。。。 データローダーが前回のログイン情報から自動的にアクセスを試みるようにしているが、あれと同じことができるか? しかしここまで書いたところで、そこまでやるなら普通に CLI 経由で良くないか? と思った。
gharchive/issue
2024-10-20T14:05:03
2025-04-01T06:40:39.689074
{ "authors": [ "tmkw" ], "repo": "tmkw/imori", "url": "https://github.com/tmkw/imori/issues/42", "license": "BSD-2-Clause", "license_type": "permissive", "license_source": "github-api" }
349260509
Remove main We never did anything interesting with main, and our calling of it was rather broken, so it's probably better to remove it. People can now write this instead: let () = f x This is closer to how other MLs handle it, which is always nice. We can also remove some pretty ugly code from the backend. The main disadvantage here is that it breaks a large number of our codegen tests. We used to use main to inject opaque values. As this now has no special meaning, it'll be stripped and so the test won't emit anything! For now, I've fixed this by calling main with a bottom : 'a value: let main f = ... external val bottom : 'a = "nil" let () = bottom (main bottom) This definitely is pretty ugly (and can generate some awful code), but I'm OK with this for now. Hopefully the backend rewrite (which is increasingly reaching the status of Urn's resolver rewrite) will clean up a lot of these. Looks good to me™
gharchive/pull-request
2018-08-09T19:32:23
2025-04-01T06:40:39.692494
{ "authors": [ "SquidDev", "zardyh" ], "repo": "tmpim/amulet", "url": "https://github.com/tmpim/amulet/pull/84", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
244001745
No Release task Hi, I am using the Visual Studio Team Services and added your extension. Unfortunately I am not able to find the task when creating a new build sequence. Did I miss something ? Thanks, Fabian Update: BTW: Just saw that its clearly writtenin the description, shame on me... Unfortunately the release task is also not there. Fabian, It's a task for Release Definitions, not Build Definitions. Thanks for your fast reply, that make sense. But should I not see it then here ? (Sorry for those dumb questions, just startet to take a look at the whole Team Services topic today) Yes you should see it here if the extension is properly installed (the "Deploy" category): Hmm unfortunately it does not. Any idea what I can do to resolve it ? I already uninstalled and installed it again without luck. After uninstall/install again, the tasks now show up. Strange, but luckily sovled. We noticed some temporary issue on VSTS or Azure on the extension page. I guess that was it..
gharchive/issue
2017-07-19T10:58:14
2025-04-01T06:40:39.716863
{ "authors": [ "fabianre", "ygeelen-tb" ], "repo": "tobania/VSTS.Extension.SqlReportingServices", "url": "https://github.com/tobania/VSTS.Extension.SqlReportingServices/issues/15", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1926457436
Support for Vike/vite-plugin-ssr It would be nice to have integration between create-relay-app and Vike/vite-plugin-ssr since create-relay-app currently works with Vite but not with Vike/vite-plugin-ssr in relation to this, I think create-relay-app would fit nicely into the Bati.js scaffolder for new projects: https://github.com/batijs/bati
gharchive/issue
2023-10-04T15:14:18
2025-04-01T06:40:39.724206
{ "authors": [ "redbar0n", "sahidrahman404" ], "repo": "tobias-tengler/create-relay-app", "url": "https://github.com/tobias-tengler/create-relay-app/issues/18", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1640080533
Try giving a list of potential stars that are leading to a given frequency spike Use the individual pixel periodograms to find likely locations and then use astroquery to search SIMBAD and find some likely candidates Need to flip the way the pixels are read into the wcs... if the argwhere returns [48, 62] what we need to put into the pixel_to_world is (62, 48) If I do "tess_wcs.pixel_to_world(*np.fliplr(solutions[0])).icrs" I get the correct thing, but if there are multiple solutions and I do: tess_wcs.pixel_to_world(*np.fliplr(solutions)).icrs then its wrong again.... Ah gotcha so the (x, y) is just backwards? Perhaps we just need *query_pixels.T[::-1] in that case (which will reverse the x-y axes) I tried that as well... but that reverses the entire array, not the individual pairs
gharchive/issue
2023-03-24T21:42:18
2025-04-01T06:40:39.747483
{ "authors": [ "TomWagg", "tobin-wainer" ], "repo": "tobin-wainer/elk", "url": "https://github.com/tobin-wainer/elk/issues/62", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1607153263
[Feat] 검색창에 상품검색 기능 구현 #146 [x] 신규 파일 생성: searchPage.js, search.js [x] 수정 파일: header.js, router.js [x] 검색어 입력후 엔터치면 검색어가 포함된 상품이 노출된다. #165 반영완료 되었으므로 해당 PR을 close 하겠습니다. #165 해당 PR 반영 완료
gharchive/pull-request
2023-03-02T16:49:11
2025-04-01T06:40:39.782172
{ "authors": [ "gygy7151", "soheedev" ], "repo": "today-zipsa/TodayZipsa", "url": "https://github.com/today-zipsa/TodayZipsa/pull/147", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2710267551
Update sbt, scripted-plugin to 1.10.6 About this PR 📦 Updates org.scala-sbt:sbt org.scala-sbt:scripted-plugin from 1.6.2 to 1.10.6 📜 GitHub Release Notes - Version Diff Usage ✅ Please merge! I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a .scala-steward.conf file. Have a fantastic day writing Scala! ⚙ Adjust future updates Add this to your .scala-steward.conf file to ignore future updates of this dependency: updates.ignore = [ { groupId = "org.scala-sbt" } ] Or, add this to slow down future updates of this dependency: dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.scala-sbt" } }] labels: library-update, early-semver-minor, semver-spec-minor, version-scheme:early-semver, commit-count:1 Superseded by #918.
gharchive/pull-request
2024-12-02T02:53:34
2025-04-01T06:40:39.797907
{ "authors": [ "scala-steward" ], "repo": "tofu-tf/typed-schema", "url": "https://github.com/tofu-tf/typed-schema/pull/916", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2298348263
Document what priority/order is used for version selection Right now, I cannot find clear documentation on which order version detection uses. There is a decent listing of which things can be looked at, but it's not immediately obvious which have priority. It'd be great if the documentation have a section that clearly indicated that order. If I've missed it feel free to clown on me 😄 It seems like the following order is used, but I've not tested thoroughly: Project version file Version file in Project Root (Possibly one anywhere in the tree above the project in order?) Default system-wide version defined Notably missing: the requirements listed in the TF files, which can be installed/used with latest-allowed and min-required but it doesn't seem like this is used automatically as a fallback? Oh, awesome! I didn't see the version resolution order. That's precisely what I was looking for. I would propose sending that information into a digestible section with version files, or perhaps it's own section. Weary to make promises I may not deliver but I will probably take a stab at a PR with what I imagine (and I can try to clarify better, too).
gharchive/issue
2024-05-15T16:22:44
2025-04-01T06:40:39.801300
{ "authors": [ "creeder-uturn" ], "repo": "tofuutils/tenv", "url": "https://github.com/tofuutils/tenv/issues/133", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
126742890
Red border? Had an idea, Thought gathering some feedback before actually implementing it might make some sense. How about an option which could be enabled, that would add a red border around every page if you were timing? For some people this may be annoying, but I feel for others that it'd be a good reminder that they were still being tracked. Open to ideas, and if you think this is terrible, be honest! I can take it. I think it's too "In your face" to have red border on all the pages. I like the idea of always being aware that time is tracking, but I think the red border is too much. Right now the red color of the extension icon is indicating that timer is running.
gharchive/issue
2016-01-14T20:36:28
2025-04-01T06:40:39.804564
{ "authors": [ "IndrekV", "oliverdunk" ], "repo": "toggl/toggl-button", "url": "https://github.com/toggl/toggl-button/issues/421", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
181958278
Ask users to who are on broken updater version to get latest update Some users are on Macos version that has broken updater. Send them email to update to latest. Broken updater version should be 7.2.150 This is probably outdated. Double check if anyone is still on this version and then close this. No users on this ancient version.
gharchive/issue
2016-10-10T08:18:28
2025-04-01T06:40:39.805948
{ "authors": [ "IndrekV" ], "repo": "toggl/toggldesktop", "url": "https://github.com/toggl/toggldesktop/issues/2011", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
449668098
Handle cases where project is unsynced 💻 Environment Platform: All (library) 📒 Description In some cases, the project or any other item could be not synced and also not marked as "needs sync". I saw this with an un-synced project that did not have an id (it was NULL), the project was visible in the autocomplete but selecting it would clear the project selection. First of selecting a non-synced project should still work Secondly, the project that is not synced should be marked as to be synced when loaded I wonder that old implementation doesn't store any project_guid after creating, how it handles if the project remains unsync? I don't see any complain about the unsync project in old code, it means that it always works, isn't it? Ref: https://github.com/toggl/toggldesktop/blob/b5064ec91eafd104b1d1c7d6baab59da3fe5db42/src/ui/osx/TogglDesktop/TimeEntryEditViewController.m#L396-L421
gharchive/issue
2019-05-29T08:30:23
2025-04-01T06:40:39.808688
{ "authors": [ "IndrekV", "NghiaTranUIT" ], "repo": "toggl/toggldesktop", "url": "https://github.com/toggl/toggldesktop/issues/2986", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
1847408394
Todoist - Cannot Enter Project in Task View OS version: macOS latest Browser version: Chrome latest Extension version: 3.0.14 Relevant integration (if any): Todoist webapp 🐛 Describe the bug User reports that they cannot type into the project window in Toggl when a Todoist task view window is open. Support team member can replicate as well. Expected behaviour Project window should be available for typing. Other details or context Slack convo Intercom convo Intercom convo listed above also contains screenshot video of bug in action
gharchive/issue
2023-08-11T20:45:07
2025-04-01T06:40:39.812157
{ "authors": [ "TheSoloJake" ], "repo": "toggl/track-extension", "url": "https://github.com/toggl/track-extension/issues/2235", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
715641446
Update for 2020? Is the plan still to update for 2020's landscape, or is this repo inactive for the time being? @tdardet I am currently interviewing with several companies. My plan is to migrate and rewrite some parts in GitBooks towards the end of this year. Ah awesome, Good luck! Tomás Dardet On Sun, Oct 11, 2020 at 1:22 PM togiberlin notifications@github.com wrote: @tdardet https://github.com/tdardet I am currently interviewing with several companies. My plan is to migrate and rewrite some parts in GitBooks towards the end of this year. — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/togiberlin/ui-ux-designer-roadmap/issues/11#issuecomment-706737909, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABEJ3RLVA44AVUML5XAP3A3SKHSWZANCNFSM4SF7HRKA . Hi! any chance that you could add in the future a Product Designer roadmap? Maybe not in 2020 but in any update after? Thanks! Any update? Any update? Waiting for your approval Waiting for your approval Some updates ?
gharchive/issue
2020-10-06T12:46:49
2025-04-01T06:40:39.818343
{ "authors": [ "LuanFMelo", "arbutt76", "loubyl", "tdardet", "togiberlin", "uniAmir" ], "repo": "togiberlin/ui-ux-designer-roadmap", "url": "https://github.com/togiberlin/ui-ux-designer-roadmap/issues/11", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
119767063
Implement set and fromValues for mat2, mat2d, mat3, and mat4 Was surprised to find out that these did not already exist. Let me know if there are any problems. LGTM, thanks! And thanks for giving me something to test the new Travis CI config with! :D
gharchive/pull-request
2015-12-01T17:25:59
2025-04-01T06:40:39.820290
{ "authors": [ "thomcc", "toji" ], "repo": "toji/gl-matrix", "url": "https://github.com/toji/gl-matrix/pull/194", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1530972100
Add *_unchecked methods I'm using bytes in an application, where I'm repeatedly slicing to sub-parts of the bytes. I do my own error-checking of bounds, and handle that out of the hot path. The methods of (advance, split_off, split_to) do additional bound checking, completely trashing the register allocation. It'd be nice to have the option to call *_unchecked methods that avoid the bound checking. Have you been able to try those methods in your app, with a temporary fork? It'd be good to get some data.
gharchive/issue
2023-01-12T16:00:50
2025-04-01T06:40:39.900114
{ "authors": [ "seanmonstar", "semtexzv" ], "repo": "tokio-rs/bytes", "url": "https://github.com/tokio-rs/bytes/issues/586", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
448594808
docs: user guides Write documentation on how to debug applications with the console, how to use it #3 Would allow us to generate screenshots
gharchive/issue
2019-05-26T18:45:22
2025-04-01T06:40:39.901010
{ "authors": [ "MSleepyPanda" ], "repo": "tokio-rs/console", "url": "https://github.com/tokio-rs/console/issues/10", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1144496919
パスワード画面のレイアウト変更 パスワード画面のレイアウト変更 ・ActionBarに直接閉じるボタン表示 ・トップの幅のサイズを変更 実機テストしてみたけどアクションバーが表示されなかった androidManifestとかbuild.gradle関係を俺が最初の頃さわってたから、そこに問題があると思う
gharchive/pull-request
2022-02-19T06:32:56
2025-04-01T06:40:39.907844
{ "authors": [ "Kuma-deve", "akidon0000" ], "repo": "tokudai0000/tokumemo-android", "url": "https://github.com/tokudai0000/tokumemo-android/pull/2", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
576031555
chore: Issue Template を分割 📝 関連issue close #445 ⛏ 変更内容 Issue Template をバグとそれ以外で分割 合わせて bug および improve(旧: 改善提案) ラベルが自動付与されるように label 単位で簡単に絞り込めるように 📸 スクリーンショット @halsk @yokinist ひとまずこんな感じでどうでしょう? ラベルが自動付与されることで、管理しやすくなるかとー。 https://help.github.com/ja/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository @potato4d ありがとうございます!確実に管理しやすくなりますね。。賛成です! おっと https://github.com/tokyo-metropolitan-gov/covid19/issues/new でテンプレートが出てこないので一旦revertします おっと、ちょっとfork先で確認します :bow: なんでだろう @potato4d 自分も大丈夫かなと思っていたんですが、、、ご確認お願いします🙏
gharchive/pull-request
2020-03-05T06:51:29
2025-04-01T06:40:39.913824
{ "authors": [ "potato4d", "yokinist" ], "repo": "tokyo-metropolitan-gov/covid19", "url": "https://github.com/tokyo-metropolitan-gov/covid19/pull/451", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
90292607
port number error hi~ In serviceDidResolve delegate method, I saw the service data as follows HHService[0x742E3580, MAC000E53290B23, _afpovertcp._tcp, local., MAC000E53290B23.local., ( "192.168.1.48:88" ), 1] - Resolved last address and I try to print the port number NSLog(@"service port number :%i",service.lastResolvedPort); what I got is service port number :22528 please help thx Hi, The lastResolvedPort property is an internal property containing a (temporary) port number expressed in network byte order, which is why you get a strange result when you attempt to print it out. But I've actually just checked in an update to HHService in which I've added new convenience properties, for instance resolvedInetAddresses, which contains a list of resolved addresses on the form IP:PORT.
gharchive/issue
2015-06-23T05:33:29
2025-04-01T06:40:39.925321
{ "authors": [ "furueili", "tolo" ], "repo": "tolo/HHServices", "url": "https://github.com/tolo/HHServices/issues/14", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1446170965
[Bug] No Error, Just Fails Describe the issue How to reproduce the issue Expected behavior Screenshots Software versions Home Assistant version: TrueNAS integration version: TrueNAS version: Diagnostics data Traceback/Error logs Additional context I cant do anything without any info. Make sure to fill the issue template with as much info as there is. Sorry about that. There really isn't much information to tell. I follow the instructions perfectly, and I get no error message. It just times out or something. What would be most useful to start troubleshooting this? I'm not sure what makes it fail, but I'd love to get it working. versions, screenshots, diagnostic data, HA log. just provide everything you can. I just noticed the information isn't there on the bug report. I put all that in when I created it... Home Assistant 2022.11.2 TrueNAS Core 13.0-RELEASE Integration v1.2.3 The integration installs, and I clicked add... All I get is this... I've tried all sorts of various combinations of SSL, https:// in the URL, etc... Same result. If I put "https:" in the URL i get a "No response from host" error. My firewall logs don't show anything being blocked, but HASS shows connection errors... ====================================== This error originated from a custom integration. Logger: custom_components.truenas.truenas_api Source: custom_components/truenas/truenas_api.py:44 Integration: TrueNAS (documentation, issues) First occurred: 12:15:53 PM (4 occurrences) Last logged: 12:44:19 PM TrueNAS 172.16.1.200 unable to fetch data "pool" (503) TrueNAS https://172.16.1.200 unable to fetch data "pool" (no_response) ======================================= This error originated from a custom integration. Logger: custom_components.truenas.config_flow Source: custom_components/truenas/config_flow.py:76 Integration: TrueNAS (documentation, issues) First occurred: 12:15:53 PM (4 occurrences) Last logged: 12:44:19 PM TrueNAS connection error (503) TrueNAS connection error (no_response) ======================================= I'm still tinkering in the firewall, but I haven't found any rule which may be blocking this from connecting... Thanks, Steve I have never tried it with 13.0 release version, there could have been some bug. 503 is service unavailable error. seems like there is something broken on truenas side. I would recommend to actually update your truenas. Good day, That would not surprise me. I have found there is another issue with a networking configuration I have reported to them. It prevents me from updating at the moment. My TrueNAS works fine on 13.0, but if I update beyond that all my jails lose internet connectivity. Maybe I'm just special. LOL https://ixsystems.atlassian.net/browse/NAS-118026 Something under the hood with networking did change along the way with them. The 503... is there a specific service your integration relies on being enabled on the TrueNAS side to check? Steven Do they really lose internet connectivity or just DNS? I had such issue with truenas. Solved it by using resolv.conf syntax in configuration field: Cant check the ticket, appearantly I dont have access to view it. I'm accessing official API, I dont think you can control it in any way (officially). Yeah, sorry. DNS. yea, you can try to put it into resolver like I did. DNS server entries in jail configuration never worked for me, even on 12.0
gharchive/issue
2022-11-12T01:53:12
2025-04-01T06:40:39.952243
{ "authors": [ "tomaae", "wormuths" ], "repo": "tomaae/homeassistant-truenas", "url": "https://github.com/tomaae/homeassistant-truenas/issues/54", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
186776984
Initial JNI support Feedback welcome! Example code using these JNI bindings can be seen in https://github.com/tomaka/glutin/pull/822 Here's a gist @sfackler made demonstrating a high-level API for JNI stuff: https://gist.github.com/sfackler/5c036006f8d58a1d38887ba014759f74 It is licensed under MIT/Apache2 so we can copy some stuff. As I said in the previous comment, this might be out of scope of this PR but I thought I'd leave it somewhere for reference. Might also be worth depending on https://crates.io/crates/jni-sys to avoid needing to have a second copy in here. Happy to make any changes necessary on that end. @tomaka, what is your view on using @sfackler's jni-sys crate? I'd prefer not to re-implement anything that we can readily reuse, but I'm not sure if you're happy to be adding another dependency. Before I start addressing other feedback, it would be nice to decide if using jni-sys is on the table, and if we should add higher level wrappers to android-rs-glue, jni-sys, or am intermediate crate that wraps raw jni-sys in a nice, safe, Rust-y API. I agree that adding a higher level API (like JNIEnv's that automatically detach_thread(), or jobject's that automatically DeleteGlobalRef/DeleteLocalRef when dropped). Most of all, I'd like to get rid of the various explicit method calls based on types. But I'm also not sure this should be part of android-rs-glue. An alternative approach would be to remove the JNI API from the glue module, and simply using the four methods provided by this patch in injected-glue from jni-sys, guarded by some #![cfg(target_os = "android")]. In my opinion this is the ideal design: The internal and the external glues both depend on jni-sys and communicate with each other to share the low-level objects (like you have done in your PR). The external glue also depends on a new crate (named jni for example) that doesn't exist yet and that provides a high-level wrapper around the JNI. The high-level wrappers are reexported in the external glue's API, but the low-level objects are not exposed. I can agree with that. I'll look into making the adaptations over the weekend, probably. The higher level JNI wrapper will probably take a longer time to complete. @sfackler Are you interested in creating a repo for the higher level wrapper, or should I? I probably don't have the time to build out the high level wrapper right now unfortunately, so you might want to get it started. Just a note that I have started on reworking this, but haven't found the time to finish it yet (because life). So ... what is the current state? The jni_sys crate is pretty mature now and it's been two years ... Why can't the ffi module simply be exposed to the library user? This way the user can hook up the jni crate and from there on it's rather easy to interact with the JNI. I know about "API concerns", but .. something is better than nothing. @tomaka ... why? What's wrong about the jni crate? I mean ... do you want to re-do all of the work they've done just to not depend on them - how would you then do this function, if not using jni? Sorry, what I mean is that we should simply reexport the content of the jni-sys crate from our own crate, instead of exposing it in the API.
gharchive/pull-request
2016-11-02T11:34:31
2025-04-01T06:40:39.962346
{ "authors": [ "fschutt", "sfackler", "tomaka", "wvdschel" ], "repo": "tomaka/android-rs-glue", "url": "https://github.com/tomaka/android-rs-glue/pull/116", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
121547745
Update README URLs based on HTTP redirects Created with https://github.com/dkhamsing/frankenstein GitHub Corrected URLs Was Now https://github.com/tomaka/gl-init-rs https://github.com/tomaka/glutin HTTPS Corrected URLs Was Now http://crates.io/config.html https://crates.io/config.html :tada: :fr:
gharchive/pull-request
2015-12-10T18:22:57
2025-04-01T06:40:39.966211
{ "authors": [ "ReadmeCritic" ], "repo": "tomaka/android-rs-glue", "url": "https://github.com/tomaka/android-rs-glue/pull/71", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2104296725
🛑 Saiyans Blog is down In ea1ca92, Saiyans Blog (https://blog.saiyans.com.ve) was down: HTTP code: 0 Response time: 0 ms Resolved: Saiyans Blog is back up in e91d09d after 28 minutes.
gharchive/issue
2024-01-28T18:38:28
2025-04-01T06:40:39.970193
{ "authors": [ "tomasmetal23" ], "repo": "tomasmetal23/upptime", "url": "https://github.com/tomasmetal23/upptime/issues/375", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1636326314
Added an option to support spaces in tags. I have added a piece of code that removes the spaces in the tags and therefore allows them to be configured as : 18:00 -> 20:00 In my case different projects are created with both formats (by different teams). I think this can be of interest to several users of the script. 😃 Hi, Excellent, that is a good idea, I will implement that. Regards, Tomas From: Théo @.> Sent: Wednesday, 22 March 2023 19:50 To: tomasrudh/AutoShutdownSchedule @.> Cc: Subscribed @.***> Subject: [tomasrudh/AutoShutdownSchedule] Added an option to support spaces in tags. (PR #22) I have added a piece of code that removes the spaces in the tags and therefore allows them to be configured as : 18:00 -> 20:00 In my case different projects are created with both formats (by different teams). I think this can be of interest to several users of the script. 😃 You can view, comment on, or merge this pull request online at: https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUavRPk72rrR-2Flm3jQ4-2F0sysqz0HjrVfYKX41J30UjcPlQspbfwUIGXjvU6DWVCfBZaOHSoTGyuLymkfw-2B954F58-3D9eWa_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCkODWmkH3DUw6AJTMpcISS0jult2r-2F2rdB19l9AxP9JMdpEyKgQ39s4-2F4J1myR6acxRfrf8yNFz3sKW3g5aK3OfP7LbYMuvCvjpuQRvkEaDW-2FCD-2BBXRPK0UvAAKzztLTiKgjDHgKTCg-2BZhk-2F609eN-2BkA-3D-3D Commit Summary ada82cc https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUavRPk72rrR-2Flm3jQ4-2F0sysqz0HjrVfYKX41J30UjcPlQspbfwUIGXjvU6DWVCfBZVF2mElskDjrXhDaFBB-2BhVMOzV1bmhri-2FISimKnvrwlHv3sx-2FeRlP-2F1YzE9qxQ5q6TJCjgpNU-2BBsjR-2Fc3rdYNZY-3D2Atr_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCkDYTCCc3yzUqSjbhId4uSmd8enOZwdzdHuqVbMrrKv7UrTVJaoaHMS6ql71OQutz4-2FY5-2B7OhyPkmlS-2B9OjWvX2VtGDQegbHDD6mxEGMXXGKxyTR-2Fv0tRO-2FivF-2Bgdk4fyvY39Ta9jpR-2BllF8Zs5CBJBQ-3D-3D Added an option to support spaces in tags. File Changes (1 https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUavRPk72rrR-2Flm3jQ4-2F0sysqz0HjrVfYKX41J30UjcPlQspbfwUIGXjvU6DWVCfBZddOrEhpeBvrw9YkKL-2FKzoE-3DdCYG_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCk8DsNebJgyLkC2Fl7b0k4E-2FhXsCB1vLccS-2Fwp1TFIMEXZaeajKTrvsaR-2BzHKBv1m0HAFgfXmnOHQvTaniAiGnfxCDhdqkNMxbClCCAMkgk61gJw5rUlAZtQsFfJ5koZctNEWLF7tuPYjMyIpuj1uPfQ-3D-3D file) M AutoShutdownSchedule.ps1 https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUavRPk72rrR-2Flm3jQ4-2F0sysqz0HjrVfYKX41J30UjcPlQspbfwUIGXjvU6DWVCfBZQkwafEUWT2xbAx-2BzeanQvjWY3TDSKhjz0Kwgu0BtRdOrOKF4Gh0Fcn-2B3SbBx4Z6Mk2HuPgwnk-2B0-2FafdL6sgqzVcnDPj0XlbnOJdQJkgk03-2BFzpz_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCkBCuNmjKGJTQpcINqCIDNXMzQuF3BFDmaqe8i-2BtE6tylJ7wiqkLDjx9aJ7MJnjGfhDLk-2Fsze9ZckqJgfWDDmheR-2BOqiV-2BjcD3B3N38fPY-2FlZ-2BfhFoT74lr-2FPZjHs-2BAVSv8r3tVEXuoNAYGEtvatTb-2BA-3D-3D (2) Patch Links: https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUavRPk72rrR-2Flm3jQ4-2F0sysqz0HjrVfYKX41J30UjcPlQspbfwUIGXjvU6DWVCfBZTS0BwxOeuyLno-2FFonhst5o-3Dcb36_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCkj7fjABfx4JihbmglQ-2BZgzTm4T1GwW7wj385964XA-2B9nL-2Bl7z2gk6uY8mBv-2FH-2Bas-2FvpFhgGO5TjmS5gfqg8N-2BNfEnUiwTSLG0saEciPS0XcWEha6OAkK7cRGv2NZiVgu5gW1n4F-2B4hNKJdktYa0vr8w-3D-3D https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUavRPk72rrR-2Flm3jQ4-2F0sysqz0HjrVfYKX41J30UjcPlQspbfwUIGXjvU6DWVCfBZQSjDSX-2B3ZVQQl-2FtsSEu9oM-3DHb1I_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCklN2sF2dPr3RmkhchZ1rX2nNcG2R3FD1uppn5Mjjc1QZk-2FnEDezmx-2FYPevhmgZiIprE-2FrRtLdf1FvZTZSAvYr9VwpvmpyZx0BGy58420ibfsqd7L28L0pWDA5lRsGwQPd78duJkvSvFnMDebxQ0BU-2Bg-3D-3D — Reply to this email directly, view it on GitHub https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUavRPk72rrR-2Flm3jQ4-2F0sysqz0HjrVfYKX41J30UjcPlQspbfwUIGXjvU6DWVCfBZb8T3z3kM3j-2Fpaigr3KchyE-3DrN0I_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCkBuTjPB98a-2FGWxbyGH3WOB-2FLyIHSXboOhhwCOlLQI9Dhrb06M914HF-2F-2FYn7nIjl2Kz7azJXGRTaXBn7G2c7zwH376vTBaWmP2cmV3ZYYNFUFVgz28zLqoZsZqR-2BwPORjKgcn5PZ-2FLB88vZd01oylkvA-3D-3D , or unsubscribe https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUVgmFDSuRkRUP0hiwX-2BQZOpCh6EjzUnAHvTmZkOI0ibXSUbdLYTXr-2BnFr7nZWc5BaO-2F70Yg6MYLL4SOmCfUMgY-2BnrzH6jhpziAAtTVbygvNRGC-2FuErmCPhjMlWAX6bkh5g-3D-3DIkqv_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCkp8vnqTaVYFmu6Yi0yAhJ11rvZWeYb4PNDuylJgLekXBvA-2B7C3X7qfB-2FKZzWltg1gCsOLR2BsLYkaumF48DCxnF8-2BjFxEtM6r8cAzYefGWVsJciuzN3lOrqY2j-2F6rbc14JPQiKVeGQs5fZVe0IUCOnA-3D-3D . You are receiving this because you are subscribed to this thread. https://u20788398.ct.sendgrid.net/ls/click?upn=27HVtNwUduq3wZxogItvUVgmFDSuRkRUP0hiwX-2BQZOqniRk4OQu-2FvcxQxftUVPZdPbcgNyiSDR5ZaKDJOEXc7usqhRMOS2tRoV6YqRXhsZymzyhMD3-2B-2BM8qzRnWLxc-2FL42IHNqLHHO3-2B806T6XLH3Yh-2BQTZhdP70vyAsHlCqu6mu5n2ceUNNQ5zuBU7dwMFGUVpByCvRTJHWuYFtvcvmyg-3D-3DxEPm_U31jt5HgHBh7k3Grc5s4l7W8-2BrUaSFVJ-2FPm-2FoJf3gyme2sKQ9gxlD-2Bu4vDTlQGAyJPPhOQtaSfOOj2dGwh-2Fb9sjQklWlLCXjVhtFNdqh7yioNRYnDDS6wCIrYzcbYoCkT8avG52l6EB0g8COqH3OAinsKs-2Bi2GSBUKFtuOhgM0luGWqJoUmOXq-2FAiW1HAJhGVa06JiUq9pvFFE4WArIU995XAfxl0sHcMHrOdpP4Cx1GrIQD74M0i-2BOngmuYuY-2BT1EdM9czC659lhOy3UJcDqw-3D-3D Message ID: @.*** @.***> >
gharchive/pull-request
2023-03-22T18:50:15
2025-04-01T06:40:39.982365
{ "authors": [ "theoricher", "tomasrudh" ], "repo": "tomasrudh/AutoShutdownSchedule", "url": "https://github.com/tomasrudh/AutoShutdownSchedule/pull/22", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
225354371
Cannot start server Dear all, I tried for several hours to get this image working and still have the same error: docker log docker-mailserver Initializing setup Checking configuration Configuring mail server No DKIM key provided. Check the documentation to find how to get your keys. Starting Misc Starting mail server Error: Please fix your configuration. Exiting... docker-compose.yml version: '2' services: mail: build: docker-mailserver hostname: xxxxxx domainname: xxxx.xx container_name: mail ports: - "25:25" - "143:143" - "587:587" - "993:993" volumes: - ./maildata/:/var/mail - ./mailstate/:/var/mail-state - ./letsencrtypt/:/etc/letsencrypt/ - ./config/:/tmp/docker-mailserver/ environment: - ENABLE_SPAMASSASSIN=1 - ENABLE_CLAMAV=1 - ENABLE_FAIL2BAN=1 - ENABLE_POSTGREY=1 - ONE_DIR=1 - DMS_DEBUG=0 - SSL_TYPE=letsencrypt cap_add: - NET_ADMIN volumes: maildata: driver: local mailstate: driver: local The docker-mailserver directory contains the git clone of the project. Using the suggested image ( tvial/docker-mailserver:latest) yelds the same results. Can you please help me start this image? BR, Alecs Hi @alecsandruchirosca, to have more detail, use DMS_DEBUG=1, restart container and paste the console log. `# ENV HOSTNAME=xxxxxx.xxxx.xx DMS_DEBUG=1 VIRUSMAILS_DELETE_DELAY=7 ENABLE_CLAMAV=1 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ENABLE_FAIL2BAN=1 ENABLE_SPAMASSASSIN=1 PWD=/ SHLVL=1 HOME=/root ONE_DIR=1 SSL_TYPE=letsencrypt DEBIAN_FRONTEND=noninteractive ENABLE_POSTGREY=1 _=/usr/bin/printenv docker-mailserver Initializing setup Registering check,setup,fix,misc and start-daemons functions _check_environment_variables() registered _check_hostname() registered _setup_default_vars() registered _setup_dovecot() registered _setup_dovecot_local_user() registered _setup_postgrey() registered _setup_dkim() registered _setup_ssl() registered _setup_docker_permit() registered _setup_mailname() registered _setup_amavis() registered _setup_dmarc_hostname() registered _setup_postfix_hostname() registered _setup_dovecot_hostname() registered _setup_postfix_sasl() registered _setup_postfix_override_configuration() registered _setup_postfix_sasl_password() registered _setup_security_stack() registered _setup_postfix_aliases() registered _setup_postfix_vhost() registered _setup_environment() registered _fix_var_mail_permissions() registered _fix_var_amavis_permissions() registered _misc_save_states() registered _start_daemons_cron() registered _start_daemons_rsyslog() registered _start_daemons_dovecot() registered _start_daemons_opendkim() registered _start_daemons_opendmarc() registered _start_daemons_postgrey() registered _start_daemons_postfix() registered _start_daemons_fail2ban() registered _start_daemons_clamav() registered _start_daemons_amavis() registered Checking configuration Check that there are no conflicts with env variables [_check_environment_variables] Check that hostname/domainname is provided or overidden (no default docker hostname/kubernetes) [_check_hostname] Domain has been set to xxxx.xx Hostname has been set to xxxxxx.xxxx.xx Configuring mail server Setting up default variables [_setup_default_vars] Set ENABLE_LDAP=0 Set ENABLE_FETCHMAIL=0 Set OVERRIDE_HOSTNAME= Set ENABLE_MANAGESIEVE=0 Set DMS_DEBUG=1 Set ENABLE_POP3=0 Set ENABLE_SASLAUTHD=0 Set ENABLE_CLAMAV=1 Set SMTP_ONLY=0 Set ENABLE_FAIL2BAN=1 Set ENABLE_SPAMASSASSIN=1 Set POSTGREY_DELAY=300 Set POSTGREY_TEXT=Delayed by postgrey Set ENABLE_POSTGREY=1 Set POSTGREY_MAX_AGE=35 Setting up Dovecot Setting up Dovecot Local User 'config/docker-mailserver/postfix-accounts.cf' is not provided. No mail account created. Configuring postgrey Setting up DKIM No DKIM key provided. Check the documentation to find how to get your keys. Setting up SSL Setting up PERMIT_DOCKER Option Adding container ip in my networks Setting up Mailname Creating /etc/mailname Setting up Amavis Applying hostname to /etc/amavis/conf.d/05-node_id Setting up dmarc Applying hostname to /etc/opendmarc.conf Applying hostname and domainname to Postfix Applying hostname to /etc/postfix/main.cf Applying hostname to Dovecot Applying hostname to /etc/dovecot/conf.d/15-lda.conf Setting up Postfix Override configuration No extra postfix settings loaded because optional '/tmp/docker-mailserver/postfix-main.cf' not provided. Setting up Postfix SASL Password Warning: 'SASL_PASSWD' is not provided. /etc/postfix/sasl_passwd not created. Setting up Security Stack Enabling and configuring spamassassin Enabling clamav Fail2ban enabled Setting up Postfix Aliases Warning 'config/postfix-virtual.cf' is not provided. No mail alias/forward created. Setting up Postfix vhost Setting up /etc/environment Checking /var/mail permissions Permissions in /var/mail look OK Checking $amavis_state_dir permissions Permissions in /var/mail-state/lib-amavis look OK Starting Misc Consolidating all state onto /var/mail-state Destination /var/mail-state/spool-postfix exists, linking /var/spool/postfix to it Destination /var/mail-state/lib-postfix exists, linking /var/lib/postfix to it Destination /var/mail-state/lib-amavis exists, linking /var/lib/amavis to it Destination /var/mail-state/lib-clamav exists, linking /var/lib/clamav to it Destination /var/mail-state/lib-spamassasin exists, linking /var/lib/spamassasin to it Destination /var/mail-state/lib-fail2ban exists, linking /var/lib/fail2ban to it Destination /var/mail-state/lib-postgrey exists, linking /var/lib/postgrey to it Starting mail server Starting cron [ OK ] Starting rsyslog [ OK ] Starting dovecot services [ OK ] Starting opendkimfalse [ FAILED ] Error: Please fix your configuration. Exiting... ` With DMS_DEBUG I got the above log (docker log mail ). BR, Alecs Hi, i have exact the same failure. if i downgrade to docker-mailserver 2.2, then opendkim will be started, but then the error comes during start of amavis. Output is then: ... Starting amavisfalse [ FAILED ] Error: Please fix your configuration. Exiting... I just upgraded a server to 2.3. No issue with DKIM so far. Only Postgrey was not running. 3 other error to solve: May 6 12:36:14 mail postgrey[3623]: FATAL: ERROR: can't open lock file: /var/lib/postgrey/postgrey.lock#012 May 6 12:36:15 mail postfix[4414]: Postfix is running with backwards-compatible default settings May 6 12:36:15 mail postfix[4414]: See http://www.postfix.org/COMPATIBILITY_README.html for details May 6 12:36:15 mail postfix[4414]: To disable backwards compatibility use "postconf compatibility_level=2" and "postfix reload" May 6 12:36:15 mail postfix/master[4451]: fatal: open lock file /var/lib/postfix/master.lock: cannot create file exclusively: Permission denied Tried manually (and had to disable ONE_DIRbut after that it worked well). No idea yet yo a long term patch. Ideas welcome. Maybe this also relates to #545. Although it works for me just well, I also receive backwards-compatibility warnings in my logs. Will have a look at this later. Duplicates https://github.com/tomav/docker-mailserver/issues/545 Move this discussion there. @alecsandruchirosca you had this error because no user account has been provided: 'config/docker-mailserver/postfix-accounts.cf' is not provided. No mail account created. is debug log. I reproduced this issue today, I'll add a fix. Here is the PR https://github.com/tomav/docker-mailserver/pull/612 :latest image available. #491 & #621
gharchive/issue
2017-04-30T21:05:48
2025-04-01T06:40:40.024432
{ "authors": [ "alecsandruchirosca", "grossmane", "kiliant", "tomav" ], "repo": "tomav/docker-mailserver", "url": "https://github.com/tomav/docker-mailserver/issues/586", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
215289233
Fix #526: fatal: no SASL authentication mechanisms When using the container with SMTP_ONLY = 1, the postfix process within the container fails on ehlo because there is no valid sasl authentication mechanism available. This happens because sasl has been enabled within postfix/main.cf per default but sasl is not configured. To fix this _setup_postfix_sasl does not depend anymore on ENABLE_SASLAUTHD and will check in it's logic, whether to enable or disable sasl explicit within postfix/main.cf. I think you should add an integration test for that. Added integration test Just to be accurate on this issue, i just coverd the testing for this particular problem, checking whether sending an email is working or not. But i think we should cover more test cases for the mailserver state SMTP_ONLY use-cases. Here some examples: Check Mail send is working Check SASL authentication is working Check Relay is working Check Relay with sasl authentication is working Maybe we could create a section for this.
gharchive/pull-request
2017-03-19T19:47:29
2025-04-01T06:40:40.028873
{ "authors": [ "alinmear", "tomav" ], "repo": "tomav/docker-mailserver", "url": "https://github.com/tomav/docker-mailserver/pull/556", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
37909360
Listen markercluster click event Its possible to acces clusterclick, without overlays?? My initial map: //map initial angular.extend($scope, { center: { autoDiscover: true }, defaults: { scrollWheelZoom: false }, layers: { baselayers: { osm: { name: 'OpenStreetMap', url: 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', type: 'xyz' } } } }); And then i call my own service to fecth markers data: //on load map $scope.$on('leafletDirectiveMap.load', function(event){ api.getMarkersByProximity(function(data){ $scope.markers.push(data); }); }); Now i have a map with markers and clusters. With this event i can listen when a marker is clicked, but not a cluster: $scope.$on("leafletDirectiveMarkersClick", function(event, args){ console.log($scope.markers[args]); }); Its possible to do?? thanks I don´t want when cluster marker is clicked to expand child markers... i want to get child markers data to do another thing. On official Leaflet.markercluster docs says: markers.on('clusterclick', function (a) { console.log('cluster ' + a.layer.getAllChildMarkers().length); }); Is any event directive to listen? @markitosgv, have you found a way to listen for cluster events? Has anyone found any ways to listen besides dipping down into pure Leaflet (like @joeljeske did in #648)? This issue was moved to angular-ui/ui-leaflet#31 I'm going to rework&redesign angular-leaflet-directive to be compatible with Leaflet v1.0. It will mantain almost all its functionality, and will be compatible with the current features of the directive, but I must start from a fresh point, so I'm going to close this issue. If you think it must be worked with the new version, please reopen it.
gharchive/issue
2014-07-15T18:01:24
2025-04-01T06:40:40.033420
{ "authors": [ "joeljeske", "markitosgv", "nmccready", "rasmi", "tombatossals" ], "repo": "tombatossals/angular-leaflet-directive", "url": "https://github.com/tombatossals/angular-leaflet-directive/issues/421", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
160595720
React 15.1.x Support Is this on the horizon? On second look, it's working excellently on the latest React! (closing)
gharchive/issue
2016-06-16T07:32:39
2025-04-01T06:40:40.035038
{ "authors": [ "khoerling" ], "repo": "tomchentw/react-google-maps", "url": "https://github.com/tomchentw/react-google-maps/issues/285", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1299757087
Support creating machine readable diagnostics Raised by Giannis @gnikit in https://fortran-lang.discourse.group/t/3949/2 Adding an option or slightly restructuring the diagnostic message to be easily parseable via regex. The message structure is already very good, but fetching the error message via regex would be hard. A good example of that is gfortran-11>= with the flag -fdiagnostic-plain-output. Having an such option would allow for code editors to parse the output of the linter to their Diagnostics console in VS Code PROBLEMS tab. The current report interface turns an index of a token to a label object https://github.com/toml-f/toml-f/blob/225174f7a858186507e7bd08c4252918dca9dee0/src/tomlf/de/context.f90#L87-L89 And creates a diagnostic object from it https://github.com/toml-f/toml-f/blob/225174f7a858186507e7bd08c4252918dca9dee0/src/tomlf/de/context.f90#L92-L96 For the human facing output this is than turned into a string at https://github.com/toml-f/toml-f/blob/225174f7a858186507e7bd08c4252918dca9dee0/src/tomlf/de/context.f90#L101 Note that the actual source code is only needed when creating the report string, the diagnostic object itself contains only position information from the label objects as well as the messages to display. To support this without much effort on the user side, we could add a state in the context objects which describes whether the report should be optimized for humans or machines, default to human-friendly output. A tool which wants integrate its TOML Fortran usage for error reporting with the the VS Modern Fortran Extension can provide an option or environment variable to toggle this switch in the context object and make the error output automatically accessible for the Diagnostic console in VS Code. The actual preferred format for the VS Modern Fortran Extension has to be defined first. I think I might have been to quick to the current diagnostic message format is okay. I just whipped up a REGEX that should work with VS Code's problemmatcher https://regex101.com/r/q6duAL/4 and in any other tool that uses ECMAScript (Javascript) flavour for regex The online limitation that I can think of with the current output format, is that the diagnostics are multiline and not all code editors/ linter plugins are able to capture multiline regexs. FYI VS Code is fine with that: https://code.visualstudio.com/Docs/editor/tasks#_defining-a-multiline-problem-matcher I just whipped up a REGEX that should work with VS Code's problemmatcher regex101.com/r/q6duAL/4 and in any other tool that uses ECMAScript (Javascript) flavour for regex The indent of the filename and line and column specifier is dependent on the line number, you have to match for multiple spaces there (https://regex101.com/r/9xImjz/2). If I have understood correctly, this will eventually be present in/part of fpm. Let me know when that happens to add the problemmatcher in the fortran-lang vscode extension. I think this might be a good opportunity to try the new GitHub projects that span the entire organisation as opposed to the individual repos. Seems to be not an issue which is worth addressing at the moment.
gharchive/issue
2022-07-09T20:03:05
2025-04-01T06:40:40.070608
{ "authors": [ "awvwgk", "gnikit" ], "repo": "toml-f/toml-f", "url": "https://github.com/toml-f/toml-f/issues/90", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2028903537
Issue in project opening Class org.jetbrains.kotlin.idea.gradleTooling.KotlinGradleModel must not be requested from main classloader of org.jetbrains.kotlin plugin [Plugin: org.jetbrains.android] when i open a new project desktop only with java version 21 and gradle version 8.5 It is fixed it is happend due to old kotlin plugin Interesting, I'll try to update it in Liftoff if possible. I had an issue when launching Gradle with Java 21 and trying to build an Android APK from IDEA, but it wasn't the same bug you reported. The bug I hit was resolved by changing the setting in IDEA to run Gradle with Java 17. In case anyone finds this by searching, the error was: > Task :android:compileReleaseJavaWithJavac FAILED Execution failed for task ':android:compileReleaseJavaWithJavac'. > Could not resolve all files for configuration ':android:androidJdkImage'. > Failed to transform core-for-system-modules.jar to match attributes {artifactType=_internal_android_jdk_image, org.gradle.libraryelements=jar, org.gradle.usage=java-runtime}. > Execution failed for JdkImageTransform: C:\Users\tommy\AppData\Local\Android\Sdk\platforms\android-34\core-for-system-modules.jar. > Error while executing process C:\d\jvm\jdk21-hotspot\bin\jlink.exe with arguments {--module-path C:\Users\tommy\.gradle\caches\transforms-3\553ad13d8645437e7a391ae3ab1b8dbb\transformed\output\temp\jmod --add-modules java.base --output C:\Users\tommy\.gradle\caches\transforms-3\553ad13d8645437e7a391ae3ab1b8dbb\transformed\output\jdkImage --disable-plugin system-modules} I've never seen this type of bug before, and I didn't know Android even used jlink... Try ./gradlew clean After that try building again It sometimes fixed the problem
gharchive/issue
2023-12-06T16:08:50
2025-04-01T06:40:40.084471
{ "authors": [ "akashKarmakar02", "tommyettinger" ], "repo": "tommyettinger/gdx-liftoff", "url": "https://github.com/tommyettinger/gdx-liftoff/issues/145", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
577146503
admin displaying apps inconsistently I'm seeing some unexpected results in the django admin. Specifically I'm seeing what are strictly tenant apps showing up in the global schema, and I'm seeing what is strictly a shared app not showing up in the global schema admin ("Not available for global schema"). I think this might be because I am using the verbose notation in my SHARED_APPS and TENANT_APPS, e.g. 'polls.apps.PollsConfig', as proposed in the django tutorial. Whenever I switch to the short notation (e.g. 'polls') then the tenant apps only show up in the tenant admin. This is a pretty acceptable workaround, but I wanted you to know that there is some dissonance there. The primary issue I'm facing is that there doesn't seem to be a way to obscure a shared app from tenants. Specifically, I would like to not show my tenant model to all of my tenants. Have I overlooked a method for making a table in the shared schema private (or for global admin purposes only)? We also had inconsistencies in the django admin in our project. I haven't had much time to dig into it to try to find what is happening. In particular admin.site.register/unregister have been erratic. The primary issue I'm facing is that there doesn't seem to be a way to obscure a shared app from tenants. Specifically, I would like to not show my tenant model to all of my tenants. I worked around by implementing a seperate admin site for 'public' If found out that the issue that we were having was due to having the INSTALLED_APPS like in this line: https://github.com/tomturner/django-tenants/blob/5128d9e9d2409f3cd0b09c0bd574170ff657725d/examples/tenant_tutorial/tenant_tutorial/settings.py#L175 which was causing to the order of loaded apps to be randomize (set in python does not keep order). We had an package that was registering in its admin.py, and we were unregistering in one of our apps. If the our app loaded first it would be registered, if the package loaded first, it would be unregistered. I hope this helps. I had the same issue use INSTALLED_APPS = list(SHARED_APPS) + [app for app in TENANT_APPS if app not in SHARED_APPS] In our project, we are using django-configurations which have configurations classes instead a configuration file (one for production, one for development, etc). Because the scope for list comprehension behave weirdly in a class body the code snippet that you posted won't work. The workaround was to use INSTALLED_APPS = list(set(SHARED_APPS) - set(TENANT_APPS))+ TENANT_APPS # keep the order of the TENANT_APPS Since the order of TENANT_APPS that mattered. I failed to find a more elegant solution, but it works
gharchive/issue
2020-03-06T20:01:22
2025-04-01T06:40:40.098982
{ "authors": [ "ArnWac", "marcoaaguiar", "thismatters", "tomturner" ], "repo": "tomturner/django-tenants", "url": "https://github.com/tomturner/django-tenants/issues/349", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
104637321
Inconsistent podspec version in tags Podspec version in 1.0.5-swift2 and 1.0.5 tags is still using 1.0.4. I restructured the whole repository, deleted the separate swift-2 branch, made master compatible with Swift 2.0, so this is fixed now!
gharchive/issue
2015-09-03T07:28:14
2025-04-01T06:40:40.106449
{ "authors": [ "saramroo", "tomvanzummeren" ], "repo": "tomvanzummeren/TZStackView", "url": "https://github.com/tomvanzummeren/TZStackView/issues/32", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1052346622
sensible versus sensitive in risk messages need to replace sensible for sensitive in risk associated with finding message. Publicly accessible load balancers could expose sensible data to bad actors. Vaults accessible to everyone could expose sensible data to bad actors Thanks @fredski-github, just fixed it in branch 2.6.1 and will be in master as soon as I fix the other bug
gharchive/issue
2021-11-12T19:25:42
2025-04-01T06:40:40.114895
{ "authors": [ "fredski-github", "toniblyx" ], "repo": "toniblyx/prowler", "url": "https://github.com/toniblyx/prowler/issues/925", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1190795746
Add docs example with p5.SVG Pen plotters + p5 + Svelte would be a great example that some may find inspiring. That was one of the founding pieces of inspiration for starting this project and I was disappointed that p5.SVG didn't support ESM/instance mode so I couldn't get an SVG runtime for p5 working w/ p5-svelte. In a recent release, p5.SVG added support for those pieces 🥳 Turns out that the instance mode does the thing where it's trying to mod p5 via accessing the window which Svelte no likey. This may not work, or may need a custom shim within p5-svelte in order to support
gharchive/issue
2022-04-03T02:28:38
2025-04-01T06:40:40.162034
{ "authors": [ "tonyketcham" ], "repo": "tonyketcham/p5-svelte", "url": "https://github.com/tonyketcham/p5-svelte/issues/125", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
723256846
Can't build example using esp-idf v4.1 Prerequisites [x] I have written a descriptive issue title [x] I have verified that I am using the latest version of esp32-wifi-manager [x] I have searched open and closed issues to ensure it has not already been reported Description I'm facing the same issue similar #103 when working with ESP-IDF 4.1 on platformio. error: unknown type name 'esp_event_handler_instance_t'; did you mean 'esp_event_handler_t'? Is there anyway to get around this build error while still using the 4.1 version? Steps to Reproduce install platformio extention on vscode create a new project for esp32 using the esp-idf framework create a components folder under the root of the project and copy the wifi-manager into it (tried master and other tags) build System Configuration Debian 10 x64 vscode platformio Hello, This is normal, this code only compile with 4.2 and up as per the requirements: https://github.com/tonyp7/esp32-wifi-manager#requirements Are you considering to support a stable release in the future? because v4.2 is only pre-release beta now contrary to v4.1 which will be supported until February 2023. Definitely not. 4.2 should hit RC stage fairly soon and the master tree is already in 4.3. There’s no point holding back the codebase at this stage.
gharchive/issue
2020-10-16T14:04:00
2025-04-01T06:40:40.168302
{ "authors": [ "kaizoku-oh", "tonyp7" ], "repo": "tonyp7/esp32-wifi-manager", "url": "https://github.com/tonyp7/esp32-wifi-manager/issues/112", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
485446518
How to build? Which assembler must be used to build the sources? Hi Please use Kickassembler http://theweb.dk/KickAssembler/Main.html#frontpage Just assemble game.asm and that should give you game.prg, which you can run straight away. It can also be crunched with exomizer after that, which is what the included ChopperCommand.prg file is On Mon, 26 Aug 2019, 22:53 Ralph Möritz, notifications@github.com wrote: Which assembler must be used to build the sources? — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/tonysavon/Chopper-Command-C64/issues/1?email_source=notifications&email_token=AMSYTCQYFLCIAY4IYXOW2T3QGQ7DNA5CNFSM4IPVWFEKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HHPKN3A, or mute the thread https://github.com/notifications/unsubscribe-auth/AMSYTCUNNKSN36Z6QA6V7LLQGQ7DNANCNFSM4IPVWFEA . Thank you!
gharchive/issue
2019-08-26T20:53:09
2025-04-01T06:40:40.172611
{ "authors": [ "rmoritz", "tonysavon" ], "repo": "tonysavon/Chopper-Command-C64", "url": "https://github.com/tonysavon/Chopper-Command-C64/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2651169326
MacOS build broken due to encapsulation @Roberto-Gentili Any idea why this build is failing on macOS?: Error: ROR] Failed to execute goal org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8:deploy (injected-nexus-deploy) on project narcissus: Execution injected-nexus-deploy of goal org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8:deploy failed: An API incompatibility was encountered while executing org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8:deploy: java.lang.ExceptionInInitializerError: null Error: ROR] ----------------------------------------------------- Error: ROR] realm = extension>org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8 Error: ROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy [...] Error: ROR] -----------------------------------------------------: Unable to make field private final java.util.Comparator java.util.TreeMap.comparator accessible: module java.base does not "opens java.util" to unnamed module @3681037 Building with JDK 7 fails with the error below: there appears to be an incompatible Maven plugin with this JDK. ave you updated any Maven plugins? constituent[11]: file:/C:/Users/runneradmin/.m2/wrapper/dists/apache-maven-3.8.8-bin/67c30f74/apache-maven-3.8.8/lib/maven-compat-3.8.8.jar at org.apache.maven.wrapper.BootstrapMainStarter.start(BootstrapMainStarter.java:53) at org.apache.maven.wrapper.WrapperExecutor.execute(WrapperExecutor.java:152) at org.apache.maven.wrapper.MavenWrapperMain.main(MavenWrapperMain.java:76) Caused by: java.lang.UnsupportedClassVersionError: com/fasterxml/jackson/databind/ObjectMapper: Unsupported major.minor version 52.0 @Roberto-Gentili Any idea why this build is failing on macOS?: Error: ROR] Failed to execute goal org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8:deploy (injected-nexus-deploy) on project narcissus: Execution injected-nexus-deploy of goal org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8:deploy failed: An API incompatibility was encountered while executing org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8:deploy: java.lang.ExceptionInInitializerError: null Error: ROR] ----------------------------------------------------- Error: ROR] realm = extension>org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8 Error: ROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy [...] Error: ROR] -----------------------------------------------------: Unable to make field private final java.util.Comparator java.util.TreeMap.comparator accessible: module java.base does not "opens java.util" to unnamed module @3681037 It was already broken, so I tried updating all the Maven plugins to see if that would fix it... It looks like the Maven wrapper version needs to be updated, or something? It was already broken, so I tried updating all the Maven plugins to see if that would fix it... It looks like the Maven wrapper version needs to be updated, or something? Unfortunately I don't know: I abandoned the build test for JDK 7 due to too many problems even if I do the release build with the version parameter set for compatibility with JDK 7 It was already broken, so I tried updating all the Maven plugins to see if that would fix it... It looks like the Maven wrapper version needs to be updated, or something? Unfortunately I don't know: I abandoned the build test for JDK 7 due to too many problems even if I do the release build with the version parameter set for compatibility with JDK 7 @Roberto-Gentili @michael-simons OK, the build seems to be fixed. Thanks for your help! Pushing out 1.0.10. It's interesting that this failed on JDK 7 :) I explicitly set the Maven Wrapper and Maven versions to work with 7. Seems to be an issue with nexus-staging-maven-plugin. FWIW There's a way to define tool chains in Maven, so that you don't depend on the JDK that is being used to run Maven, but I never used them. https://maven.apache.org/guides/mini/guide-using-toolchains.html @Roberto-Gentili @michael-simons OK, the build seems to be fixed. Thanks for your help! Pushing out 1.0.10. Great! I will release the new version of JVM-Driver as soon as it is available Maven now requires a minimum JDK of 7, it seems (or maybe it is Maven-wrapper). I just removed the testing for JDK 7, since I don't have time to mess with this much more!
gharchive/issue
2024-11-12T06:24:41
2025-04-01T06:40:40.193224
{ "authors": [ "Roberto-Gentili", "lukehutch", "michael-simons" ], "repo": "toolfactory/narcissus", "url": "https://github.com/toolfactory/narcissus/issues/17", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
817369501
Fix client singleton router ii What kind of change does this PR introduce? Replaces: https://github.com/toomuchdesign/next-page-tester/pull/161 Fixes: https://github.com/toomuchdesign/next-page-tester/issues/160 What is the current behaviour? You can also link to an open issue here. What is the new behaviour? ... Does this PR introduce a breaking change? What changes might users need to make in their application due to this PR? Other information: Please check if the PR fulfills these requirements: [x] Tests for the changes have been added [x] Docs have been added / updated Coverage remained the same at 100.0% when pulling 187c984537ad68b359ee1f4cad8c5021f0c4e6b9 on fix-client-singleton-router-II into dad5cbb7ca4175290ad32820290575f3318fc263 on master.
gharchive/pull-request
2021-02-26T13:45:55
2025-04-01T06:40:40.204574
{ "authors": [ "Meemaw", "coveralls" ], "repo": "toomuchdesign/next-page-tester", "url": "https://github.com/toomuchdesign/next-page-tester/pull/173", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
175456851
bug in verify_code https://github.com/toplan/laravel-sms/blob/master/src/Toplan/LaravelSms/validations.php#L16 当用户未点击发送短信按钮时,直接点击提交,这个时候因为没有存储状态到session/cache,那么这里获取attempts肯定会保异常。
gharchive/issue
2016-09-07T09:35:44
2025-04-01T06:40:40.307128
{ "authors": [ "toplan" ], "repo": "toplan/laravel-sms", "url": "https://github.com/toplan/laravel-sms/issues/114", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
191878100
[PERFORMANCE]: avoid multiple redux.getState() calls in connect I've simplified the callback workload to reduce the number of times we invoke redux.getState() in handleChange from 2x to 1x and also I've eliminated an unnecessary function (used previously in the shallowEqual days of connect). My hope is that we can achieve the same goal #41 set out to solve but without the tradeoff of holding state local in the component (and further -helping us avoid Ember.set / setProperties). After the over notify problem was solved, the remaining "Problem Statement" back in #30 was that we call redux.getState() multiple times during re-render work and that could be expensive. This PR should solve a good chunk of that and I'm asking @dbashford to confirm we didn't break his app. In addition, I'm reaching out to @justinpark to confirm he won't run into a performance issue of any kind taking this new connect implementation. Would you both have time this week to try out this updated connect function and report back? @dustinfarris awesome! I'm hopeful it helps move us closer to the silver bullet while avoiding whatever it was that @dbashford ran into w/ the setProperties variation from last week. I'll wait until I hear from both of them that this is regression free/ solid before we get a v1.9.2 out the door the remaining "Problem Statement" back in #30 was that we call redux.getState() multiple times during re-render work and that could be expensive. I wonder how expensive redux.getState() really is? I would guess under the hood the browser is just kicking around a pointer. I'd be more interested in knowing how expensive the stateToProps function is for a non-trivial component. in the computed prop: defineProperty(component, name, computed(function() { return finalMapStateToComputed(redux.getState())[name]; I'd bet the finalMapStateToComputed which gets run on every single property is much more expensive than the redux.getState() part. Anyway, probably discussion best saved for another issue/PR. Looking good here! All good here too!
gharchive/pull-request
2016-11-27T19:01:21
2025-04-01T06:40:40.354541
{ "authors": [ "dbashford", "dustinfarris", "justinpark", "toranb" ], "repo": "toranb/ember-redux", "url": "https://github.com/toranb/ember-redux/pull/51", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1634450589
INTP-311 (MAPPDK_SERVER,204) Uninitialized data is used I got fanucpy working well on my first CRX but on my second CRX I get this error message. I've searched the threads and this message pops up for a variety of reasons with other socket based programs. Was wondering if you had any troubleshooting tips. Hi. Have you copied the latest fanuc driver files from https://github.com/torayeff/fanucpy/tree/main/src/fanuc-driver ? Basically, you need to install the latest version of fanucpy (0.1.11) with the latest version of fanuc driver files. i did this morning hoping to resolve the issue. Some threads suggest it might be a memory issue. Will try again. Sabri BTW great job with integrating ChatGPT! On Tue, Mar 21, 2023 at 12:06 PM Agajan Torayev @.***> wrote: Hi. Have you copied the latest fanuc driver files from https://github.com/torayeff/fanucpy/tree/main/src/fanuc-driver ? Basically, you need to install the latest version of fanucpy (0.1.11) with the latest version of fanuc driver files. — Reply to this email directly, view it on GitHub https://github.com/torayeff/fanucpy/issues/18#issuecomment-1478364315, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACV24LVMTW2QB4HU5K7IG3W5HUZXANCNFSM6AAAAAAWCZM5QM . You are receiving this because you authored the thread.Message ID: @.***> @sansoy Let me know how it goes. I will have a closer look at the issue on Thursday. Some far there were not any problems while testing using Roboguide. I can confirm that v0.1.11 works with the latest .pc and .ls files. Please copy the new files from https://github.com/torayeff/fanucpy/tree/main/src/fanuc-driver Thanks Agajan! I was able to get it to run my CRX! Great work! Sabri On Thu, Apr 6, 2023 at 7:08 AM Agajan Torayev @.***> wrote: Closed #18 https://github.com/torayeff/fanucpy/issues/18 as completed. — Reply to this email directly, view it on GitHub https://github.com/torayeff/fanucpy/issues/18#event-8945813893, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACV24KURBH5IQNMKUKDQ5DW7253LANCNFSM6AAAAAAWCZM5QM . You are receiving this because you were mentioned.Message ID: @.***>
gharchive/issue
2023-03-21T17:59:02
2025-04-01T06:40:40.365640
{ "authors": [ "sansoy", "torayeff" ], "repo": "torayeff/fanucpy", "url": "https://github.com/torayeff/fanucpy/issues/18", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
179403779
lena loading grace bug When using image.display(image.lena()), it shows grace hopper. As a suggestion, possible creating a new image.grace() function would be better. I was also curious about this. Is it a joke? :smile: You can see https://github.com/torch/nn/issues/854. "we've removed lena. we cant change the name because of breaking API"
gharchive/issue
2016-09-27T05:58:11
2025-04-01T06:40:40.367833
{ "authors": [ "ArturoDeza", "ilija139", "karandwivedi42" ], "repo": "torch/image", "url": "https://github.com/torch/image/issues/193", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
2590820195
Navigation links not working on mobile https://github.com/torchbox/wagtail-news-template/blob/main/templates/navigation/header.html#L124 a href was blank should be: href="{{ link.value.get_url }}" @songproducer thank you for filing these issues. It is very useful. Feel free to submit pull requests with fixes to any issues you find and have time for @zerolab Sorry I'm git illiterate, I gave it a shot but not sure if this is right. https://github.com/songproducer/wagtail-news-template/pull/2 Hey @songproducer, no worries at all. Perhaps https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork can help Thanks! I was trying to make my life more difficult by trying to use command line. Pull request submitted!
gharchive/issue
2024-10-16T06:45:05
2025-04-01T06:40:40.377801
{ "authors": [ "songproducer", "zerolab" ], "repo": "torchbox/wagtail-news-template", "url": "https://github.com/torchbox/wagtail-news-template/issues/14", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1898914300
Add that mn requires bindeps Without this installing errors with: error: failed to parse manifest at `mnemos/tools/manganese/Cargo.toml` Caused by: `artifact = …` requires `-Z bindeps` (cargo-binutils) Ah, I had not really considered the use case of installing mn using cargo install. Instead, I had assumed that it would always be run using the cargo mn alias defined in the workspace's .cargo/config.toml, which will always work fine because that file also explicitly enables the bindeps unstable feature. I'm not sure whether or not we should include this in the README. On one hand, it does tell users how to avoid problems when installing mn using cargo install. On the other hand, I'm not actually sure if installing mn that way is a good idea. The advantage of only ever running it using cargo run is that it is potentially rebuilt whenever the Cargo.lock entries for its dependencies changes. This means that if you run mn using the alias that calls cargo run, you get whatever versions of the bindeps are currently in the lockfile. If those haven't changed, mn and its dependencies are not recompiled every time its run, but if the lockfile has changed, the cargo run command will build new versions of the bindeps. This ensures that everyone gets compatible versions of those dependencies whenever they use cargo mn. On the other hand, if mn is cargo installed, it's built once, and every subsequent time you run cargo mn, you get the same thing, regardless of the mnemos repo's Cargo.lock. This is fine with regards to the actual mn binary, since it's very simple and won't change often. However, it also means that the versions of the bindeps that are downloaded and compiled are the versions you get when mn is cargo installed, and if the lockfile updates those dependencies, you still get the old ones. This means that if we later update the lockfile to depend on new versions of those tools, any contributors who have cargo installed mn will see their versions of the build dependencies begin to drift from what other contributors are using, potentially introducing compatibility issues with the various scripts run using mn. Because of the version drift issue, I think it might be better to just have the README suggest that mn should not be cargo installed, and that it should instead always be used through cargo run --package manganese , or through the cargo mn alias defined in the workspace, which expands to that. What do you think? Ok. I didn't actually know how to run it and assumed it was a normal cargo tool. I didn't know you could define aliases in the workspace, and I work with a lot of different rust projects so this probably will be a tripping point for folks. Thanks for the quick response!
gharchive/pull-request
2023-09-15T18:45:36
2025-04-01T06:40:40.451666
{ "authors": [ "LegNeato", "hawkw" ], "repo": "tosc-rs/mnemos", "url": "https://github.com/tosc-rs/mnemos/pull/275", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1385496173
🛑 TI-DHR is down In 1da369b, TI-DHR (https://dhr.hanati.co.kr/) was down: HTTP code: 0 Response time: 0 ms Resolved: TI-DHR is back up in f837b87.
gharchive/issue
2022-09-26T06:25:16
2025-04-01T06:40:40.462974
{ "authors": [ "touguy" ], "repo": "touguy/uptime", "url": "https://github.com/touguy/uptime/issues/3", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
134700964
Adding support for boolean input types Includes custom prompts for y/n, yes/no, true/false, and t/f. With uppercased default values and optional in/out types. In/out types are configured with a '/'. "In" type controls the prompting, "out" type controls the string conversion. This allows prompting for "y/n" and outputting as "true/false", for one example. Maybe in the future, instead of output types we could have some sort of casting use. i.e. %((bool):config:my_var). I'm not sure what the best format would be, but this would lend for greater flexibility.
gharchive/pull-request
2016-02-18T21:24:04
2025-04-01T06:40:40.464850
{ "authors": [ "GreenGremlin" ], "repo": "toumorokoshi/sprinter", "url": "https://github.com/toumorokoshi/sprinter/pull/95", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1790385107
🛑 Silicon Valley Animal Control Authority is down In 8982dfc, Silicon Valley Animal Control Authority (https://www.svaca.com) was down: HTTP code: 503 Response time: 260 ms Resolved: Silicon Valley Animal Control Authority is back up in e1bdaa5.
gharchive/issue
2023-07-05T21:38:34
2025-04-01T06:40:40.467492
{ "authors": [ "touzesabine" ], "repo": "touzesabine/uppdownn", "url": "https://github.com/touzesabine/uppdownn/issues/60", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
293416889
Paste on Mobile removes pasted content immediately When tested on Apple and Android mobile devices (both on chrome so far) the paste function is not working. As far I can tell the function is being triggered (I extended the paste delay) but as soon as the delay is up it seems the content is not found in "view" and is removed. https://github.com/tovic/rich-text-editor/commit/a330d78ed16cbfd8dded8a55aaf9d6ed2d39bde3
gharchive/issue
2018-02-01T06:23:08
2025-04-01T06:40:40.468784
{ "authors": [ "justlikethisdesign", "tovic" ], "repo": "tovic/rich-text-editor", "url": "https://github.com/tovic/rich-text-editor/issues/8", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1168227041
op lazy training. Signed-off-by: ChengZi chen.zhang@zilliz.com /lgtm /approve
gharchive/pull-request
2022-03-14T11:14:30
2025-04-01T06:40:40.473949
{ "authors": [ "reiase", "zc277584121" ], "repo": "towhee-io/towhee", "url": "https://github.com/towhee-io/towhee/pull/819", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
272669826
Fix/style changes to cards Changes to cards Added the last updated in a footer, which is nice to see for events that are coming up soon, but my question on this is we have some events that haven't been updated in awhile, does it make things look stale? Formatted the address so that it breaks at the right point Changed the box around the address to a line moved links to the lower right hand corner. Added the last updated in a footer, which is nice to see for events that are coming up soon, but my question on this is we have some events that haven't been updated in awhile, does it make things look stale? I assume these are ongoing events (regular office hours)? Maybe we lose the "last updated" for those types of events? Other changes look solid. A couple questions: -Do we want the Notes to be above the address? In the examples you used it works but occasionally the Notes can be very long (such as a long list of additional speakers or co-host organizations). -The bar color is still connected to Party and the little icon/color is connected to the event type on our map? I'm wondering if there is a cleaner way to convey these (rather than blue on blue, with each blue signifying something different). yeah we can switch notes and address. The headers are only connected to the type of event. Blue is for in person, purple for staff etc So the entire header color (including icon) are representing the same thing with two different color shades? We may have already discussed this but I wonder if it's a bit confusing (assuming that one is representing party). yeah that's right. There's nothing that indicates party by color anymore. Love the links on the bottom right! May I make a suggestion about the header? Right now the MOC's name seems understated and the event type icon isn't very grokable. What if we made them columns instead? Something like: yeah! do you have this styled already or did you do in with screen grabs? if you have the style can you just push it to this branch? Screen grabs I'm afraid
gharchive/pull-request
2017-11-09T18:21:04
2025-04-01T06:40:40.479768
{ "authors": [ "meganrm", "nathanmwilliams", "pdvorchik" ], "repo": "townhallproject/townHallProject", "url": "https://github.com/townhallproject/townHallProject/pull/216", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
341223329
Add step to readme Hey! It's me again. So I had to setup this project on a new machine and ran into problems when I followed the README steps. Specifically, the <script src="node_modules/react/umd/react.development.js"></script> <script src="node_modules/react-dom/umd/react-dom.development.js"></script> lines in examples/index.html were breaking because it couldn't find the files. This is because yarn doesn't install the dependencies for examples when you run yarn install from the root. It's a small detail but cost me ~45 minutes of trying to find a bug in the webpack config or fiddling with the path in the script src. Hi John, thank you for the PR, it is much appreciated! I have been meaning to get back to this project and see it to completion, your interest and help is a great motivator. Apologies for the 45 minutes of lost time.
gharchive/pull-request
2018-07-14T09:26:48
2025-04-01T06:40:40.490466
{ "authors": [ "johnmarinelli", "toxicFork" ], "repo": "toxicFork/react-three-renderer-fiber", "url": "https://github.com/toxicFork/react-three-renderer-fiber/pull/55", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1803003216
Adapter stürzt immer wieder ab Hallo, leider stürzt der Adapter nach ein paar Minuten ab. Ich nutze nur die KM200 ems-esp.0 | 2023-07-13 15:04:12.460 | warn | Terminated (UNCAUGHT_EXCEPTION): Without reason -- | -- | -- | -- ems-esp.0 | 2023-07-13 15:04:12.459 | info | terminating ems-esp.0 | 2023-07-13 15:04:12.456 | error | Parameter "instanceName" needs to be of type "string" but type "undefined" has been passed ems-esp.0 | 2023-07-13 15:04:12.454 | error | Error: Parameter "instanceName" needs to be of type "string" but type "undefined" has been passed at Validator.assertString (/opt/iobroker/node_modules/@iobroker/js-controller-adapter/build/lib/adapter/validator.js:168:19) at AdapterClass.sendTo (/opt/iobroker/node_modules/@iobroker/js-controller-adapter/build/lib/adapter/adapter.js:5014:31) at enable_state (/opt/iobroker/node_modules/iobroker.ems-esp/main.js:121:10) at Immediate.<anonymous> (/opt/iobroker/node_modules/iobroker.ems-esp/main.js:330:38) at process.processImmediate (node:internal/timers:473:21) ems-esp.0 | 2023-07-13 15:04:12.453 | error | uncaught exception: Parameter "instanceName" needs to be of type "string" but type "undefined" has been passed ems-esp.0 | 2023-07-13 15:03:12.449 | info | km200:true 300 secs ems-esp.0 | 2023-07-13 15:03:12.449 | info | end of initializing km200 states ems-esp.0 | 2023-07-13 15:02:45.380 | info | start initializing km200 states ems-esp.0 | 2023-07-13 15:02:45.379 | info | write km200 file:/opt/iobroker/iobroker-data//ems-esp/0/km200.csv ems-esp.0 | 2023-07-13 15:02:45.379 | info | End reading km200 data-structure: 109 fields found ems-esp.0 | 2023-07-13 15:02:12.397 | info | start reading km200 data-structure ems-esp.0 | 2023-07-13 15:02:12.071 | info | starting. Version 1.31.0 in /opt/iobroker/node_modules/iobroker.ems-esp, node: v18.7.0, js-controller: 5.0.7 Vielen Dank und Grüße :) Was soll ich sagen, ohne die Screenshots der Adapter Parameter ??? Nimm bitte die Datenbank raus Statistiken gehen nur mit Datenbak wie in der Readme beschrieben ... dazu brauchst Du eine akltive DB-Instanz Ich habe die Überprüfung im Adapter angepasst.
gharchive/issue
2023-07-13T13:14:00
2025-04-01T06:40:40.500021
{ "authors": [ "crusader85", "tp1de" ], "repo": "tp1de/ioBroker.ems-esp", "url": "https://github.com/tp1de/ioBroker.ems-esp/issues/21", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
535571658
License file Would be nice to provide license file. This helps with distro adoption. Simple license file would be enough. true
gharchive/issue
2019-12-10T08:29:31
2025-04-01T06:40:40.520317
{ "authors": [ "JoshuaDRose", "tim77" ], "repo": "tpope/vim-pathogen", "url": "https://github.com/tpope/vim-pathogen/issues/209", "license": "Vim", "license_type": "permissive", "license_source": "github-api" }
840266952
Use canonical Michelson parser implementation to generate JSON representations #58 added a script which generates a JSON representation of a Michelson contract to facilitate idiomatic importing of contracts into a JavaScript project. This solution outsources Michelson parsing to the @taquito/michel-codec package. Unfortunately, this package often goes out of date with respect to the protocol, encountering parse errors on valid contracts. To mitigate this, we should use a canonical implementation like the tezos-client / RPC. Closed via #75
gharchive/issue
2021-03-24T22:46:09
2025-04-01T06:40:40.521808
{ "authors": [ "zachrbrown" ], "repo": "tqtezos/minter-sdk", "url": "https://github.com/tqtezos/minter-sdk/issues/70", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1113764993
getting error while installing error logs /Users/../Documents/work/ReactNative/work/../node_modules/react-native-esc-pos-printer: Command failed. Exit code: 1 Command: node ./scripts/movelib.js Arguments: Directory: /Users/../Documents/work/ReactNative/work/../node_modules/react-native-esc-pos-printer Output: internal/modules/cjs/loader.js:905 throw err; ^ Error: Cannot find module '/Users/../Documents/work/ReactNative/work/../node_modules/react-native-esc-pos-printer/scripts/movelib.js' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:902:15) at Function.Module._load (internal/modules/cjs/loader.js:746:27) at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:76:12) at internal/main/run_main_module.js:17:47 { Fixed in v1.7.1 hi @tr3v3r what is the major difference in v1.5.0 between v1.7.1 @devudr the only difference is that SDK for iOS is moved to a separate repo.
gharchive/issue
2022-01-25T11:21:55
2025-04-01T06:40:40.525480
{ "authors": [ "devudr", "tr3v3r" ], "repo": "tr3v3r/react-native-esc-pos-printer", "url": "https://github.com/tr3v3r/react-native-esc-pos-printer/issues/45", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }